
    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_f6d367ba40c37568f366ce05.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:0.990000;font-style:normal;font-weight:normal;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_a55efe22095751e927be2c1c.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.146800;font-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_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;}
.ls0_c00000{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00000{word-spacing:0.000000px;}
._1_c00000{width:7.848029px;}
._0_c00000{width:11.998277px;}
.fc0_c00000{color:rgb(255,255,255);}
.fs2_c00000{font-size:71.999997px;}
.fs0_c00000{font-size:110.217608px;}
.fs1_c00000{font-size:274.620855px;}
.y0_c00000{bottom:0.000000px;}
.y1_c00000{bottom:0.000008px;}
.y8_c00000{bottom:127.842007px;}
.y7_c00000{bottom:151.467006px;}
.y6_c00000{bottom:175.092005px;}
.y5_c00000{bottom:198.717004px;}
.y2_c00000{bottom:767.172579px;}
.y4_c00000{bottom:819.205216px;}
.y3_c00000{bottom:886.418646px;}
.h5_c00000{height:66.527997px;}
.h3_c00000{height:88.174086px;}
.h4_c00000{height:253.749670px;}
.h2_c00000{height:1304.999946px;}
.h0_c00000{height:1304.999953px;}
.h1_c00000{height:1305.000000px;}
.w2_c00000{width:934.874961px;}
.w0_c00000{width:934.875000px;}
.w1_c00000{width:935.250000px;}
.x0_c00000{left:0.000000px;}
.x2_c00000{left:93.389641px;}
.x1_c00000{left:96.736791px;}
.x3_c00000{left:185.834876px;}
.x6_c00000{left:279.045098px;}
.x4_c00000{left:295.427910px;}
.x5_c00000{left:299.365410px;}
.x7_c00000{left:335.664237px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
._1_c00000{width:6.976026pt;}
._0_c00000{width:10.665135pt;}
.fs2_c00000{font-size:63.999997pt;}
.fs0_c00000{font-size:97.971207pt;}
.fs1_c00000{font-size:244.107427pt;}
.y0_c00000{bottom:0.000000pt;}
.y1_c00000{bottom:0.000007pt;}
.y8_c00000{bottom:113.637339pt;}
.y7_c00000{bottom:134.637338pt;}
.y6_c00000{bottom:155.637338pt;}
.y5_c00000{bottom:176.637337pt;}
.y2_c00000{bottom:681.931181pt;}
.y4_c00000{bottom:728.182414pt;}
.y3_c00000{bottom:787.927685pt;}
.h5_c00000{height:59.135998pt;}
.h3_c00000{height:78.376966pt;}
.h4_c00000{height:225.555262pt;}
.h2_c00000{height:1159.999952pt;}
.h0_c00000{height:1159.999959pt;}
.h1_c00000{height:1160.000000pt;}
.w2_c00000{width:830.999965pt;}
.w0_c00000{width:831.000000pt;}
.w1_c00000{width:831.333333pt;}
.x0_c00000{left:0.000000pt;}
.x2_c00000{left:83.013014pt;}
.x1_c00000{left:85.988259pt;}
.x3_c00000{left:165.186556pt;}
.x6_c00000{left:248.040087pt;}
.x4_c00000{left:262.602587pt;}
.x5_c00000{left:266.102587pt;}
.x7_c00000{left:298.368210pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00001{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
}
.y0_c00001{bottom:0.000000px;}
.h0_c00001{height:1304.999953px;}
.h1_c00001{height:1305.000000px;}
.w0_c00001{width:934.875000px;}
.w1_c00001{width:935.250000px;}
.x0_c00001{left:0.000000px;}
@media print{
.y0_c00001{bottom:0.000000pt;}
.h0_c00001{height:1159.999959pt;}
.h1_c00001{height:1160.000000pt;}
.w0_c00001{width:831.000000pt;}
.w1_c00001{width:831.333333pt;}
.x0_c00001{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_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_d5726cd7fe5ea9792f2f08f2.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.006000;font-style:normal;font-weight:normal;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_93bfa990fb06b8e444fadc4d.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.021800;font-style:normal;font-weight:normal;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_94aceaf05d1562d1f23ff5a6.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.014909;font-style:normal;font-weight:normal;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_c899fb9aa530f06bfa9aa2e3.woff2')format("woff");}.ff4_c00002{font-family:ff4_c00002;line-height:0.772949;font-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);}
.v0_c00002{vertical-align:0.000000px;}
.ls0_c00002{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00002{word-spacing:-25.623979px;}
.ws0_c00002{word-spacing:-25.006534px;}
.ws2_c00002{word-spacing:0.000000px;}
._3_c00002{margin-left:-26.544837px;}
._1_c00002{margin-left:-8.173135px;}
._0_c00002{width:7.848028px;}
._2_c00002{width:8.976087px;}
.fc0_c00002{color:rgb(0,0,0);}
.fs4_c00002{font-size:48.378365px;}
.fs0_c00002{font-size:71.999997px;}
.fs2_c00002{font-size:73.483406px;}
.fs1_c00002{font-size:102.907545px;}
.fs3_c00002{font-size:239.984999px;}
.y0_c00002{bottom:0.000000px;}
.y1_c00002{bottom:0.000008px;}
.y2_c00002{bottom:76.268661px;}
.yb_c00002{bottom:322.102247px;}
.ya_c00002{bottom:345.727246px;}
.y9_c00002{bottom:369.352245px;}
.y8_c00002{bottom:392.977244px;}
.y5_c00002{bottom:680.650100px;}
.y7_c00002{bottom:728.790792px;}
.y6_c00002{bottom:789.932779px;}
.y4_c00002{bottom:1064.875239px;}
.y3_c00002{bottom:1090.005279px;}
.yc_c00002{bottom:1224.912643px;}
.h7_c00002{height:36.756218px;}
.h3_c00002{height:57.599998px;}
.h5_c00002{height:58.786725px;}
.h4_c00002{height:82.326036px;}
.h6_c00002{height:191.987999px;}
.h2_c00002{height:1304.999946px;}
.h0_c00002{height:1304.999953px;}
.h1_c00002{height:1305.000000px;}
.w2_c00002{width:934.874961px;}
.w0_c00002{width:934.875000px;}
.w1_c00002{width:935.250000px;}
.x0_c00002{left:0.000000px;}
.xa_c00002{left:151.841872px;}
.x4_c00002{left:211.785964px;}
.x5_c00002{left:283.731756px;}
.x8_c00002{left:287.411691px;}
.x6_c00002{left:301.597237px;}
.x7_c00002{left:309.665596px;}
.x9_c00002{left:342.044501px;}
.x2_c00002{left:371.185473px;}
.x3_c00002{left:392.188210px;}
.x1_c00002{left:406.497595px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws1_c00002{word-spacing:-22.776870pt;}
.ws0_c00002{word-spacing:-22.228030pt;}
.ws2_c00002{word-spacing:0.000000pt;}
._3_c00002{margin-left:-23.595410pt;}
._1_c00002{margin-left:-7.265009pt;}
._0_c00002{width:6.976025pt;}
._2_c00002{width:7.978744pt;}
.fs4_c00002{font-size:43.002991pt;}
.fs0_c00002{font-size:63.999997pt;}
.fs2_c00002{font-size:65.318583pt;}
.fs1_c00002{font-size:91.473374pt;}
.fs3_c00002{font-size:213.319999pt;}
.y0_c00002{bottom:0.000000pt;}
.y1_c00002{bottom:0.000007pt;}
.y2_c00002{bottom:67.794365pt;}
.yb_c00002{bottom:286.313108pt;}
.ya_c00002{bottom:307.313107pt;}
.y9_c00002{bottom:328.313106pt;}
.y8_c00002{bottom:349.313105pt;}
.y5_c00002{bottom:605.022311pt;}
.y7_c00002{bottom:647.814037pt;}
.y6_c00002{bottom:702.162470pt;}
.y4_c00002{bottom:946.555768pt;}
.y3_c00002{bottom:968.893582pt;}
.yc_c00002{bottom:1088.811238pt;}
.h7_c00002{height:32.672194pt;}
.h3_c00002{height:51.199998pt;}
.h5_c00002{height:52.254867pt;}
.h4_c00002{height:73.178699pt;}
.h6_c00002{height:170.655999pt;}
.h2_c00002{height:1159.999952pt;}
.h0_c00002{height:1159.999959pt;}
.h1_c00002{height:1160.000000pt;}
.w2_c00002{width:830.999965pt;}
.w0_c00002{width:831.000000pt;}
.w1_c00002{width:831.333333pt;}
.x0_c00002{left:0.000000pt;}
.xa_c00002{left:134.970553pt;}
.x4_c00002{left:188.254191pt;}
.x5_c00002{left:252.206005pt;}
.x8_c00002{left:255.477059pt;}
.x6_c00002{left:268.086433pt;}
.x7_c00002{left:275.258308pt;}
.x9_c00002{left:304.039557pt;}
.x2_c00002{left:329.942642pt;}
.x3_c00002{left:348.611742pt;}
.x1_c00002{left:361.331195pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00003{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
}
.y0_c00003{bottom:0.000000px;}
.h0_c00003{height:1304.999953px;}
.h1_c00003{height:1305.000000px;}
.w0_c00003{width:934.875000px;}
.w1_c00003{width:935.250000px;}
.x0_c00003{left:0.000000px;}
@media print{
.y0_c00003{bottom:0.000000pt;}
.h0_c00003{height:1159.999959pt;}
.h1_c00003{height:1160.000000pt;}
.w0_c00003{width:831.000000pt;}
.w1_c00003{width:831.333333pt;}
.x0_c00003{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_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_132c8b34458dd6bfbaffa419.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.023000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_b0c36debd657c9541615a7ea.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00004;src:url('chunks/assets/font_512f6e573b06c3594e2ab846.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.122000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00004;src:url('chunks/assets/font_ab3354f132bad6f11c462bab.woff2')format("woff");}.ff4_c00004{font-family:ff4_c00004;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_c00004;src:url('chunks/assets/font_54333a44a81d75ae3557058b.woff2')format("woff");}.ff5_c00004{font-family:ff5_c00004;line-height:1.000000;font-style:normal;font-weight: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_c00004;src:url('chunks/assets/font_7d254f75c6512f552b64ab6e.woff2')format("woff");}.ff6_c00004{font-family:ff6_c00004;line-height:1.171387;font-style:normal;font-weight: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_c00004;src:url('chunks/assets/font_b5a25b45af43619f2b2a42a4.woff2')format("woff");}.ff7_c00004{font-family:ff7_c00004;line-height:1.162109;font-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_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);}
.v0_c00004{vertical-align:0.000000px;}
.ls2_c00004{letter-spacing:0.000000px;}
.ls1_c00004{letter-spacing:1.016415px;}
.ls0_c00004{letter-spacing:1.021771px;}
.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:-12.362489px;}
.ws1_c00004{word-spacing:-11.856036px;}
.ws2_c00004{word-spacing:0.000000px;}
._1_c00004{margin-left:-3.030311px;}
._0_c00004{margin-left:-1.263101px;}
._2_c00004{width:1.076428px;}
._3_c00004{width:10.031664px;}
.fc1_c00004{color:rgb(255,49,49);}
.fc0_c00004{color:rgb(0,0,0);}
.fs2_c00004{font-size:48.000145px;}
.fs1_c00004{font-size:48.007799px;}
.fs0_c00004{font-size:56.969997px;}
.y0_c00004{bottom:0.000000px;}
.y1_c00004{bottom:0.000008px;}
.y2f_c00004{bottom:74.129426px;}
.y2e_c00004{bottom:90.132026px;}
.y2d_c00004{bottom:106.134625px;}
.y2c_c00004{bottom:122.137225px;}
.y2b_c00004{bottom:138.139824px;}
.y32_c00004{bottom:200.991439px;}
.y31_c00004{bottom:216.991487px;}
.y30_c00004{bottom:232.991536px;}
.y2a_c00004{bottom:265.227181px;}
.y29_c00004{bottom:284.352180px;}
.y28_c00004{bottom:303.477179px;}
.y27_c00004{bottom:341.727178px;}
.y26_c00004{bottom:379.977176px;}
.y25_c00004{bottom:399.102175px;}
.y24_c00004{bottom:418.227175px;}
.y23_c00004{bottom:437.352174px;}
.y22_c00004{bottom:456.477173px;}
.y21_c00004{bottom:494.727171px;}
.y20_c00004{bottom:513.852171px;}
.y1f_c00004{bottom:532.977170px;}
.y1e_c00004{bottom:552.102169px;}
.y33_c00004{bottom:599.408813px;}
.y8_c00004{bottom:716.653093px;}
.y7_c00004{bottom:733.528093px;}
.ya_c00004{bottom:767.110047px;}
.y16_c00004{bottom:777.201296px;}
.y9_c00004{bottom:783.985046px;}
.y15_c00004{bottom:794.076296px;}
.yc_c00004{bottom:817.566644px;}
.yb_c00004{bottom:834.441643px;}
.y18_c00004{bottom:837.749143px;}
.y17_c00004{bottom:854.624142px;}
.ye_c00004{bottom:868.023597px;}
.yd_c00004{bottom:884.898597px;}
.y1a_c00004{bottom:898.297695px;}
.y19_c00004{bottom:915.172695px;}
.y10_c00004{bottom:918.480195px;}
.yf_c00004{bottom:935.355194px;}
.y1c_c00004{bottom:958.845898px;}
.y12_c00004{bottom:968.937148px;}
.y1b_c00004{bottom:975.720898px;}
.y11_c00004{bottom:985.812147px;}
.y14_c00004{bottom:1019.393745px;}
.y13_c00004{bottom:1036.268744px;}
.y6_c00004{bottom:1072.894527px;}
.y5_c00004{bottom:1090.894527px;}
.y4_c00004{bottom:1126.894525px;}
.y3_c00004{bottom:1144.894524px;}
.y2_c00004{bottom:1199.381786px;}
.y1d_c00004{bottom:1202.090926px;}
.h8_c00004{height:36.474675px;}
.h7_c00004{height:43.680132px;}
.h4_c00004{height:44.037807px;}
.h6_c00004{height:44.702574px;}
.h3_c00004{height:45.006297px;}
.h5_c00004{height:51.842697px;}
.h2_c00004{height:1304.999946px;}
.h0_c00004{height:1304.999953px;}
.h1_c00004{height:1305.000000px;}
.w2_c00004{width:934.874961px;}
.w0_c00004{width:934.875000px;}
.w1_c00004{width:935.250000px;}
.x0_c00004{left:0.000000px;}
.x13_c00004{left:87.902647px;}
.x17_c00004{left:113.707909px;}
.x18_c00004{left:127.413260px;}
.x19_c00004{left:139.133914px;}
.x1b_c00004{left:223.044071px;}
.x14_c00004{left:227.383234px;}
.x1a_c00004{left:335.603330px;}
.x1d_c00004{left:384.487674px;}
.x16_c00004{left:395.050486px;}
.x1c_c00004{left:417.747790px;}
.x6_c00004{left:535.830886px;}
.xe_c00004{left:570.231275px;}
.x1_c00004{left:575.071410px;}
.xc_c00004{left:578.088696px;}
.x12_c00004{left:620.416815px;}
.xf_c00004{left:624.125804px;}
.x15_c00004{left:626.916426px;}
.xa_c00004{left:636.922670px;}
.x5_c00004{left:648.844825px;}
.xb_c00004{left:653.112122px;}
.x10_c00004{left:660.020331px;}
.x8_c00004{left:662.815263px;}
.xd_c00004{left:667.526192px;}
.x7_c00004{left:674.821114px;}
.x11_c00004{left:706.848454px;}
.x9_c00004{left:713.440261px;}
.x3_c00004{left:734.520603px;}
.x4_c00004{left:773.297945px;}
.x2_c00004{left:801.475678px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls2_c00004{letter-spacing:0.000000pt;}
.ls1_c00004{letter-spacing:0.903480pt;}
.ls0_c00004{letter-spacing:0.908241pt;}
.ws0_c00004{word-spacing:-10.988879pt;}
.ws1_c00004{word-spacing:-10.538699pt;}
.ws2_c00004{word-spacing:0.000000pt;}
._1_c00004{margin-left:-2.693610pt;}
._0_c00004{margin-left:-1.122757pt;}
._2_c00004{width:0.956825pt;}
._3_c00004{width:8.917035pt;}
.fs2_c00004{font-size:42.666796pt;}
.fs1_c00004{font-size:42.673599pt;}
.fs0_c00004{font-size:50.639997pt;}
.y0_c00004{bottom:0.000000pt;}
.y1_c00004{bottom:0.000007pt;}
.y2f_c00004{bottom:65.892823pt;}
.y2e_c00004{bottom:80.117356pt;}
.y2d_c00004{bottom:94.341889pt;}
.y2c_c00004{bottom:108.566422pt;}
.y2b_c00004{bottom:122.790955pt;}
.y32_c00004{bottom:178.659057pt;}
.y31_c00004{bottom:192.881322pt;}
.y30_c00004{bottom:207.103587pt;}
.y2a_c00004{bottom:235.757494pt;}
.y29_c00004{bottom:252.757493pt;}
.y28_c00004{bottom:269.757493pt;}
.y27_c00004{bottom:303.757491pt;}
.y26_c00004{bottom:337.757490pt;}
.y25_c00004{bottom:354.757489pt;}
.y24_c00004{bottom:371.757489pt;}
.y23_c00004{bottom:388.757488pt;}
.y22_c00004{bottom:405.757487pt;}
.y21_c00004{bottom:439.757486pt;}
.y20_c00004{bottom:456.757485pt;}
.y1f_c00004{bottom:473.757484pt;}
.y1e_c00004{bottom:490.757484pt;}
.y33_c00004{bottom:532.807834pt;}
.y8_c00004{bottom:637.024972pt;}
.y7_c00004{bottom:652.024971pt;}
.ya_c00004{bottom:681.875597pt;}
.y16_c00004{bottom:690.845597pt;}
.y9_c00004{bottom:696.875597pt;}
.y15_c00004{bottom:705.845596pt;}
.yc_c00004{bottom:726.725906pt;}
.yb_c00004{bottom:741.725905pt;}
.y18_c00004{bottom:744.665905pt;}
.y17_c00004{bottom:759.665904pt;}
.ye_c00004{bottom:771.576531pt;}
.yd_c00004{bottom:786.576530pt;}
.y1a_c00004{bottom:798.486840pt;}
.y19_c00004{bottom:813.486840pt;}
.y10_c00004{bottom:816.426840pt;}
.yf_c00004{bottom:831.426839pt;}
.y1c_c00004{bottom:852.307465pt;}
.y12_c00004{bottom:861.277465pt;}
.y1b_c00004{bottom:867.307465pt;}
.y11_c00004{bottom:876.277464pt;}
.y14_c00004{bottom:906.127773pt;}
.y13_c00004{bottom:921.127773pt;}
.y6_c00004{bottom:953.684024pt;}
.y5_c00004{bottom:969.684024pt;}
.y4_c00004{bottom:1001.684022pt;}
.y3_c00004{bottom:1017.684022pt;}
.y2_c00004{bottom:1066.117143pt;}
.y1d_c00004{bottom:1068.525267pt;}
.h8_c00004{height:32.421933pt;}
.h7_c00004{height:38.826784pt;}
.h4_c00004{height:39.144718pt;}
.h6_c00004{height:39.735621pt;}
.h3_c00004{height:40.005598pt;}
.h5_c00004{height:46.082397pt;}
.h2_c00004{height:1159.999952pt;}
.h0_c00004{height:1159.999959pt;}
.h1_c00004{height:1160.000000pt;}
.w2_c00004{width:830.999965pt;}
.w0_c00004{width:831.000000pt;}
.w1_c00004{width:831.333333pt;}
.x0_c00004{left:0.000000pt;}
.x13_c00004{left:78.135686pt;}
.x17_c00004{left:101.073697pt;}
.x18_c00004{left:113.256231pt;}
.x19_c00004{left:123.674591pt;}
.x1b_c00004{left:198.261397pt;}
.x14_c00004{left:202.118430pt;}
.x1a_c00004{left:298.314071pt;}
.x1d_c00004{left:341.766821pt;}
.x16_c00004{left:351.155988pt;}
.x1c_c00004{left:371.331369pt;}
.x6_c00004{left:476.294121pt;}
.xe_c00004{left:506.872245pt;}
.x1_c00004{left:511.174587pt;}
.xc_c00004{left:513.856619pt;}
.x12_c00004{left:551.481613pt;}
.xf_c00004{left:554.778493pt;}
.x15_c00004{left:557.259045pt;}
.xa_c00004{left:566.153484pt;}
.x5_c00004{left:576.750956pt;}
.xb_c00004{left:580.544109pt;}
.x10_c00004{left:586.684739pt;}
.x8_c00004{left:589.169122pt;}
.xd_c00004{left:593.356615pt;}
.x7_c00004{left:599.840990pt;}
.x11_c00004{left:628.309737pt;}
.x9_c00004{left:634.169121pt;}
.x3_c00004{left:652.907203pt;}
.x4_c00004{left:687.375951pt;}
.x2_c00004{left:712.422825pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00005{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
}
.y0_c00005{bottom:0.000000px;}
.h0_c00005{height:1304.999953px;}
.h1_c00005{height:1305.000000px;}
.w0_c00005{width:934.875000px;}
.w1_c00005{width:935.250000px;}
.x0_c00005{left:0.000000px;}
@media print{
.y0_c00005{bottom:0.000000pt;}
.h0_c00005{height:1159.999959pt;}
.h1_c00005{height:1160.000000pt;}
.w0_c00005{width:831.000000pt;}
.w1_c00005{width:831.333333pt;}
.x0_c00005{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_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_80af5e198fa5637014e4882e.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:0.938000;font-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_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);}
.v0_c00006{vertical-align:0.000000px;}
.ls0_c00006{letter-spacing:0.000000px;}
.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;}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:179.955002px;}
.y0_c00006{bottom:0.000000px;}
.y1_c00006{bottom:0.000008px;}
.y2_c00006{bottom:710.795008px;}
.y3_c00006{bottom:1179.895732px;}
.h3_c00006{height:131.907016px;}
.h2_c00006{height:1304.999946px;}
.h0_c00006{height:1304.999953px;}
.h1_c00006{height:1305.000000px;}
.w2_c00006{width:934.874961px;}
.w0_c00006{width:934.875000px;}
.w1_c00006{width:935.250000px;}
.x0_c00006{left:0.000000px;}
.x2_c00006{left:258.930055px;}
.x1_c00006{left:280.558114px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:0.000000pt;}
.fs0_c00006{font-size:159.960001pt;}
.y0_c00006{bottom:0.000000pt;}
.y1_c00006{bottom:0.000007pt;}
.y2_c00006{bottom:631.817785pt;}
.y3_c00006{bottom:1048.796206pt;}
.h3_c00006{height:117.250681pt;}
.h2_c00006{height:1159.999952pt;}
.h0_c00006{height:1159.999959pt;}
.h1_c00006{height:1160.000000pt;}
.w2_c00006{width:830.999965pt;}
.w0_c00006{width:831.000000pt;}
.w1_c00006{width:831.333333pt;}
.x0_c00006{left:0.000000pt;}
.x2_c00006{left:230.160049pt;}
.x1_c00006{left:249.384990pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00007{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
}
.y0_c00007{bottom:0.000000px;}
.h0_c00007{height:1304.999953px;}
.h1_c00007{height:1305.000000px;}
.w0_c00007{width:934.875000px;}
.w1_c00007{width:935.250000px;}
.x0_c00007{left:0.000000px;}
@media print{
.y0_c00007{bottom:0.000000pt;}
.h0_c00007{height:1159.999959pt;}
.h1_c00007{height:1160.000000pt;}
.w0_c00007{width:831.000000pt;}
.w1_c00007{width:831.333333pt;}
.x0_c00007{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_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_b6158335e68635145bd62e73.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:0.956055;font-style:normal;font-weight:normal;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_219ed3fcd980da1f1db1a61d.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:0.719727;font-style:normal;font-weight:normal;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_42b7d3d10fc54e0326974259.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:0.699707;font-style:normal;font-weight:normal;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_6de6add0f0affc103e1ebe50.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:0.699707;font-style:normal;font-weight: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_c00008;src:url('chunks/assets/font_62284309d9e653e0a3179656.woff2')format("woff");}.ff5_c00008{font-family:ff5_c00008;line-height:1.175000;font-style:normal;font-weight: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_c00008;src:url('chunks/assets/font_178018b78f9c70cb507df19e.woff2')format("woff");}.ff6_c00008{font-family:ff6_c00008;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:ff7_c00008;src:url('chunks/assets/font_633d8f15410553382aea9220.woff2')format("woff");}.ff7_c00008{font-family:ff7_c00008;line-height:0.990000;font-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_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);}
.v0_c00008{vertical-align:0.000000px;}
.ls1_c00008{letter-spacing:0.000000px;}
.ls0_c00008{letter-spacing:2.933766px;}
.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:-23.058896px;}
.ws1_c00008{word-spacing:0.000000px;}
._1_c00008{width:1.296072px;}
._0_c00008{width:2.874098px;}
.fc0_c00008{color:rgb(255,255,255);}
.fs1_c00008{font-size:71.999997px;}
.fs0_c00008{font-size:95.984996px;}
.y0_c00008{bottom:0.000000px;}
.y1_c00008{bottom:0.000008px;}
.y13_c00008{bottom:248.148972px;}
.y12_c00008{bottom:280.773971px;}
.y11_c00008{bottom:313.398970px;}
.y10_c00008{bottom:346.023968px;}
.yf_c00008{bottom:378.648967px;}
.ye_c00008{bottom:411.273966px;}
.yd_c00008{bottom:443.898964px;}
.yc_c00008{bottom:476.523963px;}
.yb_c00008{bottom:509.148962px;}
.ya_c00008{bottom:541.773960px;}
.y9_c00008{bottom:574.398959px;}
.y8_c00008{bottom:607.023958px;}
.y7_c00008{bottom:639.648956px;}
.y6_c00008{bottom:672.273955px;}
.y5_c00008{bottom:704.898953px;}
.y4_c00008{bottom:737.523952px;}
.y3_c00008{bottom:770.148951px;}
.y2_c00008{bottom:824.088832px;}
.y16_c00008{bottom:943.599334px;}
.y15_c00008{bottom:976.224333px;}
.y14_c00008{bottom:1030.165269px;}
.y18_c00008{bottom:1145.176123px;}
.y17_c00008{bottom:1197.132488px;}
.h5_c00008{height:67.301980px;}
.h3_c00008{height:67.583186px;}
.h4_c00008{height:67.823997px;}
.h2_c00008{height:1304.999946px;}
.h0_c00008{height:1304.999953px;}
.h1_c00008{height:1305.000000px;}
.w2_c00008{width:934.874961px;}
.w0_c00008{width:934.875000px;}
.w1_c00008{width:935.250000px;}
.x0_c00008{left:0.000000px;}
.x1_c00008{left:93.543307px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls1_c00008{letter-spacing:0.000000pt;}
.ls0_c00008{letter-spacing:2.607792pt;}
.ws0_c00008{word-spacing:-20.496796pt;}
.ws1_c00008{word-spacing:0.000000pt;}
._1_c00008{width:1.152064pt;}
._0_c00008{width:2.554753pt;}
.fs1_c00008{font-size:63.999997pt;}
.fs0_c00008{font-size:85.319996pt;}
.y0_c00008{bottom:0.000000pt;}
.y1_c00008{bottom:0.000007pt;}
.y13_c00008{bottom:220.576864pt;}
.y12_c00008{bottom:249.576863pt;}
.y11_c00008{bottom:278.576862pt;}
.y10_c00008{bottom:307.576861pt;}
.yf_c00008{bottom:336.576860pt;}
.ye_c00008{bottom:365.576858pt;}
.yd_c00008{bottom:394.576857pt;}
.yc_c00008{bottom:423.576856pt;}
.yb_c00008{bottom:452.576855pt;}
.ya_c00008{bottom:481.576854pt;}
.y9_c00008{bottom:510.576852pt;}
.y8_c00008{bottom:539.576851pt;}
.y7_c00008{bottom:568.576850pt;}
.y6_c00008{bottom:597.576849pt;}
.y5_c00008{bottom:626.576847pt;}
.y4_c00008{bottom:655.576846pt;}
.y3_c00008{bottom:684.576845pt;}
.y2_c00008{bottom:732.523406pt;}
.y16_c00008{bottom:838.754963pt;}
.y15_c00008{bottom:867.754962pt;}
.y14_c00008{bottom:915.702461pt;}
.y18_c00008{bottom:1017.934332pt;}
.y17_c00008{bottom:1064.117767pt;}
.h5_c00008{height:59.823982pt;}
.h3_c00008{height:60.073943pt;}
.h4_c00008{height:60.287997pt;}
.h2_c00008{height:1159.999952pt;}
.h0_c00008{height:1159.999959pt;}
.h1_c00008{height:1160.000000pt;}
.w2_c00008{width:830.999965pt;}
.w0_c00008{width:831.000000pt;}
.w1_c00008{width:831.333333pt;}
.x0_c00008{left:0.000000pt;}
.x1_c00008{left:83.149606pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0aa5d378ec7e235e3b5148b.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:0.888000;font-style:normal;font-weight:normal;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_bd09ed860cb87d45136dee18.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:0.905273;font-style:normal;font-weight:normal;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_245aaa9b9d7757fede48cf40.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.171387;font-style:normal;font-weight:normal;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_9b49594bcb6f6e3c40e4fe1d.woff2')format("woff");}.ff4_c00009{font-family:ff4_c00009;line-height:0.965000;font-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_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);}
.v0_c00009{vertical-align:0.000000px;}
.ls0_c00009{letter-spacing:0.000000px;}
.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:-184.319992px;}
.ws1_c00009{word-spacing:0.000000px;}
._1_c00009{width:1.795737px;}
._f_c00009{width:2.801267px;}
._2_c00009{width:3.808788px;}
._8_c00009{width:5.093071px;}
._3_c00009{width:6.098724px;}
._6_c00009{width:7.450535px;}
._5_c00009{width:8.471075px;}
._7_c00009{width:9.757019px;}
._0_c00009{width:10.799739px;}
._11_c00009{width:12.090907px;}
._b_c00009{width:15.303894px;}
._13_c00009{width:16.618990px;}
._10_c00009{width:17.640567px;}
._4_c00009{width:19.208980px;}
._a_c00009{width:21.207711px;}
._9_c00009{width:22.231024px;}
._c_c00009{width:23.494925px;}
._e_c00009{width:24.848225px;}
._d_c00009{width:25.881131px;}
._16_c00009{width:27.484004px;}
._15_c00009{width:30.764209px;}
._14_c00009{width:32.479627px;}
._17_c00009{width:33.690858px;}
._12_c00009{width:36.601881px;}
.fc0_c00009{color:rgb(255,255,255);}
.fs2_c00009{font-size:50.957656px;}
.fs4_c00009{font-size:50.999898px;}
.fs1_c00009{font-size:59.984997px;}
.fs3_c00009{font-size:119.969995px;}
.fs0_c00009{font-size:359.999985px;}
.y0_c00009{bottom:0.000000px;}
.y1_c00009{bottom:0.000008px;}
.y3e_c00009{bottom:74.680026px;}
.y3d_c00009{bottom:91.679992px;}
.y3c_c00009{bottom:108.679958px;}
.y3b_c00009{bottom:125.679924px;}
.y3a_c00009{bottom:142.679890px;}
.y39_c00009{bottom:159.679856px;}
.y38_c00009{bottom:176.679822px;}
.y37_c00009{bottom:193.679788px;}
.y36_c00009{bottom:210.679754px;}
.y35_c00009{bottom:227.679720px;}
.y34_c00009{bottom:244.679686px;}
.y33_c00009{bottom:261.679652px;}
.y32_c00009{bottom:278.679618px;}
.y31_c00009{bottom:295.679584px;}
.y30_c00009{bottom:312.679550px;}
.y2f_c00009{bottom:329.679515px;}
.y2e_c00009{bottom:346.679481px;}
.y2d_c00009{bottom:363.679447px;}
.y2c_c00009{bottom:380.679413px;}
.y2b_c00009{bottom:397.679379px;}
.y2a_c00009{bottom:414.679345px;}
.y29_c00009{bottom:431.679311px;}
.y28_c00009{bottom:448.679277px;}
.y27_c00009{bottom:465.679243px;}
.y3_c00009{bottom:482.535700px;}
.y26_c00009{bottom:482.679209px;}
.y25_c00009{bottom:499.679175px;}
.y24_c00009{bottom:516.679141px;}
.y23_c00009{bottom:533.679107px;}
.y22_c00009{bottom:550.679073px;}
.y21_c00009{bottom:567.679039px;}
.y20_c00009{bottom:584.679005px;}
.y1f_c00009{bottom:601.678971px;}
.y1e_c00009{bottom:618.678937px;}
.y1d_c00009{bottom:635.678903px;}
.y1c_c00009{bottom:662.829236px;}
.y1a_c00009{bottom:707.797724px;}
.y19_c00009{bottom:724.797776px;}
.y18_c00009{bottom:741.797829px;}
.y17_c00009{bottom:758.797881px;}
.y16_c00009{bottom:775.797934px;}
.y15_c00009{bottom:792.797986px;}
.y14_c00009{bottom:809.798038px;}
.y13_c00009{bottom:826.798091px;}
.y12_c00009{bottom:843.798143px;}
.y11_c00009{bottom:860.798195px;}
.y10_c00009{bottom:877.798248px;}
.yf_c00009{bottom:894.798300px;}
.ye_c00009{bottom:911.798352px;}
.y4_c00009{bottom:920.017578px;}
.yd_c00009{bottom:928.798405px;}
.yc_c00009{bottom:945.798457px;}
.yb_c00009{bottom:962.798509px;}
.ya_c00009{bottom:979.798562px;}
.y9_c00009{bottom:996.798614px;}
.y8_c00009{bottom:1013.798666px;}
.y7_c00009{bottom:1030.798719px;}
.y6_c00009{bottom:1047.798771px;}
.y5_c00009{bottom:1064.798823px;}
.y1b_c00009{bottom:1096.328978px;}
.y2_c00009{bottom:1167.211006px;}
.h4_c00009{height:43.494981px;}
.h5_c00009{height:47.449341px;}
.h7_c00009{height:47.488674px;}
.h6_c00009{height:92.736806px;}
.h3_c00009{height:259.919989px;}
.h2_c00009{height:1304.999946px;}
.h0_c00009{height:1304.999953px;}
.h1_c00009{height:1305.000000px;}
.w2_c00009{width:934.874961px;}
.w0_c00009{width:934.875000px;}
.w1_c00009{width:935.250000px;}
.x0_c00009{left:0.000000px;}
.x3_c00009{left:129.455293px;}
.x2_c00009{left:133.696542px;}
.x1_c00009{left:182.209311px;}
.x4_c00009{left:296.934201px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws0_c00009{word-spacing:-163.839993pt;}
.ws1_c00009{word-spacing:0.000000pt;}
._1_c00009{width:1.596211pt;}
._f_c00009{width:2.490016pt;}
._2_c00009{width:3.385589pt;}
._8_c00009{width:4.527175pt;}
._3_c00009{width:5.421088pt;}
._6_c00009{width:6.622698pt;}
._5_c00009{width:7.529844pt;}
._7_c00009{width:8.672906pt;}
._0_c00009{width:9.599768pt;}
._11_c00009{width:10.747473pt;}
._b_c00009{width:13.603462pt;}
._13_c00009{width:14.772436pt;}
._10_c00009{width:15.680504pt;}
._4_c00009{width:17.074649pt;}
._a_c00009{width:18.851298pt;}
._9_c00009{width:19.760910pt;}
._c_c00009{width:20.884378pt;}
._e_c00009{width:22.087311pt;}
._d_c00009{width:23.005450pt;}
._16_c00009{width:24.430226pt;}
._15_c00009{width:27.345963pt;}
._14_c00009{width:28.870780pt;}
._17_c00009{width:29.947430pt;}
._12_c00009{width:32.535006pt;}
.fs2_c00009{font-size:45.295694pt;}
.fs4_c00009{font-size:45.333243pt;}
.fs1_c00009{font-size:53.319997pt;}
.fs3_c00009{font-size:106.639996pt;}
.fs0_c00009{font-size:319.999987pt;}
.y0_c00009{bottom:0.000000pt;}
.y1_c00009{bottom:0.000007pt;}
.y3e_c00009{bottom:66.382246pt;}
.y3d_c00009{bottom:81.493326pt;}
.y3c_c00009{bottom:96.604407pt;}
.y3b_c00009{bottom:111.715488pt;}
.y3a_c00009{bottom:126.826569pt;}
.y39_c00009{bottom:141.937650pt;}
.y38_c00009{bottom:157.048731pt;}
.y37_c00009{bottom:172.159811pt;}
.y36_c00009{bottom:187.270892pt;}
.y35_c00009{bottom:202.381973pt;}
.y34_c00009{bottom:217.493054pt;}
.y33_c00009{bottom:232.604135pt;}
.y32_c00009{bottom:247.715216pt;}
.y31_c00009{bottom:262.826297pt;}
.y30_c00009{bottom:277.937377pt;}
.y2f_c00009{bottom:293.048458pt;}
.y2e_c00009{bottom:308.159539pt;}
.y2d_c00009{bottom:323.270620pt;}
.y2c_c00009{bottom:338.381701pt;}
.y2b_c00009{bottom:353.492782pt;}
.y2a_c00009{bottom:368.603862pt;}
.y29_c00009{bottom:383.714943pt;}
.y28_c00009{bottom:398.826024pt;}
.y27_c00009{bottom:413.937105pt;}
.y3_c00009{bottom:428.920622pt;}
.y26_c00009{bottom:429.048186pt;}
.y25_c00009{bottom:444.159267pt;}
.y24_c00009{bottom:459.270347pt;}
.y23_c00009{bottom:474.381428pt;}
.y22_c00009{bottom:489.492509pt;}
.y21_c00009{bottom:504.603590pt;}
.y20_c00009{bottom:519.714671pt;}
.y1f_c00009{bottom:534.825752pt;}
.y1e_c00009{bottom:549.936833pt;}
.y1d_c00009{bottom:565.047913pt;}
.y1c_c00009{bottom:589.181543pt;}
.y1a_c00009{bottom:629.153533pt;}
.y19_c00009{bottom:644.264690pt;}
.y18_c00009{bottom:659.375848pt;}
.y17_c00009{bottom:674.487005pt;}
.y16_c00009{bottom:689.598163pt;}
.y15_c00009{bottom:704.709321pt;}
.y14_c00009{bottom:719.820478pt;}
.y13_c00009{bottom:734.931636pt;}
.y12_c00009{bottom:750.042794pt;}
.y11_c00009{bottom:765.153951pt;}
.y10_c00009{bottom:780.265109pt;}
.yf_c00009{bottom:795.376267pt;}
.ye_c00009{bottom:810.487424pt;}
.y4_c00009{bottom:817.793403pt;}
.yd_c00009{bottom:825.598582pt;}
.yc_c00009{bottom:840.709740pt;}
.yb_c00009{bottom:855.820897pt;}
.ya_c00009{bottom:870.932055pt;}
.y9_c00009{bottom:886.043212pt;}
.y8_c00009{bottom:901.154370pt;}
.y7_c00009{bottom:916.265528pt;}
.y6_c00009{bottom:931.376685pt;}
.y5_c00009{bottom:946.487843pt;}
.y1b_c00009{bottom:974.514647pt;}
.y2_c00009{bottom:1037.520894pt;}
.h4_c00009{height:38.662205pt;}
.h5_c00009{height:42.177192pt;}
.h7_c00009{height:42.212155pt;}
.h6_c00009{height:82.432717pt;}
.h3_c00009{height:231.039990pt;}
.h2_c00009{height:1159.999952pt;}
.h0_c00009{height:1159.999959pt;}
.h1_c00009{height:1160.000000pt;}
.w2_c00009{width:830.999965pt;}
.w0_c00009{width:831.000000pt;}
.w1_c00009{width:831.333333pt;}
.x0_c00009{left:0.000000pt;}
.x3_c00009{left:115.071371pt;}
.x2_c00009{left:118.841371pt;}
.x1_c00009{left:161.963832pt;}
.x4_c00009{left:263.941512pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbf30634b92a24e3395cec8c.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.000000;font-style:normal;font-weight:normal;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_d311dd00902dc0399494f6be.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_75466dd8fd2336370c3035b9.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.171387;font-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_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);}
.v0_c00010{vertical-align:0.000000px;}
.ls0_c00010{letter-spacing:0.000000px;}
.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;}
._0_c00010{width:1.821484px;}
._1_c00010{width:3.590877px;}
._3_c00010{width:4.699544px;}
._a_c00010{width:6.427883px;}
._8_c00010{width:7.450787px;}
._4_c00010{width:8.495061px;}
._d_c00010{width:10.164055px;}
._c_c00010{width:11.332406px;}
._6_c00010{width:14.318231px;}
._10_c00010{width:15.323715px;}
._11_c00010{width:16.335669px;}
._7_c00010{width:17.418047px;}
._2_c00010{width:18.876327px;}
._15_c00010{width:19.993804px;}
._16_c00010{width:21.088520px;}
._5_c00010{width:22.192962px;}
._b_c00010{width:23.457045px;}
._14_c00010{width:26.964590px;}
._12_c00010{width:29.503758px;}
._9_c00010{width:30.507926px;}
._13_c00010{width:36.855650px;}
._f_c00010{width:51.325763px;}
._e_c00010{width:52.848681px;}
.fc0_c00010{color:rgb(255,255,255);}
.fs4_c00010{font-size:50.957335px;}
.fs2_c00010{font-size:50.957456px;}
.fs3_c00010{font-size:58.100576px;}
.fs0_c00010{font-size:60.847084px;}
.fs1_c00010{font-size:119.969995px;}
.y0_c00010{bottom:0.000000px;}
.y1_c00010{bottom:0.000008px;}
.y1b_c00010{bottom:66.677696px;}
.y1a_c00010{bottom:83.677682px;}
.y19_c00010{bottom:100.677667px;}
.y18_c00010{bottom:117.677653px;}
.y17_c00010{bottom:134.677638px;}
.y16_c00010{bottom:151.677624px;}
.y15_c00010{bottom:168.677609px;}
.y14_c00010{bottom:185.677595px;}
.y13_c00010{bottom:202.677580px;}
.y12_c00010{bottom:219.677566px;}
.y11_c00010{bottom:236.677551px;}
.y10_c00010{bottom:253.677537px;}
.yf_c00010{bottom:270.677522px;}
.ye_c00010{bottom:287.677508px;}
.yd_c00010{bottom:304.677493px;}
.y2_c00010{bottom:308.543589px;}
.yc_c00010{bottom:321.677479px;}
.yb_c00010{bottom:338.677465px;}
.ya_c00010{bottom:355.677450px;}
.y9_c00010{bottom:372.677436px;}
.y8_c00010{bottom:389.677421px;}
.y7_c00010{bottom:406.677407px;}
.y6_c00010{bottom:423.677392px;}
.y5_c00010{bottom:440.677378px;}
.y4_c00010{bottom:457.677363px;}
.y3_c00010{bottom:489.327352px;}
.y3c_c00010{bottom:551.922063px;}
.y3b_c00010{bottom:568.922008px;}
.y3a_c00010{bottom:585.921954px;}
.y39_c00010{bottom:602.921899px;}
.y38_c00010{bottom:619.921844px;}
.y37_c00010{bottom:636.921789px;}
.y36_c00010{bottom:653.921734px;}
.y35_c00010{bottom:670.921680px;}
.y34_c00010{bottom:687.921625px;}
.y33_c00010{bottom:704.921570px;}
.y32_c00010{bottom:721.921515px;}
.y31_c00010{bottom:738.921460px;}
.y30_c00010{bottom:755.921406px;}
.y2f_c00010{bottom:772.921351px;}
.y2e_c00010{bottom:789.921296px;}
.y2d_c00010{bottom:806.921241px;}
.y2c_c00010{bottom:823.921187px;}
.y2b_c00010{bottom:840.921132px;}
.y2a_c00010{bottom:857.921077px;}
.y29_c00010{bottom:874.921022px;}
.y28_c00010{bottom:891.920967px;}
.y27_c00010{bottom:908.920913px;}
.y26_c00010{bottom:925.920858px;}
.y1c_c00010{bottom:926.891773px;}
.y25_c00010{bottom:942.920803px;}
.y24_c00010{bottom:959.920748px;}
.y23_c00010{bottom:976.920693px;}
.y22_c00010{bottom:993.920639px;}
.y21_c00010{bottom:1010.920584px;}
.y20_c00010{bottom:1027.920529px;}
.y1f_c00010{bottom:1044.920474px;}
.y1e_c00010{bottom:1061.920420px;}
.y1d_c00010{bottom:1100.904189px;}
.h6_c00010{height:44.142820px;}
.h3_c00010{height:46.229523px;}
.h7_c00010{height:47.449042px;}
.h5_c00010{height:47.449154px;}
.h4_c00010{height:92.736806px;}
.h2_c00010{height:1304.999946px;}
.h0_c00010{height:1304.999953px;}
.h1_c00010{height:1305.000000px;}
.w2_c00010{width:934.874961px;}
.w0_c00010{width:934.875000px;}
.w1_c00010{width:935.250000px;}
.x0_c00010{left:0.000000px;}
.x3_c00010{left:142.447537px;}
.x1_c00010{left:148.046675px;}
.x2_c00010{left:303.575963px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws0_c00010{word-spacing:0.000000pt;}
._0_c00010{width:1.619097pt;}
._1_c00010{width:3.191891pt;}
._3_c00010{width:4.177372pt;}
._a_c00010{width:5.713674pt;}
._8_c00010{width:6.622922pt;}
._4_c00010{width:7.551165pt;}
._d_c00010{width:9.034716pt;}
._c_c00010{width:10.073250pt;}
._6_c00010{width:12.727317pt;}
._10_c00010{width:13.621080pt;}
._11_c00010{width:14.520595pt;}
._7_c00010{width:15.482709pt;}
._2_c00010{width:16.778957pt;}
._15_c00010{width:17.772270pt;}
._16_c00010{width:18.745351pt;}
._5_c00010{width:19.727078pt;}
._b_c00010{width:20.850707pt;}
._14_c00010{width:23.968524pt;}
._12_c00010{width:26.225562pt;}
._9_c00010{width:27.118156pt;}
._13_c00010{width:32.760578pt;}
._f_c00010{width:45.622901pt;}
._e_c00010{width:46.976605pt;}
.fs4_c00010{font-size:45.295409pt;}
.fs2_c00010{font-size:45.295516pt;}
.fs3_c00010{font-size:51.644956pt;}
.fs0_c00010{font-size:54.086297pt;}
.fs1_c00010{font-size:106.639996pt;}
.y0_c00010{bottom:0.000000pt;}
.y1_c00010{bottom:0.000007pt;}
.y1b_c00010{bottom:59.269063pt;}
.y1a_c00010{bottom:74.380161pt;}
.y19_c00010{bottom:89.491260pt;}
.y18_c00010{bottom:104.602358pt;}
.y17_c00010{bottom:119.713456pt;}
.y16_c00010{bottom:134.824554pt;}
.y15_c00010{bottom:149.935653pt;}
.y14_c00010{bottom:165.046751pt;}
.y13_c00010{bottom:180.157849pt;}
.y12_c00010{bottom:195.268947pt;}
.y11_c00010{bottom:210.380046pt;}
.y10_c00010{bottom:225.491144pt;}
.yf_c00010{bottom:240.602242pt;}
.ye_c00010{bottom:255.713340pt;}
.yd_c00010{bottom:270.824439pt;}
.y2_c00010{bottom:274.260968pt;}
.yc_c00010{bottom:285.935537pt;}
.yb_c00010{bottom:301.046635pt;}
.ya_c00010{bottom:316.157733pt;}
.y9_c00010{bottom:331.268832pt;}
.y8_c00010{bottom:346.379930pt;}
.y7_c00010{bottom:361.491028pt;}
.y6_c00010{bottom:376.602126pt;}
.y5_c00010{bottom:391.713225pt;}
.y4_c00010{bottom:406.824323pt;}
.y3_c00010{bottom:434.957646pt;}
.y3c_c00010{bottom:490.597389pt;}
.y3b_c00010{bottom:505.708452pt;}
.y3a_c00010{bottom:520.819514pt;}
.y39_c00010{bottom:535.930577pt;}
.y38_c00010{bottom:551.041639pt;}
.y37_c00010{bottom:566.152702pt;}
.y36_c00010{bottom:581.263764pt;}
.y35_c00010{bottom:596.374826pt;}
.y34_c00010{bottom:611.485889pt;}
.y33_c00010{bottom:626.596951pt;}
.y32_c00010{bottom:641.708014pt;}
.y31_c00010{bottom:656.819076pt;}
.y30_c00010{bottom:671.930138pt;}
.y2f_c00010{bottom:687.041201pt;}
.y2e_c00010{bottom:702.152263pt;}
.y2d_c00010{bottom:717.263326pt;}
.y2c_c00010{bottom:732.374388pt;}
.y2b_c00010{bottom:747.485450pt;}
.y2a_c00010{bottom:762.596513pt;}
.y29_c00010{bottom:777.707575pt;}
.y28_c00010{bottom:792.818638pt;}
.y27_c00010{bottom:807.929700pt;}
.y26_c00010{bottom:823.040763pt;}
.y1c_c00010{bottom:823.903799pt;}
.y25_c00010{bottom:838.151825pt;}
.y24_c00010{bottom:853.262887pt;}
.y23_c00010{bottom:868.373950pt;}
.y22_c00010{bottom:883.485012pt;}
.y21_c00010{bottom:898.596075pt;}
.y20_c00010{bottom:913.707137pt;}
.y1f_c00010{bottom:928.818199pt;}
.y1e_c00010{bottom:943.929262pt;}
.y1d_c00010{bottom:978.581502pt;}
.h6_c00010{height:39.238062pt;}
.h3_c00010{height:41.092909pt;}
.h7_c00010{height:42.176926pt;}
.h5_c00010{height:42.177026pt;}
.h4_c00010{height:82.432717pt;}
.h2_c00010{height:1159.999952pt;}
.h0_c00010{height:1159.999959pt;}
.h1_c00010{height:1160.000000pt;}
.w2_c00010{width:830.999965pt;}
.w0_c00010{width:831.000000pt;}
.w1_c00010{width:831.333333pt;}
.x0_c00010{left:0.000000pt;}
.x3_c00010{left:126.620033pt;}
.x1_c00010{left:131.597044pt;}
.x2_c00010{left:269.845301pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_363f7327c2ec1bc91ab0be7b.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:0.697000;font-style:normal;font-weight:normal;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_02f4daae1a23a49cd85a18da.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.006348;font-style:normal;font-weight:normal;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_673847427e229e54c8b31a62.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.171387;font-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_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);}
.m1_c00011{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls1_c00011{letter-spacing:0.000000px;}
.ls0_c00011{letter-spacing:1.439945px;}
.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:-99.359996px;}
.ws1_c00011{word-spacing:-13.908733px;}
.ws2_c00011{word-spacing:0.000000px;}
._1_c00011{margin-left:-1.439945px;}
._0_c00011{width:10.799766px;}
.fc0_c00011{color:rgb(255,255,255);}
.fs1_c00011{font-size:48.000145px;}
.fs0_c00011{font-size:359.999985px;}
.y0_c00011{bottom:0.000000px;}
.y1_c00011{bottom:0.000008px;}
.y57_c00011{bottom:68.847356px;}
.y70_c00011{bottom:68.861576px;}
.y56_c00011{bottom:81.847395px;}
.y6f_c00011{bottom:81.861615px;}
.y55_c00011{bottom:94.847435px;}
.y6e_c00011{bottom:94.861655px;}
.y54_c00011{bottom:107.847474px;}
.y6d_c00011{bottom:107.861694px;}
.y53_c00011{bottom:120.847513px;}
.y6c_c00011{bottom:120.861733px;}
.y52_c00011{bottom:154.937248px;}
.y66_c00011{bottom:154.951504px;}
.y51_c00011{bottom:167.937288px;}
.y65_c00011{bottom:167.951544px;}
.y50_c00011{bottom:180.937327px;}
.y64_c00011{bottom:180.951583px;}
.y4f_c00011{bottom:193.937366px;}
.y63_c00011{bottom:193.951622px;}
.y4e_c00011{bottom:206.937406px;}
.y62_c00011{bottom:206.951662px;}
.y4d_c00011{bottom:241.027717px;}
.y61_c00011{bottom:241.041757px;}
.y4c_c00011{bottom:254.027756px;}
.y60_c00011{bottom:254.041796px;}
.y4b_c00011{bottom:267.027795px;}
.y5f_c00011{bottom:267.041835px;}
.y4a_c00011{bottom:280.027835px;}
.y5e_c00011{bottom:280.041875px;}
.y49_c00011{bottom:293.027874px;}
.y5d_c00011{bottom:293.041914px;}
.y48_c00011{bottom:327.117789px;}
.y5c_c00011{bottom:327.132045px;}
.y47_c00011{bottom:340.117828px;}
.y5b_c00011{bottom:340.132084px;}
.y46_c00011{bottom:353.117868px;}
.y5a_c00011{bottom:353.132124px;}
.y45_c00011{bottom:366.117907px;}
.y59_c00011{bottom:366.132163px;}
.y44_c00011{bottom:379.117946px;}
.y58_c00011{bottom:379.132202px;}
.y43_c00011{bottom:413.322665px;}
.y3e_c00011{bottom:413.798513px;}
.y42_c00011{bottom:426.322705px;}
.y3d_c00011{bottom:426.798553px;}
.y41_c00011{bottom:439.322744px;}
.y3c_c00011{bottom:439.798592px;}
.y40_c00011{bottom:452.322784px;}
.y3b_c00011{bottom:452.798632px;}
.y3f_c00011{bottom:465.322823px;}
.y3a_c00011{bottom:465.798671px;}
.y39_c00011{bottom:499.412954px;}
.y25_c00011{bottom:499.888622px;}
.y38_c00011{bottom:512.412993px;}
.y24_c00011{bottom:512.888661px;}
.y37_c00011{bottom:525.413033px;}
.y23_c00011{bottom:525.888701px;}
.y36_c00011{bottom:538.413072px;}
.y22_c00011{bottom:538.888740px;}
.y35_c00011{bottom:551.413111px;}
.y21_c00011{bottom:551.888779px;}
.y34_c00011{bottom:586.325518px;}
.y20_c00011{bottom:586.569526px;}
.y33_c00011{bottom:599.325558px;}
.y1f_c00011{bottom:599.569566px;}
.y32_c00011{bottom:612.325597px;}
.y1e_c00011{bottom:612.569605px;}
.y31_c00011{bottom:625.325636px;}
.y1d_c00011{bottom:625.569644px;}
.y30_c00011{bottom:638.325676px;}
.y1c_c00011{bottom:638.569684px;}
.y1b_c00011{bottom:672.659779px;}
.y2f_c00011{bottom:672.673840px;}
.y1a_c00011{bottom:685.659818px;}
.y2e_c00011{bottom:685.673880px;}
.y19_c00011{bottom:698.659857px;}
.y2d_c00011{bottom:698.673919px;}
.y18_c00011{bottom:711.659897px;}
.y2c_c00011{bottom:711.673958px;}
.y17_c00011{bottom:724.659936px;}
.y2b_c00011{bottom:724.673998px;}
.y16_c00011{bottom:758.749873px;}
.y15_c00011{bottom:771.749912px;}
.y14_c00011{bottom:784.749951px;}
.y13_c00011{bottom:797.749991px;}
.y12_c00011{bottom:810.750030px;}
.y11_c00011{bottom:844.839967px;}
.y2a_c00011{bottom:849.078052px;}
.y10_c00011{bottom:857.840006px;}
.y29_c00011{bottom:862.078091px;}
.yf_c00011{bottom:870.840045px;}
.y28_c00011{bottom:875.078131px;}
.ye_c00011{bottom:883.840085px;}
.y27_c00011{bottom:888.078170px;}
.yd_c00011{bottom:896.840124px;}
.y26_c00011{bottom:901.078210px;}
.y7_c00011{bottom:930.972775px;}
.yc_c00011{bottom:930.987013px;}
.y6_c00011{bottom:943.972814px;}
.yb_c00011{bottom:943.987052px;}
.y5_c00011{bottom:956.972853px;}
.ya_c00011{bottom:956.987091px;}
.y4_c00011{bottom:969.972893px;}
.y9_c00011{bottom:969.987131px;}
.y3_c00011{bottom:982.972932px;}
.y8_c00011{bottom:982.987170px;}
.y6b_c00011{bottom:1020.452283px;}
.y6a_c00011{bottom:1033.452322px;}
.y69_c00011{bottom:1046.452362px;}
.y68_c00011{bottom:1059.452401px;}
.y67_c00011{bottom:1072.452440px;}
.y2_c00011{bottom:1150.014592px;}
.h4_c00011{height:36.773549px;}
.h5_c00011{height:44.695448px;}
.h3_c00011{height:246.959990px;}
.h2_c00011{height:1304.999946px;}
.h0_c00011{height:1304.999953px;}
.h1_c00011{height:1305.000000px;}
.w2_c00011{width:934.874961px;}
.w0_c00011{width:934.875000px;}
.w1_c00011{width:935.250000px;}
.x0_c00011{left:0.000000px;}
.x2_c00011{left:87.902647px;}
.x1_c00011{left:310.145239px;}
.x3_c00011{left:491.919985px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls1_c00011{letter-spacing:0.000000pt;}
.ls0_c00011{letter-spacing:1.279952pt;}
.ws0_c00011{word-spacing:-88.319996pt;}
.ws1_c00011{word-spacing:-12.363319pt;}
.ws2_c00011{word-spacing:0.000000pt;}
._1_c00011{margin-left:-1.279952pt;}
._0_c00011{width:9.599792pt;}
.fs1_c00011{font-size:42.666796pt;}
.fs0_c00011{font-size:319.999987pt;}
.y0_c00011{bottom:0.000000pt;}
.y1_c00011{bottom:0.000007pt;}
.y57_c00011{bottom:61.197650pt;}
.y70_c00011{bottom:61.210290pt;}
.y56_c00011{bottom:72.753240pt;}
.y6f_c00011{bottom:72.765880pt;}
.y55_c00011{bottom:84.308831pt;}
.y6e_c00011{bottom:84.321471pt;}
.y54_c00011{bottom:95.864421pt;}
.y6d_c00011{bottom:95.877061pt;}
.y53_c00011{bottom:107.420012pt;}
.y6c_c00011{bottom:107.432652pt;}
.y52_c00011{bottom:137.721998pt;}
.y66_c00011{bottom:137.734670pt;}
.y51_c00011{bottom:149.277589pt;}
.y65_c00011{bottom:149.290261pt;}
.y50_c00011{bottom:160.833180pt;}
.y64_c00011{bottom:160.845852pt;}
.y4f_c00011{bottom:172.388770pt;}
.y63_c00011{bottom:172.401442pt;}
.y4e_c00011{bottom:183.944361pt;}
.y62_c00011{bottom:183.957033pt;}
.y4d_c00011{bottom:214.246859pt;}
.y61_c00011{bottom:214.259339pt;}
.y4c_c00011{bottom:225.802450pt;}
.y60_c00011{bottom:225.814930pt;}
.y4b_c00011{bottom:237.358040pt;}
.y5f_c00011{bottom:237.370520pt;}
.y4a_c00011{bottom:248.913631pt;}
.y5e_c00011{bottom:248.926111pt;}
.y49_c00011{bottom:260.469221pt;}
.y5d_c00011{bottom:260.481701pt;}
.y48_c00011{bottom:290.771368pt;}
.y5c_c00011{bottom:290.784040pt;}
.y47_c00011{bottom:302.326959pt;}
.y5b_c00011{bottom:302.339631pt;}
.y46_c00011{bottom:313.882549pt;}
.y5a_c00011{bottom:313.895221pt;}
.y45_c00011{bottom:325.438140pt;}
.y59_c00011{bottom:325.450812pt;}
.y44_c00011{bottom:336.993730pt;}
.y58_c00011{bottom:337.006402pt;}
.y43_c00011{bottom:367.397925pt;}
.y3e_c00011{bottom:367.820901pt;}
.y42_c00011{bottom:378.953515pt;}
.y3d_c00011{bottom:379.376491pt;}
.y41_c00011{bottom:390.509106pt;}
.y3c_c00011{bottom:390.932082pt;}
.y40_c00011{bottom:402.064696pt;}
.y3b_c00011{bottom:402.487672pt;}
.y3f_c00011{bottom:413.620287pt;}
.y3a_c00011{bottom:414.043263pt;}
.y39_c00011{bottom:443.922626pt;}
.y25_c00011{bottom:444.345442pt;}
.y38_c00011{bottom:455.478216pt;}
.y24_c00011{bottom:455.901032pt;}
.y37_c00011{bottom:467.033807pt;}
.y23_c00011{bottom:467.456623pt;}
.y36_c00011{bottom:478.589397pt;}
.y22_c00011{bottom:479.012213pt;}
.y35_c00011{bottom:490.144988pt;}
.y21_c00011{bottom:490.567804pt;}
.y34_c00011{bottom:521.178238pt;}
.y20_c00011{bottom:521.395134pt;}
.y33_c00011{bottom:532.733829pt;}
.y1f_c00011{bottom:532.950725pt;}
.y32_c00011{bottom:544.289420pt;}
.y1e_c00011{bottom:544.506316pt;}
.y31_c00011{bottom:555.845010pt;}
.y1d_c00011{bottom:556.061906pt;}
.y30_c00011{bottom:567.400601pt;}
.y1c_c00011{bottom:567.617497pt;}
.y1b_c00011{bottom:597.919803pt;}
.y2f_c00011{bottom:597.932302pt;}
.y1a_c00011{bottom:609.475394pt;}
.y2e_c00011{bottom:609.487893pt;}
.y19_c00011{bottom:621.030984pt;}
.y2d_c00011{bottom:621.043484pt;}
.y18_c00011{bottom:632.586575pt;}
.y2c_c00011{bottom:632.599074pt;}
.y17_c00011{bottom:644.142165pt;}
.y2b_c00011{bottom:644.154665pt;}
.y16_c00011{bottom:674.444331pt;}
.y15_c00011{bottom:685.999922pt;}
.y14_c00011{bottom:697.555512pt;}
.y13_c00011{bottom:709.111103pt;}
.y12_c00011{bottom:720.666693pt;}
.y11_c00011{bottom:750.968859pt;}
.y2a_c00011{bottom:754.736046pt;}
.y10_c00011{bottom:762.524450pt;}
.y29_c00011{bottom:766.291637pt;}
.yf_c00011{bottom:774.080040pt;}
.y28_c00011{bottom:777.847227pt;}
.ye_c00011{bottom:785.635631pt;}
.y27_c00011{bottom:789.402818pt;}
.yd_c00011{bottom:797.191221pt;}
.y26_c00011{bottom:800.958408pt;}
.y7_c00011{bottom:827.531355pt;}
.yc_c00011{bottom:827.544011pt;}
.y6_c00011{bottom:839.086946pt;}
.yb_c00011{bottom:839.099602pt;}
.y5_c00011{bottom:850.642536pt;}
.ya_c00011{bottom:850.655192pt;}
.y4_c00011{bottom:862.198127pt;}
.y9_c00011{bottom:862.210783pt;}
.y3_c00011{bottom:873.753717pt;}
.y8_c00011{bottom:873.766373pt;}
.y6b_c00011{bottom:907.068696pt;}
.y6a_c00011{bottom:918.624287pt;}
.y69_c00011{bottom:930.179877pt;}
.y68_c00011{bottom:941.735468pt;}
.y67_c00011{bottom:953.291058pt;}
.y2_c00011{bottom:1022.235193pt;}
.h4_c00011{height:32.687599pt;}
.h5_c00011{height:39.729287pt;}
.h3_c00011{height:219.519991pt;}
.h2_c00011{height:1159.999952pt;}
.h0_c00011{height:1159.999959pt;}
.h1_c00011{height:1160.000000pt;}
.w2_c00011{width:830.999965pt;}
.w0_c00011{width:831.000000pt;}
.w1_c00011{width:831.333333pt;}
.x0_c00011{left:0.000000pt;}
.x2_c00011{left:78.135686pt;}
.x1_c00011{left:275.684657pt;}
.x3_c00011{left:437.262209pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fedc04d9ae7a4ea2b213fdc9.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_b3ebd2df55a70849dd3c9e24.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.171387;font-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_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);}
.m1_c00012{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls2_c00012{letter-spacing:0.000000px;}
.ls0_c00012{letter-spacing:1.439946px;}
.ls1_c00012{letter-spacing:1.468754px;}
.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:-13.908734px;}
.ws1_c00012{word-spacing:0.000000px;}
._0_c00012{margin-left:-1.439946px;}
.fc0_c00012{color:rgb(255,255,255);}
.fs0_c00012{font-size:48.000145px;}
.y0_c00012{bottom:0.000000px;}
.y1_c00012{bottom:0.000008px;}
.y3d_c00012{bottom:82.309015px;}
.y4c_c00012{bottom:83.443159px;}
.y3c_c00012{bottom:95.309055px;}
.y4b_c00012{bottom:96.443199px;}
.y3b_c00012{bottom:108.309094px;}
.y4a_c00012{bottom:109.443238px;}
.y3a_c00012{bottom:121.309133px;}
.y49_c00012{bottom:122.443277px;}
.y39_c00012{bottom:134.309173px;}
.y48_c00012{bottom:135.443317px;}
.y47_c00012{bottom:165.876496px;}
.y38_c00012{bottom:166.992676px;}
.y46_c00012{bottom:178.876535px;}
.y37_c00012{bottom:179.992715px;}
.y45_c00012{bottom:191.876574px;}
.y36_c00012{bottom:192.992754px;}
.y44_c00012{bottom:204.876614px;}
.y35_c00012{bottom:205.992794px;}
.y43_c00012{bottom:217.876653px;}
.y34_c00012{bottom:218.992833px;}
.y33_c00012{bottom:250.832604px;}
.y42_c00012{bottom:250.875516px;}
.y32_c00012{bottom:263.832644px;}
.y41_c00012{bottom:263.875556px;}
.y31_c00012{bottom:276.832683px;}
.y40_c00012{bottom:276.875595px;}
.y30_c00012{bottom:289.832722px;}
.y3f_c00012{bottom:289.875634px;}
.y2f_c00012{bottom:302.832762px;}
.y3e_c00012{bottom:302.875674px;}
.y2e_c00012{bottom:334.672893px;}
.y24_c00012{bottom:336.965409px;}
.y2d_c00012{bottom:347.672932px;}
.y23_c00012{bottom:349.965448px;}
.y2c_c00012{bottom:360.672971px;}
.y22_c00012{bottom:362.965487px;}
.y2b_c00012{bottom:373.673011px;}
.y21_c00012{bottom:375.965527px;}
.y2a_c00012{bottom:386.673050px;}
.y20_c00012{bottom:388.965566px;}
.y6a_c00012{bottom:419.680697px;}
.y29_c00012{bottom:420.888641px;}
.y69_c00012{bottom:432.680737px;}
.y28_c00012{bottom:433.888681px;}
.y68_c00012{bottom:445.680776px;}
.y27_c00012{bottom:446.888720px;}
.y67_c00012{bottom:458.680815px;}
.y26_c00012{bottom:459.888759px;}
.y66_c00012{bottom:471.680855px;}
.y25_c00012{bottom:472.888799px;}
.y1f_c00012{bottom:507.021482px;}
.yb_c00012{bottom:507.110762px;}
.y1e_c00012{bottom:520.021521px;}
.ya_c00012{bottom:520.110801px;}
.y1d_c00012{bottom:533.021560px;}
.y9_c00012{bottom:533.110840px;}
.y1c_c00012{bottom:546.021600px;}
.y8_c00012{bottom:546.110880px;}
.y1b_c00012{bottom:559.021639px;}
.y7_c00012{bottom:559.110919px;}
.y60_c00012{bottom:590.693326px;}
.y1a_c00012{bottom:590.778754px;}
.y5f_c00012{bottom:603.693365px;}
.y19_c00012{bottom:603.778793px;}
.y5e_c00012{bottom:616.693405px;}
.y18_c00012{bottom:616.778833px;}
.y5d_c00012{bottom:629.693444px;}
.y17_c00012{bottom:629.778872px;}
.y5c_c00012{bottom:642.693483px;}
.y16_c00012{bottom:642.778911px;}
.y56_c00012{bottom:676.826145px;}
.y15_c00012{bottom:676.869035px;}
.y55_c00012{bottom:689.826184px;}
.y14_c00012{bottom:689.869075px;}
.y54_c00012{bottom:702.826224px;}
.y13_c00012{bottom:702.869114px;}
.y53_c00012{bottom:715.826263px;}
.y12_c00012{bottom:715.869153px;}
.y52_c00012{bottom:728.826302px;}
.y11_c00012{bottom:728.869193px;}
.y10_c00012{bottom:762.958953px;}
.y65_c00012{bottom:767.253641px;}
.yf_c00012{bottom:775.958992px;}
.y64_c00012{bottom:780.253680px;}
.ye_c00012{bottom:788.959032px;}
.y63_c00012{bottom:793.253720px;}
.yd_c00012{bottom:801.959071px;}
.y62_c00012{bottom:806.253759px;}
.yc_c00012{bottom:814.959110px;}
.y61_c00012{bottom:819.253799px;}
.y6_c00012{bottom:849.091765px;}
.y5_c00012{bottom:862.091804px;}
.y4_c00012{bottom:875.091843px;}
.y3_c00012{bottom:888.091883px;}
.y2_c00012{bottom:901.091922px;}
.y5b_c00012{bottom:935.224749px;}
.y5a_c00012{bottom:948.224788px;}
.y59_c00012{bottom:961.224828px;}
.y58_c00012{bottom:974.224867px;}
.y57_c00012{bottom:987.224906px;}
.y6f_c00012{bottom:1021.314843px;}
.y51_c00012{bottom:1021.357557px;}
.y6e_c00012{bottom:1034.314882px;}
.y50_c00012{bottom:1034.357596px;}
.y6d_c00012{bottom:1047.314922px;}
.y4f_c00012{bottom:1047.357636px;}
.y6c_c00012{bottom:1060.314961px;}
.y4e_c00012{bottom:1060.357675px;}
.y6b_c00012{bottom:1073.315000px;}
.y4d_c00012{bottom:1073.357714px;}
.h3_c00012{height:36.773549px;}
.h4_c00012{height:44.695448px;}
.h2_c00012{height:1304.999946px;}
.h0_c00012{height:1304.999953px;}
.h1_c00012{height:1305.000000px;}
.w2_c00012{width:934.874961px;}
.w0_c00012{width:934.875000px;}
.w1_c00012{width:935.250000px;}
.x0_c00012{left:0.000000px;}
.x1_c00012{left:87.902647px;}
.x2_c00012{left:493.747626px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls2_c00012{letter-spacing:0.000000pt;}
.ls0_c00012{letter-spacing:1.279952pt;}
.ls1_c00012{letter-spacing:1.305559pt;}
.ws0_c00012{word-spacing:-12.363319pt;}
.ws1_c00012{word-spacing:0.000000pt;}
._0_c00012{margin-left:-1.279952pt;}
.fs0_c00012{font-size:42.666796pt;}
.y0_c00012{bottom:0.000000pt;}
.y1_c00012{bottom:0.000007pt;}
.y3d_c00012{bottom:73.163569pt;}
.y4c_c00012{bottom:74.171697pt;}
.y3c_c00012{bottom:84.719160pt;}
.y4b_c00012{bottom:85.727288pt;}
.y3b_c00012{bottom:96.274750pt;}
.y4a_c00012{bottom:97.282878pt;}
.y3a_c00012{bottom:107.830341pt;}
.y49_c00012{bottom:108.838469pt;}
.y39_c00012{bottom:119.385931pt;}
.y48_c00012{bottom:120.394059pt;}
.y47_c00012{bottom:147.445774pt;}
.y38_c00012{bottom:148.437934pt;}
.y46_c00012{bottom:159.001365pt;}
.y37_c00012{bottom:159.993525pt;}
.y45_c00012{bottom:170.556955pt;}
.y36_c00012{bottom:171.549115pt;}
.y44_c00012{bottom:182.112546pt;}
.y35_c00012{bottom:183.104706pt;}
.y43_c00012{bottom:193.668136pt;}
.y34_c00012{bottom:194.660296pt;}
.y33_c00012{bottom:222.962315pt;}
.y42_c00012{bottom:223.000459pt;}
.y32_c00012{bottom:234.517905pt;}
.y41_c00012{bottom:234.556049pt;}
.y31_c00012{bottom:246.073496pt;}
.y40_c00012{bottom:246.111640pt;}
.y30_c00012{bottom:257.629086pt;}
.y3f_c00012{bottom:257.667230pt;}
.y2f_c00012{bottom:269.184677pt;}
.y3e_c00012{bottom:269.222821pt;}
.y2e_c00012{bottom:297.487016pt;}
.y24_c00012{bottom:299.524808pt;}
.y2d_c00012{bottom:309.042606pt;}
.y23_c00012{bottom:311.080398pt;}
.y2c_c00012{bottom:320.598197pt;}
.y22_c00012{bottom:322.635989pt;}
.y2b_c00012{bottom:332.153787pt;}
.y21_c00012{bottom:334.191579pt;}
.y2a_c00012{bottom:343.709378pt;}
.y20_c00012{bottom:345.747170pt;}
.y6a_c00012{bottom:373.049509pt;}
.y29_c00012{bottom:374.123237pt;}
.y69_c00012{bottom:384.605099pt;}
.y28_c00012{bottom:385.678827pt;}
.y68_c00012{bottom:396.160690pt;}
.y27_c00012{bottom:397.234418pt;}
.y67_c00012{bottom:407.716280pt;}
.y26_c00012{bottom:408.790008pt;}
.y66_c00012{bottom:419.271871pt;}
.y25_c00012{bottom:420.345599pt;}
.y1f_c00012{bottom:450.685761pt;}
.yb_c00012{bottom:450.765121pt;}
.y1e_c00012{bottom:462.241352pt;}
.ya_c00012{bottom:462.320712pt;}
.y1d_c00012{bottom:473.796942pt;}
.y9_c00012{bottom:473.876302pt;}
.y1c_c00012{bottom:485.352533pt;}
.y8_c00012{bottom:485.431893pt;}
.y1b_c00012{bottom:496.908124pt;}
.y7_c00012{bottom:496.987484pt;}
.y60_c00012{bottom:525.060734pt;}
.y1a_c00012{bottom:525.136670pt;}
.y5f_c00012{bottom:536.616325pt;}
.y19_c00012{bottom:536.692261pt;}
.y5e_c00012{bottom:548.171915pt;}
.y18_c00012{bottom:548.247851pt;}
.y5d_c00012{bottom:559.727506pt;}
.y17_c00012{bottom:559.803442pt;}
.y5c_c00012{bottom:571.283096pt;}
.y16_c00012{bottom:571.359032pt;}
.y56_c00012{bottom:601.623240pt;}
.y15_c00012{bottom:601.661365pt;}
.y55_c00012{bottom:613.178830pt;}
.y14_c00012{bottom:613.216955pt;}
.y54_c00012{bottom:624.734421pt;}
.y13_c00012{bottom:624.772546pt;}
.y53_c00012{bottom:636.290012pt;}
.y12_c00012{bottom:636.328136pt;}
.y52_c00012{bottom:647.845602pt;}
.y11_c00012{bottom:647.883727pt;}
.y10_c00012{bottom:678.185736pt;}
.y65_c00012{bottom:682.003237pt;}
.yf_c00012{bottom:689.741326pt;}
.y64_c00012{bottom:693.558827pt;}
.ye_c00012{bottom:701.296917pt;}
.y63_c00012{bottom:705.114418pt;}
.yd_c00012{bottom:712.852508pt;}
.y62_c00012{bottom:716.670008pt;}
.yc_c00012{bottom:724.408098pt;}
.y61_c00012{bottom:728.225599pt;}
.y6_c00012{bottom:754.748235pt;}
.y5_c00012{bottom:766.303826pt;}
.y4_c00012{bottom:777.859416pt;}
.y3_c00012{bottom:789.415007pt;}
.y2_c00012{bottom:800.970597pt;}
.y5b_c00012{bottom:831.310888pt;}
.y5a_c00012{bottom:842.866478pt;}
.y59_c00012{bottom:854.422069pt;}
.y58_c00012{bottom:865.977660pt;}
.y57_c00012{bottom:877.533250pt;}
.y6f_c00012{bottom:907.835416pt;}
.y51_c00012{bottom:907.873384pt;}
.y6e_c00012{bottom:919.391006pt;}
.y50_c00012{bottom:919.428974pt;}
.y6d_c00012{bottom:930.946597pt;}
.y4f_c00012{bottom:930.984565pt;}
.y6c_c00012{bottom:942.502188pt;}
.y4e_c00012{bottom:942.540156pt;}
.y6b_c00012{bottom:954.057778pt;}
.y4d_c00012{bottom:954.095746pt;}
.h3_c00012{height:32.687599pt;}
.h4_c00012{height:39.729287pt;}
.h2_c00012{height:1159.999952pt;}
.h0_c00012{height:1159.999959pt;}
.h1_c00012{height:1160.000000pt;}
.w2_c00012{width:830.999965pt;}
.w0_c00012{width:831.000000pt;}
.w1_c00012{width:831.333333pt;}
.x0_c00012{left:0.000000pt;}
.x1_c00012{left:78.135686pt;}
.x2_c00012{left:438.886779pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00013{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
}
.y0_c00013{bottom:0.000000px;}
.h0_c00013{height:1304.999953px;}
.h1_c00013{height:1305.000000px;}
.w0_c00013{width:934.875000px;}
.w1_c00013{width:935.250000px;}
.x0_c00013{left:0.000000px;}
@media print{
.y0_c00013{bottom:0.000000pt;}
.h0_c00013{height:1159.999959pt;}
.h1_c00013{height:1160.000000pt;}
.w0_c00013{width:831.000000pt;}
.w1_c00013{width:831.333333pt;}
.x0_c00013{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_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_61b7ab044161a7a88e07d1d1.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.006348;font-style:normal;font-weight:normal;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_e65e44898e232e8c721a4e82.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.006348;font-style:normal;font-weight:normal;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_9d064e52eb6061a705e56809.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.006348;font-style:normal;font-weight:normal;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_5bd8d2a44e8a91dacf6cd110.woff2')format("woff");}.ff4_c00014{font-family:ff4_c00014;line-height:0.795410;font-style:normal;font-weight: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_ebb5c2d5cf50e652414db6f9.woff2')format("woff");}.ff5_c00014{font-family:ff5_c00014;line-height:0.744141;font-style:normal;font-weight: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_c00014;src:url('chunks/assets/font_6d93675ab0b32c6b68588b7f.woff2')format("woff");}.ff6_c00014{font-family:ff6_c00014;line-height:0.778809;font-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_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;}
.ls4_c00014{letter-spacing:0.000000px;}
.ls2_c00014{letter-spacing:1.206299px;}
.ls3_c00014{letter-spacing:1.215879px;}
.ls0_c00014{letter-spacing:9.582011px;}
.ls1_c00014{letter-spacing:14.292971px;}
.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;}
}
.ws0_c00014{word-spacing:0.000000px;}
._0_c00014{width:1.175722px;}
._8_c00014{width:2.176855px;}
._a_c00014{width:3.952135px;}
._5_c00014{width:5.083541px;}
._6_c00014{width:7.169092px;}
._4_c00014{width:8.397267px;}
._2_c00014{width:9.563013px;}
._12_c00014{width:11.471144px;}
._11_c00014{width:12.762454px;}
._3_c00014{width:14.238242px;}
._14_c00014{width:18.369974px;}
._c_c00014{width:19.694850px;}
._d_c00014{width:22.339329px;}
._1_c00014{width:26.458411px;}
._9_c00014{width:28.217544px;}
._b_c00014{width:29.544747px;}
._10_c00014{width:33.201039px;}
._13_c00014{width:34.297925px;}
._f_c00014{width:37.980493px;}
._7_c00014{width:41.048889px;}
._e_c00014{width:43.837812px;}
.fc3_c00014{color:rgb(93,156,116);}
.fc2_c00014{color:rgb(72,111,143);}
.fc1_c00014{color:rgb(34,67,94);}
.fc0_c00014{color:rgb(0,0,0);}
.fs0_c00014{font-size:65.969996px;}
.y0_c00014{bottom:0.000000px;}
.y1_c00014{bottom:0.000008px;}
.y1b_c00014{bottom:91.793667px;}
.y1a_c00014{bottom:118.793666px;}
.y19_c00014{bottom:145.793665px;}
.y18_c00014{bottom:172.793664px;}
.y17_c00014{bottom:199.793663px;}
.y16_c00014{bottom:226.793662px;}
.y15_c00014{bottom:253.793661px;}
.y14_c00014{bottom:280.793660px;}
.y13_c00014{bottom:307.793658px;}
.y12_c00014{bottom:334.793657px;}
.y11_c00014{bottom:361.793656px;}
.y10_c00014{bottom:388.793655px;}
.yf_c00014{bottom:415.793654px;}
.ye_c00014{bottom:442.793653px;}
.yd_c00014{bottom:469.793652px;}
.yc_c00014{bottom:496.793651px;}
.yb_c00014{bottom:523.793649px;}
.ya_c00014{bottom:550.793648px;}
.y9_c00014{bottom:577.793647px;}
.y8_c00014{bottom:604.793646px;}
.y7_c00014{bottom:631.793645px;}
.y6_c00014{bottom:658.793644px;}
.y5_c00014{bottom:685.793643px;}
.y4_c00014{bottom:712.793642px;}
.y3_c00014{bottom:739.793640px;}
.y2_c00014{bottom:766.793639px;}
.h3_c00014{height:50.540490px;}
.h2_c00014{height:1304.999946px;}
.h0_c00014{height:1304.999953px;}
.h1_c00014{height:1305.000000px;}
.w2_c00014{width:934.874961px;}
.w0_c00014{width:934.875000px;}
.w1_c00014{width:935.250000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:317.314697px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls4_c00014{letter-spacing:0.000000pt;}
.ls2_c00014{letter-spacing:1.072266pt;}
.ls3_c00014{letter-spacing:1.080781pt;}
.ls0_c00014{letter-spacing:8.517343pt;}
.ls1_c00014{letter-spacing:12.704863pt;}
.ws0_c00014{word-spacing:0.000000pt;}
._0_c00014{width:1.045086pt;}
._8_c00014{width:1.934982pt;}
._a_c00014{width:3.513009pt;}
._5_c00014{width:4.518703pt;}
._6_c00014{width:6.372526pt;}
._4_c00014{width:7.464237pt;}
._2_c00014{width:8.500456pt;}
._12_c00014{width:10.196572pt;}
._11_c00014{width:11.344403pt;}
._3_c00014{width:12.656215pt;}
._14_c00014{width:16.328866pt;}
._c_c00014{width:17.506534pt;}
._d_c00014{width:19.857181pt;}
._1_c00014{width:23.518588pt;}
._9_c00014{width:25.082261pt;}
._b_c00014{width:26.261998pt;}
._10_c00014{width:29.512035pt;}
._13_c00014{width:30.487045pt;}
._f_c00014{width:33.760438pt;}
._7_c00014{width:36.487901pt;}
._e_c00014{width:38.966944pt;}
.fs0_c00014{font-size:58.639997pt;}
.y0_c00014{bottom:0.000000pt;}
.y1_c00014{bottom:0.000007pt;}
.y1b_c00014{bottom:81.594371pt;}
.y1a_c00014{bottom:105.594370pt;}
.y19_c00014{bottom:129.594369pt;}
.y18_c00014{bottom:153.594368pt;}
.y17_c00014{bottom:177.594367pt;}
.y16_c00014{bottom:201.594366pt;}
.y15_c00014{bottom:225.594365pt;}
.y14_c00014{bottom:249.594364pt;}
.y13_c00014{bottom:273.594363pt;}
.y12_c00014{bottom:297.594362pt;}
.y11_c00014{bottom:321.594361pt;}
.y10_c00014{bottom:345.594360pt;}
.yf_c00014{bottom:369.594359pt;}
.ye_c00014{bottom:393.594358pt;}
.yd_c00014{bottom:417.594357pt;}
.yc_c00014{bottom:441.594356pt;}
.yb_c00014{bottom:465.594355pt;}
.ya_c00014{bottom:489.594354pt;}
.y9_c00014{bottom:513.594353pt;}
.y8_c00014{bottom:537.594352pt;}
.y7_c00014{bottom:561.594351pt;}
.y6_c00014{bottom:585.594350pt;}
.y5_c00014{bottom:609.594349pt;}
.y4_c00014{bottom:633.594348pt;}
.y3_c00014{bottom:657.594347pt;}
.y2_c00014{bottom:681.594346pt;}
.h3_c00014{height:44.924880pt;}
.h2_c00014{height:1159.999952pt;}
.h0_c00014{height:1159.999959pt;}
.h1_c00014{height:1160.000000pt;}
.w2_c00014{width:830.999965pt;}
.w0_c00014{width:831.000000pt;}
.w1_c00014{width:831.333333pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:282.057508pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00015{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
}
.y0_c00015{bottom:0.000000px;}
.h0_c00015{height:1304.999953px;}
.h1_c00015{height:1305.000000px;}
.w0_c00015{width:934.875000px;}
.w1_c00015{width:935.250000px;}
.x0_c00015{left:0.000000px;}
@media print{
.y0_c00015{bottom:0.000000pt;}
.h0_c00015{height:1159.999959pt;}
.h1_c00015{height:1160.000000pt;}
.w0_c00015{width:831.000000pt;}
.w1_c00015{width:831.333333pt;}
.x0_c00015{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_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_91c7823184c19214a8cb7ad7.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.006348;font-style:normal;font-weight:normal;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_0cf5cf8548a2bb0cddad86a4.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.174316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00016;src:url('chunks/assets/font_0df35287d6a433d1fee9d669.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00016;src:url('chunks/assets/font_a8a1c7140a6a455ad2a78e57.woff2')format("woff");}.ff4_c00016{font-family:ff4_c00016;line-height:0.895000;font-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_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);}
.v0_c00016{vertical-align:0.000000px;}
.ls0_c00016{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00016{word-spacing:-159.884013px;}
.ws0_c00016{word-spacing:-17.136738px;}
.ws2_c00016{word-spacing:0.000000px;}
._0_c00016{width:1.175763px;}
._2_c00016{width:2.573831px;}
._d_c00016{width:3.614320px;}
._7_c00016{width:5.492491px;}
._11_c00016{width:8.125312px;}
._3_c00016{width:9.856032px;}
._4_c00016{width:11.129705px;}
._1_c00016{width:12.835620px;}
._6_c00016{width:14.767843px;}
._8_c00016{width:16.060029px;}
._a_c00016{width:18.349022px;}
._5_c00016{width:20.075920px;}
._10_c00016{width:21.245376px;}
._f_c00016{width:27.419848px;}
._e_c00016{width:30.892622px;}
._c_c00016{width:34.942559px;}
._9_c00016{width:38.863320px;}
._b_c00016{width:73.393673px;}
.fc2_c00016{color:rgb(34,67,94);}
.fc1_c00016{color:rgb(72,111,143);}
.fc0_c00016{color:rgb(0,0,0);}
.fs0_c00016{font-size:65.969996px;}
.fs1_c00016{font-size:299.970006px;}
.y0_c00016{bottom:0.000000px;}
.y1_c00016{bottom:0.000008px;}
.y1f_c00016{bottom:189.437511px;}
.y1e_c00016{bottom:214.187510px;}
.y1d_c00016{bottom:238.937509px;}
.y1c_c00016{bottom:263.687508px;}
.y1b_c00016{bottom:313.187506px;}
.y1a_c00016{bottom:337.937505px;}
.y19_c00016{bottom:362.687504px;}
.y18_c00016{bottom:412.187502px;}
.y17_c00016{bottom:436.937501px;}
.y16_c00016{bottom:461.687500px;}
.y15_c00016{bottom:486.437499px;}
.y14_c00016{bottom:511.187498px;}
.y13_c00016{bottom:535.937496px;}
.y12_c00016{bottom:560.687495px;}
.y11_c00016{bottom:585.437494px;}
.y10_c00016{bottom:610.187493px;}
.yf_c00016{bottom:634.937492px;}
.ye_c00016{bottom:684.437490px;}
.yd_c00016{bottom:709.187489px;}
.yc_c00016{bottom:758.687487px;}
.yb_c00016{bottom:783.437486px;}
.ya_c00016{bottom:808.187485px;}
.y9_c00016{bottom:832.937484px;}
.y8_c00016{bottom:882.437482px;}
.y7_c00016{bottom:907.187481px;}
.y6_c00016{bottom:931.937480px;}
.y5_c00016{bottom:981.437478px;}
.y4_c00016{bottom:1006.187477px;}
.y3_c00016{bottom:1030.937476px;}
.y2_c00016{bottom:1055.687475px;}
.y20_c00016{bottom:1154.599317px;}
.h3_c00016{height:50.540490px;}
.h4_c00016{height:61.621388px;}
.h5_c00016{height:265.173485px;}
.h2_c00016{height:1304.999946px;}
.h0_c00016{height:1304.999953px;}
.h1_c00016{height:1305.000000px;}
.w2_c00016{width:934.874961px;}
.w0_c00016{width:934.875000px;}
.w1_c00016{width:935.250000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:132.321724px;}
.x2_c00016{left:166.858124px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ws1_c00016{word-spacing:-142.119123pt;}
.ws0_c00016{word-spacing:-15.232656pt;}
.ws2_c00016{word-spacing:0.000000pt;}
._0_c00016{width:1.045122pt;}
._2_c00016{width:2.287850pt;}
._d_c00016{width:3.212729pt;}
._7_c00016{width:4.882215pt;}
._11_c00016{width:7.222500pt;}
._3_c00016{width:8.760917pt;}
._4_c00016{width:9.893071pt;}
._1_c00016{width:11.409440pt;}
._6_c00016{width:13.126971pt;}
._8_c00016{width:14.275581pt;}
._a_c00016{width:16.310242pt;}
._5_c00016{width:17.845262pt;}
._10_c00016{width:18.884779pt;}
._f_c00016{width:24.373199pt;}
._e_c00016{width:27.460109pt;}
._c_c00016{width:31.060053pt;}
._9_c00016{width:34.545173pt;}
._b_c00016{width:65.238821pt;}
.fs0_c00016{font-size:58.639997pt;}
.fs1_c00016{font-size:266.640005pt;}
.y0_c00016{bottom:0.000000pt;}
.y1_c00016{bottom:0.000007pt;}
.y1f_c00016{bottom:168.388899pt;}
.y1e_c00016{bottom:190.388898pt;}
.y1d_c00016{bottom:212.388897pt;}
.y1c_c00016{bottom:234.388896pt;}
.y1b_c00016{bottom:278.388894pt;}
.y1a_c00016{bottom:300.388893pt;}
.y19_c00016{bottom:322.388892pt;}
.y18_c00016{bottom:366.388890pt;}
.y17_c00016{bottom:388.388889pt;}
.y16_c00016{bottom:410.388889pt;}
.y15_c00016{bottom:432.388888pt;}
.y14_c00016{bottom:454.388887pt;}
.y13_c00016{bottom:476.388886pt;}
.y12_c00016{bottom:498.388885pt;}
.y11_c00016{bottom:520.388884pt;}
.y10_c00016{bottom:542.388883pt;}
.yf_c00016{bottom:564.388882pt;}
.ye_c00016{bottom:608.388880pt;}
.yd_c00016{bottom:630.388879pt;}
.yc_c00016{bottom:674.388878pt;}
.yb_c00016{bottom:696.388877pt;}
.ya_c00016{bottom:718.388876pt;}
.y9_c00016{bottom:740.388875pt;}
.y8_c00016{bottom:784.388873pt;}
.y7_c00016{bottom:806.388872pt;}
.y6_c00016{bottom:828.388871pt;}
.y5_c00016{bottom:872.388869pt;}
.y4_c00016{bottom:894.388868pt;}
.y3_c00016{bottom:916.388867pt;}
.y2_c00016{bottom:938.388867pt;}
.y20_c00016{bottom:1026.310504pt;}
.h3_c00016{height:44.924880pt;}
.h4_c00016{height:54.774567pt;}
.h5_c00016{height:235.709764pt;}
.h2_c00016{height:1159.999952pt;}
.h0_c00016{height:1159.999959pt;}
.h1_c00016{height:1160.000000pt;}
.w2_c00016{width:830.999965pt;}
.w0_c00016{width:831.000000pt;}
.w1_c00016{width:831.333333pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:117.619310pt;}
.x2_c00016{left:148.318332pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_403a79512adbee35408b9ad5.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.006348;font-style:normal;font-weight:normal;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_8f4edb9f819e8560ff086bfa.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.174316;font-style:normal;font-weight:normal;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_c47ebd987888b2adf51c6d00.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_de8fc50c74b79c2b045b7a93.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;line-height:0.676270;font-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_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;}
.ls4_c00017{letter-spacing:0.000000px;}
.ls3_c00017{letter-spacing:0.863955px;}
.ls1_c00017{letter-spacing:1.211918px;}
.ls2_c00017{letter-spacing:2.178346px;}
.ls0_c00017{letter-spacing:2.178386px;}
.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:-17.134193px;}
.ws1_c00017{word-spacing:0.000000px;}
._0_c00017{width:1.174479px;}
._3_c00017{width:2.174750px;}
._6_c00017{width:3.352256px;}
._5_c00017{width:5.173029px;}
._e_c00017{width:6.670955px;}
._10_c00017{width:8.500851px;}
._b_c00017{width:9.779544px;}
._7_c00017{width:11.274035px;}
._d_c00017{width:14.203720px;}
._f_c00017{width:19.451743px;}
._2_c00017{width:22.231131px;}
._a_c00017{width:28.962170px;}
._c_c00017{width:32.952551px;}
._9_c00017{width:35.932288px;}
._1_c00017{width:44.679022px;}
._8_c00017{width:52.843787px;}
._4_c00017{width:54.173345px;}
.fc1_c00017{color:rgb(72,111,143);}
.fc0_c00017{color:rgb(0,0,0);}
.fs1_c00017{font-size:48.000145px;}
.fs0_c00017{font-size:65.960199px;}
.y0_c00017{bottom:0.000000px;}
.y1_c00017{bottom:0.000008px;}
.y1d_c00017{bottom:381.250227px;}
.y1c_c00017{bottom:400.250285px;}
.y1b_c00017{bottom:419.250342px;}
.y1a_c00017{bottom:438.250400px;}
.y19_c00017{bottom:485.250542px;}
.y18_c00017{bottom:537.250699px;}
.y17_c00017{bottom:589.250856px;}
.y16_c00017{bottom:615.250935px;}
.y15_c00017{bottom:667.251093px;}
.y14_c00017{bottom:693.251171px;}
.y13_c00017{bottom:719.251250px;}
.y12_c00017{bottom:745.251329px;}
.y11_c00017{bottom:771.251407px;}
.y10_c00017{bottom:797.251486px;}
.yf_c00017{bottom:823.251565px;}
.ye_c00017{bottom:849.251643px;}
.yd_c00017{bottom:875.251722px;}
.yc_c00017{bottom:901.251801px;}
.yb_c00017{bottom:927.251879px;}
.ya_c00017{bottom:953.251958px;}
.y9_c00017{bottom:979.252037px;}
.y8_c00017{bottom:1005.252115px;}
.y7_c00017{bottom:1031.252194px;}
.y6_c00017{bottom:1057.252273px;}
.y5_c00017{bottom:1109.252430px;}
.y4_c00017{bottom:1135.252509px;}
.y3_c00017{bottom:1161.252588px;}
.y2_c00017{bottom:1187.252666px;}
.h5_c00017{height:44.836073px;}
.h4_c00017{height:50.532984px;}
.h3_c00017{height:61.612236px;}
.h2_c00017{height:1304.999946px;}
.h0_c00017{height:1304.999953px;}
.h1_c00017{height:1305.000000px;}
.w2_c00017{width:934.874961px;}
.w0_c00017{width:934.875000px;}
.w1_c00017{width:935.250000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:132.321724px;}
.x5_c00017{left:582.807467px;}
.x3_c00017{left:594.713753px;}
.x4_c00017{left:602.182526px;}
.x6_c00017{left:646.760781px;}
.x2_c00017{left:694.714056px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls4_c00017{letter-spacing:0.000000pt;}
.ls3_c00017{letter-spacing:0.767960pt;}
.ls1_c00017{letter-spacing:1.077260pt;}
.ls2_c00017{letter-spacing:1.936307pt;}
.ls0_c00017{letter-spacing:1.936343pt;}
.ws0_c00017{word-spacing:-15.230393pt;}
.ws1_c00017{word-spacing:0.000000pt;}
._0_c00017{width:1.043981pt;}
._3_c00017{width:1.933111pt;}
._6_c00017{width:2.979783pt;}
._5_c00017{width:4.598248pt;}
._e_c00017{width:5.929738pt;}
._10_c00017{width:7.556312pt;}
._b_c00017{width:8.692928pt;}
._7_c00017{width:10.021364pt;}
._d_c00017{width:12.625529pt;}
._f_c00017{width:17.290438pt;}
._2_c00017{width:19.761005pt;}
._a_c00017{width:25.744151pt;}
._c_c00017{width:29.291157pt;}
._9_c00017{width:31.939811pt;}
._1_c00017{width:39.714686pt;}
._8_c00017{width:46.972255pt;}
._4_c00017{width:48.154084pt;}
.fs1_c00017{font-size:42.666796pt;}
.fs0_c00017{font-size:58.631288pt;}
.y0_c00017{bottom:0.000000pt;}
.y1_c00017{bottom:0.000007pt;}
.y1d_c00017{bottom:338.889091pt;}
.y1c_c00017{bottom:355.778031pt;}
.y1b_c00017{bottom:372.666971pt;}
.y1a_c00017{bottom:389.555911pt;}
.y19_c00017{bottom:431.333815pt;}
.y18_c00017{bottom:477.556177pt;}
.y17_c00017{bottom:523.778539pt;}
.y16_c00017{bottom:546.889720pt;}
.y15_c00017{bottom:593.112082pt;}
.y14_c00017{bottom:616.223263pt;}
.y13_c00017{bottom:639.334444pt;}
.y12_c00017{bottom:662.445625pt;}
.y11_c00017{bottom:685.556806pt;}
.y10_c00017{bottom:708.667988pt;}
.yf_c00017{bottom:731.779169pt;}
.ye_c00017{bottom:754.890350pt;}
.yd_c00017{bottom:778.001531pt;}
.yc_c00017{bottom:801.112712pt;}
.yb_c00017{bottom:824.223893pt;}
.ya_c00017{bottom:847.335074pt;}
.y9_c00017{bottom:870.446255pt;}
.y8_c00017{bottom:893.557436pt;}
.y7_c00017{bottom:916.668617pt;}
.y6_c00017{bottom:939.779798pt;}
.y5_c00017{bottom:986.002160pt;}
.y4_c00017{bottom:1009.113341pt;}
.y3_c00017{bottom:1032.224522pt;}
.y2_c00017{bottom:1055.335703pt;}
.h5_c00017{height:39.854287pt;}
.h4_c00017{height:44.918208pt;}
.h3_c00017{height:54.766432pt;}
.h2_c00017{height:1159.999952pt;}
.h0_c00017{height:1159.999959pt;}
.h1_c00017{height:1160.000000pt;}
.w2_c00017{width:830.999965pt;}
.w0_c00017{width:831.000000pt;}
.w1_c00017{width:831.333333pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:117.619310pt;}
.x5_c00017{left:518.051082pt;}
.x3_c00017{left:528.634447pt;}
.x4_c00017{left:535.273356pt;}
.x6_c00017{left:574.898472pt;}
.x2_c00017{left:617.523605pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8713972aaf2f6315b13fa6af.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:0.895000;font-style:normal;font-weight:normal;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_7c693648db71b9357920bd53.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.006348;font-style:normal;font-weight:normal;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_541cce3195de2be945afd9eb.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.171387;font-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_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);}
.v0_c00018{vertical-align:0.000000px;}
.ls0_c00018{letter-spacing:0.000000px;}
.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:-159.884013px;}
.ws1_c00018{word-spacing:-15.582041px;}
.ws2_c00018{word-spacing:0.000000px;}
._1_c00018{margin-left:-3.185263px;}
._17_c00018{margin-left:-1.226123px;}
._19_c00018{width:1.215361px;}
._f_c00018{width:2.350625px;}
._15_c00018{width:3.983962px;}
._b_c00018{width:5.166263px;}
._13_c00018{width:6.674611px;}
._12_c00018{width:7.984814px;}
._0_c00018{width:8.990891px;}
._6_c00018{width:10.269093px;}
._20_c00018{width:11.778012px;}
._d_c00018{width:12.901115px;}
._5_c00018{width:14.234342px;}
._1d_c00018{width:17.319188px;}
._2_c00018{width:19.388196px;}
._c_c00018{width:21.102436px;}
._1b_c00018{width:22.226797px;}
._11_c00018{width:23.298543px;}
._21_c00018{width:25.829450px;}
._16_c00018{width:26.895198px;}
._14_c00018{width:28.379079px;}
._10_c00018{width:29.806800px;}
._3_c00018{width:31.727492px;}
._23_c00018{width:33.428571px;}
._1a_c00018{width:34.958789px;}
._9_c00018{width:36.751357px;}
._8_c00018{width:37.973531px;}
._4_c00018{width:39.604118px;}
._18_c00018{width:41.837136px;}
._1e_c00018{width:43.068282px;}
._29_c00018{width:44.688311px;}
._28_c00018{width:52.019116px;}
._1f_c00018{width:54.599940px;}
._25_c00018{width:56.786076px;}
._e_c00018{width:58.703116px;}
._27_c00018{width:66.338653px;}
._24_c00018{width:72.578985px;}
._22_c00018{width:74.249504px;}
._26_c00018{width:77.085703px;}
._7_c00018{width:81.715297px;}
._1c_c00018{width:86.874139px;}
._a_c00018{width:223.060850px;}
.fc1_c00018{color:rgb(0,0,0);}
.fc0_c00018{color:rgb(34,67,94);}
.fs2_c00018{font-size:48.000145px;}
.fs1_c00018{font-size:59.960181px;}
.fs3_c00018{font-size:59.984997px;}
.fs0_c00018{font-size:299.970006px;}
.y0_c00018{bottom:0.000000px;}
.y1_c00018{bottom:0.000008px;}
.y5_c00018{bottom:50.338650px;}
.y31_c00018{bottom:58.791990px;}
.y4_c00018{bottom:64.338692px;}
.y30_c00018{bottom:72.792032px;}
.y3_c00018{bottom:79.338738px;}
.y2f_c00018{bottom:87.792077px;}
.y63_c00018{bottom:111.206598px;}
.y62_c00018{bottom:130.331597px;}
.y2e_c00018{bottom:144.206713px;}
.y61_c00018{bottom:149.456597px;}
.y2d_c00018{bottom:165.581712px;}
.y60_c00018{bottom:168.581596px;}
.y2c_c00018{bottom:186.956711px;}
.y5f_c00018{bottom:187.706595px;}
.y5e_c00018{bottom:206.831594px;}
.y2b_c00018{bottom:208.331711px;}
.y5d_c00018{bottom:225.956593px;}
.y2a_c00018{bottom:229.706710px;}
.y5c_c00018{bottom:245.081593px;}
.y29_c00018{bottom:251.081709px;}
.y5b_c00018{bottom:264.206592px;}
.y28_c00018{bottom:272.456708px;}
.y5a_c00018{bottom:283.331591px;}
.y59_c00018{bottom:302.456590px;}
.y27_c00018{bottom:315.206706px;}
.y58_c00018{bottom:321.581589px;}
.y26_c00018{bottom:336.581705px;}
.y57_c00018{bottom:340.706589px;}
.y25_c00018{bottom:357.956704px;}
.y56_c00018{bottom:359.831588px;}
.y55_c00018{bottom:378.956587px;}
.y24_c00018{bottom:379.331703px;}
.y54_c00018{bottom:398.081586px;}
.y23_c00018{bottom:422.081702px;}
.y53_c00018{bottom:436.331585px;}
.y22_c00018{bottom:443.456701px;}
.y52_c00018{bottom:455.456584px;}
.y21_c00018{bottom:464.831700px;}
.y51_c00018{bottom:474.581583px;}
.y20_c00018{bottom:486.206699px;}
.y50_c00018{bottom:493.706582px;}
.y1f_c00018{bottom:507.581698px;}
.y4f_c00018{bottom:512.831581px;}
.y1e_c00018{bottom:528.956697px;}
.y4e_c00018{bottom:531.956581px;}
.y4d_c00018{bottom:551.081580px;}
.y4c_c00018{bottom:570.206579px;}
.y1d_c00018{bottom:571.706695px;}
.y4b_c00018{bottom:589.331578px;}
.y1c_c00018{bottom:593.081694px;}
.y4a_c00018{bottom:608.456577px;}
.y1b_c00018{bottom:614.456694px;}
.y49_c00018{bottom:627.581577px;}
.y1a_c00018{bottom:635.831693px;}
.y19_c00018{bottom:657.206692px;}
.y48_c00018{bottom:665.831575px;}
.y18_c00018{bottom:678.581691px;}
.y47_c00018{bottom:684.956574px;}
.y17_c00018{bottom:699.956690px;}
.y46_c00018{bottom:704.081573px;}
.y45_c00018{bottom:723.206573px;}
.y44_c00018{bottom:742.331572px;}
.y16_c00018{bottom:742.706688px;}
.y43_c00018{bottom:761.456571px;}
.y15_c00018{bottom:764.081687px;}
.y42_c00018{bottom:780.581570px;}
.y14_c00018{bottom:785.456686px;}
.y41_c00018{bottom:799.706569px;}
.y13_c00018{bottom:806.831686px;}
.y40_c00018{bottom:818.831569px;}
.y12_c00018{bottom:828.206685px;}
.y3f_c00018{bottom:837.956568px;}
.y11_c00018{bottom:849.581684px;}
.y3e_c00018{bottom:857.081567px;}
.y10_c00018{bottom:870.956683px;}
.y3d_c00018{bottom:876.206566px;}
.yf_c00018{bottom:892.331682px;}
.ye_c00018{bottom:913.706681px;}
.y3c_c00018{bottom:914.456565px;}
.y3b_c00018{bottom:933.581564px;}
.y3a_c00018{bottom:952.706563px;}
.yd_c00018{bottom:956.456679px;}
.y39_c00018{bottom:971.831562px;}
.yc_c00018{bottom:977.831678px;}
.y38_c00018{bottom:990.956562px;}
.yb_c00018{bottom:999.206678px;}
.y37_c00018{bottom:1010.081561px;}
.ya_c00018{bottom:1020.581677px;}
.y36_c00018{bottom:1029.206560px;}
.y9_c00018{bottom:1041.956676px;}
.y35_c00018{bottom:1048.331559px;}
.y8_c00018{bottom:1063.331675px;}
.y34_c00018{bottom:1067.456558px;}
.y7_c00018{bottom:1084.706674px;}
.y33_c00018{bottom:1086.581558px;}
.y32_c00018{bottom:1105.706557px;}
.y6_c00018{bottom:1106.081673px;}
.y2_c00018{bottom:1154.599404px;}
.h5_c00018{height:44.695448px;}
.h4_c00018{height:45.936291px;}
.h7_c00018{height:45.955303px;}
.h6_c00018{height:55.855171px;}
.h3_c00018{height:265.173485px;}
.h2_c00018{height:1304.999946px;}
.h0_c00018{height:1304.999953px;}
.h1_c00018{height:1305.000000px;}
.w2_c00018{width:934.874961px;}
.w0_c00018{width:934.875000px;}
.w1_c00018{width:935.250000px;}
.x0_c00018{left:0.000000px;}
.x9_c00018{left:145.094761px;}
.x3_c00018{left:154.516665px;}
.x4_c00018{left:170.844839px;}
.x1_c00018{left:288.516347px;}
.x2_c00018{left:330.360952px;}
.x5_c00018{left:506.512070px;}
.x8_c00018{left:596.009516px;}
.x7_c00018{left:606.103296px;}
.x6_c00018{left:621.353343px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.ws0_c00018{word-spacing:-142.119123pt;}
.ws1_c00018{word-spacing:-13.850703pt;}
.ws2_c00018{word-spacing:0.000000pt;}
._1_c00018{margin-left:-2.831345pt;}
._17_c00018{margin-left:-1.089887pt;}
._19_c00018{width:1.080321pt;}
._f_c00018{width:2.089444pt;}
._15_c00018{width:3.541300pt;}
._b_c00018{width:4.592234pt;}
._13_c00018{width:5.932988pt;}
._12_c00018{width:7.097612pt;}
._0_c00018{width:7.991903pt;}
._6_c00018{width:9.128082pt;}
._20_c00018{width:10.469344pt;}
._d_c00018{width:11.467658pt;}
._5_c00018{width:12.652748pt;}
._1d_c00018{width:15.394834pt;}
._2_c00018{width:17.233952pt;}
._c_c00018{width:18.757721pt;}
._1b_c00018{width:19.757153pt;}
._11_c00018{width:20.709816pt;}
._21_c00018{width:22.959511pt;}
._16_c00018{width:23.906843pt;}
._14_c00018{width:25.225848pt;}
._10_c00018{width:26.494933pt;}
._3_c00018{width:28.202215pt;}
._23_c00018{width:29.714285pt;}
._1a_c00018{width:31.074479pt;}
._9_c00018{width:32.667873pt;}
._8_c00018{width:33.754250pt;}
._4_c00018{width:35.203660pt;}
._18_c00018{width:37.188565pt;}
._1e_c00018{width:38.282917pt;}
._29_c00018{width:39.722943pt;}
._28_c00018{width:46.239214pt;}
._1f_c00018{width:48.533280pt;}
._25_c00018{width:50.476512pt;}
._e_c00018{width:52.180547pt;}
._27_c00018{width:58.967691pt;}
._24_c00018{width:64.514653pt;}
._22_c00018{width:65.999559pt;}
._26_c00018{width:68.520625pt;}
._7_c00018{width:72.635820pt;}
._1c_c00018{width:77.221457pt;}
._a_c00018{width:198.276311pt;}
.fs2_c00018{font-size:42.666796pt;}
.fs1_c00018{font-size:53.297938pt;}
.fs3_c00018{font-size:53.319997pt;}
.fs0_c00018{font-size:266.640005pt;}
.y0_c00018{bottom:0.000000pt;}
.y1_c00018{bottom:0.000007pt;}
.y5_c00018{bottom:44.745467pt;}
.y31_c00018{bottom:52.259546pt;}
.y4_c00018{bottom:57.189949pt;}
.y30_c00018{bottom:64.704028pt;}
.y3_c00018{bottom:70.523322pt;}
.y2f_c00018{bottom:78.037402pt;}
.y63_c00018{bottom:98.850309pt;}
.y62_c00018{bottom:115.850309pt;}
.y2e_c00018{bottom:128.183745pt;}
.y61_c00018{bottom:132.850308pt;}
.y2d_c00018{bottom:147.183744pt;}
.y60_c00018{bottom:149.850307pt;}
.y2c_c00018{bottom:166.183743pt;}
.y5f_c00018{bottom:166.850307pt;}
.y5e_c00018{bottom:183.850306pt;}
.y2b_c00018{bottom:185.183743pt;}
.y5d_c00018{bottom:200.850305pt;}
.y2a_c00018{bottom:204.183742pt;}
.y5c_c00018{bottom:217.850305pt;}
.y29_c00018{bottom:223.183741pt;}
.y5b_c00018{bottom:234.850304pt;}
.y28_c00018{bottom:242.183740pt;}
.y5a_c00018{bottom:251.850303pt;}
.y59_c00018{bottom:268.850302pt;}
.y27_c00018{bottom:280.183739pt;}
.y58_c00018{bottom:285.850302pt;}
.y26_c00018{bottom:299.183738pt;}
.y57_c00018{bottom:302.850301pt;}
.y25_c00018{bottom:318.183737pt;}
.y56_c00018{bottom:319.850300pt;}
.y55_c00018{bottom:336.850300pt;}
.y24_c00018{bottom:337.183736pt;}
.y54_c00018{bottom:353.850299pt;}
.y23_c00018{bottom:375.183735pt;}
.y53_c00018{bottom:387.850297pt;}
.y22_c00018{bottom:394.183734pt;}
.y52_c00018{bottom:404.850297pt;}
.y21_c00018{bottom:413.183733pt;}
.y51_c00018{bottom:421.850296pt;}
.y20_c00018{bottom:432.183732pt;}
.y50_c00018{bottom:438.850295pt;}
.y1f_c00018{bottom:451.183732pt;}
.y4f_c00018{bottom:455.850295pt;}
.y1e_c00018{bottom:470.183731pt;}
.y4e_c00018{bottom:472.850294pt;}
.y4d_c00018{bottom:489.850293pt;}
.y4c_c00018{bottom:506.850292pt;}
.y1d_c00018{bottom:508.183729pt;}
.y4b_c00018{bottom:523.850292pt;}
.y1c_c00018{bottom:527.183728pt;}
.y4a_c00018{bottom:540.850291pt;}
.y1b_c00018{bottom:546.183728pt;}
.y49_c00018{bottom:557.850290pt;}
.y1a_c00018{bottom:565.183727pt;}
.y19_c00018{bottom:584.183726pt;}
.y48_c00018{bottom:591.850289pt;}
.y18_c00018{bottom:603.183725pt;}
.y47_c00018{bottom:608.850288pt;}
.y17_c00018{bottom:622.183724pt;}
.y46_c00018{bottom:625.850288pt;}
.y45_c00018{bottom:642.850287pt;}
.y44_c00018{bottom:659.850286pt;}
.y16_c00018{bottom:660.183723pt;}
.y43_c00018{bottom:676.850285pt;}
.y15_c00018{bottom:679.183722pt;}
.y42_c00018{bottom:693.850285pt;}
.y14_c00018{bottom:698.183721pt;}
.y41_c00018{bottom:710.850284pt;}
.y13_c00018{bottom:717.183721pt;}
.y40_c00018{bottom:727.850283pt;}
.y12_c00018{bottom:736.183720pt;}
.y3f_c00018{bottom:744.850283pt;}
.y11_c00018{bottom:755.183719pt;}
.y3e_c00018{bottom:761.850282pt;}
.y10_c00018{bottom:774.183718pt;}
.y3d_c00018{bottom:778.850281pt;}
.yf_c00018{bottom:793.183717pt;}
.ye_c00018{bottom:812.183717pt;}
.y3c_c00018{bottom:812.850280pt;}
.y3b_c00018{bottom:829.850279pt;}
.y3a_c00018{bottom:846.850278pt;}
.yd_c00018{bottom:850.183715pt;}
.y39_c00018{bottom:863.850278pt;}
.yc_c00018{bottom:869.183714pt;}
.y38_c00018{bottom:880.850277pt;}
.yb_c00018{bottom:888.183713pt;}
.y37_c00018{bottom:897.850276pt;}
.ya_c00018{bottom:907.183713pt;}
.y36_c00018{bottom:914.850275pt;}
.y9_c00018{bottom:926.183712pt;}
.y35_c00018{bottom:931.850275pt;}
.y8_c00018{bottom:945.183711pt;}
.y34_c00018{bottom:948.850274pt;}
.y7_c00018{bottom:964.183710pt;}
.y33_c00018{bottom:965.850273pt;}
.y32_c00018{bottom:982.850273pt;}
.y6_c00018{bottom:983.183709pt;}
.y2_c00018{bottom:1026.310581pt;}
.h5_c00018{height:39.729287pt;}
.h4_c00018{height:40.832258pt;}
.h7_c00018{height:40.849158pt;}
.h6_c00018{height:49.649041pt;}
.h3_c00018{height:235.709764pt;}
.h2_c00018{height:1159.999952pt;}
.h0_c00018{height:1159.999959pt;}
.h1_c00018{height:1160.000000pt;}
.w2_c00018{width:830.999965pt;}
.w0_c00018{width:831.000000pt;}
.w1_c00018{width:831.333333pt;}
.x0_c00018{left:0.000000pt;}
.x9_c00018{left:128.973121pt;}
.x3_c00018{left:137.348146pt;}
.x4_c00018{left:151.862079pt;}
.x1_c00018{left:256.458975pt;}
.x2_c00018{left:293.654179pt;}
.x5_c00018{left:450.232951pt;}
.x8_c00018{left:529.786236pt;}
.x7_c00018{left:538.758486pt;}
.x6_c00018{left:552.314082pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_29a06f40ad919875ac1b6e67.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.006348;font-style:normal;font-weight:normal;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_49379ed65854fbdc7c43299d.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.171387;font-style:normal;font-weight:normal;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_8713972aaf2f6315b13fa6af.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:0.895000;font-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_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);}
.v1_c00019{vertical-align:-51.276624px;}
.v0_c00019{vertical-align:0.000000px;}
.ls0_c00019{letter-spacing:0.000000px;}
.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:-159.884013px;}
.ws1_c00019{word-spacing:-15.582041px;}
.ws2_c00019{word-spacing:0.000000px;}
._0_c00019{margin-left:-3.359995px;}
._3_c00019{margin-left:-2.305322px;}
._c_c00019{margin-left:-1.194147px;}
._19_c00019{width:1.182869px;}
._4_c00019{width:2.253926px;}
._5_c00019{width:3.418869px;}
._14_c00019{width:5.038998px;}
._1d_c00019{width:7.746953px;}
._1_c00019{width:8.990891px;}
._10_c00019{width:10.067400px;}
._11_c00019{width:11.157997px;}
._8_c00019{width:12.976968px;}
._b_c00019{width:14.459812px;}
._26_c00019{width:16.593235px;}
._22_c00019{width:17.606019px;}
._d_c00019{width:21.158861px;}
._7_c00019{width:22.938205px;}
._17_c00019{width:24.182374px;}
._f_c00019{width:25.809615px;}
._25_c00019{width:26.828135px;}
._2_c00019{width:28.225373px;}
._a_c00019{width:30.973909px;}
._16_c00019{width:32.575959px;}
._21_c00019{width:34.926606px;}
._9_c00019{width:36.789253px;}
._1f_c00019{width:39.938279px;}
._1a_c00019{width:41.922785px;}
._13_c00019{width:49.613372px;}
._15_c00019{width:50.905340px;}
._24_c00019{width:53.922091px;}
._23_c00019{width:55.037875px;}
._1c_c00019{width:56.090981px;}
._18_c00019{width:57.357541px;}
._6_c00019{width:61.891407px;}
._e_c00019{width:63.370039px;}
._20_c00019{width:72.195817px;}
._12_c00019{width:86.175888px;}
._1e_c00019{width:223.397758px;}
._1b_c00019{width:1201.888648px;}
.fc1_c00019{color:rgb(0,0,0);}
.fc0_c00019{color:rgb(34,67,94);}
.fs1_c00019{font-size:48.000145px;}
.fs3_c00019{font-size:59.984997px;}
.fs0_c00019{font-size:60.000182px;}
.fs2_c00019{font-size:299.970006px;}
.y0_c00019{bottom:0.000000px;}
.y1_c00019{bottom:0.000008px;}
.y3e_c00019{bottom:49.853838px;}
.y3_c00019{bottom:49.853985px;}
.y3d_c00019{bottom:63.853880px;}
.y2_c00019{bottom:64.854030px;}
.y3c_c00019{bottom:91.673082px;}
.y3b_c00019{bottom:108.548081px;}
.y66_c00019{bottom:111.398197px;}
.y3a_c00019{bottom:125.423080px;}
.y65_c00019{bottom:135.023196px;}
.y39_c00019{bottom:142.298080px;}
.y64_c00019{bottom:158.648195px;}
.y38_c00019{bottom:159.173079px;}
.y37_c00019{bottom:176.048078px;}
.y63_c00019{bottom:182.273194px;}
.y36_c00019{bottom:192.923078px;}
.y62_c00019{bottom:205.898193px;}
.y35_c00019{bottom:209.798077px;}
.y61_c00019{bottom:229.523192px;}
.y34_c00019{bottom:243.548075px;}
.y60_c00019{bottom:253.148191px;}
.y33_c00019{bottom:260.423075px;}
.y32_c00019{bottom:277.298074px;}
.y31_c00019{bottom:294.173073px;}
.y5f_c00019{bottom:300.398189px;}
.y30_c00019{bottom:311.048073px;}
.y5e_c00019{bottom:324.023188px;}
.y2f_c00019{bottom:327.923072px;}
.y2e_c00019{bottom:344.798071px;}
.y5d_c00019{bottom:347.648188px;}
.y2d_c00019{bottom:361.673071px;}
.y5c_c00019{bottom:371.273187px;}
.y5b_c00019{bottom:394.898186px;}
.y2c_c00019{bottom:395.423069px;}
.y2b_c00019{bottom:412.298068px;}
.y5a_c00019{bottom:418.523185px;}
.y2a_c00019{bottom:429.173068px;}
.y59_c00019{bottom:442.148184px;}
.y29_c00019{bottom:446.048067px;}
.y28_c00019{bottom:462.923066px;}
.y58_c00019{bottom:465.773183px;}
.y27_c00019{bottom:479.798066px;}
.y57_c00019{bottom:489.398182px;}
.y26_c00019{bottom:496.673065px;}
.y25_c00019{bottom:513.548064px;}
.y24_c00019{bottom:530.423063px;}
.y56_c00019{bottom:536.648180px;}
.y23_c00019{bottom:547.298063px;}
.y55_c00019{bottom:560.273179px;}
.y22_c00019{bottom:564.173062px;}
.y21_c00019{bottom:581.048061px;}
.y54_c00019{bottom:583.898178px;}
.y53_c00019{bottom:607.523177px;}
.y20_c00019{bottom:614.798060px;}
.y52_c00019{bottom:631.148176px;}
.y1f_c00019{bottom:631.673059px;}
.y1e_c00019{bottom:648.548059px;}
.y51_c00019{bottom:654.773175px;}
.y1d_c00019{bottom:665.423058px;}
.y50_c00019{bottom:678.398174px;}
.y1c_c00019{bottom:682.298057px;}
.y1b_c00019{bottom:699.173056px;}
.y4f_c00019{bottom:702.023173px;}
.y1a_c00019{bottom:716.048056px;}
.y4e_c00019{bottom:725.648172px;}
.y4d_c00019{bottom:749.273171px;}
.y19_c00019{bottom:749.798054px;}
.y18_c00019{bottom:766.673054px;}
.y4c_c00019{bottom:772.898170px;}
.y17_c00019{bottom:783.548053px;}
.y16_c00019{bottom:800.423052px;}
.y15_c00019{bottom:817.298052px;}
.y4b_c00019{bottom:820.148168px;}
.y14_c00019{bottom:834.173051px;}
.y4a_c00019{bottom:843.773167px;}
.y13_c00019{bottom:851.048050px;}
.y49_c00019{bottom:867.398166px;}
.y12_c00019{bottom:867.923049px;}
.y11_c00019{bottom:884.798049px;}
.y48_c00019{bottom:891.023165px;}
.y10_c00019{bottom:901.673048px;}
.y47_c00019{bottom:914.648164px;}
.yf_c00019{bottom:935.423047px;}
.y46_c00019{bottom:938.273163px;}
.ye_c00019{bottom:952.298046px;}
.y45_c00019{bottom:961.898162px;}
.yd_c00019{bottom:969.173045px;}
.y44_c00019{bottom:985.523161px;}
.yc_c00019{bottom:986.048045px;}
.yb_c00019{bottom:1002.923044px;}
.y43_c00019{bottom:1009.148160px;}
.ya_c00019{bottom:1019.798043px;}
.y42_c00019{bottom:1032.773159px;}
.y9_c00019{bottom:1036.673042px;}
.y8_c00019{bottom:1053.548042px;}
.y41_c00019{bottom:1056.398158px;}
.y7_c00019{bottom:1070.423041px;}
.y40_c00019{bottom:1080.023157px;}
.y6_c00019{bottom:1087.298040px;}
.y3f_c00019{bottom:1103.648156px;}
.y5_c00019{bottom:1104.173040px;}
.y4_c00019{bottom:1154.599404px;}
.h4_c00019{height:44.695448px;}
.h7_c00019{height:45.955303px;}
.h3_c00019{height:45.966936px;}
.h6_c00019{height:55.855171px;}
.h5_c00019{height:265.173485px;}
.h2_c00019{height:1304.999946px;}
.h0_c00019{height:1304.999953px;}
.h1_c00019{height:1305.000000px;}
.w2_c00019{width:934.874961px;}
.w0_c00019{width:934.875000px;}
.w1_c00019{width:935.250000px;}
.x0_c00019{left:0.000000px;}
.x4_c00019{left:143.996466px;}
.x2_c00019{left:205.981029px;}
.x1_c00019{left:242.574889px;}
.x3_c00019{left:288.516347px;}
.x7_c00019{left:505.566980px;}
.x5_c00019{left:531.957685px;}
.x6_c00019{left:673.442488px;}
@media print{
.v1_c00019{vertical-align:-45.579221pt;}
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ws0_c00019{word-spacing:-142.119123pt;}
.ws1_c00019{word-spacing:-13.850703pt;}
.ws2_c00019{word-spacing:0.000000pt;}
._0_c00019{margin-left:-2.986663pt;}
._3_c00019{margin-left:-2.049175pt;}
._c_c00019{margin-left:-1.061464pt;}
._19_c00019{width:1.051439pt;}
._4_c00019{width:2.003490pt;}
._5_c00019{width:3.038995pt;}
._14_c00019{width:4.479109pt;}
._1d_c00019{width:6.886180pt;}
._1_c00019{width:7.991903pt;}
._10_c00019{width:8.948800pt;}
._11_c00019{width:9.918220pt;}
._8_c00019{width:11.535083pt;}
._b_c00019{width:12.853166pt;}
._26_c00019{width:14.749542pt;}
._22_c00019{width:15.649795pt;}
._d_c00019{width:18.807876pt;}
._7_c00019{width:20.389516pt;}
._17_c00019{width:21.495444pt;}
._f_c00019{width:22.941880pt;}
._25_c00019{width:23.847231pt;}
._2_c00019{width:25.089220pt;}
._a_c00019{width:27.532364pt;}
._16_c00019{width:28.956408pt;}
._21_c00019{width:31.045872pt;}
._9_c00019{width:32.701558pt;}
._1f_c00019{width:35.500692pt;}
._1a_c00019{width:37.264698pt;}
._13_c00019{width:44.100775pt;}
._15_c00019{width:45.249191pt;}
._24_c00019{width:47.930748pt;}
._23_c00019{width:48.922556pt;}
._1c_c00019{width:49.858649pt;}
._18_c00019{width:50.984481pt;}
._6_c00019{width:55.014584pt;}
._e_c00019{width:56.328924pt;}
._20_c00019{width:64.174060pt;}
._12_c00019{width:76.600789pt;}
._1e_c00019{width:198.575785pt;}
._1b_c00019{width:1068.345465pt;}
.fs1_c00019{font-size:42.666796pt;}
.fs3_c00019{font-size:53.319997pt;}
.fs0_c00019{font-size:53.333495pt;}
.fs2_c00019{font-size:266.640005pt;}
.y0_c00019{bottom:0.000000pt;}
.y1_c00019{bottom:0.000007pt;}
.y3e_c00019{bottom:44.314523pt;}
.y3_c00019{bottom:44.314653pt;}
.y3d_c00019{bottom:56.759005pt;}
.y2_c00019{bottom:57.648027pt;}
.y3c_c00019{bottom:81.487184pt;}
.y3b_c00019{bottom:96.487183pt;}
.y66_c00019{bottom:99.020620pt;}
.y3a_c00019{bottom:111.487183pt;}
.y65_c00019{bottom:120.020619pt;}
.y39_c00019{bottom:126.487182pt;}
.y64_c00019{bottom:141.020618pt;}
.y38_c00019{bottom:141.487181pt;}
.y37_c00019{bottom:156.487181pt;}
.y63_c00019{bottom:162.020617pt;}
.y36_c00019{bottom:171.487180pt;}
.y62_c00019{bottom:183.020616pt;}
.y35_c00019{bottom:186.487179pt;}
.y61_c00019{bottom:204.020615pt;}
.y34_c00019{bottom:216.487178pt;}
.y60_c00019{bottom:225.020615pt;}
.y33_c00019{bottom:231.487178pt;}
.y32_c00019{bottom:246.487177pt;}
.y31_c00019{bottom:261.487176pt;}
.y5f_c00019{bottom:267.020613pt;}
.y30_c00019{bottom:276.487176pt;}
.y5e_c00019{bottom:288.020612pt;}
.y2f_c00019{bottom:291.487175pt;}
.y2e_c00019{bottom:306.487174pt;}
.y5d_c00019{bottom:309.020611pt;}
.y2d_c00019{bottom:321.487174pt;}
.y5c_c00019{bottom:330.020610pt;}
.y5b_c00019{bottom:351.020609pt;}
.y2c_c00019{bottom:351.487173pt;}
.y2b_c00019{bottom:366.487172pt;}
.y5a_c00019{bottom:372.020608pt;}
.y2a_c00019{bottom:381.487171pt;}
.y59_c00019{bottom:393.020608pt;}
.y29_c00019{bottom:396.487171pt;}
.y28_c00019{bottom:411.487170pt;}
.y58_c00019{bottom:414.020607pt;}
.y27_c00019{bottom:426.487169pt;}
.y57_c00019{bottom:435.020606pt;}
.y26_c00019{bottom:441.487169pt;}
.y25_c00019{bottom:456.487168pt;}
.y24_c00019{bottom:471.487168pt;}
.y56_c00019{bottom:477.020604pt;}
.y23_c00019{bottom:486.487167pt;}
.y55_c00019{bottom:498.020603pt;}
.y22_c00019{bottom:501.487166pt;}
.y21_c00019{bottom:516.487166pt;}
.y54_c00019{bottom:519.020602pt;}
.y53_c00019{bottom:540.020601pt;}
.y20_c00019{bottom:546.487164pt;}
.y52_c00019{bottom:561.020601pt;}
.y1f_c00019{bottom:561.487164pt;}
.y1e_c00019{bottom:576.487163pt;}
.y51_c00019{bottom:582.020600pt;}
.y1d_c00019{bottom:591.487163pt;}
.y50_c00019{bottom:603.020599pt;}
.y1c_c00019{bottom:606.487162pt;}
.y1b_c00019{bottom:621.487161pt;}
.y4f_c00019{bottom:624.020598pt;}
.y1a_c00019{bottom:636.487161pt;}
.y4e_c00019{bottom:645.020597pt;}
.y4d_c00019{bottom:666.020596pt;}
.y19_c00019{bottom:666.487159pt;}
.y18_c00019{bottom:681.487159pt;}
.y4c_c00019{bottom:687.020595pt;}
.y17_c00019{bottom:696.487158pt;}
.y16_c00019{bottom:711.487158pt;}
.y15_c00019{bottom:726.487157pt;}
.y4b_c00019{bottom:729.020594pt;}
.y14_c00019{bottom:741.487156pt;}
.y4a_c00019{bottom:750.020593pt;}
.y13_c00019{bottom:756.487156pt;}
.y49_c00019{bottom:771.020592pt;}
.y12_c00019{bottom:771.487155pt;}
.y11_c00019{bottom:786.487154pt;}
.y48_c00019{bottom:792.020591pt;}
.y10_c00019{bottom:801.487154pt;}
.y47_c00019{bottom:813.020590pt;}
.yf_c00019{bottom:831.487153pt;}
.y46_c00019{bottom:834.020589pt;}
.ye_c00019{bottom:846.487152pt;}
.y45_c00019{bottom:855.020588pt;}
.yd_c00019{bottom:861.487151pt;}
.y44_c00019{bottom:876.020587pt;}
.yc_c00019{bottom:876.487151pt;}
.yb_c00019{bottom:891.487150pt;}
.y43_c00019{bottom:897.020587pt;}
.ya_c00019{bottom:906.487149pt;}
.y42_c00019{bottom:918.020586pt;}
.y9_c00019{bottom:921.487149pt;}
.y8_c00019{bottom:936.487148pt;}
.y41_c00019{bottom:939.020585pt;}
.y7_c00019{bottom:951.487148pt;}
.y40_c00019{bottom:960.020584pt;}
.y6_c00019{bottom:966.487147pt;}
.y3f_c00019{bottom:981.020583pt;}
.y5_c00019{bottom:981.487146pt;}
.y4_c00019{bottom:1026.310581pt;}
.h4_c00019{height:39.729287pt;}
.h7_c00019{height:40.849158pt;}
.h3_c00019{height:40.859499pt;}
.h6_c00019{height:49.649041pt;}
.h5_c00019{height:235.709764pt;}
.h2_c00019{height:1159.999952pt;}
.h0_c00019{height:1159.999959pt;}
.h1_c00019{height:1160.000000pt;}
.w2_c00019{width:830.999965pt;}
.w0_c00019{width:831.000000pt;}
.w1_c00019{width:831.333333pt;}
.x0_c00019{left:0.000000pt;}
.x4_c00019{left:127.996859pt;}
.x2_c00019{left:183.094248pt;}
.x1_c00019{left:215.622124pt;}
.x3_c00019{left:256.458975pt;}
.x7_c00019{left:449.392871pt;}
.x5_c00019{left:472.851275pt;}
.x6_c00019{left:598.615545pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0813313db35c5f1c1fb54b94.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.191406;font-style:normal;font-weight:normal;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_0208efa9fd3ebecd1ab83433.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.006348;font-style:normal;font-weight:normal;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_88422d28f3b9bc13dfd41e56.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00020;src:url('chunks/assets/font_59f19f020c9a401c56294eae.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:0.676270;font-style:normal;font-weight: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_aff5ba2675b5eb52d1f15912.woff2')format("woff");}.ff5_c00020{font-family:ff5_c00020;line-height:1.052000;font-style:normal;font-weight: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_99298a55ecc7e893bfd41e5e.woff2')format("woff");}.ff6_c00020{font-family:ff6_c00020;line-height:1.006348;font-style:normal;font-weight: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_a73040121f65b0c4c26363a2.woff2')format("woff");}.ff7_c00020{font-family:ff7_c00020;line-height:0.737305;font-style:normal;font-weight: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_c00020;src:url('chunks/assets/font_f2147053d90d99adfeabb303.woff2')format("woff");}.ff8_c00020{font-family:ff8_c00020;line-height:1.171387;font-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_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);}
.v0_c00020{vertical-align:0.000000px;}
.ls2_c00020{letter-spacing:0.000000px;}
.ls1_c00020{letter-spacing:0.863955px;}
.ls0_c00020{letter-spacing:5.996096px;}
.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;}
}
.ws1_c00020{word-spacing:-159.884013px;}
.ws0_c00020{word-spacing:-0.065970px;}
.ws2_c00020{word-spacing:-0.042000px;}
.ws3_c00020{word-spacing:0.000000px;}
._c_c00020{margin-left:-7.199958px;}
._17_c00020{margin-left:-3.473396px;}
._16_c00020{margin-left:-1.115829px;}
._0_c00020{width:1.178647px;}
._13_c00020{width:2.867196px;}
._2_c00020{width:4.704857px;}
._1_c00020{width:5.988246px;}
._4_c00020{width:7.106177px;}
._5_c00020{width:8.826824px;}
._b_c00020{width:9.976218px;}
._14_c00020{width:11.110910px;}
._6_c00020{width:12.915102px;}
._11_c00020{width:14.446455px;}
._9_c00020{width:15.692683px;}
._f_c00020{width:17.250052px;}
._a_c00020{width:18.616626px;}
._8_c00020{width:19.662936px;}
._e_c00020{width:20.789126px;}
._15_c00020{width:22.461006px;}
._1c_c00020{width:25.177139px;}
._1e_c00020{width:26.675069px;}
._12_c00020{width:27.866112px;}
._18_c00020{width:29.491117px;}
._19_c00020{width:31.071567px;}
._3_c00020{width:34.294362px;}
._7_c00020{width:35.944062px;}
._d_c00020{width:37.251016px;}
._1d_c00020{width:38.924141px;}
._1b_c00020{width:42.044744px;}
._10_c00020{width:50.854280px;}
._1a_c00020{width:75.656478px;}
.fc5_c00020{color:transparent;}
.fc3_c00020{color:rgb(0,110,129);}
.fc2_c00020{color:rgb(72,111,143);}
.fc1_c00020{color:rgb(34,67,94);}
.fc4_c00020{color:rgb(255,255,255);}
.fc0_c00020{color:rgb(0,0,0);}
.fs4_c00020{font-size:42.000130px;}
.fs3_c00020{font-size:48.000145px;}
.fs0_c00020{font-size:65.969996px;}
.fs2_c00020{font-size:71.999997px;}
.fs1_c00020{font-size:299.970006px;}
.y0_c00020{bottom:0.000000px;}
.y1_c00020{bottom:0.000008px;}
.y28_c00020{bottom:96.606659px;}
.y3a_c00020{bottom:242.353204px;}
.y39_c00020{bottom:258.353252px;}
.y27_c00020{bottom:267.103203px;}
.y38_c00020{bottom:274.353301px;}
.y26_c00020{bottom:283.103251px;}
.y37_c00020{bottom:290.353349px;}
.y25_c00020{bottom:299.103299px;}
.y36_c00020{bottom:306.353397px;}
.y24_c00020{bottom:315.103348px;}
.y35_c00020{bottom:322.353446px;}
.y23_c00020{bottom:331.103396px;}
.y34_c00020{bottom:338.353494px;}
.y22_c00020{bottom:347.103445px;}
.y33_c00020{bottom:354.353543px;}
.y21_c00020{bottom:363.103493px;}
.y32_c00020{bottom:370.353591px;}
.y20_c00020{bottom:379.103542px;}
.y31_c00020{bottom:386.353639px;}
.y1f_c00020{bottom:395.103590px;}
.y30_c00020{bottom:402.353688px;}
.y1e_c00020{bottom:411.103638px;}
.y2f_c00020{bottom:418.353736px;}
.y1d_c00020{bottom:427.103687px;}
.y2e_c00020{bottom:434.353785px;}
.y1c_c00020{bottom:443.103735px;}
.y2d_c00020{bottom:450.353833px;}
.y1b_c00020{bottom:459.103784px;}
.y2c_c00020{bottom:466.353882px;}
.y1a_c00020{bottom:475.103832px;}
.y2b_c00020{bottom:482.353930px;}
.y19_c00020{bottom:491.103881px;}
.y2a_c00020{bottom:498.353978px;}
.y18_c00020{bottom:507.103929px;}
.y17_c00020{bottom:523.103977px;}
.y29_c00020{bottom:523.316534px;}
.y16_c00020{bottom:548.066533px;}
.y15_c00020{bottom:572.816532px;}
.y13_c00020{bottom:632.162436px;}
.y12_c00020{bottom:677.162434px;}
.y11_c00020{bottom:699.662433px;}
.y10_c00020{bottom:722.162432px;}
.yf_c00020{bottom:744.662431px;}
.ye_c00020{bottom:789.662429px;}
.yd_c00020{bottom:812.162429px;}
.yc_c00020{bottom:834.662428px;}
.yb_c00020{bottom:857.162427px;}
.ya_c00020{bottom:879.662426px;}
.y9_c00020{bottom:902.162425px;}
.y8_c00020{bottom:947.162423px;}
.y7_c00020{bottom:969.662422px;}
.y6_c00020{bottom:992.162421px;}
.y5_c00020{bottom:1014.662420px;}
.y4_c00020{bottom:1037.162419px;}
.y3_c00020{bottom:1059.662418px;}
.y2_c00020{bottom:1082.162417px;}
.y14_c00020{bottom:1144.706644px;}
.h7_c00020{height:39.108520px;}
.h6_c00020{height:45.562638px;}
.h5_c00020{height:55.160154px;}
.h3_c00020{height:62.619957px;}
.h4_c00020{height:254.374565px;}
.h2_c00020{height:1304.999946px;}
.h0_c00020{height:1304.999953px;}
.h1_c00020{height:1305.000000px;}
.w2_c00020{width:934.874961px;}
.w0_c00020{width:934.875000px;}
.w1_c00020{width:935.250000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:118.336491px;}
.x3_c00020{left:134.934363px;}
.x2_c00020{left:212.300368px;}
.x4_c00020{left:481.701731px;}
.x5_c00020{left:498.299613px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls2_c00020{letter-spacing:0.000000pt;}
.ls1_c00020{letter-spacing:0.767960pt;}
.ls0_c00020{letter-spacing:5.329863pt;}
.ws1_c00020{word-spacing:-142.119123pt;}
.ws0_c00020{word-spacing:-0.058640pt;}
.ws2_c00020{word-spacing:-0.037333pt;}
.ws3_c00020{word-spacing:0.000000pt;}
._c_c00020{margin-left:-6.399963pt;}
._17_c00020{margin-left:-3.087463pt;}
._16_c00020{margin-left:-0.991848pt;}
._0_c00020{width:1.047686pt;}
._13_c00020{width:2.548619pt;}
._2_c00020{width:4.182095pt;}
._1_c00020{width:5.322885pt;}
._4_c00020{width:6.316601pt;}
._5_c00020{width:7.846066pt;}
._b_c00020{width:8.867749pt;}
._14_c00020{width:9.876364pt;}
._6_c00020{width:11.480091pt;}
._11_c00020{width:12.841293pt;}
._9_c00020{width:13.949052pt;}
._f_c00020{width:15.333380pt;}
._a_c00020{width:16.548112pt;}
._8_c00020{width:17.478166pt;}
._e_c00020{width:18.479223pt;}
._15_c00020{width:19.965339pt;}
._1c_c00020{width:22.379679pt;}
._1e_c00020{width:23.711172pt;}
._12_c00020{width:24.769877pt;}
._18_c00020{width:26.214326pt;}
._19_c00020{width:27.619170pt;}
._3_c00020{width:30.483878pt;}
._7_c00020{width:31.950277pt;}
._d_c00020{width:33.112015pt;}
._1d_c00020{width:34.599236pt;}
._1b_c00020{width:37.373106pt;}
._10_c00020{width:45.203805pt;}
._1a_c00020{width:67.250203pt;}
.fs4_c00020{font-size:37.333449pt;}
.fs3_c00020{font-size:42.666796pt;}
.fs0_c00020{font-size:58.639997pt;}
.fs2_c00020{font-size:63.999997pt;}
.fs1_c00020{font-size:266.640005pt;}
.y0_c00020{bottom:0.000000pt;}
.y1_c00020{bottom:0.000007pt;}
.y28_c00020{bottom:85.872586pt;}
.y3a_c00020{bottom:215.425070pt;}
.y39_c00020{bottom:229.647335pt;}
.y27_c00020{bottom:237.425069pt;}
.y38_c00020{bottom:243.869600pt;}
.y26_c00020{bottom:251.647334pt;}
.y37_c00020{bottom:258.091866pt;}
.y25_c00020{bottom:265.869600pt;}
.y36_c00020{bottom:272.314131pt;}
.y24_c00020{bottom:280.091865pt;}
.y35_c00020{bottom:286.536396pt;}
.y23_c00020{bottom:294.314130pt;}
.y34_c00020{bottom:300.758662pt;}
.y22_c00020{bottom:308.536395pt;}
.y33_c00020{bottom:314.980927pt;}
.y21_c00020{bottom:322.758661pt;}
.y32_c00020{bottom:329.203192pt;}
.y20_c00020{bottom:336.980926pt;}
.y31_c00020{bottom:343.425457pt;}
.y1f_c00020{bottom:351.203191pt;}
.y30_c00020{bottom:357.647723pt;}
.y1e_c00020{bottom:365.425456pt;}
.y2f_c00020{bottom:371.869988pt;}
.y1d_c00020{bottom:379.647722pt;}
.y2e_c00020{bottom:386.092253pt;}
.y1c_c00020{bottom:393.869987pt;}
.y2d_c00020{bottom:400.314518pt;}
.y1b_c00020{bottom:408.092252pt;}
.y2c_c00020{bottom:414.536784pt;}
.y1a_c00020{bottom:422.314517pt;}
.y2b_c00020{bottom:428.759049pt;}
.y19_c00020{bottom:436.536783pt;}
.y2a_c00020{bottom:442.981314pt;}
.y18_c00020{bottom:450.759048pt;}
.y17_c00020{bottom:464.981313pt;}
.y29_c00020{bottom:465.170253pt;}
.y16_c00020{bottom:487.170252pt;}
.y15_c00020{bottom:509.170251pt;}
.y13_c00020{bottom:561.922165pt;}
.y12_c00020{bottom:601.922164pt;}
.y11_c00020{bottom:621.922163pt;}
.y10_c00020{bottom:641.922162pt;}
.yf_c00020{bottom:661.922161pt;}
.ye_c00020{bottom:701.922160pt;}
.yd_c00020{bottom:721.922159pt;}
.yc_c00020{bottom:741.922158pt;}
.yb_c00020{bottom:761.922157pt;}
.ya_c00020{bottom:781.922156pt;}
.y9_c00020{bottom:801.922155pt;}
.y8_c00020{bottom:841.922154pt;}
.y7_c00020{bottom:861.922153pt;}
.y6_c00020{bottom:881.922152pt;}
.y5_c00020{bottom:901.922151pt;}
.y4_c00020{bottom:921.922150pt;}
.y3_c00020{bottom:941.922150pt;}
.y2_c00020{bottom:961.922149pt;}
.y14_c00020{bottom:1017.517017pt;}
.h7_c00020{height:34.763129pt;}
.h6_c00020{height:40.500123pt;}
.h5_c00020{height:49.031248pt;}
.h3_c00020{height:55.662184pt;}
.h4_c00020{height:226.110724pt;}
.h2_c00020{height:1159.999952pt;}
.h0_c00020{height:1159.999959pt;}
.h1_c00020{height:1160.000000pt;}
.w2_c00020{width:830.999965pt;}
.w0_c00020{width:831.000000pt;}
.w1_c00020{width:831.333333pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:105.187992pt;}
.x3_c00020{left:119.941656pt;}
.x2_c00020{left:188.711439pt;}
.x4_c00020{left:428.179317pt;}
.x5_c00020{left:442.932990pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4eac9af9993c98518313114d.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.006348;font-style:normal;font-weight:normal;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_8519ea96d8a8f4bad338c76d.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.191406;font-style:normal;font-weight:normal;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_193a9b34f19dca50a1d36155.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.000000;font-style:normal;font-weight:normal;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_9cd5345ef83765c464fbcb9b.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:1.171387;font-style:normal;font-weight: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_c00021;src:url('chunks/assets/font_a73040121f65b0c4c26363a2.woff2')format("woff");}.ff5_c00021{font-family:ff5_c00021;line-height:0.737305;font-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_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);}
.v0_c00021{vertical-align:0.000000px;}
.ls2_c00021{letter-spacing:0.000000px;}
.ls1_c00021{letter-spacing:0.863955px;}
.ls0_c00021{letter-spacing:1.295975px;}
.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:-13.332743px;}
.ws1_c00021{word-spacing:-0.042000px;}
.ws2_c00021{word-spacing:0.000000px;}
._0_c00021{margin-left:-1.292679px;}
._a_c00021{width:1.180547px;}
._3_c00021{width:2.380256px;}
._2_c00021{width:3.541637px;}
._7_c00021{width:4.937515px;}
._9_c00021{width:6.992209px;}
._4_c00021{width:8.539088px;}
._b_c00021{width:11.385411px;}
._12_c00021{width:15.140671px;}
._10_c00021{width:16.914114px;}
._e_c00021{width:18.464168px;}
._d_c00021{width:19.703185px;}
._1_c00021{width:22.414130px;}
._8_c00021{width:23.773509px;}
._c_c00021{width:25.190872px;}
._f_c00021{width:26.594929px;}
._11_c00021{width:28.875088px;}
._5_c00021{width:32.656349px;}
._6_c00021{width:41.650089px;}
.fc2_c00021{color:rgb(255,255,255);}
.fc1_c00021{color:rgb(0,0,0);}
.fc0_c00021{color:rgb(0,110,129);}
.fs2_c00021{font-size:42.000130px;}
.fs1_c00021{font-size:48.000145px;}
.fs0_c00021{font-size:71.999997px;}
.y0_c00021{bottom:0.000000px;}
.y1_c00021{bottom:0.000008px;}
.y41_c00021{bottom:77.048216px;}
.y40_c00021{bottom:91.048259px;}
.y3f_c00021{bottom:167.938384px;}
.y3e_c00021{bottom:181.938427px;}
.y26_c00021{bottom:336.838902px;}
.y25_c00021{bottom:352.838951px;}
.y24_c00021{bottom:368.838999px;}
.y23_c00021{bottom:384.839048px;}
.y1b_c00021{bottom:389.901885px;}
.y22_c00021{bottom:400.839096px;}
.y1a_c00021{bottom:405.901934px;}
.y21_c00021{bottom:416.839144px;}
.y19_c00021{bottom:421.901982px;}
.y20_c00021{bottom:432.839193px;}
.y18_c00021{bottom:437.902030px;}
.y1f_c00021{bottom:448.839241px;}
.y17_c00021{bottom:453.902079px;}
.y1e_c00021{bottom:464.839290px;}
.y16_c00021{bottom:469.902127px;}
.y1d_c00021{bottom:480.839338px;}
.y15_c00021{bottom:485.902176px;}
.y1c_c00021{bottom:496.839386px;}
.y14_c00021{bottom:501.902224px;}
.y13_c00021{bottom:517.902273px;}
.y27_c00021{bottom:528.641006px;}
.y12_c00021{bottom:533.902321px;}
.y11_c00021{bottom:563.230705px;}
.y3d_c00021{bottom:611.864769px;}
.y3c_c00021{bottom:625.864813px;}
.y3b_c00021{bottom:637.764896px;}
.y3a_c00021{bottom:651.764940px;}
.y10_c00021{bottom:882.394348px;}
.yf_c00021{bottom:898.394397px;}
.ye_c00021{bottom:914.394445px;}
.yd_c00021{bottom:930.394494px;}
.y39_c00021{bottom:935.336755px;}
.yc_c00021{bottom:946.394542px;}
.y38_c00021{bottom:951.336804px;}
.yb_c00021{bottom:962.394590px;}
.y37_c00021{bottom:967.336852px;}
.ya_c00021{bottom:978.394639px;}
.y36_c00021{bottom:983.336900px;}
.y9_c00021{bottom:994.394687px;}
.y35_c00021{bottom:999.336949px;}
.y8_c00021{bottom:1010.394736px;}
.y34_c00021{bottom:1015.336997px;}
.y7_c00021{bottom:1026.394784px;}
.y33_c00021{bottom:1031.337046px;}
.y6_c00021{bottom:1042.394832px;}
.y32_c00021{bottom:1047.337094px;}
.y5_c00021{bottom:1058.394881px;}
.y31_c00021{bottom:1063.337143px;}
.y4_c00021{bottom:1074.394929px;}
.y30_c00021{bottom:1079.337191px;}
.y3_c00021{bottom:1090.394978px;}
.y2f_c00021{bottom:1095.337239px;}
.y2e_c00021{bottom:1111.337288px;}
.y2_c00021{bottom:1119.723351px;}
.y2d_c00021{bottom:1127.337336px;}
.y2c_c00021{bottom:1143.337385px;}
.y2b_c00021{bottom:1159.337433px;}
.y2a_c00021{bottom:1175.337482px;}
.y29_c00021{bottom:1191.337530px;}
.y28_c00021{bottom:1220.665906px;}
.h5_c00021{height:39.108520px;}
.h4_c00021{height:45.562638px;}
.h3_c00021{height:55.160154px;}
.h2_c00021{height:1304.999946px;}
.h0_c00021{height:1304.999953px;}
.h1_c00021{height:1305.000000px;}
.w2_c00021{width:934.874961px;}
.w0_c00021{width:934.875000px;}
.w1_c00021{width:935.250000px;}
.x0_c00021{left:0.000000px;}
.x2_c00021{left:87.902647px;}
.x3_c00021{left:108.024353px;}
.x5_c00021{left:250.624390px;}
.x1_c00021{left:498.955893px;}
.x6_c00021{left:510.506608px;}
.x4_c00021{left:520.030350px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls2_c00021{letter-spacing:0.000000pt;}
.ls1_c00021{letter-spacing:0.767960pt;}
.ls0_c00021{letter-spacing:1.151977pt;}
.ws0_c00021{word-spacing:-11.851327pt;}
.ws1_c00021{word-spacing:-0.037333pt;}
.ws2_c00021{word-spacing:0.000000pt;}
._0_c00021{margin-left:-1.149048pt;}
._a_c00021{width:1.049375pt;}
._3_c00021{width:2.115783pt;}
._2_c00021{width:3.148122pt;}
._7_c00021{width:4.388902pt;}
._9_c00021{width:6.215297pt;}
._4_c00021{width:7.590301pt;}
._b_c00021{width:10.120365pt;}
._12_c00021{width:13.458374pt;}
._10_c00021{width:15.034768pt;}
._e_c00021{width:16.412593pt;}
._d_c00021{width:17.513942pt;}
._1_c00021{width:19.923672pt;}
._8_c00021{width:21.132008pt;}
._c_c00021{width:22.391886pt;}
._f_c00021{width:23.639937pt;}
._11_c00021{width:25.666745pt;}
._5_c00021{width:29.027866pt;}
._6_c00021{width:37.022302pt;}
.fs2_c00021{font-size:37.333449pt;}
.fs1_c00021{font-size:42.666796pt;}
.fs0_c00021{font-size:63.999997pt;}
.y0_c00021{bottom:0.000000pt;}
.y1_c00021{bottom:0.000007pt;}
.y41_c00021{bottom:68.487303pt;}
.y40_c00021{bottom:80.931786pt;}
.y3f_c00021{bottom:149.278564pt;}
.y3e_c00021{bottom:161.723047pt;}
.y26_c00021{bottom:299.412358pt;}
.y25_c00021{bottom:313.634623pt;}
.y24_c00021{bottom:327.856888pt;}
.y23_c00021{bottom:342.079153pt;}
.y1b_c00021{bottom:346.579453pt;}
.y22_c00021{bottom:356.301419pt;}
.y1a_c00021{bottom:360.801719pt;}
.y21_c00021{bottom:370.523684pt;}
.y19_c00021{bottom:375.023984pt;}
.y20_c00021{bottom:384.745949pt;}
.y18_c00021{bottom:389.246249pt;}
.y1f_c00021{bottom:398.968214pt;}
.y17_c00021{bottom:403.468515pt;}
.y1e_c00021{bottom:413.190480pt;}
.y16_c00021{bottom:417.690780pt;}
.y1d_c00021{bottom:427.412745pt;}
.y15_c00021{bottom:431.913045pt;}
.y1c_c00021{bottom:441.635010pt;}
.y14_c00021{bottom:446.135310pt;}
.y13_c00021{bottom:460.357576pt;}
.y27_c00021{bottom:469.903116pt;}
.y12_c00021{bottom:474.579841pt;}
.y11_c00021{bottom:500.649515pt;}
.y3d_c00021{bottom:543.879795pt;}
.y3c_c00021{bottom:556.324278pt;}
.y3b_c00021{bottom:566.902130pt;}
.y3a_c00021{bottom:579.346613pt;}
.y10_c00021{bottom:784.350532pt;}
.yf_c00021{bottom:798.572797pt;}
.ye_c00021{bottom:812.795062pt;}
.yd_c00021{bottom:827.017328pt;}
.y39_c00021{bottom:831.410449pt;}
.yc_c00021{bottom:841.239593pt;}
.y38_c00021{bottom:845.632714pt;}
.yb_c00021{bottom:855.461858pt;}
.y37_c00021{bottom:859.854980pt;}
.ya_c00021{bottom:869.684123pt;}
.y36_c00021{bottom:874.077245pt;}
.y9_c00021{bottom:883.906389pt;}
.y35_c00021{bottom:888.299510pt;}
.y8_c00021{bottom:898.128654pt;}
.y34_c00021{bottom:902.521775pt;}
.y7_c00021{bottom:912.350919pt;}
.y33_c00021{bottom:916.744041pt;}
.y6_c00021{bottom:926.573184pt;}
.y32_c00021{bottom:930.966306pt;}
.y5_c00021{bottom:940.795450pt;}
.y31_c00021{bottom:945.188571pt;}
.y4_c00021{bottom:955.017715pt;}
.y30_c00021{bottom:959.410836pt;}
.y3_c00021{bottom:969.239980pt;}
.y2f_c00021{bottom:973.633102pt;}
.y2e_c00021{bottom:987.855367pt;}
.y2_c00021{bottom:995.309645pt;}
.y2d_c00021{bottom:1002.077632pt;}
.y2c_c00021{bottom:1016.299897pt;}
.y2b_c00021{bottom:1030.522163pt;}
.y2a_c00021{bottom:1044.744428pt;}
.y29_c00021{bottom:1058.966693pt;}
.y28_c00021{bottom:1085.036361pt;}
.h5_c00021{height:34.763129pt;}
.h4_c00021{height:40.500123pt;}
.h3_c00021{height:49.031248pt;}
.h2_c00021{height:1159.999952pt;}
.h0_c00021{height:1159.999959pt;}
.h1_c00021{height:1160.000000pt;}
.w2_c00021{width:830.999965pt;}
.w0_c00021{width:831.000000pt;}
.w1_c00021{width:831.333333pt;}
.x0_c00021{left:0.000000pt;}
.x2_c00021{left:78.135686pt;}
.x3_c00021{left:96.021647pt;}
.x5_c00021{left:222.777236pt;}
.x1_c00021{left:443.516350pt;}
.x6_c00021{left:453.783651pt;}
.x4_c00021{left:462.249200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce5edf039dba60c4fbaf6d0a.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.191406;font-style:normal;font-weight:normal;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_4ca59bc9857f9f3d3e81b5b2.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.006348;font-style:normal;font-weight:normal;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_53ace47493dc9b38daeb2cf5.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:1.000000;font-style:normal;font-weight:normal;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_da7c3614c1a506cfa1123403.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:1.171387;font-style:normal;font-weight: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_c00022;src:url('chunks/assets/font_b14c4d716fcec5f32ec3bed2.woff2')format("woff");}.ff5_c00022{font-family:ff5_c00022;line-height:0.737305;font-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_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);}
.v0_c00022{vertical-align:0.000000px;}
.ls2_c00022{letter-spacing:0.000000px;}
.ls0_c00022{letter-spacing:0.863955px;}
.ls1_c00022{letter-spacing:1.295975px;}
.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.042000px;}
.ws1_c00022{word-spacing:0.000000px;}
._c_c00022{margin-left:-1.114141px;}
._14_c00022{width:1.785711px;}
._6_c00022{width:3.616039px;}
._10_c00022{width:4.750014px;}
._7_c00022{width:6.687520px;}
._3_c00022{width:8.330409px;}
._0_c00022{width:10.044647px;}
._f_c00022{width:11.942236px;}
._a_c00022{width:14.334516px;}
._17_c00022{width:15.366684px;}
._2_c00022{width:16.410755px;}
._4_c00022{width:17.946404px;}
._1a_c00022{width:19.773497px;}
._b_c00022{width:21.336002px;}
._16_c00022{width:22.468818px;}
._1_c00022{width:24.687575px;}
._e_c00022{width:26.437580px;}
._18_c00022{width:27.958397px;}
._11_c00022{width:29.133999px;}
._13_c00022{width:33.927166px;}
._19_c00022{width:35.218918px;}
._1b_c00022{width:39.322995px;}
._d_c00022{width:40.767945px;}
._12_c00022{width:42.343878px;}
._9_c00022{width:47.562644px;}
._15_c00022{width:48.712550px;}
._5_c00022{width:55.687670px;}
._8_c00022{width:59.837646px;}
.fc3_c00022{color:transparent;}
.fc1_c00022{color:rgb(0,110,129);}
.fc2_c00022{color:rgb(255,255,255);}
.fc0_c00022{color:rgb(0,0,0);}
.fs2_c00022{font-size:42.000130px;}
.fs0_c00022{font-size:48.000145px;}
.fs1_c00022{font-size:71.999997px;}
.y0_c00022{bottom:0.000000px;}
.y1_c00022{bottom:0.000008px;}
.y3b_c00022{bottom:77.048036px;}
.y3a_c00022{bottom:91.048079px;}
.y3d_c00022{bottom:169.663324px;}
.y3c_c00022{bottom:183.663367px;}
.y2e_c00022{bottom:338.547217px;}
.y2d_c00022{bottom:354.547266px;}
.y2c_c00022{bottom:370.547314px;}
.y2b_c00022{bottom:386.547362px;}
.y2a_c00022{bottom:402.547411px;}
.y29_c00022{bottom:418.547459px;}
.y28_c00022{bottom:434.547508px;}
.y39_c00022{bottom:437.533699px;}
.y27_c00022{bottom:450.547556px;}
.y38_c00022{bottom:453.533748px;}
.y26_c00022{bottom:466.547604px;}
.y37_c00022{bottom:469.533796px;}
.y25_c00022{bottom:482.547653px;}
.y36_c00022{bottom:485.533844px;}
.y24_c00022{bottom:498.547701px;}
.y35_c00022{bottom:501.533893px;}
.y23_c00022{bottom:514.547750px;}
.y34_c00022{bottom:517.533941px;}
.y33_c00022{bottom:533.533990px;}
.y22_c00022{bottom:543.876313px;}
.y32_c00022{bottom:549.534038px;}
.y31_c00022{bottom:565.534087px;}
.y30_c00022{bottom:581.534135px;}
.y2f_c00022{bottom:610.862303px;}
.y41_c00022{bottom:633.319041px;}
.y40_c00022{bottom:647.319084px;}
.y3f_c00022{bottom:720.205246px;}
.y3e_c00022{bottom:734.205289px;}
.y11_c00022{bottom:920.373115px;}
.y10_c00022{bottom:936.373163px;}
.yf_c00022{bottom:952.373212px;}
.ye_c00022{bottom:968.373260px;}
.y21_c00022{bottom:984.233034px;}
.yd_c00022{bottom:984.373309px;}
.y20_c00022{bottom:1000.233082px;}
.yc_c00022{bottom:1000.373357px;}
.y1f_c00022{bottom:1016.233131px;}
.yb_c00022{bottom:1016.373405px;}
.y1e_c00022{bottom:1032.233179px;}
.ya_c00022{bottom:1032.373454px;}
.y1d_c00022{bottom:1048.233228px;}
.y9_c00022{bottom:1048.373502px;}
.y1c_c00022{bottom:1064.233276px;}
.y8_c00022{bottom:1064.373551px;}
.y1b_c00022{bottom:1080.233325px;}
.y7_c00022{bottom:1080.373599px;}
.y1a_c00022{bottom:1096.233373px;}
.y6_c00022{bottom:1096.373648px;}
.y19_c00022{bottom:1112.233421px;}
.y5_c00022{bottom:1112.373696px;}
.y18_c00022{bottom:1128.233470px;}
.y4_c00022{bottom:1128.373744px;}
.y17_c00022{bottom:1144.233518px;}
.y3_c00022{bottom:1144.373793px;}
.y16_c00022{bottom:1160.233567px;}
.y2_c00022{bottom:1160.373841px;}
.y15_c00022{bottom:1176.233615px;}
.y12_c00022{bottom:1189.702218px;}
.y14_c00022{bottom:1192.233664px;}
.y13_c00022{bottom:1221.562040px;}
.h5_c00022{height:39.108520px;}
.h3_c00022{height:45.562638px;}
.h4_c00022{height:55.160154px;}
.h2_c00022{height:1304.999946px;}
.h0_c00022{height:1304.999953px;}
.h1_c00022{height:1305.000000px;}
.w2_c00022{width:934.874961px;}
.w0_c00022{width:934.875000px;}
.w1_c00022{width:935.250000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:93.543307px;}
.x6_c00022{left:108.985294px;}
.x3_c00022{left:113.237264px;}
.x2_c00022{left:499.547308px;}
.x5_c00022{left:511.488436px;}
.x4_c00022{left:519.992381px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls2_c00022{letter-spacing:0.000000pt;}
.ls0_c00022{letter-spacing:0.767960pt;}
.ls1_c00022{letter-spacing:1.151977pt;}
.ws0_c00022{word-spacing:-0.037333pt;}
.ws1_c00022{word-spacing:0.000000pt;}
._c_c00022{margin-left:-0.990348pt;}
._14_c00022{width:1.587299pt;}
._6_c00022{width:3.214257pt;}
._10_c00022{width:4.222235pt;}
._7_c00022{width:5.944463pt;}
._3_c00022{width:7.404808pt;}
._0_c00022{width:8.928575pt;}
._f_c00022{width:10.615321pt;}
._a_c00022{width:12.741792pt;}
._17_c00022{width:13.659275pt;}
._2_c00022{width:14.587338pt;}
._4_c00022{width:15.952359pt;}
._1a_c00022{width:17.576442pt;}
._b_c00022{width:18.965335pt;}
._16_c00022{width:19.972283pt;}
._1_c00022{width:21.944511pt;}
._e_c00022{width:23.500071pt;}
._18_c00022{width:24.851909pt;}
._11_c00022{width:25.896888pt;}
._13_c00022{width:30.157480pt;}
._19_c00022{width:31.305705pt;}
._1b_c00022{width:34.953773pt;}
._d_c00022{width:36.238174pt;}
._12_c00022{width:37.639003pt;}
._9_c00022{width:42.277906pt;}
._15_c00022{width:43.300044pt;}
._5_c00022{width:49.500151pt;}
._8_c00022{width:53.189019pt;}
.fs2_c00022{font-size:37.333449pt;}
.fs0_c00022{font-size:42.666796pt;}
.fs1_c00022{font-size:63.999997pt;}
.y0_c00022{bottom:0.000000pt;}
.y1_c00022{bottom:0.000007pt;}
.y3b_c00022{bottom:68.487143pt;}
.y3a_c00022{bottom:80.931626pt;}
.y3d_c00022{bottom:150.811843pt;}
.y3c_c00022{bottom:163.256327pt;}
.y2e_c00022{bottom:300.930860pt;}
.y2d_c00022{bottom:315.153125pt;}
.y2c_c00022{bottom:329.375390pt;}
.y2b_c00022{bottom:343.597655pt;}
.y2a_c00022{bottom:357.819921pt;}
.y29_c00022{bottom:372.042186pt;}
.y28_c00022{bottom:386.264451pt;}
.y39_c00022{bottom:388.918844pt;}
.y27_c00022{bottom:400.486716pt;}
.y38_c00022{bottom:403.141109pt;}
.y26_c00022{bottom:414.708982pt;}
.y37_c00022{bottom:417.363374pt;}
.y25_c00022{bottom:428.931247pt;}
.y36_c00022{bottom:431.585639pt;}
.y24_c00022{bottom:443.153512pt;}
.y35_c00022{bottom:445.807905pt;}
.y23_c00022{bottom:457.375778pt;}
.y34_c00022{bottom:460.030170pt;}
.y33_c00022{bottom:474.252435pt;}
.y22_c00022{bottom:483.445612pt;}
.y32_c00022{bottom:488.474701pt;}
.y31_c00022{bottom:502.696966pt;}
.y30_c00022{bottom:516.919231pt;}
.y2f_c00022{bottom:542.988713pt;}
.y41_c00022{bottom:562.950258pt;}
.y40_c00022{bottom:575.394741pt;}
.y3f_c00022{bottom:640.182441pt;}
.y3e_c00022{bottom:652.626924pt;}
.y11_c00022{bottom:818.109435pt;}
.y10_c00022{bottom:832.331701pt;}
.yf_c00022{bottom:846.553966pt;}
.ye_c00022{bottom:860.776231pt;}
.y21_c00022{bottom:874.873808pt;}
.yd_c00022{bottom:874.998497pt;}
.y20_c00022{bottom:889.096073pt;}
.yc_c00022{bottom:889.220762pt;}
.y1f_c00022{bottom:903.318339pt;}
.yb_c00022{bottom:903.443027pt;}
.y1e_c00022{bottom:917.540604pt;}
.ya_c00022{bottom:917.665292pt;}
.y1d_c00022{bottom:931.762869pt;}
.y9_c00022{bottom:931.887558pt;}
.y1c_c00022{bottom:945.985134pt;}
.y8_c00022{bottom:946.109823pt;}
.y1b_c00022{bottom:960.207400pt;}
.y7_c00022{bottom:960.332088pt;}
.y1a_c00022{bottom:974.429665pt;}
.y6_c00022{bottom:974.554353pt;}
.y19_c00022{bottom:988.651930pt;}
.y5_c00022{bottom:988.776619pt;}
.y18_c00022{bottom:1002.874195pt;}
.y4_c00022{bottom:1002.998884pt;}
.y17_c00022{bottom:1017.096461pt;}
.y3_c00022{bottom:1017.221149pt;}
.y16_c00022{bottom:1031.318726pt;}
.y2_c00022{bottom:1031.443414pt;}
.y15_c00022{bottom:1045.540991pt;}
.y12_c00022{bottom:1057.513082pt;}
.y14_c00022{bottom:1059.763256pt;}
.y13_c00022{bottom:1085.832924pt;}
.h5_c00022{height:34.763129pt;}
.h3_c00022{height:40.500123pt;}
.h4_c00022{height:49.031248pt;}
.h2_c00022{height:1159.999952pt;}
.h0_c00022{height:1159.999959pt;}
.h1_c00022{height:1160.000000pt;}
.w2_c00022{width:830.999965pt;}
.w0_c00022{width:831.000000pt;}
.w1_c00022{width:831.333333pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:83.149606pt;}
.x6_c00022{left:96.875817pt;}
.x3_c00022{left:100.655346pt;}
.x2_c00022{left:444.042052pt;}
.x5_c00022{left:454.656387pt;}
.x4_c00022{left:462.215450pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_25297f9ed37251686f41be48.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.191406;font-style:normal;font-weight:normal;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_da3aa1736736cb7366ce761c.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.006348;font-style:normal;font-weight:normal;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_4ec5e705713845974f4c19c6.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_d252b0fad7f3955c2d63e7a9.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:1.000000;font-style:normal;font-weight: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_c00023;src:url('chunks/assets/font_b340cc3adf4d2c2b1e07d995.woff2')format("woff");}.ff5_c00023{font-family:ff5_c00023;line-height:1.171387;font-style:normal;font-weight: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_c00023;src:url('chunks/assets/font_4716fb0e9de7166fc4b3548d.woff2')format("woff");}.ff6_c00023{font-family:ff6_c00023;line-height:1.000000;font-style:normal;font-weight: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_c00023;src:url('chunks/assets/font_744d700413e346209d010893.woff2')format("woff");}.ff7_c00023{font-family:ff7_c00023;line-height:1.006348;font-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_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);}
.v0_c00023{vertical-align:0.000000px;}
.ls2_c00023{letter-spacing:0.000000px;}
.ls0_c00023{letter-spacing:0.863955px;}
.ls1_c00023{letter-spacing:1.295975px;}
.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:-17.136738px;}
.ws1_c00023{word-spacing:-0.062460px;}
.ws2_c00023{word-spacing:0.000000px;}
._1c_c00023{margin-left:-1.398431px;}
._0_c00023{width:1.178647px;}
._7_c00023{width:2.834178px;}
._1d_c00023{width:4.034799px;}
._1e_c00023{width:5.305204px;}
._13_c00023{width:7.105478px;}
._22_c00023{width:8.503346px;}
._c_c00023{width:10.329718px;}
._1_c00023{width:11.494557px;}
._15_c00023{width:12.721545px;}
._14_c00023{width:14.386013px;}
._9_c00023{width:18.352912px;}
._1b_c00023{width:20.687563px;}
._23_c00023{width:21.851629px;}
._2_c00023{width:25.258193px;}
._1a_c00023{width:28.223291px;}
._21_c00023{width:30.026886px;}
._1f_c00023{width:31.858112px;}
._3_c00023{width:33.089095px;}
._b_c00023{width:35.036673px;}
._e_c00023{width:36.167377px;}
._11_c00023{width:37.711888px;}
._16_c00023{width:41.934976px;}
._6_c00023{width:43.168311px;}
._17_c00023{width:45.707022px;}
._12_c00023{width:47.591019px;}
._a_c00023{width:49.893446px;}
._f_c00023{width:55.308998px;}
._4_c00023{width:58.364785px;}
._19_c00023{width:59.823857px;}
._18_c00023{width:92.398176px;}
._20_c00023{width:97.979422px;}
._5_c00023{width:118.585703px;}
._10_c00023{width:132.392350px;}
._8_c00023{width:182.155351px;}
._d_c00023{width:235.274275px;}
.fc2_c00023{color:rgb(0,110,129);}
.fc1_c00023{color:rgb(34,67,94);}
.fc3_c00023{color:rgb(255,255,255);}
.fc0_c00023{color:rgb(0,0,0);}
.fs3_c00023{font-size:42.000130px;}
.fs1_c00023{font-size:48.000145px;}
.fs4_c00023{font-size:62.459998px;}
.fs0_c00023{font-size:65.969996px;}
.fs2_c00023{font-size:71.999997px;}
.y0_c00023{bottom:0.000000px;}
.y1_c00023{bottom:0.000008px;}
.y3b_c00023{bottom:233.552798px;}
.y3a_c00023{bottom:251.552798px;}
.y24_c00023{bottom:323.719791px;}
.y23_c00023{bottom:346.219790px;}
.y22_c00023{bottom:368.719789px;}
.y21_c00023{bottom:391.219788px;}
.y20_c00023{bottom:413.719788px;}
.y1f_c00023{bottom:436.219787px;}
.y1e_c00023{bottom:458.719786px;}
.y1d_c00023{bottom:481.219785px;}
.y1c_c00023{bottom:526.219783px;}
.y1b_c00023{bottom:548.719782px;}
.y1a_c00023{bottom:571.219781px;}
.y19_c00023{bottom:593.719780px;}
.y39_c00023{bottom:601.805326px;}
.y38_c00023{bottom:615.805369px;}
.y18_c00023{bottom:616.219779px;}
.y17_c00023{bottom:638.719778px;}
.y16_c00023{bottom:661.219777px;}
.y15_c00023{bottom:683.719776px;}
.y14_c00023{bottom:706.219775px;}
.y13_c00023{bottom:728.719774px;}
.y12_c00023{bottom:751.219773px;}
.y11_c00023{bottom:773.719773px;}
.y10_c00023{bottom:796.219772px;}
.yf_c00023{bottom:818.719771px;}
.ye_c00023{bottom:863.719769px;}
.y36_c00023{bottom:866.143897px;}
.y35_c00023{bottom:882.143946px;}
.yd_c00023{bottom:886.219768px;}
.y34_c00023{bottom:898.143994px;}
.yc_c00023{bottom:908.719767px;}
.y33_c00023{bottom:914.144043px;}
.y32_c00023{bottom:930.144091px;}
.yb_c00023{bottom:931.219766px;}
.y31_c00023{bottom:946.144140px;}
.ya_c00023{bottom:953.719765px;}
.y30_c00023{bottom:962.144188px;}
.y9_c00023{bottom:976.219764px;}
.y2f_c00023{bottom:978.144236px;}
.y2e_c00023{bottom:994.144285px;}
.y8_c00023{bottom:998.719763px;}
.y2d_c00023{bottom:1010.144333px;}
.y7_c00023{bottom:1021.219762px;}
.y2c_c00023{bottom:1026.144382px;}
.y2b_c00023{bottom:1042.144430px;}
.y6_c00023{bottom:1043.719761px;}
.y2a_c00023{bottom:1058.144478px;}
.y5_c00023{bottom:1066.219760px;}
.y29_c00023{bottom:1074.144527px;}
.y4_c00023{bottom:1088.719759px;}
.y28_c00023{bottom:1090.144575px;}
.y27_c00023{bottom:1106.144624px;}
.y3_c00023{bottom:1111.219758px;}
.y26_c00023{bottom:1122.144672px;}
.y2_c00023{bottom:1133.719758px;}
.y25_c00023{bottom:1138.144721px;}
.y37_c00023{bottom:1167.472921px;}
.h7_c00023{height:39.108520px;}
.h5_c00023{height:45.562638px;}
.h8_c00023{height:47.454959px;}
.h9_c00023{height:47.851434px;}
.h4_c00023{height:50.540490px;}
.h6_c00023{height:55.160154px;}
.h3_c00023{height:62.619957px;}
.h2_c00023{height:1304.999946px;}
.h0_c00023{height:1304.999953px;}
.h1_c00023{height:1305.000000px;}
.w2_c00023{width:934.874961px;}
.w0_c00023{width:934.875000px;}
.w1_c00023{width:935.250000px;}
.x0_c00023{left:0.000000px;}
.x2_c00023{left:88.005035px;}
.x3_c00023{left:97.795267px;}
.x1_c00023{left:480.689717px;}
.x4_c00023{left:522.564411px;}
.x5_c00023{left:720.160106px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls2_c00023{letter-spacing:0.000000pt;}
.ls0_c00023{letter-spacing:0.767960pt;}
.ls1_c00023{letter-spacing:1.151977pt;}
.ws0_c00023{word-spacing:-15.232656pt;}
.ws1_c00023{word-spacing:-0.055520pt;}
.ws2_c00023{word-spacing:0.000000pt;}
._1c_c00023{margin-left:-1.243049pt;}
._0_c00023{width:1.047686pt;}
._7_c00023{width:2.519269pt;}
._1d_c00023{width:3.586488pt;}
._1e_c00023{width:4.715737pt;}
._13_c00023{width:6.315981pt;}
._22_c00023{width:7.558529pt;}
._c_c00023{width:9.181972pt;}
._1_c00023{width:10.217384pt;}
._15_c00023{width:11.308040pt;}
._14_c00023{width:12.787568pt;}
._9_c00023{width:16.313699pt;}
._1b_c00023{width:18.388945pt;}
._23_c00023{width:19.423670pt;}
._2_c00023{width:22.451727pt;}
._1a_c00023{width:25.087370pt;}
._21_c00023{width:26.690565pt;}
._1f_c00023{width:28.318322pt;}
._3_c00023{width:29.412529pt;}
._b_c00023{width:31.143709pt;}
._e_c00023{width:32.148780pt;}
._11_c00023{width:33.521679pt;}
._16_c00023{width:37.275534pt;}
._6_c00023{width:38.371832pt;}
._17_c00023{width:40.628464pt;}
._12_c00023{width:42.303128pt;}
._a_c00023{width:44.349730pt;}
._f_c00023{width:49.163554pt;}
._4_c00023{width:51.879809pt;}
._19_c00023{width:53.176762pt;}
._18_c00023{width:82.131712pt;}
._20_c00023{width:87.092820pt;}
._5_c00023{width:105.409514pt;}
._10_c00023{width:117.682089pt;}
._8_c00023{width:161.915868pt;}
._d_c00023{width:209.132689pt;}
.fs3_c00023{font-size:37.333449pt;}
.fs1_c00023{font-size:42.666796pt;}
.fs4_c00023{font-size:55.519998pt;}
.fs0_c00023{font-size:58.639997pt;}
.fs2_c00023{font-size:63.999997pt;}
.y0_c00023{bottom:0.000000pt;}
.y1_c00023{bottom:0.000007pt;}
.y3b_c00023{bottom:207.602487pt;}
.y3a_c00023{bottom:223.602487pt;}
.y24_c00023{bottom:287.750926pt;}
.y23_c00023{bottom:307.750925pt;}
.y22_c00023{bottom:327.750924pt;}
.y21_c00023{bottom:347.750923pt;}
.y20_c00023{bottom:367.750922pt;}
.y1f_c00023{bottom:387.750921pt;}
.y1e_c00023{bottom:407.750921pt;}
.y1d_c00023{bottom:427.750920pt;}
.y1c_c00023{bottom:467.750918pt;}
.y1b_c00023{bottom:487.750917pt;}
.y1a_c00023{bottom:507.750916pt;}
.y19_c00023{bottom:527.750916pt;}
.y39_c00023{bottom:534.938067pt;}
.y38_c00023{bottom:547.382551pt;}
.y18_c00023{bottom:547.750915pt;}
.y17_c00023{bottom:567.750914pt;}
.y16_c00023{bottom:587.750913pt;}
.y15_c00023{bottom:607.750912pt;}
.y14_c00023{bottom:627.750911pt;}
.y13_c00023{bottom:647.750911pt;}
.y12_c00023{bottom:667.750910pt;}
.y11_c00023{bottom:687.750909pt;}
.y10_c00023{bottom:707.750908pt;}
.yf_c00023{bottom:727.750907pt;}
.ye_c00023{bottom:767.750906pt;}
.y36_c00023{bottom:769.905687pt;}
.y35_c00023{bottom:784.127952pt;}
.yd_c00023{bottom:787.750905pt;}
.y34_c00023{bottom:798.350217pt;}
.yc_c00023{bottom:807.750904pt;}
.y33_c00023{bottom:812.572482pt;}
.y32_c00023{bottom:826.794748pt;}
.yb_c00023{bottom:827.750903pt;}
.y31_c00023{bottom:841.017013pt;}
.ya_c00023{bottom:847.750902pt;}
.y30_c00023{bottom:855.239278pt;}
.y9_c00023{bottom:867.750901pt;}
.y2f_c00023{bottom:869.461543pt;}
.y2e_c00023{bottom:883.683809pt;}
.y8_c00023{bottom:887.750901pt;}
.y2d_c00023{bottom:897.906074pt;}
.y7_c00023{bottom:907.750900pt;}
.y2c_c00023{bottom:912.128339pt;}
.y2b_c00023{bottom:926.350604pt;}
.y6_c00023{bottom:927.750899pt;}
.y2a_c00023{bottom:940.572870pt;}
.y5_c00023{bottom:947.750898pt;}
.y29_c00023{bottom:954.795135pt;}
.y4_c00023{bottom:967.750897pt;}
.y28_c00023{bottom:969.017400pt;}
.y27_c00023{bottom:983.239666pt;}
.y3_c00023{bottom:987.750896pt;}
.y26_c00023{bottom:997.461931pt;}
.y2_c00023{bottom:1007.750896pt;}
.y25_c00023{bottom:1011.684196pt;}
.y37_c00023{bottom:1037.753707pt;}
.h7_c00023{height:34.763129pt;}
.h5_c00023{height:40.500123pt;}
.h8_c00023{height:42.182186pt;}
.h9_c00023{height:42.534608pt;}
.h4_c00023{height:44.924880pt;}
.h6_c00023{height:49.031248pt;}
.h3_c00023{height:55.662184pt;}
.h2_c00023{height:1159.999952pt;}
.h0_c00023{height:1159.999959pt;}
.h1_c00023{height:1160.000000pt;}
.w2_c00023{width:830.999965pt;}
.w0_c00023{width:831.000000pt;}
.w1_c00023{width:831.333333pt;}
.x0_c00023{left:0.000000pt;}
.x2_c00023{left:78.226698pt;}
.x3_c00023{left:86.929126pt;}
.x1_c00023{left:427.279749pt;}
.x4_c00023{left:464.501698pt;}
.x5_c00023{left:640.142316pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:0.734863;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:0.734863;font-style:normal;font-weight:normal;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_58992cd857af0399ad6181dc.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.117000;font-style:normal;font-weight:normal;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_cf7bddc7925867030f9bcf79.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:1.119000;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_bb8889f400382f73c335561f.woff2')format("woff");}.ff5_c00024{font-family:ff5_c00024;line-height:0.974000;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_a079d43cf8ff41e13f31efef.woff2')format("woff");}.ff6_c00024{font-family:ff6_c00024;line-height:0.737305;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_0af4b265c5f0975ab2c107eb.woff2')format("woff");}.ff7_c00024{font-family:ff7_c00024;line-height:1.000000;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_eca4c69304aa9812b4048703.woff2')format("woff");}.ff8_c00024{font-family:ff8_c00024;line-height:1.006348;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_8e1b9ce5db8e8cfef69e5373.woff2')format("woff");}.ff9_c00024{font-family:ff9_c00024;line-height:0.737305;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_eb8ed1cbae22f5535dac8ee9.woff2')format("woff");}.ffa_c00024{font-family:ffa_c00024;line-height:1.052000;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_ef75ac09ec0bee8008350615.woff2')format("woff");}.ffb_c00024{font-family:ffb_c00024;line-height:0.713867;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_1c42d30b1d2d07b8978519a3.woff2')format("woff");}.ffc_c00024{font-family:ffc_c00024;line-height:0.966000;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_d09c9f41fc952bd7fc5f8a59.woff2')format("woff");}.ffd_c00024{font-family:ffd_c00024;line-height:0.938000;font-style:normal;font-weight: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_c00024;src:url('chunks/assets/font_b01ce3d8e992b3523948a969.woff2')format("woff");}.ffe_c00024{font-family:ffe_c00024;line-height:0.769531;font-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_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);}
.v0_c00024{vertical-align:0.000000px;}
.v1_c00024{vertical-align:45.977044px;}
.ls5_c00024{letter-spacing:0.000000px;}
.ls2_c00024{letter-spacing:0.766777px;}
.ls3_c00024{letter-spacing:0.808593px;}
.ls1_c00024{letter-spacing:0.971946px;}
.ls4_c00024{letter-spacing:1.037109px;}
.ls0_c00024{letter-spacing:407.722226px;}
.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;}
}
.ws7_c00024{word-spacing:-46.079998px;}
.ws1_c00024{word-spacing:-25.632444px;}
.ws8_c00024{word-spacing:-21.991769px;}
.ws2_c00024{word-spacing:-20.493475px;}
.ws3_c00024{word-spacing:-20.304840px;}
.ws0_c00024{word-spacing:-19.970528px;}
.ws4_c00024{word-spacing:-1.025946px;}
.ws6_c00024{word-spacing:-0.820777px;}
.ws5_c00024{word-spacing:-0.054000px;}
.ws9_c00024{word-spacing:0.000000px;}
._2_c00024{margin-left:-1.268718px;}
._0_c00024{width:1.308379px;}
._b_c00024{width:2.360481px;}
._7_c00024{width:4.910683px;}
._9_c00024{width:6.378380px;}
._8_c00024{width:10.799793px;}
._f_c00024{width:11.838867px;}
._e_c00024{width:16.646368px;}
._6_c00024{width:17.667252px;}
._d_c00024{width:20.296829px;}
._17_c00024{width:22.406204px;}
._1_c00024{width:24.905800px;}
._a_c00024{width:27.342567px;}
._5_c00024{width:29.503097px;}
._11_c00024{width:30.634208px;}
._c_c00024{width:37.603110px;}
._10_c00024{width:38.840582px;}
._12_c00024{width:39.853316px;}
._4_c00024{width:57.480467px;}
._14_c00024{width:58.746092px;}
._15_c00024{width:77.199208px;}
._16_c00024{width:79.145250px;}
._3_c00024{width:98.179661px;}
._13_c00024{width:99.867161px;}
.fc2_c00024{color:rgb(255,255,255);}
.fc1_c00024{color:rgb(0,0,0);}
.fc4_c00024{color:rgb(72,111,143);}
.fc3_c00024{color:rgb(34,67,94);}
.fc0_c00024{color:rgb(9,71,81);}
.fs9_c00024{font-size:53.999998px;}
.fs1_c00024{font-size:57.267790px;}
.fs0_c00024{font-size:59.480406px;}
.fs2_c00024{font-size:60.357082px;}
.fs3_c00024{font-size:69.479995px;}
.fs4_c00024{font-size:70.817475px;}
.fs8_c00024{font-size:72.002979px;}
.fs6_c00024{font-size:72.671896px;}
.fsc_c00024{font-size:77.984997px;}
.fs5_c00024{font-size:90.895193px;}
.fsb_c00024{font-size:179.999993px;}
.fs7_c00024{font-size:196.612991px;}
.fsa_c00024{font-size:359.999985px;}
.y0_c00024{bottom:0.000000px;}
.y1_c00024{bottom:0.000008px;}
.y20_c00024{bottom:73.567977px;}
.y1f_c00024{bottom:89.317976px;}
.y12_c00024{bottom:127.072688px;}
.y11_c00024{bottom:186.925493px;}
.ye_c00024{bottom:196.075253px;}
.ya_c00024{bottom:239.698973px;}
.y10_c00024{bottom:248.196483px;}
.yd_c00024{bottom:249.128127px;}
.y9_c00024{bottom:260.894942px;}
.yc_c00024{bottom:296.713250px;}
.y8_c00024{bottom:306.058056px;}
.yf_c00024{bottom:306.245076px;}
.yb_c00024{bottom:317.909220px;}
.y22_c00024{bottom:370.487793px;}
.y31_c00024{bottom:441.812790px;}
.y30_c00024{bottom:457.562789px;}
.y2f_c00024{bottom:473.312788px;}
.y2e_c00024{bottom:489.062788px;}
.y2d_c00024{bottom:504.812787px;}
.y2c_c00024{bottom:520.562786px;}
.y2b_c00024{bottom:536.312786px;}
.y1d_c00024{bottom:552.053641px;}
.y2a_c00024{bottom:552.062785px;}
.y1c_c00024{bottom:567.803640px;}
.y29_c00024{bottom:567.812784px;}
.y1b_c00024{bottom:583.553640px;}
.y28_c00024{bottom:583.562784px;}
.y1a_c00024{bottom:599.303639px;}
.y27_c00024{bottom:599.312783px;}
.y19_c00024{bottom:615.053638px;}
.y26_c00024{bottom:615.062782px;}
.y18_c00024{bottom:630.803638px;}
.y25_c00024{bottom:630.812782px;}
.y17_c00024{bottom:646.553637px;}
.y24_c00024{bottom:646.562781px;}
.y16_c00024{bottom:662.303636px;}
.y23_c00024{bottom:662.312780px;}
.y15_c00024{bottom:693.974385px;}
.y37_c00024{bottom:704.049580px;}
.y36_c00024{bottom:728.789969px;}
.y4_c00024{bottom:764.620449px;}
.y14_c00024{bottom:766.969303px;}
.y35_c00024{bottom:842.079221px;}
.y33_c00024{bottom:845.781879px;}
.y7_c00024{bottom:854.906129px;}
.y3_c00024{bottom:879.464813px;}
.y32_c00024{bottom:919.112893px;}
.y6_c00024{bottom:936.159743px;}
.y34_c00024{bottom:947.258631px;}
.y2_c00024{bottom:991.134229px;}
.y13_c00024{bottom:991.639530px;}
.y5_c00024{bottom:1010.182458px;}
.y21_c00024{bottom:1078.555736px;}
.y1e_c00024{bottom:1147.729524px;}
.hb_c00024{height:41.370115px;}
.h4_c00024{height:41.524740px;}
.h3_c00024{height:43.129103px;}
.h5_c00024{height:43.764779px;}
.h9_c00024{height:55.303313px;}
.h6_c00024{height:65.241716px;}
.h7_c00024{height:66.497609px;}
.he_c00024{height:73.227912px;}
.h8_c00024{height:85.350586px;}
.hd_c00024{height:142.199994px;}
.ha_c00024{height:142.371614px;}
.hc_c00024{height:305.279987px;}
.h2_c00024{height:1304.999946px;}
.h0_c00024{height:1304.999953px;}
.h1_c00024{height:1305.000000px;}
.w2_c00024{width:934.874961px;}
.w0_c00024{width:934.875000px;}
.w1_c00024{width:935.250000px;}
.x0_c00024{left:0.000000px;}
.x12_c00024{left:88.506637px;}
.x10_c00024{left:90.397883px;}
.x11_c00024{left:93.543307px;}
.x13_c00024{left:96.469362px;}
.xd_c00024{left:107.690532px;}
.x14_c00024{left:109.724014px;}
.x7_c00024{left:128.610092px;}
.x4_c00024{left:206.138004px;}
.x5_c00024{left:213.562125px;}
.x6_c00024{left:215.966102px;}
.x17_c00024{left:231.239104px;}
.xf_c00024{left:243.757344px;}
.x8_c00024{left:379.781703px;}
.x9_c00024{left:382.823070px;}
.xe_c00024{left:507.005442px;}
.x15_c00024{left:542.089446px;}
.x16_c00024{left:544.122928px;}
.x3_c00024{left:651.878819px;}
.x1_c00024{left:656.358256px;}
.xa_c00024{left:657.459693px;}
.xb_c00024{left:660.762800px;}
.x2_c00024{left:662.163875px;}
.xc_c00024{left:664.090280px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.v1_c00024{vertical-align:40.868484pt;}
.ls5_c00024{letter-spacing:0.000000pt;}
.ls2_c00024{letter-spacing:0.681579pt;}
.ls3_c00024{letter-spacing:0.718750pt;}
.ls1_c00024{letter-spacing:0.863952pt;}
.ls4_c00024{letter-spacing:0.921875pt;}
.ls0_c00024{letter-spacing:362.419756pt;}
.ws7_c00024{word-spacing:-40.959998pt;}
.ws1_c00024{word-spacing:-22.784395pt;}
.ws8_c00024{word-spacing:-19.548239pt;}
.ws2_c00024{word-spacing:-18.216422pt;}
.ws3_c00024{word-spacing:-18.048747pt;}
.ws0_c00024{word-spacing:-17.751580pt;}
.ws4_c00024{word-spacing:-0.911952pt;}
.ws6_c00024{word-spacing:-0.729579pt;}
.ws5_c00024{word-spacing:-0.048000pt;}
.ws9_c00024{word-spacing:0.000000pt;}
._2_c00024{margin-left:-1.127749pt;}
._0_c00024{width:1.163004pt;}
._b_c00024{width:2.098206pt;}
._7_c00024{width:4.365052pt;}
._9_c00024{width:5.669671pt;}
._8_c00024{width:9.599816pt;}
._f_c00024{width:10.523437pt;}
._e_c00024{width:14.796771pt;}
._6_c00024{width:15.704224pt;}
._d_c00024{width:18.041625pt;}
._17_c00024{width:19.916625pt;}
._1_c00024{width:22.138489pt;}
._a_c00024{width:24.304504pt;}
._5_c00024{width:26.224975pt;}
._11_c00024{width:27.230407pt;}
._c_c00024{width:33.424986pt;}
._10_c00024{width:34.524962pt;}
._12_c00024{width:35.425170pt;}
._4_c00024{width:51.093748pt;}
._14_c00024{width:52.218748pt;}
._15_c00024{width:68.621519pt;}
._16_c00024{width:70.351334pt;}
._3_c00024{width:87.270810pt;}
._13_c00024{width:88.770810pt;}
.fs9_c00024{font-size:47.999998pt;}
.fs1_c00024{font-size:50.904702pt;}
.fs0_c00024{font-size:52.871472pt;}
.fs2_c00024{font-size:53.650740pt;}
.fs3_c00024{font-size:61.759996pt;}
.fs4_c00024{font-size:62.948867pt;}
.fs8_c00024{font-size:64.002648pt;}
.fs6_c00024{font-size:64.597241pt;}
.fsc_c00024{font-size:69.319997pt;}
.fs5_c00024{font-size:80.795727pt;}
.fsb_c00024{font-size:159.999993pt;}
.fs7_c00024{font-size:174.767103pt;}
.fsa_c00024{font-size:319.999987pt;}
.y0_c00024{bottom:0.000000pt;}
.y1_c00024{bottom:0.000007pt;}
.y20_c00024{bottom:65.393757pt;}
.y1f_c00024{bottom:79.393757pt;}
.y12_c00024{bottom:112.953500pt;}
.y11_c00024{bottom:166.155994pt;}
.ye_c00024{bottom:174.289114pt;}
.ya_c00024{bottom:213.065753pt;}
.y10_c00024{bottom:220.619096pt;}
.yd_c00024{bottom:221.447224pt;}
.y9_c00024{bottom:231.906615pt;}
.yc_c00024{bottom:263.745111pt;}
.y8_c00024{bottom:272.051606pt;}
.yf_c00024{bottom:272.217846pt;}
.yb_c00024{bottom:282.585973pt;}
.y22_c00024{bottom:329.322482pt;}
.y31_c00024{bottom:392.722480pt;}
.y30_c00024{bottom:406.722479pt;}
.y2f_c00024{bottom:420.722478pt;}
.y2e_c00024{bottom:434.722478pt;}
.y2d_c00024{bottom:448.722477pt;}
.y2c_c00024{bottom:462.722477pt;}
.y2b_c00024{bottom:476.722476pt;}
.y1d_c00024{bottom:490.714348pt;}
.y2a_c00024{bottom:490.722476pt;}
.y1c_c00024{bottom:504.714347pt;}
.y29_c00024{bottom:504.722475pt;}
.y1b_c00024{bottom:518.714346pt;}
.y28_c00024{bottom:518.722474pt;}
.y1a_c00024{bottom:532.714346pt;}
.y27_c00024{bottom:532.722474pt;}
.y19_c00024{bottom:546.714345pt;}
.y26_c00024{bottom:546.722473pt;}
.y18_c00024{bottom:560.714345pt;}
.y25_c00024{bottom:560.722473pt;}
.y17_c00024{bottom:574.714344pt;}
.y24_c00024{bottom:574.722472pt;}
.y16_c00024{bottom:588.714343pt;}
.y23_c00024{bottom:588.722471pt;}
.y15_c00024{bottom:616.866120pt;}
.y37_c00024{bottom:625.821849pt;}
.y36_c00024{bottom:647.813306pt;}
.y4_c00024{bottom:679.662622pt;}
.y14_c00024{bottom:681.750492pt;}
.y35_c00024{bottom:748.514863pt;}
.y33_c00024{bottom:751.806114pt;}
.y7_c00024{bottom:759.916559pt;}
.y3_c00024{bottom:781.746500pt;}
.y32_c00024{bottom:816.989238pt;}
.y6_c00024{bottom:832.141994pt;}
.y34_c00024{bottom:842.007672pt;}
.y2_c00024{bottom:881.008203pt;}
.y13_c00024{bottom:881.457360pt;}
.y5_c00024{bottom:897.939963pt;}
.y21_c00024{bottom:958.716210pt;}
.y1e_c00024{bottom:1020.204021pt;}
.hb_c00024{height:36.773436pt;}
.h4_c00024{height:36.910880pt;}
.h3_c00024{height:38.336981pt;}
.h5_c00024{height:38.902026pt;}
.h9_c00024{height:49.158500pt;}
.h6_c00024{height:57.992636pt;}
.h7_c00024{height:59.108986pt;}
.he_c00024{height:65.091477pt;}
.h8_c00024{height:75.867188pt;}
.hd_c00024{height:126.399995pt;}
.ha_c00024{height:126.552546pt;}
.hc_c00024{height:271.359989pt;}
.h2_c00024{height:1159.999952pt;}
.h0_c00024{height:1159.999959pt;}
.h1_c00024{height:1160.000000pt;}
.w2_c00024{width:830.999965pt;}
.w0_c00024{width:831.000000pt;}
.w1_c00024{width:831.333333pt;}
.x0_c00024{left:0.000000pt;}
.x12_c00024{left:78.672566pt;}
.x10_c00024{left:80.353673pt;}
.x11_c00024{left:83.149606pt;}
.x13_c00024{left:85.750544pt;}
.xd_c00024{left:95.724918pt;}
.x14_c00024{left:97.532457pt;}
.x7_c00024{left:114.320082pt;}
.x4_c00024{left:183.233781pt;}
.x5_c00024{left:189.833000pt;}
.x6_c00024{left:191.969869pt;}
.x17_c00024{left:205.545870pt;}
.xf_c00024{left:216.673194pt;}
.x8_c00024{left:337.583736pt;}
.x9_c00024{left:340.287173pt;}
.xe_c00024{left:450.671504pt;}
.x15_c00024{left:481.857286pt;}
.x16_c00024{left:483.664825pt;}
.x3_c00024{left:579.447839pt;}
.x1_c00024{left:583.429561pt;}
.xa_c00024{left:584.408616pt;}
.xb_c00024{left:587.344712pt;}
.x2_c00024{left:588.590111pt;}
.xc_c00024{left:590.302471pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9aea1c09b880b1ce8c6c88bd.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.000000;font-style:normal;font-weight:normal;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_782b704ebc369d287dbc44fd.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00025;src:url('chunks/assets/font_08fb5552857865a8c4a7e753.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00025;src:url('chunks/assets/font_cddc133d8e6f9d4f50fc1b6f.woff2')format("woff");}.ff4_c00025{font-family:ff4_c00025;line-height:1.006348;font-style:normal;font-weight: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_c00025;src:url('chunks/assets/font_f817e86047d02a0ab773a4dd.woff2')format("woff");}.ff5_c00025{font-family:ff5_c00025;line-height:0.733887;font-style:normal;font-weight: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_c00025;src:url('chunks/assets/font_0cd63b6095a8ffe925cc4b3f.woff2')format("woff");}.ff6_c00025{font-family:ff6_c00025;line-height:0.713867;font-style:normal;font-weight: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_c00025;src:url('chunks/assets/font_cce321f6bfc63146c3602569.woff2')format("woff");}.ff7_c00025{font-family:ff7_c00025;line-height:0.718000;font-style:normal;font-weight: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_c00025;src:url('chunks/assets/font_f1723ec12e008f61d9aaf962.woff2')format("woff");}.ff8_c00025{font-family:ff8_c00025;line-height:0.894000;font-style:normal;font-weight: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_c00025;src:url('chunks/assets/font_c3bb023f0e3c0f652af3684b.woff2')format("woff");}.ff9_c00025{font-family:ff9_c00025;line-height:1.171387;font-style:normal;font-weight: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_c00025;src:url('chunks/assets/font_2ea3914d8a9f46c5469a16f7.woff2')format("woff");}.ffa_c00025{font-family:ffa_c00025;line-height:1.000000;font-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_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);}
.v1_c00025{vertical-align:-14.972687px;}
.v0_c00025{vertical-align:0.000000px;}
.ls7_c00025{letter-spacing:0.000000px;}
.ls4_c00025{letter-spacing:1.127680px;}
.ls2_c00025{letter-spacing:1.127703px;}
.ls3_c00025{letter-spacing:1.127725px;}
.ls5_c00025{letter-spacing:1.139261px;}
.ls1_c00025{letter-spacing:3.121084px;}
.ls0_c00025{letter-spacing:13.386708px;}
.ls6_c00025{letter-spacing:1404.834442px;}
.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;}
}
.ws1_c00025{word-spacing:-94.679996px;}
.ws0_c00025{word-spacing:-0.059985px;}
.ws2_c00025{word-spacing:0.000000px;}
._0_c00025{width:1.075223px;}
._2_c00025{width:3.103270px;}
._8_c00025{width:4.409040px;}
._4_c00025{width:5.895317px;}
._7_c00025{width:8.102487px;}
._6_c00025{width:11.535316px;}
._1_c00025{width:13.390238px;}
._3_c00025{width:19.413127px;}
._5_c00025{width:41.225561px;}
.fc2_c00025{color:rgb(103,143,175);}
.fc3_c00025{color:rgb(255,255,255);}
.fc1_c00025{color:rgb(0,0,0);}
.fc0_c00025{color:rgb(34,67,94);}
.fs6_c00025{font-size:39.399634px;}
.fs9_c00025{font-size:40.015151px;}
.fsb_c00025{font-size:40.060416px;}
.fs7_c00025{font-size:40.438533px;}
.fsa_c00025{font-size:45.129870px;}
.fs8_c00025{font-size:45.607368px;}
.fs0_c00025{font-size:59.984997px;}
.fs4_c00025{font-size:60.792503px;}
.fs3_c00025{font-size:60.792607px;}
.fs5_c00025{font-size:60.792693px;}
.fs2_c00025{font-size:101.295508px;}
.fsc_c00025{font-size:123.133375px;}
.fs1_c00025{font-size:179.999993px;}
.y0_c00025{bottom:0.000000px;}
.y1_c00025{bottom:0.000008px;}
.y7_c00025{bottom:75.304149px;}
.y6_c00025{bottom:92.179148px;}
.y5_c00025{bottom:109.054147px;}
.y4_c00025{bottom:125.929147px;}
.y3_c00025{bottom:142.804146px;}
.y2_c00025{bottom:159.679145px;}
.y19_c00025{bottom:304.755923px;}
.y13_c00025{bottom:355.893120px;}
.y1b_c00025{bottom:461.470730px;}
.y1c_c00025{bottom:466.856222px;}
.y14_c00025{bottom:624.188956px;}
.y15_c00025{bottom:676.685666px;}
.y17_c00025{bottom:678.257396px;}
.y16_c00025{bottom:713.056865px;}
.y18_c00025{bottom:714.247757px;}
.y1a_c00025{bottom:786.749793px;}
.y12_c00025{bottom:925.662338px;}
.y10_c00025{bottom:1017.687795px;}
.yd_c00025{bottom:1020.677170px;}
.yc_c00025{bottom:1040.927169px;}
.yb_c00025{bottom:1061.177169px;}
.y11_c00025{bottom:1062.247855px;}
.ya_c00025{bottom:1081.427168px;}
.y9_c00025{bottom:1101.677167px;}
.yf_c00025{bottom:1103.226703px;}
.y8_c00025{bottom:1121.927166px;}
.ye_c00025{bottom:1177.272300px;}
.h9_c00025{height:30.184583px;}
.hc_c00025{height:30.656139px;}
.he_c00025{height:30.690817px;}
.ha_c00025{height:30.980497px;}
.hd_c00025{height:34.574593px;}
.hb_c00025{height:34.940411px;}
.h3_c00025{height:45.955303px;}
.h7_c00025{height:46.188054px;}
.h6_c00025{height:46.188133px;}
.h8_c00025{height:46.188198px;}
.hf_c00025{height:93.552506px;}
.h5_c00025{height:94.321550px;}
.h4_c00025{height:131.219995px;}
.h2_c00025{height:1304.999946px;}
.h0_c00025{height:1304.999953px;}
.h1_c00025{height:1305.000000px;}
.w2_c00025{width:934.874961px;}
.w0_c00025{width:934.875000px;}
.w1_c00025{width:935.250000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:87.902647px;}
.x6_c00025{left:96.091905px;}
.xc_c00025{left:106.679066px;}
.x8_c00025{left:335.941570px;}
.x7_c00025{left:369.370096px;}
.x9_c00025{left:472.515406px;}
.xd_c00025{left:475.918486px;}
.x2_c00025{left:539.235240px;}
.x3_c00025{left:590.964542px;}
.x4_c00025{left:668.237048px;}
.xb_c00025{left:708.423235px;}
.xa_c00025{left:717.601203px;}
.x5_c00025{left:743.895221px;}
@media print{
.v1_c00025{vertical-align:-13.309055pt;}
.v0_c00025{vertical-align:0.000000pt;}
.ls7_c00025{letter-spacing:0.000000pt;}
.ls4_c00025{letter-spacing:1.002383pt;}
.ls2_c00025{letter-spacing:1.002403pt;}
.ls3_c00025{letter-spacing:1.002423pt;}
.ls5_c00025{letter-spacing:1.012676pt;}
.ls1_c00025{letter-spacing:2.774297pt;}
.ls0_c00025{letter-spacing:11.899296pt;}
.ls6_c00025{letter-spacing:1248.741726pt;}
.ws1_c00025{word-spacing:-84.159996pt;}
.ws0_c00025{word-spacing:-0.053320pt;}
.ws2_c00025{word-spacing:0.000000pt;}
._0_c00025{width:0.955754pt;}
._2_c00025{width:2.758462pt;}
._8_c00025{width:3.919147pt;}
._4_c00025{width:5.240282pt;}
._7_c00025{width:7.202210pt;}
._6_c00025{width:10.253614pt;}
._1_c00025{width:11.902434pt;}
._3_c00025{width:17.256113pt;}
._5_c00025{width:36.644943pt;}
.fs6_c00025{font-size:35.021897pt;}
.fs9_c00025{font-size:35.569023pt;}
.fsb_c00025{font-size:35.609259pt;}
.fs7_c00025{font-size:35.945363pt;}
.fsa_c00025{font-size:40.115440pt;}
.fs8_c00025{font-size:40.539883pt;}
.fs0_c00025{font-size:53.319997pt;}
.fs4_c00025{font-size:54.037780pt;}
.fs3_c00025{font-size:54.037873pt;}
.fs5_c00025{font-size:54.037949pt;}
.fs2_c00025{font-size:90.040451pt;}
.fsc_c00025{font-size:109.451889pt;}
.fs1_c00025{font-size:159.999993pt;}
.y0_c00025{bottom:0.000000pt;}
.y1_c00025{bottom:0.000007pt;}
.y7_c00025{bottom:66.937021pt;}
.y6_c00025{bottom:81.937021pt;}
.y5_c00025{bottom:96.937020pt;}
.y4_c00025{bottom:111.937019pt;}
.y3_c00025{bottom:126.937019pt;}
.y2_c00025{bottom:141.937018pt;}
.y19_c00025{bottom:270.894154pt;}
.y13_c00025{bottom:316.349440pt;}
.y1b_c00025{bottom:410.196204pt;}
.y1c_c00025{bottom:414.983308pt;}
.y14_c00025{bottom:554.834628pt;}
.y15_c00025{bottom:601.498370pt;}
.y17_c00025{bottom:602.895463pt;}
.y16_c00025{bottom:633.828324pt;}
.y18_c00025{bottom:634.886896pt;}
.y1a_c00025{bottom:699.333149pt;}
.y12_c00025{bottom:822.810967pt;}
.y10_c00025{bottom:904.611373pt;}
.yd_c00025{bottom:907.268596pt;}
.yc_c00025{bottom:925.268595pt;}
.yb_c00025{bottom:943.268594pt;}
.y11_c00025{bottom:944.220315pt;}
.ya_c00025{bottom:961.268594pt;}
.y9_c00025{bottom:979.268593pt;}
.yf_c00025{bottom:980.645958pt;}
.y8_c00025{bottom:997.268592pt;}
.ye_c00025{bottom:1046.464267pt;}
.h9_c00025{height:26.830740pt;}
.hc_c00025{height:27.249901pt;}
.he_c00025{height:27.280726pt;}
.ha_c00025{height:27.538220pt;}
.hd_c00025{height:30.732971pt;}
.hb_c00025{height:31.058143pt;}
.h3_c00025{height:40.849158pt;}
.h7_c00025{height:41.056048pt;}
.h6_c00025{height:41.056119pt;}
.h8_c00025{height:41.056176pt;}
.hf_c00025{height:83.157783pt;}
.h5_c00025{height:83.841377pt;}
.h4_c00025{height:116.639995pt;}
.h2_c00025{height:1159.999952pt;}
.h0_c00025{height:1159.999959pt;}
.h1_c00025{height:1160.000000pt;}
.w2_c00025{width:830.999965pt;}
.w0_c00025{width:831.000000pt;}
.w1_c00025{width:831.333333pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:78.135686pt;}
.x6_c00025{left:85.415027pt;}
.xc_c00025{left:94.825836pt;}
.x8_c00025{left:298.614729pt;}
.x7_c00025{left:328.328975pt;}
.x9_c00025{left:420.013694pt;}
.xd_c00025{left:423.038654pt;}
.x2_c00025{left:479.320214pt;}
.x3_c00025{left:525.301815pt;}
.x4_c00025{left:593.988487pt;}
.xb_c00025{left:629.709542pt;}
.xa_c00025{left:637.867736pt;}
.x5_c00025{left:661.240196pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cce321f6bfc63146c3602569.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:0.718000;font-style:normal;font-weight:normal;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_1ab2250bd529f7717c08e152.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:0.894000;font-style:normal;font-weight:normal;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_c6ba5fb7181d3fd024ccdb3c.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.006348;font-style:normal;font-weight:normal;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_ba0480275cf02f2b97337963.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:1.000000;font-style:normal;font-weight: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_58aa54689c9de384b4ac1400.woff2')format("woff");}.ff5_c00026{font-family:ff5_c00026;line-height:1.000000;font-style:normal;font-weight: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_d633f657e10ff0ee13c0fcf4.woff2')format("woff");}.ff6_c00026{font-family:ff6_c00026;line-height:1.000000;font-style:normal;font-weight: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_c00026;src:url('chunks/assets/font_dfea6a6d22f007c612d3076d.woff2')format("woff");}.ff7_c00026{font-family:ff7_c00026;line-height:1.171387;font-style:normal;font-weight: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_c00026;src:url('chunks/assets/font_d8e0c04d3035e7d28ced5390.woff2')format("woff");}.ff8_c00026{font-family:ff8_c00026;line-height:1.006348;font-style:normal;font-weight: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_c00026;src:url('chunks/assets/font_3fccf52cda88069a21360484.woff2')format("woff");}.ff9_c00026{font-family:ff9_c00026;line-height:0.769531;font-style:normal;font-weight: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_c00026;src:url('chunks/assets/font_896e02d8be837829b041735a.woff2')format("woff");}.ffa_c00026{font-family:ffa_c00026;line-height:1.006348;font-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_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);}
.v0_c00026{vertical-align:0.000000px;}
.v1_c00026{vertical-align:48.000122px;}
.ls0_c00026{letter-spacing:0.000000px;}
.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:-94.679996px;}
.ws1_c00026{word-spacing:-15.582041px;}
.ws2_c00026{word-spacing:-0.066022px;}
.ws3_c00026{word-spacing:0.000000px;}
._1_c00026{width:2.454555px;}
._7_c00026{width:3.772588px;}
._0_c00026{width:5.399842px;}
._8_c00026{width:13.284137px;}
._3_c00026{width:17.325743px;}
._6_c00026{width:18.327402px;}
._5_c00026{width:19.336184px;}
._2_c00026{width:21.443346px;}
._4_c00026{width:32.280706px;}
._9_c00026{width:162.216418px;}
.fc2_c00026{color:rgb(255,255,255);}
.fc1_c00026{color:rgb(0,0,0);}
.fc0_c00026{color:rgb(34,67,94);}
.fs7_c00026{font-size:39.616941px;}
.fs5_c00026{font-size:45.670971px;}
.fs4_c00026{font-size:45.670983px;}
.fs9_c00026{font-size:48.000145px;}
.fsa_c00026{font-size:48.000173px;}
.fs1_c00026{font-size:59.984997px;}
.fs2_c00026{font-size:66.021637px;}
.fs8_c00026{font-size:70.035312px;}
.fs6_c00026{font-size:80.595913px;}
.fs3_c00026{font-size:92.439799px;}
.fs0_c00026{font-size:179.999993px;}
.y0_c00026{bottom:0.000000px;}
.y1_c00026{bottom:0.000008px;}
.y2e_c00026{bottom:234.873936px;}
.y2a_c00026{bottom:283.981928px;}
.y2b_c00026{bottom:334.125282px;}
.y28_c00026{bottom:358.790929px;}
.y29_c00026{bottom:379.142391px;}
.ye_c00026{bottom:384.389200px;}
.yf_c00026{bottom:434.532590px;}
.y1e_c00026{bottom:453.060636px;}
.y14_c00026{bottom:454.799472px;}
.y1f_c00026{bottom:475.872114px;}
.y15_c00026{bottom:477.795885px;}
.y27_c00026{bottom:519.197962px;}
.y1c_c00026{bottom:528.101301px;}
.y1d_c00026{bottom:551.595879px;}
.y2c_c00026{bottom:565.127012px;}
.y25_c00026{bottom:568.935304px;}
.y24_c00026{bottom:569.461916px;}
.y26_c00026{bottom:587.867322px;}
.y2d_c00026{bottom:591.249484px;}
.y1a_c00026{bottom:604.239210px;}
.yd_c00026{bottom:619.605450px;}
.y1b_c00026{bottom:625.900704px;}
.y18_c00026{bottom:679.665525px;}
.y12_c00026{bottom:680.459879px;}
.y20_c00026{bottom:694.457658px;}
.y19_c00026{bottom:702.190996px;}
.y13_c00026{bottom:703.237776px;}
.y22_c00026{bottom:721.186634px;}
.y23_c00026{bottom:742.584184px;}
.y21_c00026{bottom:744.601016px;}
.y10_c00026{bottom:756.800443px;}
.y16_c00026{bottom:757.455229px;}
.y11_c00026{bottom:777.992965px;}
.y17_c00026{bottom:779.029369px;}
.y31_c00026{bottom:806.680337px;}
.y30_c00026{bottom:806.680349px;}
.y2f_c00026{bottom:818.680386px;}
.yc_c00026{bottom:922.509631px;}
.yb_c00026{bottom:942.759630px;}
.ya_c00026{bottom:983.259629px;}
.y9_c00026{bottom:1003.509628px;}
.y8_c00026{bottom:1023.759627px;}
.y7_c00026{bottom:1044.009626px;}
.y6_c00026{bottom:1064.259625px;}
.y5_c00026{bottom:1084.509624px;}
.y4_c00026{bottom:1104.759624px;}
.y3_c00026{bottom:1125.009623px;}
.y2_c00026{bottom:1177.272372px;}
.ha_c00026{height:30.351065px;}
.hc_c00026{height:36.773549px;}
.he_c00026{height:36.773570px;}
.h8_c00026{height:42.526631px;}
.h7_c00026{height:42.526643px;}
.h4_c00026{height:45.955303px;}
.h5_c00026{height:50.160970px;}
.hb_c00026{height:53.210422px;}
.h9_c00026{height:75.047073px;}
.hd_c00026{height:84.773692px;}
.h6_c00026{height:86.075535px;}
.h3_c00026{height:131.219995px;}
.h2_c00026{height:1304.999946px;}
.h0_c00026{height:1304.999953px;}
.h1_c00026{height:1305.000000px;}
.w2_c00026{width:934.874961px;}
.w0_c00026{width:934.875000px;}
.w1_c00026{width:935.250000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:87.902647px;}
.xa_c00026{left:89.546733px;}
.x18_c00026{left:100.006347px;}
.xe_c00026{left:103.608341px;}
.xc_c00026{left:112.639569px;}
.xb_c00026{left:118.498927px;}
.x9_c00026{left:126.709897px;}
.xd_c00026{left:138.686268px;}
.x6_c00026{left:264.601032px;}
.x16_c00026{left:274.098647px;}
.x8_c00026{left:275.868885px;}
.x19_c00026{left:285.392932px;}
.x7_c00026{left:290.759445px;}
.x5_c00026{left:303.548564px;}
.x12_c00026{left:487.212085px;}
.x13_c00026{left:488.388846px;}
.x10_c00026{left:491.153711px;}
.xf_c00026{left:497.334655px;}
.x11_c00026{left:633.448018px;}
.x17_c00026{left:648.814293px;}
.x3_c00026{left:654.259331px;}
.x4_c00026{left:656.405130px;}
.x2_c00026{left:658.265516px;}
.x14_c00026{left:659.464568px;}
.x15_c00026{left:680.838275px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.v1_c00026{vertical-align:42.666775pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws0_c00026{word-spacing:-84.159996pt;}
.ws1_c00026{word-spacing:-13.850703pt;}
.ws2_c00026{word-spacing:-0.058686pt;}
.ws3_c00026{word-spacing:0.000000pt;}
._1_c00026{width:2.181826pt;}
._7_c00026{width:3.353412pt;}
._0_c00026{width:4.799860pt;}
._8_c00026{width:11.808122pt;}
._3_c00026{width:15.400661pt;}
._6_c00026{width:16.291024pt;}
._5_c00026{width:17.187719pt;}
._2_c00026{width:19.060752pt;}
._4_c00026{width:28.693961pt;}
._9_c00026{width:144.192371pt;}
.fs7_c00026{font-size:35.215059pt;}
.fs5_c00026{font-size:40.596418pt;}
.fs4_c00026{font-size:40.596429pt;}
.fs9_c00026{font-size:42.666796pt;}
.fsa_c00026{font-size:42.666820pt;}
.fs1_c00026{font-size:53.319997pt;}
.fs2_c00026{font-size:58.685899pt;}
.fs8_c00026{font-size:62.253610pt;}
.fs6_c00026{font-size:71.640812pt;}
.fs3_c00026{font-size:82.168710pt;}
.fs0_c00026{font-size:159.999993pt;}
.y0_c00026{bottom:0.000000pt;}
.y1_c00026{bottom:0.000007pt;}
.y2e_c00026{bottom:208.776832pt;}
.y2a_c00026{bottom:252.428380pt;}
.y2b_c00026{bottom:297.000250pt;}
.y28_c00026{bottom:318.925270pt;}
.y29_c00026{bottom:337.015458pt;}
.ye_c00026{bottom:341.679289pt;}
.yf_c00026{bottom:386.251191pt;}
.y1e_c00026{bottom:402.720566pt;}
.y14_c00026{bottom:404.266197pt;}
.y1f_c00026{bottom:422.997435pt;}
.y15_c00026{bottom:424.707453pt;}
.y27_c00026{bottom:461.509300pt;}
.y1c_c00026{bottom:469.423379pt;}
.y1d_c00026{bottom:490.307448pt;}
.y2c_c00026{bottom:502.335121pt;}
.y25_c00026{bottom:505.720270pt;}
.y24_c00026{bottom:506.188370pt;}
.y26_c00026{bottom:522.548731pt;}
.y2d_c00026{bottom:525.555097pt;}
.y1a_c00026{bottom:537.101520pt;}
.yd_c00026{bottom:550.760400pt;}
.y1b_c00026{bottom:556.356181pt;}
.y18_c00026{bottom:604.147133pt;}
.y12_c00026{bottom:604.853226pt;}
.y20_c00026{bottom:617.295696pt;}
.y19_c00026{bottom:624.169775pt;}
.y13_c00026{bottom:625.100245pt;}
.y22_c00026{bottom:641.054786pt;}
.y23_c00026{bottom:660.074831pt;}
.y21_c00026{bottom:661.867570pt;}
.y10_c00026{bottom:672.711505pt;}
.y16_c00026{bottom:673.293537pt;}
.y11_c00026{bottom:691.549302pt;}
.y17_c00026{bottom:692.470550pt;}
.y31_c00026{bottom:717.049188pt;}
.y30_c00026{bottom:717.049199pt;}
.y2f_c00026{bottom:727.715898pt;}
.yc_c00026{bottom:820.008561pt;}
.yb_c00026{bottom:838.008560pt;}
.ya_c00026{bottom:874.008559pt;}
.y9_c00026{bottom:892.008558pt;}
.y8_c00026{bottom:910.008557pt;}
.y7_c00026{bottom:928.008557pt;}
.y6_c00026{bottom:946.008556pt;}
.y5_c00026{bottom:964.008555pt;}
.y4_c00026{bottom:982.008554pt;}
.y3_c00026{bottom:1000.008554pt;}
.y2_c00026{bottom:1046.464331pt;}
.ha_c00026{height:26.978724pt;}
.hc_c00026{height:32.687599pt;}
.he_c00026{height:32.687618pt;}
.h8_c00026{height:37.801450pt;}
.h7_c00026{height:37.801460pt;}
.h4_c00026{height:40.849158pt;}
.h5_c00026{height:44.587529pt;}
.hb_c00026{height:47.298153pt;}
.h9_c00026{height:66.708510pt;}
.hd_c00026{height:75.354393pt;}
.h6_c00026{height:76.511587pt;}
.h3_c00026{height:116.639995pt;}
.h2_c00026{height:1159.999952pt;}
.h0_c00026{height:1159.999959pt;}
.h1_c00026{height:1160.000000pt;}
.w2_c00026{width:830.999965pt;}
.w0_c00026{width:831.000000pt;}
.w1_c00026{width:831.333333pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:78.135686pt;}
.xa_c00026{left:79.597096pt;}
.x18_c00026{left:88.894531pt;}
.xe_c00026{left:92.096303pt;}
.xc_c00026{left:100.124061pt;}
.xb_c00026{left:105.332380pt;}
.x9_c00026{left:112.631019pt;}
.xd_c00026{left:123.276683pt;}
.x6_c00026{left:235.200918pt;}
.x16_c00026{left:243.643242pt;}
.x8_c00026{left:245.216787pt;}
.x19_c00026{left:253.682606pt;}
.x7_c00026{left:258.452840pt;}
.x5_c00026{left:269.820946pt;}
.x12_c00026{left:433.077409pt;}
.x13_c00026{left:434.123419pt;}
.x10_c00026{left:436.581076pt;}
.xf_c00026{left:442.075249pt;}
.x11_c00026{left:563.064905pt;}
.x17_c00026{left:576.723816pt;}
.x3_c00026{left:581.563850pt;}
.x4_c00026{left:583.471227pt;}
.x2_c00026{left:585.124903pt;}
.x14_c00026{left:586.190727pt;}
.x15_c00026{left:605.189578pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1058901250e6dfe30333b5f.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:0.729000;font-style:normal;font-weight:normal;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_215af0174c40144fba6186df.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_340d2bf74f20bf17bb17c359.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00027;src:url('chunks/assets/font_1f3edd6776dd4c970d2ca3be.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:1.006348;font-style:normal;font-weight: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_c00027;src:url('chunks/assets/font_e7844e70283cb385ed7b5996.woff2')format("woff");}.ff5_c00027{font-family:ff5_c00027;line-height:1.006348;font-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_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);}
.v0_c00027{vertical-align:0.000000px;}
.v2_c00027{vertical-align:177.959513px;}
.v4_c00027{vertical-align:201.630952px;}
.v1_c00027{vertical-align:256.147722px;}
.v3_c00027{vertical-align:296.647015px;}
.ls2_c00027{letter-spacing:0.000000px;}
.ls0_c00027{letter-spacing:2.159981px;}
.ls1_c00027{letter-spacing:12.595431px;}
.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;}
}
.ws6_c00027{word-spacing:-251.986877px;}
.ws4_c00027{word-spacing:-89.210772px;}
.ws0_c00027{word-spacing:-83.996998px;}
.ws7_c00027{word-spacing:-82.931823px;}
.ws3_c00027{word-spacing:-81.592019px;}
.ws1_c00027{word-spacing:-76.795292px;}
.ws2_c00027{word-spacing:-64.590499px;}
.ws5_c00027{word-spacing:-20.863105px;}
.ws8_c00027{word-spacing:0.000000px;}
._3_c00027{margin-left:-12.595431px;}
._2_c00027{margin-left:-2.131253px;}
._1_c00027{width:1.794131px;}
._0_c00027{width:12.595931px;}
.fc1_c00027{color:rgb(72,111,143);}
.fc0_c00027{color:rgb(255,255,255);}
.fs1_c00027{font-size:59.984997px;}
.fs2_c00027{font-size:71.999997px;}
.fs0_c00027{font-size:419.984992px;}
.y0_c00027{bottom:0.000000px;}
.y1_c00027{bottom:0.000008px;}
.y13_c00027{bottom:90.567752px;}
.y14_c00027{bottom:103.850492px;}
.y9_c00027{bottom:261.488653px;}
.ya_c00027{bottom:268.853533px;}
.y7_c00027{bottom:439.838406px;}
.y8_c00027{bottom:447.203285px;}
.y12_c00027{bottom:618.188529px;}
.y11_c00027{bottom:625.553398px;}
.y10_c00027{bottom:662.678396px;}
.yf_c00027{bottom:769.979499px;}
.ye_c00027{bottom:790.229498px;}
.yb_c00027{bottom:793.692741px;}
.yd_c00027{bottom:810.479497px;}
.yc_c00027{bottom:830.729496px;}
.y6_c00027{bottom:967.345095px;}
.y3_c00027{bottom:980.933161px;}
.y5_c00027{bottom:987.595094px;}
.y4_c00027{bottom:1007.845093px;}
.y2_c00027{bottom:1149.623916px;}
.h8_c00027{height:45.955303px;}
.h5_c00027{height:55.160154px;}
.h3_c00027{height:301.549224px;}
.h6_c00027{height:310.788894px;}
.h4_c00027{height:312.002893px;}
.h7_c00027{height:342.602318px;}
.h2_c00027{height:1304.999946px;}
.h0_c00027{height:1304.999953px;}
.h1_c00027{height:1305.000000px;}
.w2_c00027{width:934.874961px;}
.w0_c00027{width:934.875000px;}
.w1_c00027{width:935.250000px;}
.x0_c00027{left:0.000000px;}
.x4_c00027{left:76.345730px;}
.x6_c00027{left:81.282450px;}
.x7_c00027{left:88.788529px;}
.x2_c00027{left:151.794343px;}
.x1_c00027{left:275.671021px;}
.x5_c00027{left:312.184981px;}
.x3_c00027{left:315.287962px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.v2_c00027{vertical-align:158.186233pt;}
.v4_c00027{vertical-align:179.227513pt;}
.v1_c00027{vertical-align:227.686864pt;}
.v3_c00027{vertical-align:263.686235pt;}
.ls2_c00027{letter-spacing:0.000000pt;}
.ls0_c00027{letter-spacing:1.919983pt;}
.ls1_c00027{letter-spacing:11.195939pt;}
.ws6_c00027{word-spacing:-223.988335pt;}
.ws4_c00027{word-spacing:-79.298464pt;}
.ws0_c00027{word-spacing:-74.663998pt;}
.ws7_c00027{word-spacing:-73.717176pt;}
.ws3_c00027{word-spacing:-72.526239pt;}
.ws1_c00027{word-spacing:-68.262481pt;}
.ws2_c00027{word-spacing:-57.413777pt;}
.ws5_c00027{word-spacing:-18.544983pt;}
.ws8_c00027{word-spacing:0.000000pt;}
._3_c00027{margin-left:-11.195939pt;}
._2_c00027{margin-left:-1.894447pt;}
._1_c00027{width:1.594783pt;}
._0_c00027{width:11.196384pt;}
.fs1_c00027{font-size:53.319997pt;}
.fs2_c00027{font-size:63.999997pt;}
.fs0_c00027{font-size:373.319992pt;}
.y0_c00027{bottom:0.000000pt;}
.y1_c00027{bottom:0.000007pt;}
.y13_c00027{bottom:80.504669pt;}
.y14_c00027{bottom:92.311548pt;}
.y9_c00027{bottom:232.434358pt;}
.ya_c00027{bottom:238.980918pt;}
.y7_c00027{bottom:390.967472pt;}
.y8_c00027{bottom:397.514031pt;}
.y12_c00027{bottom:549.500915pt;}
.y11_c00027{bottom:556.047465pt;}
.y10_c00027{bottom:589.047463pt;}
.yf_c00027{bottom:684.426221pt;}
.ye_c00027{bottom:702.426220pt;}
.yb_c00027{bottom:705.504659pt;}
.yd_c00027{bottom:720.426220pt;}
.yc_c00027{bottom:738.426219pt;}
.y6_c00027{bottom:859.862307pt;}
.y3_c00027{bottom:871.940588pt;}
.y5_c00027{bottom:877.862306pt;}
.y4_c00027{bottom:895.862305pt;}
.y2_c00027{bottom:1021.887925pt;}
.h8_c00027{height:40.849158pt;}
.h5_c00027{height:49.031248pt;}
.h3_c00027{height:268.043755pt;}
.h6_c00027{height:276.256794pt;}
.h4_c00027{height:277.335905pt;}
.h7_c00027{height:304.535394pt;}
.h2_c00027{height:1159.999952pt;}
.h0_c00027{height:1159.999959pt;}
.h1_c00027{height:1160.000000pt;}
.w2_c00027{width:830.999965pt;}
.w0_c00027{width:831.000000pt;}
.w1_c00027{width:831.333333pt;}
.x0_c00027{left:0.000000pt;}
.x4_c00027{left:67.862871pt;}
.x6_c00027{left:72.251066pt;}
.x7_c00027{left:78.923137pt;}
.x2_c00027{left:134.928305pt;}
.x1_c00027{left:245.040908pt;}
.x5_c00027{left:277.497761pt;}
.x3_c00027{left:280.255966pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc8f70ba395c4dedc25bf31c.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.006348;font-style:normal;font-weight:normal;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_02d5ec6d9d1c65d9004c8159.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.006348;font-style:normal;font-weight:normal;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_024480d325bc794f1624cc7d.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:0.761000;font-style:normal;font-weight:normal;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_d45e6e1e39458cba0fd39e30.woff2')format("woff");}.ff4_c00028{font-family:ff4_c00028;line-height:1.171387;font-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_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);}
.v0_c00028{vertical-align:0.000000px;}
.ls2_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:2.159981px;}
.ls1_c00028{letter-spacing:12.595431px;}
.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:-251.986877px;}
.ws1_c00028{word-spacing:-20.863105px;}
.ws2_c00028{word-spacing:0.000000px;}
._2_c00028{margin-left:-12.595431px;}
._1_c00028{margin-left:-2.107795px;}
._0_c00028{width:1.794532px;}
.fc1_c00028{color:rgb(72,111,143);}
.fc0_c00028{color:rgb(255,255,255);}
.fs0_c00028{font-size:59.984997px;}
.fs1_c00028{font-size:71.999997px;}
.fs2_c00028{font-size:419.984992px;}
.y0_c00028{bottom:0.000000px;}
.y1_c00028{bottom:0.000008px;}
.y13_c00028{bottom:89.684636px;}
.y10_c00028{bottom:117.733351px;}
.y17_c00028{bottom:219.857679px;}
.y11_c00028{bottom:229.040846px;}
.y16_c00028{bottom:240.107678px;}
.y15_c00028{bottom:260.357677px;}
.y14_c00028{bottom:297.482676px;}
.y12_c00028{bottom:376.240052px;}
.yb_c00028{bottom:383.605292px;}
.ya_c00028{bottom:420.730290px;}
.yd_c00028{bottom:527.246330px;}
.y9_c00028{bottom:544.324189px;}
.y8_c00028{bottom:581.449188px;}
.yf_c00028{bottom:678.475520px;}
.y7_c00028{bottom:697.362509px;}
.y6_c00028{bottom:734.487507px;}
.ye_c00028{bottom:829.704339px;}
.y5_c00028{bottom:848.023910px;}
.y4_c00028{bottom:885.148908px;}
.yc_c00028{bottom:980.933161px;}
.y3_c00028{bottom:992.550191px;}
.y2_c00028{bottom:1029.675190px;}
.h3_c00028{height:45.955303px;}
.h4_c00028{height:55.160154px;}
.h6_c00028{height:67.042966px;}
.h5_c00028{height:310.788894px;}
.h2_c00028{height:1304.999946px;}
.h0_c00028{height:1304.999953px;}
.h1_c00028{height:1305.000000px;}
.w2_c00028{width:934.874961px;}
.w0_c00028{width:934.875000px;}
.w1_c00028{width:935.250000px;}
.x0_c00028{left:0.000000px;}
.x2_c00028{left:130.577777px;}
.x5_c00028{left:132.203029px;}
.x4_c00028{left:135.053343px;}
.x3_c00028{left:136.472591px;}
.x1_c00028{left:367.786590px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls2_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:1.919983pt;}
.ls1_c00028{letter-spacing:11.195939pt;}
.ws0_c00028{word-spacing:-223.988335pt;}
.ws1_c00028{word-spacing:-18.544983pt;}
.ws2_c00028{word-spacing:0.000000pt;}
._2_c00028{margin-left:-11.195939pt;}
._1_c00028{margin-left:-1.873595pt;}
._0_c00028{width:1.595140pt;}
.fs0_c00028{font-size:53.319997pt;}
.fs1_c00028{font-size:63.999997pt;}
.fs2_c00028{font-size:373.319992pt;}
.y0_c00028{bottom:0.000000pt;}
.y1_c00028{bottom:0.000007pt;}
.y13_c00028{bottom:79.719677pt;}
.y10_c00028{bottom:104.651868pt;}
.y17_c00028{bottom:195.429048pt;}
.y11_c00028{bottom:203.591864pt;}
.y16_c00028{bottom:213.429047pt;}
.y15_c00028{bottom:231.429046pt;}
.y14_c00028{bottom:264.429045pt;}
.y12_c00028{bottom:334.435602pt;}
.yb_c00028{bottom:340.982482pt;}
.ya_c00028{bottom:373.982480pt;}
.yd_c00028{bottom:468.663404pt;}
.y9_c00028{bottom:483.843724pt;}
.y8_c00028{bottom:516.843722pt;}
.yf_c00028{bottom:603.089351pt;}
.y7_c00028{bottom:619.877785pt;}
.y6_c00028{bottom:652.877784pt;}
.ye_c00028{bottom:737.514968pt;}
.y5_c00028{bottom:753.799031pt;}
.y4_c00028{bottom:786.799030pt;}
.yc_c00028{bottom:871.940588pt;}
.y3_c00028{bottom:882.266837pt;}
.y2_c00028{bottom:915.266835pt;}
.h3_c00028{height:40.849158pt;}
.h4_c00028{height:49.031248pt;}
.h6_c00028{height:59.593748pt;}
.h5_c00028{height:276.256794pt;}
.h2_c00028{height:1159.999952pt;}
.h0_c00028{height:1159.999959pt;}
.h1_c00028{height:1160.000000pt;}
.w2_c00028{width:830.999965pt;}
.w0_c00028{width:831.000000pt;}
.w1_c00028{width:831.333333pt;}
.x0_c00028{left:0.000000pt;}
.x2_c00028{left:116.069135pt;}
.x5_c00028{left:117.513803pt;}
.x4_c00028{left:120.047416pt;}
.x3_c00028{left:121.308970pt;}
.x1_c00028{left:326.921414pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00029{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
}
.y0_c00029{bottom:0.000000px;}
.h0_c00029{height:1304.999953px;}
.h1_c00029{height:1305.000000px;}
.w0_c00029{width:934.875000px;}
.w1_c00029{width:935.250000px;}
.x0_c00029{left:0.000000px;}
@media print{
.y0_c00029{bottom:0.000000pt;}
.h0_c00029{height:1159.999959pt;}
.h1_c00029{height:1160.000000pt;}
.w0_c00029{width:831.000000pt;}
.w1_c00029{width:831.333333pt;}
.x0_c00029{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_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_9cc3c82460a4f60d5ffc1fda.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.145996;font-style:normal;font-weight:normal;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_2b3329f15fbe256d0454798e.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.151614;font-style:normal;font-weight:normal;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_96e6d2391a6788dbee39c36f.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.006348;font-style:normal;font-weight:normal;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_48612729b4cfe323b7761baa.woff2')format("woff");}.ff4_c00030{font-family:ff4_c00030;line-height:1.006348;font-style:normal;font-weight: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_c00030;src:url('chunks/assets/font_af24c93efcc5d6409d693242.woff2')format("woff");}.ff5_c00030{font-family:ff5_c00030;line-height:0.727051;font-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_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);}
.v0_c00030{vertical-align:0.000000px;}
.ls0_c00030{letter-spacing:0.000000px;}
.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:-0.059985px;}
.ws1_c00030{word-spacing:0.000000px;}
._0_c00030{margin-left:-4.319962px;}
._1_c00030{width:20.856753px;}
.fc0_c00030{color:rgb(255,255,255);}
.fs1_c00030{font-size:59.984997px;}
.fs2_c00030{font-size:119.969995px;}
.fs0_c00030{font-size:269.999989px;}
.y0_c00030{bottom:0.000000px;}
.y1_c00030{bottom:0.000008px;}
.yc_c00030{bottom:84.927740px;}
.yb_c00030{bottom:106.302740px;}
.ya_c00030{bottom:127.677739px;}
.y9_c00030{bottom:149.052738px;}
.y8_c00030{bottom:170.427737px;}
.y7_c00030{bottom:191.802736px;}
.y6_c00030{bottom:213.177735px;}
.y5_c00030{bottom:234.552734px;}
.y4_c00030{bottom:255.927733px;}
.ye_c00030{bottom:474.470296px;}
.yd_c00030{bottom:516.095294px;}
.y3_c00030{bottom:561.587413px;}
.y2_c00030{bottom:627.962410px;}
.y10_c00030{bottom:1214.456648px;}
.yf_c00030{bottom:1234.706647px;}
.h6_c00030{height:45.955303px;}
.h4_c00030{height:57.045732px;}
.h5_c00030{height:91.910607px;}
.h3_c00030{height:240.600576px;}
.h2_c00030{height:1304.999946px;}
.h0_c00030{height:1304.999953px;}
.h1_c00030{height:1305.000000px;}
.w2_c00030{width:934.874961px;}
.w0_c00030{width:934.875000px;}
.w1_c00030{width:935.250000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:82.261984px;}
.x2_c00030{left:93.543307px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls0_c00030{letter-spacing:0.000000pt;}
.ws0_c00030{word-spacing:-0.053320pt;}
.ws1_c00030{word-spacing:0.000000pt;}
._0_c00030{margin-left:-3.839966pt;}
._1_c00030{width:18.539336pt;}
.fs1_c00030{font-size:53.319997pt;}
.fs2_c00030{font-size:106.639996pt;}
.fs0_c00030{font-size:239.999990pt;}
.y0_c00030{bottom:0.000000pt;}
.y1_c00030{bottom:0.000007pt;}
.yc_c00030{bottom:75.491325pt;}
.yb_c00030{bottom:94.491324pt;}
.ya_c00030{bottom:113.491323pt;}
.y9_c00030{bottom:132.491322pt;}
.y8_c00030{bottom:151.491322pt;}
.y7_c00030{bottom:170.491321pt;}
.y6_c00030{bottom:189.491320pt;}
.y5_c00030{bottom:208.491319pt;}
.y4_c00030{bottom:227.491319pt;}
.ye_c00030{bottom:421.751374pt;}
.yd_c00030{bottom:458.751373pt;}
.y3_c00030{bottom:499.188811pt;}
.y2_c00030{bottom:558.188809pt;}
.y10_c00030{bottom:1079.517020pt;}
.yf_c00030{bottom:1097.517020pt;}
.h6_c00030{height:40.849158pt;}
.h4_c00030{height:50.707318pt;}
.h5_c00030{height:81.698317pt;}
.h3_c00030{height:213.867179pt;}
.h2_c00030{height:1159.999952pt;}
.h0_c00030{height:1159.999959pt;}
.h1_c00030{height:1160.000000pt;}
.w2_c00030{width:830.999965pt;}
.w0_c00030{width:831.000000pt;}
.w1_c00030{width:831.333333pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:73.121763pt;}
.x2_c00030{left:83.149606pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00031{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
}
.y0_c00031{bottom:0.000000px;}
.h0_c00031{height:1304.999953px;}
.h1_c00031{height:1305.000000px;}
.w0_c00031{width:934.875000px;}
.w1_c00031{width:935.250000px;}
.x0_c00031{left:0.000000px;}
@media print{
.y0_c00031{bottom:0.000000pt;}
.h0_c00031{height:1159.999959pt;}
.h1_c00031{height:1160.000000pt;}
.w0_c00031{width:831.000000pt;}
.w1_c00031{width:831.333333pt;}
.x0_c00031{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_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_fa9c08d61c416ecfd258416c.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.171387;font-style:normal;font-weight:normal;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_cd3bb281198201022f5f8d9b.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00032;src:url('chunks/assets/font_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.006348;font-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_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;}
.ls0_c00032{letter-spacing:0.000000px;}
.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;}
._7_c00032{width:1.709131px;}
._0_c00032{width:3.761718px;}
._6_c00032{width:4.864191px;}
._9_c00032{width:6.282674px;}
._a_c00032{width:7.680268px;}
._14_c00032{width:9.558119px;}
._5_c00032{width:10.718055px;}
._1_c00032{width:12.539039px;}
._8_c00032{width:13.540987px;}
._11_c00032{width:15.524985px;}
._d_c00032{width:19.757809px;}
._b_c00032{width:25.161024px;}
._3_c00032{width:26.218733px;}
._f_c00032{width:29.573407px;}
._e_c00032{width:31.062469px;}
._4_c00032{width:32.640582px;}
._2_c00032{width:33.640615px;}
._10_c00032{width:35.759741px;}
._c_c00032{width:49.809330px;}
._12_c00032{width:54.547972px;}
._13_c00032{width:62.328458px;}
.fc1_c00032{color:rgb(74,93,83);}
.fc0_c00032{color:rgb(0,0,0);}
.fs1_c00032{font-size:59.984997px;}
.fs0_c00032{font-size:71.999997px;}
.y0_c00032{bottom:0.000000px;}
.y1_c00032{bottom:0.000008px;}
.y24_c00032{bottom:29.176523px;}
.y22_c00032{bottom:176.419685px;}
.y21_c00032{bottom:196.669684px;}
.y20_c00032{bottom:216.919683px;}
.y1f_c00032{bottom:237.169682px;}
.y1e_c00032{bottom:257.419681px;}
.y1d_c00032{bottom:294.517604px;}
.y1c_c00032{bottom:324.892603px;}
.y1b_c00032{bottom:355.267602px;}
.y1a_c00032{bottom:385.642600px;}
.y19_c00032{bottom:440.767598px;}
.y18_c00032{bottom:471.142597px;}
.y17_c00032{bottom:501.517596px;}
.y16_c00032{bottom:531.892594px;}
.y15_c00032{bottom:562.267593px;}
.y14_c00032{bottom:592.642592px;}
.y13_c00032{bottom:623.017590px;}
.y12_c00032{bottom:653.392589px;}
.y11_c00032{bottom:683.767588px;}
.y10_c00032{bottom:714.142587px;}
.yf_c00032{bottom:744.517585px;}
.ye_c00032{bottom:774.892584px;}
.yd_c00032{bottom:805.267583px;}
.yc_c00032{bottom:835.642582px;}
.yb_c00032{bottom:866.017580px;}
.ya_c00032{bottom:896.392579px;}
.y9_c00032{bottom:926.767578px;}
.y8_c00032{bottom:957.142577px;}
.y7_c00032{bottom:987.517575px;}
.y6_c00032{bottom:1017.892574px;}
.y5_c00032{bottom:1048.267573px;}
.y4_c00032{bottom:1078.642571px;}
.y3_c00032{bottom:1109.017570px;}
.y2_c00032{bottom:1139.392569px;}
.y23_c00032{bottom:1200.600126px;}
.h5_c00032{height:45.955303px;}
.h4_c00032{height:55.855171px;}
.h3_c00032{height:67.042966px;}
.h2_c00032{height:1304.999946px;}
.h0_c00032{height:1304.999953px;}
.h1_c00032{height:1305.000000px;}
.w2_c00032{width:934.874961px;}
.w0_c00032{width:934.875000px;}
.w1_c00032{width:935.250000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:87.902647px;}
.x2_c00032{left:435.944909px;}
.x4_c00032{left:457.422299px;}
.x3_c00032{left:636.058362px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws0_c00032{word-spacing:0.000000pt;}
._7_c00032{width:1.519227pt;}
._0_c00032{width:3.343750pt;}
._6_c00032{width:4.323726pt;}
._9_c00032{width:5.584599pt;}
._a_c00032{width:6.826905pt;}
._14_c00032{width:8.496106pt;}
._5_c00032{width:9.527160pt;}
._1_c00032{width:11.145813pt;}
._8_c00032{width:12.036433pt;}
._11_c00032{width:13.799987pt;}
._d_c00032{width:17.562497pt;}
._b_c00032{width:22.365355pt;}
._3_c00032{width:23.305540pt;}
._f_c00032{width:26.287473pt;}
._e_c00032{width:27.611083pt;}
._4_c00032{width:29.013851pt;}
._2_c00032{width:29.902769pt;}
._10_c00032{width:31.786436pt;}
._c_c00032{width:44.274960pt;}
._12_c00032{width:48.487086pt;}
._13_c00032{width:55.403074pt;}
.fs1_c00032{font-size:53.319997pt;}
.fs0_c00032{font-size:63.999997pt;}
.y0_c00032{bottom:0.000000pt;}
.y1_c00032{bottom:0.000007pt;}
.y24_c00032{bottom:25.934687pt;}
.y22_c00032{bottom:156.817497pt;}
.y21_c00032{bottom:174.817497pt;}
.y20_c00032{bottom:192.817496pt;}
.y1f_c00032{bottom:210.817495pt;}
.y1e_c00032{bottom:228.817494pt;}
.y1d_c00032{bottom:261.793426pt;}
.y1c_c00032{bottom:288.793425pt;}
.y1b_c00032{bottom:315.793424pt;}
.y1a_c00032{bottom:342.793423pt;}
.y19_c00032{bottom:391.793420pt;}
.y18_c00032{bottom:418.793419pt;}
.y17_c00032{bottom:445.793418pt;}
.y16_c00032{bottom:472.793417pt;}
.y15_c00032{bottom:499.793416pt;}
.y14_c00032{bottom:526.793415pt;}
.y13_c00032{bottom:553.793414pt;}
.y12_c00032{bottom:580.793413pt;}
.y11_c00032{bottom:607.793411pt;}
.y10_c00032{bottom:634.793410pt;}
.yf_c00032{bottom:661.793409pt;}
.ye_c00032{bottom:688.793408pt;}
.yd_c00032{bottom:715.793407pt;}
.yc_c00032{bottom:742.793406pt;}
.yb_c00032{bottom:769.793405pt;}
.ya_c00032{bottom:796.793404pt;}
.y9_c00032{bottom:823.793402pt;}
.y8_c00032{bottom:850.793401pt;}
.y7_c00032{bottom:877.793400pt;}
.y6_c00032{bottom:904.793399pt;}
.y5_c00032{bottom:931.793398pt;}
.y4_c00032{bottom:958.793397pt;}
.y3_c00032{bottom:985.793396pt;}
.y2_c00032{bottom:1012.793395pt;}
.y23_c00032{bottom:1067.200112pt;}
.h5_c00032{height:40.849158pt;}
.h4_c00032{height:49.649041pt;}
.h3_c00032{height:59.593748pt;}
.h2_c00032{height:1159.999952pt;}
.h0_c00032{height:1159.999959pt;}
.h1_c00032{height:1160.000000pt;}
.w2_c00032{width:830.999965pt;}
.w0_c00032{width:831.000000pt;}
.w1_c00032{width:831.333333pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:78.135686pt;}
.x2_c00032{left:387.506585pt;}
.x4_c00032{left:406.597599pt;}
.x3_c00032{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d929cad3d1e900a911103085.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.171387;font-style:normal;font-weight:normal;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_f0d5f4433e10270c88e63b95.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.171387;font-style:normal;font-weight:normal;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_296f076f8bab92ed2a8e6fbd.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.006348;font-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_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);}
.v0_c00033{vertical-align:0.000000px;}
.ls0_c00033{letter-spacing:0.000000px;}
.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:-18.703125px;}
.ws1_c00033{word-spacing:0.000000px;}
._8_c00033{width:1.449509px;}
._4_c00033{width:2.537636px;}
._1_c00033{width:3.996071px;}
._2_c00033{width:5.062640px;}
._e_c00033{width:6.234556px;}
._c_c00033{width:7.265600px;}
._b_c00033{width:8.410460px;}
._9_c00033{width:9.636366px;}
._5_c00033{width:10.703706px;}
._0_c00033{width:12.234377px;}
._3_c00033{width:13.685806px;}
._6_c00033{width:14.758212px;}
._7_c00033{width:16.383769px;}
._d_c00033{width:17.645570px;}
._a_c00033{width:20.337890px;}
.fc1_c00033{color:rgb(0,0,0);}
.fc0_c00033{color:rgb(74,93,83);}
.fs1_c00033{font-size:71.999997px;}
.fs0_c00033{font-size:95.984996px;}
.y0_c00033{bottom:0.000000px;}
.y1_c00033{bottom:0.000008px;}
.y21_c00033{bottom:29.176523px;}
.y20_c00033{bottom:160.632065px;}
.y1f_c00033{bottom:191.007064px;}
.y1e_c00033{bottom:221.382063px;}
.y1d_c00033{bottom:251.757062px;}
.y1c_c00033{bottom:282.132060px;}
.y1b_c00033{bottom:312.507059px;}
.y1a_c00033{bottom:342.882058px;}
.y19_c00033{bottom:373.257056px;}
.y18_c00033{bottom:403.632055px;}
.y17_c00033{bottom:464.382053px;}
.y16_c00033{bottom:494.757051px;}
.y15_c00033{bottom:525.132050px;}
.y14_c00033{bottom:555.507049px;}
.y13_c00033{bottom:585.882048px;}
.y12_c00033{bottom:646.632045px;}
.y11_c00033{bottom:677.007044px;}
.y10_c00033{bottom:707.382043px;}
.yf_c00033{bottom:737.757041px;}
.ye_c00033{bottom:768.132040px;}
.yd_c00033{bottom:798.507039px;}
.yc_c00033{bottom:828.882037px;}
.yb_c00033{bottom:859.257036px;}
.ya_c00033{bottom:889.632035px;}
.y9_c00033{bottom:920.007034px;}
.y8_c00033{bottom:980.757031px;}
.y7_c00033{bottom:1011.132030px;}
.y6_c00033{bottom:1041.507029px;}
.y5_c00033{bottom:1071.882027px;}
.y4_c00033{bottom:1102.257026px;}
.y3_c00033{bottom:1132.632025px;}
.y2_c00033{bottom:1194.747139px;}
.h4_c00033{height:67.042966px;}
.h3_c00033{height:89.376654px;}
.h2_c00033{height:1304.999946px;}
.h0_c00033{height:1304.999953px;}
.h1_c00033{height:1305.000000px;}
.w2_c00033{width:934.874961px;}
.w0_c00033{width:934.875000px;}
.w1_c00033{width:935.250000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:89.487450px;}
.x2_c00033{left:457.422299px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws0_c00033{word-spacing:-16.625000pt;}
.ws1_c00033{word-spacing:0.000000pt;}
._8_c00033{width:1.288453pt;}
._4_c00033{width:2.255677pt;}
._1_c00033{width:3.552063pt;}
._2_c00033{width:4.500124pt;}
._e_c00033{width:5.541827pt;}
._c_c00033{width:6.458311pt;}
._b_c00033{width:7.475965pt;}
._9_c00033{width:8.565659pt;}
._5_c00033{width:9.514405pt;}
._0_c00033{width:10.875001pt;}
._3_c00033{width:12.165161pt;}
._6_c00033{width:13.118410pt;}
._7_c00033{width:14.563350pt;}
._d_c00033{width:15.684951pt;}
._a_c00033{width:18.078125pt;}
.fs1_c00033{font-size:63.999997pt;}
.fs0_c00033{font-size:85.319996pt;}
.y0_c00033{bottom:0.000000pt;}
.y1_c00033{bottom:0.000007pt;}
.y21_c00033{bottom:25.934687pt;}
.y20_c00033{bottom:142.784058pt;}
.y1f_c00033{bottom:169.784057pt;}
.y1e_c00033{bottom:196.784056pt;}
.y1d_c00033{bottom:223.784055pt;}
.y1c_c00033{bottom:250.784054pt;}
.y1b_c00033{bottom:277.784052pt;}
.y1a_c00033{bottom:304.784051pt;}
.y19_c00033{bottom:331.784050pt;}
.y18_c00033{bottom:358.784049pt;}
.y17_c00033{bottom:412.784047pt;}
.y16_c00033{bottom:439.784046pt;}
.y15_c00033{bottom:466.784045pt;}
.y14_c00033{bottom:493.784043pt;}
.y13_c00033{bottom:520.784042pt;}
.y12_c00033{bottom:574.784040pt;}
.y11_c00033{bottom:601.784039pt;}
.y10_c00033{bottom:628.784038pt;}
.yf_c00033{bottom:655.784037pt;}
.ye_c00033{bottom:682.784036pt;}
.yd_c00033{bottom:709.784034pt;}
.yc_c00033{bottom:736.784033pt;}
.yb_c00033{bottom:763.784032pt;}
.ya_c00033{bottom:790.784031pt;}
.y9_c00033{bottom:817.784030pt;}
.y8_c00033{bottom:871.784028pt;}
.y7_c00033{bottom:898.784027pt;}
.y6_c00033{bottom:925.784025pt;}
.y5_c00033{bottom:952.784024pt;}
.y4_c00033{bottom:979.784023pt;}
.y3_c00033{bottom:1006.784022pt;}
.y2_c00033{bottom:1061.997457pt;}
.h4_c00033{height:59.593748pt;}
.h3_c00033{height:79.445915pt;}
.h2_c00033{height:1159.999952pt;}
.h0_c00033{height:1159.999959pt;}
.h1_c00033{height:1160.000000pt;}
.w2_c00033{width:830.999965pt;}
.w0_c00033{width:831.000000pt;}
.w1_c00033{width:831.333333pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:79.544400pt;}
.x2_c00033{left:406.597599pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92f36c87dcf9d7c0f783c17f.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.171387;font-style:normal;font-weight:normal;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_2a93b498913360c8cc951fb6.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.171387;font-style:normal;font-weight:normal;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_f817e86047d02a0ab773a4dd.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:0.733887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00034;src:url('chunks/assets/font_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.006348;font-style:normal;font-weight: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_c00034;src:url('chunks/assets/font_adfca04add4ec2933bd4360d.woff2')format("woff");}.ff5_c00034{font-family:ff5_c00034;line-height:1.006348;font-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_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);}
.v0_c00034{vertical-align:0.000000px;}
.ls2_c00034{letter-spacing:0.000000px;}
.ls1_c00034{letter-spacing:0.043923px;}
.ls0_c00034{letter-spacing:0.043945px;}
.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;}
._3_c00034{width:1.067184px;}
._2_c00034{width:2.096532px;}
._d_c00034{width:3.338128px;}
._b_c00034{width:4.599358px;}
._4_c00034{width:5.612160px;}
._8_c00034{width:6.798612px;}
._c_c00034{width:7.858798px;}
._0_c00034{width:11.023957px;}
._f_c00034{width:12.800169px;}
._e_c00034{width:17.388265px;}
._a_c00034{width:20.142678px;}
._5_c00034{width:21.801883px;}
._9_c00034{width:23.176756px;}
._7_c00034{width:27.717336px;}
._1_c00034{width:28.731445px;}
._6_c00034{width:31.695278px;}
.fc2_c00034{color:rgb(34,67,94);}
.fc1_c00034{color:rgb(74,93,83);}
.fc3_c00034{color:rgb(255,255,255);}
.fc0_c00034{color:rgb(0,0,0);}
.fs1_c00034{font-size:53.999998px;}
.fs2_c00034{font-size:59.984997px;}
.fs0_c00034{font-size:71.999997px;}
.fs4_c00034{font-size:75.955751px;}
.fs3_c00034{font-size:75.955877px;}
.fs5_c00034{font-size:75.955986px;}
.y0_c00034{bottom:0.000000px;}
.y1_c00034{bottom:0.000008px;}
.y23_c00034{bottom:29.401163px;}
.y21_c00034{bottom:99.584276px;}
.y20_c00034{bottom:117.584275px;}
.y1f_c00034{bottom:135.584274px;}
.y26_c00034{bottom:152.807640px;}
.y1e_c00034{bottom:153.584274px;}
.y24_c00034{bottom:267.786875px;}
.y25_c00034{bottom:323.461123px;}
.y1d_c00034{bottom:437.438653px;}
.y1c_c00034{bottom:462.188652px;}
.y1b_c00034{bottom:486.938651px;}
.y1a_c00034{bottom:511.688650px;}
.y19_c00034{bottom:536.438649px;}
.y18_c00034{bottom:561.188648px;}
.y17_c00034{bottom:585.938647px;}
.y16_c00034{bottom:610.688646px;}
.y15_c00034{bottom:635.438645px;}
.y14_c00034{bottom:660.188644px;}
.y13_c00034{bottom:684.938643px;}
.y12_c00034{bottom:709.688642px;}
.y11_c00034{bottom:734.438641px;}
.y10_c00034{bottom:759.188640px;}
.yf_c00034{bottom:783.938639px;}
.ye_c00034{bottom:808.688638px;}
.yd_c00034{bottom:858.188635px;}
.yc_c00034{bottom:882.938634px;}
.yb_c00034{bottom:907.688633px;}
.ya_c00034{bottom:932.438632px;}
.y9_c00034{bottom:957.188631px;}
.y8_c00034{bottom:981.938630px;}
.y7_c00034{bottom:1006.688629px;}
.y6_c00034{bottom:1031.438628px;}
.y5_c00034{bottom:1056.188627px;}
.y4_c00034{bottom:1080.938626px;}
.y3_c00034{bottom:1105.688625px;}
.y2_c00034{bottom:1130.438624px;}
.y22_c00034{bottom:1200.600303px;}
.h5_c00034{height:45.955303px;}
.h4_c00034{height:50.282224px;}
.h7_c00034{height:58.190709px;}
.h6_c00034{height:58.190806px;}
.h8_c00034{height:58.190889px;}
.h3_c00034{height:67.042966px;}
.h2_c00034{height:1304.999946px;}
.h0_c00034{height:1304.999953px;}
.h1_c00034{height:1305.000000px;}
.w2_c00034{width:934.874961px;}
.w0_c00034{width:934.875000px;}
.w1_c00034{width:935.250000px;}
.x0_c00034{left:0.000000px;}
.x1_c00034{left:88.392910px;}
.x2_c00034{left:141.091583px;}
.x4_c00034{left:456.319054px;}
.x5_c00034{left:556.488038px;}
.x3_c00034{left:636.058362px;}
.x6_c00034{left:653.034393px;}
.x7_c00034{left:747.563693px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls2_c00034{letter-spacing:0.000000pt;}
.ls1_c00034{letter-spacing:0.039043pt;}
.ls0_c00034{letter-spacing:0.039063pt;}
.ws0_c00034{word-spacing:0.000000pt;}
._3_c00034{width:0.948608pt;}
._2_c00034{width:1.863584pt;}
._d_c00034{width:2.967225pt;}
._b_c00034{width:4.088319pt;}
._4_c00034{width:4.988587pt;}
._8_c00034{width:6.043210pt;}
._c_c00034{width:6.985598pt;}
._0_c00034{width:9.799073pt;}
._f_c00034{width:11.377928pt;}
._e_c00034{width:15.456236pt;}
._a_c00034{width:17.904603pt;}
._5_c00034{width:19.379452pt;}
._9_c00034{width:20.601561pt;}
._7_c00034{width:24.637632pt;}
._1_c00034{width:25.539062pt;}
._6_c00034{width:28.173581pt;}
.fs1_c00034{font-size:47.999998pt;}
.fs2_c00034{font-size:53.319997pt;}
.fs0_c00034{font-size:63.999997pt;}
.fs4_c00034{font-size:67.516223pt;}
.fs3_c00034{font-size:67.516335pt;}
.fs5_c00034{font-size:67.516432pt;}
.y0_c00034{bottom:0.000000pt;}
.y1_c00034{bottom:0.000007pt;}
.y23_c00034{bottom:26.134367pt;}
.y21_c00034{bottom:88.519356pt;}
.y20_c00034{bottom:104.519356pt;}
.y1f_c00034{bottom:120.519355pt;}
.y26_c00034{bottom:135.829014pt;}
.y1e_c00034{bottom:136.519354pt;}
.y24_c00034{bottom:238.032778pt;}
.y25_c00034{bottom:287.520999pt;}
.y1d_c00034{bottom:388.834358pt;}
.y1c_c00034{bottom:410.834357pt;}
.y1b_c00034{bottom:432.834356pt;}
.y1a_c00034{bottom:454.834355pt;}
.y19_c00034{bottom:476.834355pt;}
.y18_c00034{bottom:498.834354pt;}
.y17_c00034{bottom:520.834353pt;}
.y16_c00034{bottom:542.834352pt;}
.y15_c00034{bottom:564.834351pt;}
.y14_c00034{bottom:586.834350pt;}
.y13_c00034{bottom:608.834349pt;}
.y12_c00034{bottom:630.834348pt;}
.y11_c00034{bottom:652.834347pt;}
.y10_c00034{bottom:674.834346pt;}
.yf_c00034{bottom:696.834345pt;}
.ye_c00034{bottom:718.834344pt;}
.yd_c00034{bottom:762.834343pt;}
.yc_c00034{bottom:784.834342pt;}
.yb_c00034{bottom:806.834341pt;}
.ya_c00034{bottom:828.834340pt;}
.y9_c00034{bottom:850.834339pt;}
.y8_c00034{bottom:872.834338pt;}
.y7_c00034{bottom:894.834337pt;}
.y6_c00034{bottom:916.834336pt;}
.y5_c00034{bottom:938.834335pt;}
.y4_c00034{bottom:960.834334pt;}
.y3_c00034{bottom:982.834333pt;}
.y2_c00034{bottom:1004.834333pt;}
.y22_c00034{bottom:1067.200269pt;}
.h5_c00034{height:40.849158pt;}
.h4_c00034{height:44.695311pt;}
.h7_c00034{height:51.725075pt;}
.h6_c00034{height:51.725161pt;}
.h8_c00034{height:51.725235pt;}
.h3_c00034{height:59.593748pt;}
.h2_c00034{height:1159.999952pt;}
.h0_c00034{height:1159.999959pt;}
.h1_c00034{height:1160.000000pt;}
.w2_c00034{width:830.999965pt;}
.w0_c00034{width:831.000000pt;}
.w1_c00034{width:831.333333pt;}
.x0_c00034{left:0.000000pt;}
.x1_c00034{left:78.571475pt;}
.x2_c00034{left:125.414740pt;}
.x4_c00034{left:405.616937pt;}
.x5_c00034{left:494.656034pt;}
.x3_c00034{left:565.385211pt;}
.x6_c00034{left:580.475016pt;}
.x7_c00034{left:664.501060pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb5053056c4ffb9046a74300.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.171387;font-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_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);}
.v0_c00035{vertical-align:0.000000px;}
.ls0_c00035{letter-spacing:0.000000px;}
.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;}
.fc0_c00035{color:rgb(0,0,0);}
.fs0_c00035{font-size:71.999997px;}
.y0_c00035{bottom:0.000000px;}
.y1_c00035{bottom:0.000008px;}
.y2_c00035{bottom:29.401163px;}
.h3_c00035{height:67.042966px;}
.h2_c00035{height:1304.999946px;}
.h0_c00035{height:1304.999953px;}
.h1_c00035{height:1305.000000px;}
.w2_c00035{width:934.874961px;}
.w0_c00035{width:934.875000px;}
.w1_c00035{width:935.250000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:456.319054px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls0_c00035{letter-spacing:0.000000pt;}
.ws0_c00035{word-spacing:0.000000pt;}
.fs0_c00035{font-size:63.999997pt;}
.y0_c00035{bottom:0.000000pt;}
.y1_c00035{bottom:0.000007pt;}
.y2_c00035{bottom:26.134367pt;}
.h3_c00035{height:59.593748pt;}
.h2_c00035{height:1159.999952pt;}
.h0_c00035{height:1159.999959pt;}
.h1_c00035{height:1160.000000pt;}
.w2_c00035{width:830.999965pt;}
.w0_c00035{width:831.000000pt;}
.w1_c00035{width:831.333333pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bf938a496438cabc0cf3b909.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.171387;font-style:normal;font-weight:normal;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_6336369704d32d17153b0fc4.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.000000;font-style:normal;font-weight:normal;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_dfe4884d5bf44ca500d6eb73.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.000000;font-style:normal;font-weight:normal;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_f6de7ec1c09b347c4909537e.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:1.006348;font-style:normal;font-weight: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_c00036;src:url('chunks/assets/font_f0e047447c7423e3f689ce5f.woff2')format("woff");}.ff5_c00036{font-family:ff5_c00036;line-height:1.006348;font-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_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);}
.v0_c00036{vertical-align:0.000000px;}
.ls0_c00036{letter-spacing:0.000000px;}
.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:0.000000px;}
._c_c00036{margin-left:-1.000349px;}
._9_c00036{width:1.125004px;}
._b_c00036{width:3.055702px;}
._6_c00036{width:4.833982px;}
._a_c00036{width:6.636023px;}
._8_c00036{width:7.710889px;}
._d_c00036{width:9.132205px;}
._0_c00036{width:10.591573px;}
._3_c00036{width:11.627314px;}
._1_c00036{width:12.896436px;}
._5_c00036{width:16.734376px;}
._2_c00036{width:30.749974px;}
._4_c00036{width:37.103850px;}
._7_c00036{width:42.132773px;}
.fc3_c00036{color:rgb(74,93,83);}
.fc2_c00036{color:rgb(102,141,85);}
.fc1_c00036{color:rgb(91,115,80);}
.fc0_c00036{color:rgb(0,0,0);}
.fs1_c00036{font-size:59.984997px;}
.fs0_c00036{font-size:71.999997px;}
.y0_c00036{bottom:0.000000px;}
.y1_c00036{bottom:0.000008px;}
.y1b_c00036{bottom:29.400983px;}
.y19_c00036{bottom:90.567932px;}
.y18_c00036{bottom:110.817931px;}
.y17_c00036{bottom:131.067931px;}
.y16_c00036{bottom:151.317930px;}
.y15_c00036{bottom:171.567929px;}
.y14_c00036{bottom:546.828205px;}
.y13_c00036{bottom:577.203204px;}
.y1a_c00036{bottom:624.999538px;}
.y12_c00036{bottom:683.847216px;}
.y11_c00036{bottom:714.222215px;}
.y10_c00036{bottom:744.597214px;}
.yf_c00036{bottom:774.972213px;}
.ye_c00036{bottom:805.347211px;}
.yd_c00036{bottom:835.722210px;}
.yc_c00036{bottom:866.097209px;}
.yb_c00036{bottom:896.472207px;}
.ya_c00036{bottom:926.847206px;}
.y9_c00036{bottom:987.597204px;}
.y8_c00036{bottom:1017.972202px;}
.y7_c00036{bottom:1048.347201px;}
.y6_c00036{bottom:1078.722200px;}
.y5_c00036{bottom:1109.097199px;}
.y4_c00036{bottom:1139.472197px;}
.y3_c00036{bottom:1169.847196px;}
.y2_c00036{bottom:1200.222195px;}
.h5_c00036{height:45.955303px;}
.h4_c00036{height:55.855171px;}
.h3_c00036{height:67.042966px;}
.h2_c00036{height:1304.999946px;}
.h0_c00036{height:1304.999953px;}
.h1_c00036{height:1305.000000px;}
.w2_c00036{width:934.874961px;}
.w0_c00036{width:934.875000px;}
.w1_c00036{width:935.250000px;}
.x0_c00036{left:0.000000px;}
.x1_c00036{left:87.902647px;}
.x2_c00036{left:90.093445px;}
.x3_c00036{left:456.319054px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ws0_c00036{word-spacing:0.000000pt;}
._c_c00036{margin-left:-0.889199pt;}
._9_c00036{width:1.000004pt;}
._b_c00036{width:2.716179pt;}
._6_c00036{width:4.296873pt;}
._a_c00036{width:5.898687pt;}
._8_c00036{width:6.854123pt;}
._d_c00036{width:8.117516pt;}
._0_c00036{width:9.414732pt;}
._3_c00036{width:10.335390pt;}
._1_c00036{width:11.463499pt;}
._5_c00036{width:14.875001pt;}
._2_c00036{width:27.333310pt;}
._4_c00036{width:32.981200pt;}
._7_c00036{width:37.451354pt;}
.fs1_c00036{font-size:53.319997pt;}
.fs0_c00036{font-size:63.999997pt;}
.y0_c00036{bottom:0.000000pt;}
.y1_c00036{bottom:0.000007pt;}
.y1b_c00036{bottom:26.134207pt;}
.y19_c00036{bottom:80.504829pt;}
.y18_c00036{bottom:98.504828pt;}
.y17_c00036{bottom:116.504827pt;}
.y16_c00036{bottom:134.504826pt;}
.y15_c00036{bottom:152.504826pt;}
.y14_c00036{bottom:486.069516pt;}
.y13_c00036{bottom:513.069515pt;}
.y1a_c00036{bottom:555.555145pt;}
.y12_c00036{bottom:607.864192pt;}
.y11_c00036{bottom:634.864191pt;}
.y10_c00036{bottom:661.864190pt;}
.yf_c00036{bottom:688.864189pt;}
.ye_c00036{bottom:715.864188pt;}
.yd_c00036{bottom:742.864187pt;}
.yc_c00036{bottom:769.864186pt;}
.yb_c00036{bottom:796.864184pt;}
.ya_c00036{bottom:823.864183pt;}
.y9_c00036{bottom:877.864181pt;}
.y8_c00036{bottom:904.864180pt;}
.y7_c00036{bottom:931.864179pt;}
.y6_c00036{bottom:958.864178pt;}
.y5_c00036{bottom:985.864177pt;}
.y4_c00036{bottom:1012.864175pt;}
.y3_c00036{bottom:1039.864174pt;}
.y2_c00036{bottom:1066.864173pt;}
.h5_c00036{height:40.849158pt;}
.h4_c00036{height:49.649041pt;}
.h3_c00036{height:59.593748pt;}
.h2_c00036{height:1159.999952pt;}
.h0_c00036{height:1159.999959pt;}
.h1_c00036{height:1160.000000pt;}
.w2_c00036{width:830.999965pt;}
.w0_c00036{width:831.000000pt;}
.w1_c00036{width:831.333333pt;}
.x0_c00036{left:0.000000pt;}
.x1_c00036{left:78.135686pt;}
.x2_c00036{left:80.083062pt;}
.x3_c00036{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_277df4595d2d6f1089c279e1.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.006348;font-style:normal;font-weight:normal;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_37822868ef055f70f574cd88.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.171387;font-style:normal;font-weight:normal;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_a0cd775df88b748fdc2523d9.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.006348;font-style:normal;font-weight:normal;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_25a0ecc545017b69a2dcb8ee.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;line-height:0.729980;font-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_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);}
.v0_c00037{vertical-align:0.000000px;}
.ls1_c00037{letter-spacing:0.000000px;}
.ls0_c00037{letter-spacing:2.136709px;}
.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;}
}
.ws1_c00037{word-spacing:-15.582041px;}
.ws0_c00037{word-spacing:-0.059985px;}
.ws2_c00037{word-spacing:0.000000px;}
._2_c00037{width:1.168947px;}
._b_c00037{width:2.289669px;}
._1_c00037{width:3.323845px;}
._8_c00037{width:6.386695px;}
._3_c00037{width:7.421127px;}
._9_c00037{width:10.476561px;}
._6_c00037{width:15.591790px;}
._0_c00037{width:16.593751px;}
._a_c00037{width:20.379776px;}
._5_c00037{width:29.383551px;}
._7_c00037{width:36.386719px;}
._4_c00037{width:43.984312px;}
.fc3_c00037{color:rgb(93,156,116);}
.fc2_c00037{color:rgb(50,44,18);}
.fc1_c00037{color:rgb(0,0,0);}
.fc0_c00037{color:rgb(74,93,83);}
.fs2_c00037{font-size:59.984997px;}
.fs0_c00037{font-size:60.081920px;}
.fs1_c00037{font-size:71.999997px;}
.y0_c00037{bottom:0.000000px;}
.y1_c00037{bottom:0.000008px;}
.y16_c00037{bottom:29.401163px;}
.y14_c00037{bottom:229.181462px;}
.y13_c00037{bottom:253.931461px;}
.y12_c00037{bottom:278.681460px;}
.y2_c00037{bottom:660.456672px;}
.y15_c00037{bottom:661.912152px;}
.y11_c00037{bottom:761.655554px;}
.y10_c00037{bottom:790.905553px;}
.yf_c00037{bottom:820.155551px;}
.ye_c00037{bottom:849.405550px;}
.yd_c00037{bottom:896.472207px;}
.yc_c00037{bottom:926.847206px;}
.yb_c00037{bottom:957.222205px;}
.ya_c00037{bottom:987.597204px;}
.y9_c00037{bottom:1017.972202px;}
.y8_c00037{bottom:1048.347201px;}
.y7_c00037{bottom:1078.722200px;}
.y6_c00037{bottom:1109.097199px;}
.y5_c00037{bottom:1139.472197px;}
.y4_c00037{bottom:1169.847196px;}
.y3_c00037{bottom:1200.222195px;}
.h3_c00037{height:46.029557px;}
.h5_c00037{height:55.855171px;}
.h4_c00037{height:67.042966px;}
.h2_c00037{height:1304.999946px;}
.h0_c00037{height:1304.999953px;}
.h1_c00037{height:1305.000000px;}
.w2_c00037{width:934.874961px;}
.w0_c00037{width:934.875000px;}
.w1_c00037{width:935.250000px;}
.x0_c00037{left:0.000000px;}
.x2_c00037{left:87.902647px;}
.x3_c00037{left:138.287575px;}
.x5_c00037{left:456.319054px;}
.x4_c00037{left:521.981301px;}
.x1_c00037{left:768.716500px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls1_c00037{letter-spacing:0.000000pt;}
.ls0_c00037{letter-spacing:1.899297pt;}
.ws1_c00037{word-spacing:-13.850703pt;}
.ws0_c00037{word-spacing:-0.053320pt;}
.ws2_c00037{word-spacing:0.000000pt;}
._2_c00037{width:1.039064pt;}
._b_c00037{width:2.035262pt;}
._1_c00037{width:2.954529pt;}
._8_c00037{width:5.677062pt;}
._3_c00037{width:6.596558pt;}
._9_c00037{width:9.312499pt;}
._6_c00037{width:13.859369pt;}
._0_c00037{width:14.750001pt;}
._a_c00037{width:18.115357pt;}
._5_c00037{width:26.118712pt;}
._7_c00037{width:32.343750pt;}
._4_c00037{width:39.097166pt;}
.fs2_c00037{font-size:53.319997pt;}
.fs0_c00037{font-size:53.406151pt;}
.fs1_c00037{font-size:63.999997pt;}
.y0_c00037{bottom:0.000000pt;}
.y1_c00037{bottom:0.000007pt;}
.y16_c00037{bottom:26.134367pt;}
.y14_c00037{bottom:203.716856pt;}
.y13_c00037{bottom:225.716855pt;}
.y12_c00037{bottom:247.716854pt;}
.y2_c00037{bottom:587.072598pt;}
.y15_c00037{bottom:588.366358pt;}
.y11_c00037{bottom:677.027159pt;}
.y10_c00037{bottom:703.027158pt;}
.yf_c00037{bottom:729.027157pt;}
.ye_c00037{bottom:755.027156pt;}
.yd_c00037{bottom:796.864184pt;}
.yc_c00037{bottom:823.864183pt;}
.yb_c00037{bottom:850.864182pt;}
.ya_c00037{bottom:877.864181pt;}
.y9_c00037{bottom:904.864180pt;}
.y8_c00037{bottom:931.864179pt;}
.y7_c00037{bottom:958.864178pt;}
.y6_c00037{bottom:985.864177pt;}
.y5_c00037{bottom:1012.864175pt;}
.y4_c00037{bottom:1039.864174pt;}
.y3_c00037{bottom:1066.864173pt;}
.h3_c00037{height:40.915162pt;}
.h5_c00037{height:49.649041pt;}
.h4_c00037{height:59.593748pt;}
.h2_c00037{height:1159.999952pt;}
.h0_c00037{height:1159.999959pt;}
.h1_c00037{height:1160.000000pt;}
.w2_c00037{width:830.999965pt;}
.w0_c00037{width:831.000000pt;}
.w1_c00037{width:831.333333pt;}
.x0_c00037{left:0.000000pt;}
.x2_c00037{left:78.135686pt;}
.x3_c00037{left:122.922289pt;}
.x5_c00037{left:405.616937pt;}
.x4_c00037{left:463.983379pt;}
.x1_c00037{left:683.303556pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be2427d596d05dc1fab37301.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.006348;font-style:normal;font-weight:normal;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_cb877a9a9bfa45ce7aad71a0.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.006348;font-style:normal;font-weight:normal;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_b0a5a189a4c288c1ad3c8b14.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.006348;font-style:normal;font-weight:normal;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_4d696456791283458cce5e3f.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.171387;font-style:normal;font-weight: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_c00038;src:url('chunks/assets/font_adf72a679dcb62d81c657730.woff2')format("woff");}.ff5_c00038{font-family:ff5_c00038;line-height:0.872070;font-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_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);}
.v0_c00038{vertical-align:0.000000px;}
.ls1_c00038{letter-spacing:0.000000px;}
.ls0_c00038{letter-spacing:0.034057px;}
.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;}
}
.ws2_c00038{word-spacing:-18.703021px;}
.ws0_c00038{word-spacing:-15.546973px;}
.ws1_c00038{word-spacing:-0.059850px;}
.ws3_c00038{word-spacing:0.000000px;}
._3_c00038{width:1.778959px;}
._4_c00038{width:3.575100px;}
._1_c00038{width:5.108692px;}
._2_c00038{width:6.294863px;}
._a_c00038{width:8.199463px;}
._f_c00038{width:10.308822px;}
._d_c00038{width:17.701068px;}
._e_c00038{width:24.527207px;}
._b_c00038{width:26.588374px;}
._8_c00038{width:27.833197px;}
._9_c00038{width:28.914472px;}
._0_c00038{width:32.530471px;}
._c_c00038{width:34.270241px;}
._5_c00038{width:36.690650px;}
._7_c00038{width:43.295970px;}
._6_c00038{width:62.068477px;}
.fc3_c00038{color:rgb(0,0,0);}
.fc2_c00038{color:rgb(34,135,65);}
.fc1_c00038{color:rgb(50,44,18);}
.fc0_c00038{color:rgb(74,93,83);}
.fs0_c00038{font-size:59.849998px;}
.fs1_c00038{font-size:71.999598px;}
.fs2_c00038{font-size:71.999997px;}
.y0_c00038{bottom:0.000000px;}
.y1_c00038{bottom:0.000008px;}
.y1d_c00038{bottom:29.401163px;}
.y7_c00038{bottom:91.415732px;}
.yd_c00038{bottom:95.667872px;}
.y6_c00038{bottom:112.790731px;}
.yc_c00038{bottom:117.042871px;}
.y5_c00038{bottom:134.165730px;}
.yb_c00038{bottom:138.417870px;}
.y4_c00038{bottom:155.540730px;}
.ya_c00038{bottom:159.792869px;}
.y3_c00038{bottom:176.915729px;}
.y9_c00038{bottom:181.167868px;}
.y2_c00038{bottom:198.290728px;}
.y8_c00038{bottom:202.542868px;}
.y1c_c00038{bottom:750.419997px;}
.y1b_c00038{bottom:780.419830px;}
.y1a_c00038{bottom:810.419663px;}
.y19_c00038{bottom:840.419495px;}
.y18_c00038{bottom:870.419328px;}
.y17_c00038{bottom:915.419077px;}
.y16_c00038{bottom:945.418910px;}
.y15_c00038{bottom:975.418742px;}
.y14_c00038{bottom:1005.418575px;}
.y13_c00038{bottom:1035.418408px;}
.y12_c00038{bottom:1080.418157px;}
.y11_c00038{bottom:1110.417989px;}
.y10_c00038{bottom:1140.417822px;}
.yf_c00038{bottom:1170.417655px;}
.ye_c00038{bottom:1200.417487px;}
.h3_c00038{height:45.851879px;}
.h4_c00038{height:55.729466px;}
.h5_c00038{height:67.042595px;}
.h6_c00038{height:67.042966px;}
.h2_c00038{height:1304.999946px;}
.h0_c00038{height:1304.999953px;}
.h1_c00038{height:1305.000000px;}
.w2_c00038{width:934.874961px;}
.w0_c00038{width:934.875000px;}
.w1_c00038{width:935.250000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:87.902647px;}
.x3_c00038{left:456.319054px;}
.x2_c00038{left:478.349937px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls1_c00038{letter-spacing:0.000000pt;}
.ls0_c00038{letter-spacing:0.030273pt;}
.ws2_c00038{word-spacing:-16.624908pt;}
.ws0_c00038{word-spacing:-13.819531pt;}
.ws1_c00038{word-spacing:-0.053200pt;}
.ws3_c00038{word-spacing:0.000000pt;}
._3_c00038{width:1.581297pt;}
._4_c00038{width:3.177867pt;}
._1_c00038{width:4.541059pt;}
._2_c00038{width:5.595434pt;}
._a_c00038{width:7.288412pt;}
._f_c00038{width:9.163397pt;}
._d_c00038{width:15.734283pt;}
._e_c00038{width:21.801962pt;}
._b_c00038{width:23.634110pt;}
._8_c00038{width:24.740620pt;}
._9_c00038{width:25.701753pt;}
._0_c00038{width:28.915974pt;}
._c_c00038{width:30.462437pt;}
._5_c00038{width:32.613911pt;}
._7_c00038{width:38.485306pt;}
._6_c00038{width:55.171980pt;}
.fs0_c00038{font-size:53.199999pt;}
.fs1_c00038{font-size:63.999643pt;}
.fs2_c00038{font-size:63.999997pt;}
.y0_c00038{bottom:0.000000pt;}
.y1_c00038{bottom:0.000007pt;}
.y1d_c00038{bottom:26.134367pt;}
.y7_c00038{bottom:81.258429pt;}
.yd_c00038{bottom:85.038108pt;}
.y6_c00038{bottom:100.258428pt;}
.yc_c00038{bottom:104.038108pt;}
.y5_c00038{bottom:119.258427pt;}
.yb_c00038{bottom:123.038107pt;}
.y4_c00038{bottom:138.258426pt;}
.ya_c00038{bottom:142.038106pt;}
.y3_c00038{bottom:157.258425pt;}
.y9_c00038{bottom:161.038105pt;}
.y2_c00038{bottom:176.258425pt;}
.y8_c00038{bottom:180.038104pt;}
.y1c_c00038{bottom:667.039998pt;}
.y1b_c00038{bottom:693.706516pt;}
.y1a_c00038{bottom:720.373034pt;}
.y19_c00038{bottom:747.039551pt;}
.y18_c00038{bottom:773.706069pt;}
.y17_c00038{bottom:813.705846pt;}
.y16_c00038{bottom:840.372364pt;}
.y15_c00038{bottom:867.038882pt;}
.y14_c00038{bottom:893.705400pt;}
.y13_c00038{bottom:920.371918pt;}
.y12_c00038{bottom:960.371695pt;}
.y11_c00038{bottom:987.038213pt;}
.y10_c00038{bottom:1013.704731pt;}
.yf_c00038{bottom:1040.371249pt;}
.ye_c00038{bottom:1067.037767pt;}
.h3_c00038{height:40.757225pt;}
.h4_c00038{height:49.537303pt;}
.h5_c00038{height:59.593418pt;}
.h6_c00038{height:59.593748pt;}
.h2_c00038{height:1159.999952pt;}
.h0_c00038{height:1159.999959pt;}
.h1_c00038{height:1160.000000pt;}
.w2_c00038{width:830.999965pt;}
.w0_c00038{width:831.000000pt;}
.w1_c00038{width:831.333333pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:78.135686pt;}
.x3_c00038{left:405.616937pt;}
.x2_c00038{left:425.199944pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_620eaf34a0c4e2620f1ff219.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.171387;font-style:normal;font-weight:normal;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_4a219ca1face4367f05a5e5d.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.000000;font-style:normal;font-weight:normal;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_08f9115ac0650a9c6c2e5720.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00039;src:url('chunks/assets/font_748292b6e12570882f259e76.woff2')format("woff");}.ff4_c00039{font-family:ff4_c00039;line-height:1.000000;font-style:normal;font-weight: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_c00039;src:url('chunks/assets/font_761be3a8c93e2f761669c919.woff2')format("woff");}.ff5_c00039{font-family:ff5_c00039;line-height:1.006348;font-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_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);}
.v0_c00039{vertical-align:0.000000px;}
.ls2_c00039{letter-spacing:0.000000px;}
.ls0_c00039{letter-spacing:10.406249px;}
.ls1_c00039{letter-spacing:14.343749px;}
.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:-18.703125px;}
.ws1_c00039{word-spacing:-0.072000px;}
.ws2_c00039{word-spacing:-0.059985px;}
.ws3_c00039{word-spacing:0.000000px;}
._d_c00039{width:1.025292px;}
._a_c00039{width:2.203172px;}
._5_c00039{width:4.054640px;}
._2_c00039{width:6.152342px;}
._3_c00039{width:7.929039px;}
._f_c00039{width:8.977127px;}
._6_c00039{width:10.363608px;}
._1_c00039{width:12.046853px;}
._8_c00039{width:13.767859px;}
._c_c00039{width:14.884484px;}
._0_c00039{width:17.245648px;}
._9_c00039{width:24.250740px;}
._e_c00039{width:25.296088px;}
._b_c00039{width:28.289039px;}
._7_c00039{width:29.601560px;}
._4_c00039{width:40.049970px;}
._10_c00039{width:54.254880px;}
.fc1_c00039{color:rgb(74,93,83);}
.fc0_c00039{color:rgb(0,0,0);}
.fs1_c00039{font-size:59.984997px;}
.fs0_c00039{font-size:71.999997px;}
.y0_c00039{bottom:0.000000px;}
.y1_c00039{bottom:0.000008px;}
.y22_c00039{bottom:29.401163px;}
.y21_c00039{bottom:170.347493px;}
.y20_c00039{bottom:199.597492px;}
.y1f_c00039{bottom:228.847490px;}
.y1e_c00039{bottom:258.097489px;}
.y1d_c00039{bottom:287.347488px;}
.y1c_c00039{bottom:316.597487px;}
.y1b_c00039{bottom:345.847486px;}
.y1a_c00039{bottom:375.097484px;}
.y19_c00039{bottom:404.347483px;}
.y18_c00039{bottom:433.597482px;}
.y17_c00039{bottom:462.847481px;}
.y16_c00039{bottom:492.097479px;}
.yd_c00039{bottom:561.082829px;}
.yc_c00039{bottom:590.332828px;}
.yb_c00039{bottom:619.582827px;}
.ya_c00039{bottom:648.832826px;}
.y9_c00039{bottom:678.082825px;}
.y8_c00039{bottom:707.332823px;}
.y7_c00039{bottom:736.582822px;}
.y6_c00039{bottom:765.832821px;}
.y5_c00039{bottom:795.082820px;}
.y4_c00039{bottom:824.332818px;}
.y3_c00039{bottom:853.582817px;}
.y2_c00039{bottom:882.832816px;}
.y14_c00039{bottom:951.817460px;}
.y13_c00039{bottom:981.067459px;}
.y12_c00039{bottom:1010.317458px;}
.y11_c00039{bottom:1039.567457px;}
.y10_c00039{bottom:1068.817455px;}
.yf_c00039{bottom:1098.067454px;}
.ye_c00039{bottom:1127.317453px;}
.y15_c00039{bottom:1202.847487px;}
.h4_c00039{height:45.955303px;}
.h3_c00039{height:67.042966px;}
.h2_c00039{height:1304.999946px;}
.h0_c00039{height:1304.999953px;}
.h1_c00039{height:1305.000000px;}
.w2_c00039{width:934.874961px;}
.w0_c00039{width:934.875000px;}
.w1_c00039{width:935.250000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:87.902647px;}
.x2_c00039{left:456.319054px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls2_c00039{letter-spacing:0.000000pt;}
.ls0_c00039{letter-spacing:9.249999pt;}
.ls1_c00039{letter-spacing:12.749999pt;}
.ws0_c00039{word-spacing:-16.625000pt;}
.ws1_c00039{word-spacing:-0.064000pt;}
.ws2_c00039{word-spacing:-0.053320pt;}
.ws3_c00039{word-spacing:0.000000pt;}
._d_c00039{width:0.911371pt;}
._a_c00039{width:1.958375pt;}
._5_c00039{width:3.604124pt;}
._2_c00039{width:5.468749pt;}
._3_c00039{width:7.048035pt;}
._f_c00039{width:7.979669pt;}
._6_c00039{width:9.212096pt;}
._1_c00039{width:10.708314pt;}
._8_c00039{width:12.238096pt;}
._c_c00039{width:13.230652pt;}
._0_c00039{width:15.329465pt;}
._9_c00039{width:21.556213pt;}
._e_c00039{width:22.485412pt;}
._b_c00039{width:25.145812pt;}
._7_c00039{width:26.312498pt;}
._4_c00039{width:35.599973pt;}
._10_c00039{width:48.226560pt;}
.fs1_c00039{font-size:53.319997pt;}
.fs0_c00039{font-size:63.999997pt;}
.y0_c00039{bottom:0.000000pt;}
.y1_c00039{bottom:0.000007pt;}
.y22_c00039{bottom:26.134367pt;}
.y21_c00039{bottom:151.419994pt;}
.y20_c00039{bottom:177.419993pt;}
.y1f_c00039{bottom:203.419992pt;}
.y1e_c00039{bottom:229.419990pt;}
.y1d_c00039{bottom:255.419989pt;}
.y1c_c00039{bottom:281.419988pt;}
.y1b_c00039{bottom:307.419987pt;}
.y1a_c00039{bottom:333.419986pt;}
.y19_c00039{bottom:359.419985pt;}
.y18_c00039{bottom:385.419984pt;}
.y17_c00039{bottom:411.419983pt;}
.y16_c00039{bottom:437.419982pt;}
.yd_c00039{bottom:498.740293pt;}
.yc_c00039{bottom:524.740292pt;}
.yb_c00039{bottom:550.740291pt;}
.ya_c00039{bottom:576.740290pt;}
.y9_c00039{bottom:602.740288pt;}
.y8_c00039{bottom:628.740287pt;}
.y7_c00039{bottom:654.740286pt;}
.y6_c00039{bottom:680.740285pt;}
.y5_c00039{bottom:706.740284pt;}
.y4_c00039{bottom:732.740283pt;}
.y3_c00039{bottom:758.740282pt;}
.y2_c00039{bottom:784.740281pt;}
.y14_c00039{bottom:846.059965pt;}
.y13_c00039{bottom:872.059964pt;}
.y12_c00039{bottom:898.059963pt;}
.y11_c00039{bottom:924.059961pt;}
.y10_c00039{bottom:950.059960pt;}
.yf_c00039{bottom:976.059959pt;}
.ye_c00039{bottom:1002.059958pt;}
.y15_c00039{bottom:1069.197767pt;}
.h4_c00039{height:40.849158pt;}
.h3_c00039{height:59.593748pt;}
.h2_c00039{height:1159.999952pt;}
.h0_c00039{height:1159.999959pt;}
.h1_c00039{height:1160.000000pt;}
.w2_c00039{width:830.999965pt;}
.w0_c00039{width:831.000000pt;}
.w1_c00039{width:831.333333pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:78.135686pt;}
.x2_c00039{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ad89f148e368865394d5695.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.006348;font-style:normal;font-weight:normal;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_63f6bba3aaf2333308643c8f.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.171387;font-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_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);}
.v0_c00040{vertical-align:0.000000px;}
.ls0_c00040{letter-spacing:0.000000px;}
.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:-18.703125px;}
.ws1_c00040{word-spacing:0.000000px;}
._8_c00040{width:2.179687px;}
._9_c00040{width:4.113301px;}
._6_c00040{width:5.273438px;}
._3_c00040{width:8.296877px;}
._0_c00040{width:9.351564px;}
._5_c00040{width:10.433018px;}
._4_c00040{width:11.933555px;}
._2_c00040{width:13.507755px;}
._b_c00040{width:16.992136px;}
._c_c00040{width:24.123574px;}
._1_c00040{width:27.683899px;}
._a_c00040{width:28.936749px;}
._7_c00040{width:37.089844px;}
.fc1_c00040{color:rgb(74,93,83);}
.fc0_c00040{color:rgb(0,0,0);}
.fs0_c00040{font-size:71.999997px;}
.y0_c00040{bottom:0.000000px;}
.y1_c00040{bottom:0.000008px;}
.y1e_c00040{bottom:29.401163px;}
.y1d_c00040{bottom:253.208607px;}
.y1c_c00040{bottom:282.458605px;}
.y1b_c00040{bottom:311.708604px;}
.y1a_c00040{bottom:340.958603px;}
.y19_c00040{bottom:370.208602px;}
.y18_c00040{bottom:428.708599px;}
.y17_c00040{bottom:457.958598px;}
.y16_c00040{bottom:487.208597px;}
.y15_c00040{bottom:516.458596px;}
.y14_c00040{bottom:545.708594px;}
.y13_c00040{bottom:574.958593px;}
.y12_c00040{bottom:604.208592px;}
.y11_c00040{bottom:633.458591px;}
.y10_c00040{bottom:662.708590px;}
.yf_c00040{bottom:691.958588px;}
.ye_c00040{bottom:721.208587px;}
.yd_c00040{bottom:779.708585px;}
.yc_c00040{bottom:808.958583px;}
.yb_c00040{bottom:838.208582px;}
.ya_c00040{bottom:867.458581px;}
.y9_c00040{bottom:896.708580px;}
.y8_c00040{bottom:925.958579px;}
.y7_c00040{bottom:984.458576px;}
.y6_c00040{bottom:1013.708575px;}
.y5_c00040{bottom:1042.958574px;}
.y4_c00040{bottom:1072.208573px;}
.y3_c00040{bottom:1101.458571px;}
.y2_c00040{bottom:1130.708570px;}
.h3_c00040{height:55.160154px;}
.h4_c00040{height:67.042966px;}
.h2_c00040{height:1304.999946px;}
.h0_c00040{height:1304.999953px;}
.h1_c00040{height:1305.000000px;}
.w2_c00040{width:934.874961px;}
.w0_c00040{width:934.875000px;}
.w1_c00040{width:935.250000px;}
.x0_c00040{left:0.000000px;}
.x1_c00040{left:87.902647px;}
.x2_c00040{left:456.319054px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws0_c00040{word-spacing:-16.625000pt;}
.ws1_c00040{word-spacing:0.000000pt;}
._8_c00040{width:1.937500pt;}
._9_c00040{width:3.656268pt;}
._6_c00040{width:4.687500pt;}
._3_c00040{width:7.375001pt;}
._0_c00040{width:8.312502pt;}
._5_c00040{width:9.273794pt;}
._4_c00040{width:10.607605pt;}
._2_c00040{width:12.006894pt;}
._b_c00040{width:15.104120pt;}
._c_c00040{width:21.443177pt;}
._1_c00040{width:24.607910pt;}
._a_c00040{width:25.721555pt;}
._7_c00040{width:32.968750pt;}
.fs0_c00040{font-size:63.999997pt;}
.y0_c00040{bottom:0.000000pt;}
.y1_c00040{bottom:0.000007pt;}
.y1e_c00040{bottom:26.134367pt;}
.y1d_c00040{bottom:225.074317pt;}
.y1c_c00040{bottom:251.074316pt;}
.y1b_c00040{bottom:277.074315pt;}
.y1a_c00040{bottom:303.074314pt;}
.y19_c00040{bottom:329.074313pt;}
.y18_c00040{bottom:381.074311pt;}
.y17_c00040{bottom:407.074309pt;}
.y16_c00040{bottom:433.074308pt;}
.y15_c00040{bottom:459.074307pt;}
.y14_c00040{bottom:485.074306pt;}
.y13_c00040{bottom:511.074305pt;}
.y12_c00040{bottom:537.074304pt;}
.y11_c00040{bottom:563.074303pt;}
.y10_c00040{bottom:589.074302pt;}
.yf_c00040{bottom:615.074301pt;}
.ye_c00040{bottom:641.074300pt;}
.yd_c00040{bottom:693.074298pt;}
.yc_c00040{bottom:719.074296pt;}
.yb_c00040{bottom:745.074295pt;}
.ya_c00040{bottom:771.074294pt;}
.y9_c00040{bottom:797.074293pt;}
.y8_c00040{bottom:823.074292pt;}
.y7_c00040{bottom:875.074290pt;}
.y6_c00040{bottom:901.074289pt;}
.y5_c00040{bottom:927.074288pt;}
.y4_c00040{bottom:953.074287pt;}
.y3_c00040{bottom:979.074286pt;}
.y2_c00040{bottom:1005.074285pt;}
.h3_c00040{height:49.031248pt;}
.h4_c00040{height:59.593748pt;}
.h2_c00040{height:1159.999952pt;}
.h0_c00040{height:1159.999959pt;}
.h1_c00040{height:1160.000000pt;}
.w2_c00040{width:830.999965pt;}
.w0_c00040{width:831.000000pt;}
.w1_c00040{width:831.333333pt;}
.x0_c00040{left:0.000000pt;}
.x1_c00040{left:78.135686pt;}
.x2_c00040{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_810e045996d5d3fbc565f9b9.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.171387;font-style:normal;font-weight:normal;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_778bed8c992a0a6def9aead9.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:0.728027;font-style:normal;font-weight:normal;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_46f5a6a3b73904b65bcbd28f.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.006348;font-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_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;}
.ls1_c00041{letter-spacing:0.000000px;}
.ls0_c00041{letter-spacing:14.582021px;}
.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;}
}
.ws1_c00041{word-spacing:-21.787847px;}
.ws2_c00041{word-spacing:0.000000px;}
.ws0_c00041{word-spacing:347.789342px;}
._1_c00041{margin-left:-1.000625px;}
._0_c00041{width:14.512970px;}
._2_c00041{width:18.202974px;}
._3_c00041{width:395.255500px;}
.fc2_c00041{color:rgb(0,0,0);}
.fc1_c00041{color:rgb(50,44,18);}
.fc0_c00041{color:rgb(74,93,83);}
.fs0_c00041{font-size:59.984997px;}
.fs3_c00041{font-size:71.999997px;}
.fs1_c00041{font-size:83.875017px;}
.fs2_c00041{font-size:119.969995px;}
.y0_c00041{bottom:0.000000px;}
.y1_c00041{bottom:0.000008px;}
.y6_c00041{bottom:0.000018px;}
.y27_c00041{bottom:29.400983px;}
.y4_c00041{bottom:96.339020px;}
.y3_c00041{bottom:121.089019px;}
.y2_c00041{bottom:145.839018px;}
.y5_c00041{bottom:209.594429px;}
.y23_c00041{bottom:237.021326px;}
.y22_c00041{bottom:266.163577px;}
.y21_c00041{bottom:295.305792px;}
.y20_c00041{bottom:324.448222px;}
.y1f_c00041{bottom:353.590653px;}
.y1e_c00041{bottom:382.732904px;}
.y1d_c00041{bottom:411.875155px;}
.y1c_c00041{bottom:441.017550px;}
.y1b_c00041{bottom:470.159980px;}
.y1a_c00041{bottom:499.302231px;}
.y19_c00041{bottom:528.444482px;}
.y18_c00041{bottom:557.586877px;}
.y17_c00041{bottom:586.729308px;}
.y16_c00041{bottom:615.871558px;}
.y15_c00041{bottom:645.013809px;}
.y14_c00041{bottom:674.156204px;}
.y13_c00041{bottom:703.298642px;}
.y12_c00041{bottom:732.440889px;}
.y11_c00041{bottom:761.583133px;}
.y10_c00041{bottom:790.725553px;}
.yf_c00041{bottom:819.867973px;}
.ye_c00041{bottom:849.010220px;}
.yd_c00041{bottom:878.152463px;}
.yc_c00041{bottom:907.294883px;}
.yb_c00041{bottom:936.437303px;}
.ya_c00041{bottom:965.579551px;}
.y9_c00041{bottom:994.721794px;}
.y8_c00041{bottom:1023.864214px;}
.y7_c00041{bottom:1053.006634px;}
.y26_c00041{bottom:1124.847198px;}
.y25_c00041{bottom:1156.347197px;}
.y24_c00041{bottom:1187.847195px;}
.h4_c00041{height:45.955303px;}
.h8_c00041{height:55.160154px;}
.h3_c00041{height:55.855171px;}
.h6_c00041{height:64.257764px;}
.h7_c00041{height:111.710342px;}
.h5_c00041{height:859.607532px;}
.h2_c00041{height:1304.999946px;}
.h0_c00041{height:1304.999953px;}
.h1_c00041{height:1305.000000px;}
.w3_c00041{width:757.625224px;}
.w2_c00041{width:934.874961px;}
.w0_c00041{width:934.875000px;}
.w1_c00041{width:935.250000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:87.902647px;}
.x2_c00041{left:91.874397px;}
.x11_c00041{left:93.316683px;}
.xc_c00041{left:110.471647px;}
.x17_c00041{left:114.684609px;}
.xd_c00041{left:119.981040px;}
.x9_c00041{left:121.317418px;}
.x4_c00041{left:123.447459px;}
.xf_c00041{left:125.039852px;}
.x10_c00041{left:128.083355px;}
.x7_c00041{left:129.357262px;}
.x16_c00041{left:131.429965px;}
.x8_c00041{left:133.465775px;}
.xa_c00041{left:135.248647px;}
.x14_c00041{left:138.229679px;}
.x12_c00041{left:143.189183px;}
.x5_c00041{left:145.052969px;}
.x1a_c00041{left:152.519832px;}
.xb_c00041{left:162.891989px;}
.x15_c00041{left:164.142360px;}
.x6_c00041{left:165.502299px;}
.x13_c00041{left:169.443911px;}
.xe_c00041{left:174.265146px;}
.x18_c00041{left:182.077655px;}
.x3_c00041{left:183.815031px;}
.x19_c00041{left:200.490533px;}
.x1b_c00041{left:270.943655px;}
.x1c_c00041{left:456.319054px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls1_c00041{letter-spacing:0.000000pt;}
.ls0_c00041{letter-spacing:12.961796pt;}
.ws1_c00041{word-spacing:-19.366975pt;}
.ws2_c00041{word-spacing:0.000000pt;}
.ws0_c00041{word-spacing:309.146082pt;}
._1_c00041{margin-left:-0.889445pt;}
._0_c00041{width:12.900418pt;}
._2_c00041{width:16.180421pt;}
._3_c00041{width:351.338222pt;}
.fs0_c00041{font-size:53.319997pt;}
.fs3_c00041{font-size:63.999997pt;}
.fs1_c00041{font-size:74.555570pt;}
.fs2_c00041{font-size:106.639996pt;}
.y0_c00041{bottom:0.000000pt;}
.y1_c00041{bottom:0.000007pt;}
.y6_c00041{bottom:0.000016pt;}
.y27_c00041{bottom:26.134207pt;}
.y4_c00041{bottom:85.634684pt;}
.y3_c00041{bottom:107.634684pt;}
.y2_c00041{bottom:129.634683pt;}
.y5_c00041{bottom:186.306159pt;}
.y23_c00041{bottom:210.685623pt;}
.y22_c00041{bottom:236.589846pt;}
.y21_c00041{bottom:262.494037pt;}
.y20_c00041{bottom:288.398420pt;}
.y1f_c00041{bottom:314.302803pt;}
.y1e_c00041{bottom:340.207026pt;}
.y1d_c00041{bottom:366.111249pt;}
.y1c_c00041{bottom:392.015600pt;}
.y1b_c00041{bottom:417.919983pt;}
.y1a_c00041{bottom:443.824206pt;}
.y19_c00041{bottom:469.728428pt;}
.y18_c00041{bottom:495.632779pt;}
.y17_c00041{bottom:521.537162pt;}
.y16_c00041{bottom:547.441385pt;}
.y15_c00041{bottom:573.345608pt;}
.y14_c00041{bottom:599.249959pt;}
.y13_c00041{bottom:625.154348pt;}
.y12_c00041{bottom:651.058568pt;}
.y11_c00041{bottom:676.962785pt;}
.y10_c00041{bottom:702.867158pt;}
.yf_c00041{bottom:728.771531pt;}
.ye_c00041{bottom:754.675751pt;}
.yd_c00041{bottom:780.579967pt;}
.yc_c00041{bottom:806.484341pt;}
.yb_c00041{bottom:832.388714pt;}
.ya_c00041{bottom:858.292934pt;}
.y9_c00041{bottom:884.197150pt;}
.y8_c00041{bottom:910.101524pt;}
.y7_c00041{bottom:936.005897pt;}
.y26_c00041{bottom:999.864176pt;}
.y25_c00041{bottom:1027.864175pt;}
.y24_c00041{bottom:1055.864174pt;}
.h4_c00041{height:40.849158pt;}
.h8_c00041{height:49.031248pt;}
.h3_c00041{height:49.649041pt;}
.h6_c00041{height:57.118013pt;}
.h7_c00041{height:99.298082pt;}
.h5_c00041{height:764.095584pt;}
.h2_c00041{height:1159.999952pt;}
.h0_c00041{height:1159.999959pt;}
.h1_c00041{height:1160.000000pt;}
.w3_c00041{width:673.444644pt;}
.w2_c00041{width:830.999965pt;}
.w0_c00041{width:831.000000pt;}
.w1_c00041{width:831.333333pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:78.135686pt;}
.x2_c00041{left:81.666131pt;}
.x11_c00041{left:82.948163pt;}
.xc_c00041{left:98.197020pt;}
.x17_c00041{left:101.941875pt;}
.xd_c00041{left:106.649813pt;}
.x9_c00041{left:107.837705pt;}
.x4_c00041{left:109.731075pt;}
.xf_c00041{left:111.146535pt;}
.x10_c00041{left:113.851871pt;}
.x7_c00041{left:114.984232pt;}
.x16_c00041{left:116.826636pt;}
.x8_c00041{left:118.636244pt;}
.xa_c00041{left:120.221020pt;}
.x14_c00041{left:122.870826pt;}
.x12_c00041{left:127.279274pt;}
.x5_c00041{left:128.935972pt;}
.x1a_c00041{left:135.573184pt;}
.xb_c00041{left:144.792879pt;}
.x15_c00041{left:145.904320pt;}
.x6_c00041{left:147.113155pt;}
.x13_c00041{left:150.616809pt;}
.xe_c00041{left:154.902352pt;}
.x18_c00041{left:161.846804pt;}
.x3_c00041{left:163.391138pt;}
.x19_c00041{left:178.213807pt;}
.x1b_c00041{left:240.838805pt;}
.x1c_c00041{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2c0b5fd9b5b923a9669d051.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.006348;font-style:normal;font-weight:normal;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_00406323a6683783f01b87f1.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.005371;font-style:normal;font-weight:normal;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_2338ba5562726fac48620b96.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.005371;font-style:normal;font-weight:normal;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_2cff5f9f7700587cb89abeb7.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.171387;font-style:normal;font-weight: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_bc47ba72fc0e4e3f355dcecd.woff2')format("woff");}.ff5_c00042{font-family:ff5_c00042;line-height:0.728027;font-style:normal;font-weight: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_c00042;src:url('chunks/assets/font_85b71e7e44206552b3fe163e.woff2')format("woff");}.ff6_c00042{font-family:ff6_c00042;line-height:0.737305;font-style:normal;font-weight: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_c00042;src:url('chunks/assets/font_2d7deaa08558454454a2b37f.woff2')format("woff");}.ff7_c00042{font-family:ff7_c00042;line-height:0.713867;font-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_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);}
.v0_c00042{vertical-align:0.000000px;}
.ls5_c00042{letter-spacing:0.000000px;}
.ls1_c00042{letter-spacing:0.034057px;}
.ls4_c00042{letter-spacing:0.062402px;}
.ls3_c00042{letter-spacing:0.413942px;}
.ls2_c00042{letter-spacing:0.413964px;}
.ls0_c00042{letter-spacing:17.578124px;}
.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:-18.703125px;}
.ws1_c00042{word-spacing:-0.059850px;}
.ws3_c00042{word-spacing:0.000000px;}
.ws2_c00042{word-spacing:526.897765px;}
._f_c00042{width:1.065267px;}
._4_c00042{width:2.545255px;}
._0_c00042{width:3.809646px;}
._6_c00042{width:4.875454px;}
._5_c00042{width:5.906799px;}
._1_c00042{width:7.227081px;}
._e_c00042{width:8.635389px;}
._d_c00042{width:10.661811px;}
._7_c00042{width:11.917969px;}
._2_c00042{width:14.267533px;}
._b_c00042{width:15.468748px;}
._9_c00042{width:17.613281px;}
._c_c00042{width:19.879128px;}
._3_c00042{width:21.055366px;}
._8_c00042{width:22.112657px;}
._a_c00042{width:23.848233px;}
._11_c00042{width:623.055008px;}
._10_c00042{width:743.827778px;}
.fc3_c00042{color:rgb(72,111,143);}
.fc2_c00042{color:rgb(50,44,18);}
.fc1_c00042{color:rgb(74,93,83);}
.fc0_c00042{color:rgb(0,0,0);}
.fs2_c00042{font-size:59.849998px;}
.fs3_c00042{font-size:65.969996px;}
.fs0_c00042{font-size:71.999997px;}
.fs1_c00042{font-size:95.984996px;}
.y0_c00042{bottom:0.000000px;}
.y1_c00042{bottom:0.000008px;}
.y22_c00042{bottom:29.401163px;}
.y20_c00042{bottom:62.111949px;}
.y1f_c00042{bottom:83.486949px;}
.y21_c00042{bottom:254.914081px;}
.y1c_c00042{bottom:295.123171px;}
.y1b_c00042{bottom:324.373170px;}
.y1a_c00042{bottom:353.623168px;}
.y19_c00042{bottom:382.873167px;}
.y18_c00042{bottom:412.123166px;}
.y17_c00042{bottom:466.123164px;}
.y16_c00042{bottom:495.373163px;}
.y15_c00042{bottom:524.623161px;}
.y14_c00042{bottom:553.873160px;}
.y13_c00042{bottom:583.123159px;}
.y12_c00042{bottom:612.373158px;}
.y11_c00042{bottom:641.623156px;}
.y10_c00042{bottom:670.873155px;}
.yf_c00042{bottom:700.123154px;}
.ye_c00042{bottom:729.373153px;}
.yd_c00042{bottom:758.623152px;}
.yc_c00042{bottom:812.623149px;}
.yb_c00042{bottom:841.873148px;}
.ya_c00042{bottom:871.123147px;}
.y9_c00042{bottom:900.373146px;}
.y8_c00042{bottom:929.623144px;}
.y7_c00042{bottom:958.873143px;}
.y6_c00042{bottom:988.123142px;}
.y5_c00042{bottom:1017.373141px;}
.y4_c00042{bottom:1046.623140px;}
.y3_c00042{bottom:1075.873138px;}
.y2_c00042{bottom:1105.123137px;}
.y1e_c00042{bottom:1162.122140px;}
.y1d_c00042{bottom:1194.747139px;}
.h7_c00042{height:45.851879px;}
.h8_c00042{height:47.770266px;}
.h3_c00042{height:55.160154px;}
.h6_c00042{height:55.729466px;}
.h4_c00042{height:67.042966px;}
.h5_c00042{height:89.376654px;}
.h2_c00042{height:1304.999946px;}
.h0_c00042{height:1304.999953px;}
.h1_c00042{height:1305.000000px;}
.w2_c00042{width:934.874961px;}
.w0_c00042{width:934.875000px;}
.w1_c00042{width:935.250000px;}
.x0_c00042{left:0.000000px;}
.x1_c00042{left:87.902647px;}
.x2_c00042{left:93.543307px;}
.x3_c00042{left:276.181689px;}
.x4_c00042{left:456.319054px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls5_c00042{letter-spacing:0.000000pt;}
.ls1_c00042{letter-spacing:0.030273pt;}
.ls4_c00042{letter-spacing:0.055468pt;}
.ls3_c00042{letter-spacing:0.367948pt;}
.ls2_c00042{letter-spacing:0.367968pt;}
.ls0_c00042{letter-spacing:15.624999pt;}
.ws0_c00042{word-spacing:-16.625000pt;}
.ws1_c00042{word-spacing:-0.053200pt;}
.ws3_c00042{word-spacing:0.000000pt;}
.ws2_c00042{word-spacing:468.353569pt;}
._f_c00042{width:0.946904pt;}
._4_c00042{width:2.262449pt;}
._0_c00042{width:3.386352pt;}
._6_c00042{width:4.333737pt;}
._5_c00042{width:5.250488pt;}
._1_c00042{width:6.424072pt;}
._e_c00042{width:7.675901pt;}
._d_c00042{width:9.477165pt;}
._7_c00042{width:10.593750pt;}
._2_c00042{width:12.682251pt;}
._b_c00042{width:13.749998pt;}
._9_c00042{width:15.656250pt;}
._c_c00042{width:17.670336pt;}
._3_c00042{width:18.715881pt;}
._8_c00042{width:19.655695pt;}
._a_c00042{width:21.198429pt;}
._11_c00042{width:553.826674pt;}
._10_c00042{width:661.180247pt;}
.fs2_c00042{font-size:53.199999pt;}
.fs3_c00042{font-size:58.639997pt;}
.fs0_c00042{font-size:63.999997pt;}
.fs1_c00042{font-size:85.319996pt;}
.y0_c00042{bottom:0.000000pt;}
.y1_c00042{bottom:0.000007pt;}
.y22_c00042{bottom:26.134367pt;}
.y20_c00042{bottom:55.210622pt;}
.y1f_c00042{bottom:74.210621pt;}
.y21_c00042{bottom:226.590295pt;}
.y1c_c00042{bottom:262.331707pt;}
.y1b_c00042{bottom:288.331706pt;}
.y1a_c00042{bottom:314.331705pt;}
.y19_c00042{bottom:340.331704pt;}
.y18_c00042{bottom:366.331703pt;}
.y17_c00042{bottom:414.331701pt;}
.y16_c00042{bottom:440.331700pt;}
.y15_c00042{bottom:466.331699pt;}
.y14_c00042{bottom:492.331698pt;}
.y13_c00042{bottom:518.331697pt;}
.y12_c00042{bottom:544.331696pt;}
.y11_c00042{bottom:570.331695pt;}
.y10_c00042{bottom:596.331694pt;}
.yf_c00042{bottom:622.331692pt;}
.ye_c00042{bottom:648.331691pt;}
.yd_c00042{bottom:674.331690pt;}
.yc_c00042{bottom:722.331688pt;}
.yb_c00042{bottom:748.331687pt;}
.ya_c00042{bottom:774.331686pt;}
.y9_c00042{bottom:800.331685pt;}
.y8_c00042{bottom:826.331684pt;}
.y7_c00042{bottom:852.331683pt;}
.y6_c00042{bottom:878.331682pt;}
.y5_c00042{bottom:904.331681pt;}
.y4_c00042{bottom:930.331680pt;}
.y3_c00042{bottom:956.331679pt;}
.y2_c00042{bottom:982.331677pt;}
.y1e_c00042{bottom:1032.997458pt;}
.y1d_c00042{bottom:1061.997457pt;}
.h7_c00042{height:40.757225pt;}
.h8_c00042{height:42.462459pt;}
.h3_c00042{height:49.031248pt;}
.h6_c00042{height:49.537303pt;}
.h4_c00042{height:59.593748pt;}
.h5_c00042{height:79.445915pt;}
.h2_c00042{height:1159.999952pt;}
.h0_c00042{height:1159.999959pt;}
.h1_c00042{height:1160.000000pt;}
.w2_c00042{width:830.999965pt;}
.w0_c00042{width:831.000000pt;}
.w1_c00042{width:831.333333pt;}
.x0_c00042{left:0.000000pt;}
.x1_c00042{left:78.135686pt;}
.x2_c00042{left:83.149606pt;}
.x3_c00042{left:245.494835pt;}
.x4_c00042{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f09d991f4004914679f44bae.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_24fcc2e02216afd373bbb263.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00043;src:url('chunks/assets/font_15abb8f1dcbb9d1528445c1f.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:0.727051;font-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_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;}
.ls0_c00043{letter-spacing:0.000000px;}
.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;}
._0_c00043{width:1.124726px;}
._1_c00043{width:2.295179px;}
._6_c00043{width:3.379668px;}
._4_c00043{width:4.401535px;}
._7_c00043{width:6.215651px;}
._2_c00043{width:7.907412px;}
._5_c00043{width:12.386669px;}
._3_c00043{width:17.144440px;}
._9_c00043{width:27.601500px;}
._8_c00043{width:41.030501px;}
.fc3_c00043{color:transparent;}
.fc2_c00043{color:rgb(255,255,255);}
.fc1_c00043{color:rgb(128,128,128);}
.fc0_c00043{color:rgb(0,0,0);}
.fs2_c00043{font-size:59.984997px;}
.fs1_c00043{font-size:69.618741px;}
.fs0_c00043{font-size:71.999997px;}
.y0_c00043{bottom:0.000000px;}
.y1_c00043{bottom:0.000008px;}
.y19_c00043{bottom:29.401163px;}
.y18_c00043{bottom:30.348053px;}
.y1c_c00043{bottom:397.178767px;}
.y1b_c00043{bottom:425.967534px;}
.y1a_c00043{bottom:446.217533px;}
.y17_c00043{bottom:506.997400px;}
.y16_c00043{bottom:538.497399px;}
.y15_c00043{bottom:569.997397px;}
.y14_c00043{bottom:601.497396px;}
.y13_c00043{bottom:632.997395px;}
.y12_c00043{bottom:664.497394px;}
.y11_c00043{bottom:695.997392px;}
.y10_c00043{bottom:727.497391px;}
.yf_c00043{bottom:758.997390px;}
.ye_c00043{bottom:790.497388px;}
.yd_c00043{bottom:853.497386px;}
.yc_c00043{bottom:884.997384px;}
.yb_c00043{bottom:916.497383px;}
.ya_c00043{bottom:947.997382px;}
.y9_c00043{bottom:979.497380px;}
.y8_c00043{bottom:1010.997379px;}
.y7_c00043{bottom:1042.497378px;}
.y6_c00043{bottom:1073.997376px;}
.y5_c00043{bottom:1105.497375px;}
.y4_c00043{bottom:1136.997374px;}
.y3_c00043{bottom:1168.497373px;}
.y2_c00043{bottom:1199.997371px;}
.h5_c00043{height:45.955303px;}
.h4_c00043{height:50.480386px;}
.h3_c00043{height:55.160154px;}
.h2_c00043{height:1304.999946px;}
.h0_c00043{height:1304.999953px;}
.h1_c00043{height:1305.000000px;}
.w2_c00043{width:934.874961px;}
.w0_c00043{width:934.875000px;}
.w1_c00043{width:935.250000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:87.902647px;}
.x2_c00043{left:452.786554px;}
.x3_c00043{left:456.319054px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws0_c00043{word-spacing:0.000000pt;}
._0_c00043{width:0.999756pt;}
._1_c00043{width:2.040159pt;}
._6_c00043{width:3.004149pt;}
._4_c00043{width:3.912476pt;}
._7_c00043{width:5.525023pt;}
._2_c00043{width:7.028810pt;}
._5_c00043{width:11.010373pt;}
._3_c00043{width:15.239502pt;}
._9_c00043{width:24.534667pt;}
._8_c00043{width:36.471556pt;}
.fs2_c00043{font-size:53.319997pt;}
.fs1_c00043{font-size:61.883325pt;}
.fs0_c00043{font-size:63.999997pt;}
.y0_c00043{bottom:0.000000pt;}
.y1_c00043{bottom:0.000007pt;}
.y19_c00043{bottom:26.134367pt;}
.y18_c00043{bottom:26.976047pt;}
.y1c_c00043{bottom:353.047793pt;}
.y1b_c00043{bottom:378.637808pt;}
.y1a_c00043{bottom:396.637807pt;}
.y17_c00043{bottom:450.664356pt;}
.y16_c00043{bottom:478.664354pt;}
.y15_c00043{bottom:506.664353pt;}
.y14_c00043{bottom:534.664352pt;}
.y13_c00043{bottom:562.664351pt;}
.y12_c00043{bottom:590.664350pt;}
.y11_c00043{bottom:618.664349pt;}
.y10_c00043{bottom:646.664347pt;}
.yf_c00043{bottom:674.664346pt;}
.ye_c00043{bottom:702.664345pt;}
.yd_c00043{bottom:758.664343pt;}
.yc_c00043{bottom:786.664342pt;}
.yb_c00043{bottom:814.664340pt;}
.ya_c00043{bottom:842.664339pt;}
.y9_c00043{bottom:870.664338pt;}
.y8_c00043{bottom:898.664337pt;}
.y7_c00043{bottom:926.664336pt;}
.y6_c00043{bottom:954.664335pt;}
.y5_c00043{bottom:982.664333pt;}
.y4_c00043{bottom:1010.664332pt;}
.y3_c00043{bottom:1038.664331pt;}
.y2_c00043{bottom:1066.664330pt;}
.h5_c00043{height:40.849158pt;}
.h4_c00043{height:44.871454pt;}
.h3_c00043{height:49.031248pt;}
.h2_c00043{height:1159.999952pt;}
.h0_c00043{height:1159.999959pt;}
.h1_c00043{height:1160.000000pt;}
.w2_c00043{width:830.999965pt;}
.w0_c00043{width:831.000000pt;}
.w1_c00043{width:831.333333pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:78.135686pt;}
.x2_c00043{left:402.476937pt;}
.x3_c00043{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b8284459938c2b18e7504e13.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.006348;font-style:normal;font-weight:normal;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_36a0b1909f69dda8548c6995.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.005371;font-style:normal;font-weight:normal;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_66fb698aa4cbeeac4606c57e.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.171387;font-style:normal;font-weight:normal;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_ef1cb1c655b92718bb363cd3.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:0.743652;font-style:normal;font-weight: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_c00044;src:url('chunks/assets/font_96a1450da5ca2ea98fc257eb.woff2')format("woff");}.ff5_c00044{font-family:ff5_c00044;line-height:0.727051;font-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_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);}
.v0_c00044{vertical-align:0.000000px;}
.ls0_c00044{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00044{word-spacing:-18.703125px;}
.ws2_c00044{word-spacing:-18.691435px;}
.ws3_c00044{word-spacing:-15.582041px;}
.ws1_c00044{word-spacing:-0.059985px;}
.ws4_c00044{word-spacing:0.000000px;}
._8_c00044{width:2.707031px;}
._a_c00044{width:7.317046px;}
._4_c00044{width:8.356187px;}
._3_c00044{width:9.468705px;}
._2_c00044{width:10.523389px;}
._7_c00044{width:12.374999px;}
._5_c00044{width:14.580228px;}
._9_c00044{width:15.711985px;}
._0_c00044{width:16.779072px;}
._1_c00044{width:21.371084px;}
._6_c00044{width:23.740009px;}
.fc1_c00044{color:rgb(74,93,83);}
.fc2_c00044{color:rgb(255,255,255);}
.fc0_c00044{color:rgb(0,0,0);}
.fs1_c00044{font-size:59.984997px;}
.fs2_c00044{font-size:71.954996px;}
.fs0_c00044{font-size:71.999997px;}
.y0_c00044{bottom:0.000000px;}
.y1_c00044{bottom:0.000008px;}
.y18_c00044{bottom:12.374999px;}
.y16_c00044{bottom:14.624999px;}
.y23_c00044{bottom:29.401163px;}
.y22_c00044{bottom:128.509447px;}
.y21_c00044{bottom:153.259446px;}
.y20_c00044{bottom:185.927328px;}
.y1f_c00044{bottom:223.052327px;}
.y1e_c00044{bottom:260.177325px;}
.y1d_c00044{bottom:297.302323px;}
.y1c_c00044{bottom:334.427322px;}
.y1b_c00044{bottom:371.552320px;}
.y1a_c00044{bottom:408.677319px;}
.y19_c00044{bottom:445.802317px;}
.y17_c00044{bottom:482.927316px;}
.y15_c00044{bottom:519.562966px;}
.ya_c00044{bottom:604.995797px;}
.y9_c00044{bottom:634.245796px;}
.y8_c00044{bottom:663.495794px;}
.y7_c00044{bottom:692.745793px;}
.y6_c00044{bottom:721.995792px;}
.y5_c00044{bottom:751.245791px;}
.y4_c00044{bottom:780.495789px;}
.y3_c00044{bottom:809.745788px;}
.y2_c00044{bottom:838.995787px;}
.y13_c00044{bottom:890.268360px;}
.y12_c00044{bottom:919.518359px;}
.y11_c00044{bottom:948.768358px;}
.y10_c00044{bottom:978.018356px;}
.yf_c00044{bottom:1007.268355px;}
.ye_c00044{bottom:1036.518354px;}
.yd_c00044{bottom:1065.768353px;}
.yc_c00044{bottom:1095.018352px;}
.yb_c00044{bottom:1124.268350px;}
.y14_c00044{bottom:1200.600303px;}
.h8_c00044{height:35.999999px;}
.h6_c00044{height:41.624998px;}
.h5_c00044{height:44.022193px;}
.h9_c00044{height:45.896724px;}
.ha_c00044{height:45.955303px;}
.h7_c00044{height:51.366311px;}
.h3_c00044{height:55.160154px;}
.hb_c00044{height:55.855171px;}
.h4_c00044{height:67.042966px;}
.h2_c00044{height:1304.999946px;}
.h0_c00044{height:1304.999953px;}
.h1_c00044{height:1305.000000px;}
.w4_c00044{width:268.874989px;}
.w3_c00044{width:269.999967px;}
.w2_c00044{width:934.874961px;}
.w0_c00044{width:934.875000px;}
.w1_c00044{width:935.250000px;}
.x0_c00044{left:0.000000px;}
.x9_c00044{left:49.253904px;}
.xb_c00044{left:53.472654px;}
.x13_c00044{left:55.423826px;}
.x17_c00044{left:59.220701px;}
.xf_c00044{left:63.263669px;}
.x15_c00044{left:69.749997px;}
.x7_c00044{left:71.419919px;}
.x8_c00044{left:74.249997px;}
.xa_c00044{left:75.955075px;}
.xe_c00044{left:82.863278px;}
.x1_c00044{left:85.941011px;}
.x2_c00044{left:89.864283px;}
.xc_c00044{left:93.357418px;}
.x12_c00044{left:101.583980px;}
.x11_c00044{left:102.884761px;}
.x10_c00044{left:104.765621px;}
.x16_c00044{left:106.822261px;}
.x5_c00044{left:113.853511px;}
.xd_c00044{left:115.189448px;}
.x14_c00044{left:118.406245px;}
.x18_c00044{left:193.520822px;}
.x4_c00044{left:196.401988px;}
.x19_c00044{left:456.353200px;}
.x6_c00044{left:467.801657px;}
.x3_c00044{left:804.819158px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls0_c00044{letter-spacing:0.000000pt;}
.ws0_c00044{word-spacing:-16.625000pt;}
.ws2_c00044{word-spacing:-16.614609pt;}
.ws3_c00044{word-spacing:-13.850703pt;}
.ws1_c00044{word-spacing:-0.053320pt;}
.ws4_c00044{word-spacing:0.000000pt;}
._8_c00044{width:2.406250pt;}
._a_c00044{width:6.504041pt;}
._4_c00044{width:7.427722pt;}
._3_c00044{width:8.416627pt;}
._2_c00044{width:9.354123pt;}
._7_c00044{width:10.999999pt;}
._5_c00044{width:12.960202pt;}
._9_c00044{width:13.966208pt;}
._0_c00044{width:14.914731pt;}
._1_c00044{width:18.996519pt;}
._6_c00044{width:21.102231pt;}
.fs1_c00044{font-size:53.319997pt;}
.fs2_c00044{font-size:63.959997pt;}
.fs0_c00044{font-size:63.999997pt;}
.y0_c00044{bottom:0.000000pt;}
.y1_c00044{bottom:0.000007pt;}
.y18_c00044{bottom:11.000000pt;}
.y16_c00044{bottom:12.999999pt;}
.y23_c00044{bottom:26.134367pt;}
.y22_c00044{bottom:114.230619pt;}
.y21_c00044{bottom:136.230618pt;}
.y20_c00044{bottom:165.268736pt;}
.y1f_c00044{bottom:198.268735pt;}
.y1e_c00044{bottom:231.268733pt;}
.y1d_c00044{bottom:264.268732pt;}
.y1c_c00044{bottom:297.268731pt;}
.y1b_c00044{bottom:330.268729pt;}
.y1a_c00044{bottom:363.268728pt;}
.y19_c00044{bottom:396.268726pt;}
.y17_c00044{bottom:429.268725pt;}
.y15_c00044{bottom:461.833748pt;}
.ya_c00044{bottom:537.774042pt;}
.y9_c00044{bottom:563.774041pt;}
.y8_c00044{bottom:589.774039pt;}
.y7_c00044{bottom:615.774038pt;}
.y6_c00044{bottom:641.774037pt;}
.y5_c00044{bottom:667.774036pt;}
.y4_c00044{bottom:693.774035pt;}
.y3_c00044{bottom:719.774034pt;}
.y2_c00044{bottom:745.774033pt;}
.y13_c00044{bottom:791.349653pt;}
.y12_c00044{bottom:817.349652pt;}
.y11_c00044{bottom:843.349651pt;}
.y10_c00044{bottom:869.349650pt;}
.yf_c00044{bottom:895.349649pt;}
.ye_c00044{bottom:921.349648pt;}
.yd_c00044{bottom:947.349647pt;}
.yc_c00044{bottom:973.349646pt;}
.yb_c00044{bottom:999.349645pt;}
.y14_c00044{bottom:1067.200269pt;}
.h8_c00044{height:31.999999pt;}
.h6_c00044{height:36.999998pt;}
.h5_c00044{height:39.130838pt;}
.h9_c00044{height:40.797088pt;}
.ha_c00044{height:40.849158pt;}
.h7_c00044{height:45.658943pt;}
.h3_c00044{height:49.031248pt;}
.hb_c00044{height:49.649041pt;}
.h4_c00044{height:59.593748pt;}
.h2_c00044{height:1159.999952pt;}
.h0_c00044{height:1159.999959pt;}
.h1_c00044{height:1160.000000pt;}
.w4_c00044{width:238.999990pt;}
.w3_c00044{width:239.999971pt;}
.w2_c00044{width:830.999965pt;}
.w0_c00044{width:831.000000pt;}
.w1_c00044{width:831.333333pt;}
.x0_c00044{left:0.000000pt;}
.x9_c00044{left:43.781248pt;}
.xb_c00044{left:47.531248pt;}
.x13_c00044{left:49.265623pt;}
.x17_c00044{left:52.640623pt;}
.xf_c00044{left:56.234373pt;}
.x15_c00044{left:61.999997pt;}
.x7_c00044{left:63.484372pt;}
.x8_c00044{left:65.999997pt;}
.xa_c00044{left:67.515622pt;}
.xe_c00044{left:73.656247pt;}
.x1_c00044{left:76.392010pt;}
.x2_c00044{left:79.879363pt;}
.xc_c00044{left:82.984372pt;}
.x12_c00044{left:90.296871pt;}
.x11_c00044{left:91.453121pt;}
.x10_c00044{left:93.124996pt;}
.x16_c00044{left:94.953121pt;}
.x5_c00044{left:101.203121pt;}
.xd_c00044{left:102.390621pt;}
.x14_c00044{left:105.249996pt;}
.x18_c00044{left:172.018508pt;}
.x4_c00044{left:174.579545pt;}
.x19_c00044{left:405.647289pt;}
.x6_c00044{left:415.823695pt;}
.x3_c00044{left:715.394807pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88bc536457359564434976b4.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.006348;font-style:normal;font-weight:normal;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_96a1450da5ca2ea98fc257eb.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:0.727051;font-style:normal;font-weight:normal;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_d0439e0f1eee89dacda13d7a.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:1.000000;font-style:normal;font-weight:normal;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_f0591d490dbacee8a878f910.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.006348;font-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_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);}
.v0_c00045{vertical-align:0.000000px;}
.ls0_c00045{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00045{word-spacing:-18.691435px;}
.ws1_c00045{word-spacing:-15.582041px;}
.ws2_c00045{word-spacing:0.000000px;}
._0_c00045{width:1.141205px;}
._1_c00045{width:2.362054px;}
._3_c00045{width:4.710936px;}
._7_c00045{width:5.871101px;}
._8_c00045{width:10.887730px;}
._2_c00045{width:12.169417px;}
._5_c00045{width:15.787832px;}
._6_c00045{width:19.874952px;}
._9_c00045{width:25.509358px;}
._4_c00045{width:30.283536px;}
.fc2_c00045{color:rgb(74,93,83);}
.fc1_c00045{color:rgb(255,255,255);}
.fc0_c00045{color:rgb(0,0,0);}
.fs2_c00045{font-size:59.984997px;}
.fs1_c00045{font-size:71.954996px;}
.fs0_c00045{font-size:71.999997px;}
.y0_c00045{bottom:0.000000px;}
.y1_c00045{bottom:0.000008px;}
.y16_c00045{bottom:12.374999px;}
.y18_c00045{bottom:12.375011px;}
.y14_c00045{bottom:14.625001px;}
.y1f_c00045{bottom:29.401163px;}
.y12_c00045{bottom:326.365122px;}
.y11_c00045{bottom:355.615120px;}
.y10_c00045{bottom:384.865119px;}
.yf_c00045{bottom:414.115118px;}
.ye_c00045{bottom:443.365117px;}
.yd_c00045{bottom:472.615116px;}
.yc_c00045{bottom:501.865114px;}
.yb_c00045{bottom:531.115113px;}
.ya_c00045{bottom:560.365112px;}
.y9_c00045{bottom:618.865109px;}
.y8_c00045{bottom:648.115108px;}
.y7_c00045{bottom:677.365107px;}
.y6_c00045{bottom:706.615106px;}
.y5_c00045{bottom:735.865105px;}
.y4_c00045{bottom:765.115103px;}
.y3_c00045{bottom:794.365102px;}
.y2_c00045{bottom:823.615101px;}
.y1e_c00045{bottom:891.197498px;}
.y1d_c00045{bottom:914.961329px;}
.y1c_c00045{bottom:952.086327px;}
.y1b_c00045{bottom:989.211347px;}
.y1a_c00045{bottom:1026.336346px;}
.y19_c00045{bottom:1063.461344px;}
.y17_c00045{bottom:1100.586320px;}
.y15_c00045{bottom:1137.711319px;}
.y13_c00045{bottom:1174.347314px;}
.h6_c00045{height:35.999998px;}
.h9_c00045{height:36.000010px;}
.h4_c00045{height:41.624993px;}
.h7_c00045{height:45.574539px;}
.h8_c00045{height:45.955303px;}
.h5_c00045{height:51.366311px;}
.h3_c00045{height:55.160154px;}
.h2_c00045{height:1304.999946px;}
.h0_c00045{height:1304.999953px;}
.h1_c00045{height:1305.000000px;}
.w4_c00045{width:268.874989px;}
.w3_c00045{width:269.999989px;}
.w2_c00045{width:934.874961px;}
.w0_c00045{width:934.875000px;}
.w1_c00045{width:935.250000px;}
.x0_c00045{left:0.000000px;}
.x9_c00045{left:41.554686px;}
.x11_c00045{left:48.867185px;}
.xf_c00045{left:54.509763px;}
.x8_c00045{left:67.042966px;}
.x5_c00045{left:71.419919px;}
.xd_c00045{left:74.091794px;}
.x6_c00045{left:76.253903px;}
.x1_c00045{left:87.902647px;}
.xb_c00045{left:97.541012px;}
.x10_c00045{left:102.287105px;}
.xa_c00045{left:105.732417px;}
.x12_c00045{left:108.017574px;}
.x7_c00045{left:109.898433px;}
.xc_c00045{left:112.640620px;}
.x3_c00045{left:113.853511px;}
.xe_c00045{left:115.189448px;}
.x13_c00045{left:193.520822px;}
.x2_c00045{left:194.645821px;}
.x14_c00045{left:456.319054px;}
.x4_c00045{left:466.045425px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls0_c00045{letter-spacing:0.000000pt;}
.ws0_c00045{word-spacing:-16.614609pt;}
.ws1_c00045{word-spacing:-13.850703pt;}
.ws2_c00045{word-spacing:0.000000pt;}
._0_c00045{width:1.014404pt;}
._1_c00045{width:2.099603pt;}
._3_c00045{width:4.187499pt;}
._7_c00045{width:5.218756pt;}
._8_c00045{width:9.677982pt;}
._2_c00045{width:10.817259pt;}
._5_c00045{width:14.033629pt;}
._6_c00045{width:17.666624pt;}
._9_c00045{width:22.674985pt;}
._4_c00045{width:26.918698pt;}
.fs2_c00045{font-size:53.319997pt;}
.fs1_c00045{font-size:63.959997pt;}
.fs0_c00045{font-size:63.999997pt;}
.y0_c00045{bottom:0.000000pt;}
.y1_c00045{bottom:0.000007pt;}
.y16_c00045{bottom:11.000000pt;}
.y18_c00045{bottom:11.000009pt;}
.y14_c00045{bottom:13.000001pt;}
.y1f_c00045{bottom:26.134367pt;}
.y12_c00045{bottom:290.102330pt;}
.y11_c00045{bottom:316.102329pt;}
.y10_c00045{bottom:342.102328pt;}
.yf_c00045{bottom:368.102327pt;}
.ye_c00045{bottom:394.102326pt;}
.yd_c00045{bottom:420.102325pt;}
.yc_c00045{bottom:446.102324pt;}
.yb_c00045{bottom:472.102323pt;}
.ya_c00045{bottom:498.102322pt;}
.y9_c00045{bottom:550.102319pt;}
.y8_c00045{bottom:576.102318pt;}
.y7_c00045{bottom:602.102317pt;}
.y6_c00045{bottom:628.102316pt;}
.y5_c00045{bottom:654.102315pt;}
.y4_c00045{bottom:680.102314pt;}
.y3_c00045{bottom:706.102313pt;}
.y2_c00045{bottom:732.102312pt;}
.y1e_c00045{bottom:792.175554pt;}
.y1d_c00045{bottom:813.298959pt;}
.y1c_c00045{bottom:846.298957pt;}
.y1b_c00045{bottom:879.298975pt;}
.y1a_c00045{bottom:912.298974pt;}
.y19_c00045{bottom:945.298972pt;}
.y17_c00045{bottom:978.298952pt;}
.y15_c00045{bottom:1011.298950pt;}
.y13_c00045{bottom:1043.864279pt;}
.h6_c00045{height:31.999999pt;}
.h9_c00045{height:32.000009pt;}
.h4_c00045{height:36.999994pt;}
.h7_c00045{height:40.510701pt;}
.h8_c00045{height:40.849158pt;}
.h5_c00045{height:45.658943pt;}
.h3_c00045{height:49.031248pt;}
.h2_c00045{height:1159.999952pt;}
.h0_c00045{height:1159.999959pt;}
.h1_c00045{height:1160.000000pt;}
.w4_c00045{width:238.999990pt;}
.w3_c00045{width:239.999990pt;}
.w2_c00045{width:830.999965pt;}
.w0_c00045{width:831.000000pt;}
.w1_c00045{width:831.333333pt;}
.x0_c00045{left:0.000000pt;}
.x9_c00045{left:36.937498pt;}
.x11_c00045{left:43.437498pt;}
.xf_c00045{left:48.453123pt;}
.x8_c00045{left:59.593748pt;}
.x5_c00045{left:63.484372pt;}
.xd_c00045{left:65.859372pt;}
.x6_c00045{left:67.781247pt;}
.x1_c00045{left:78.135686pt;}
.xb_c00045{left:86.703121pt;}
.x10_c00045{left:90.921871pt;}
.xa_c00045{left:93.984371pt;}
.x12_c00045{left:96.015621pt;}
.x7_c00045{left:97.687496pt;}
.xc_c00045{left:100.124996pt;}
.x3_c00045{left:101.203121pt;}
.xe_c00045{left:102.390621pt;}
.x13_c00045{left:172.018508pt;}
.x2_c00045{left:173.018508pt;}
.x14_c00045{left:405.616937pt;}
.x4_c00045{left:414.262600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_34b811a5eb3b20caf9c83bb4.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.006348;font-style:normal;font-weight:normal;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_830fd3fdcb0fd7265f244037.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.006348;font-style:normal;font-weight:normal;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_c2327ef7567db61d0d73f78a.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00046;src:url('chunks/assets/font_b380fa1d9d960e4c1b346454.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.000000;font-style:normal;font-weight: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_c00046;src:url('chunks/assets/font_d74b9872c0f86700d6af61e1.woff2')format("woff");}.ff5_c00046{font-family:ff5_c00046;line-height:1.000000;font-style:normal;font-weight: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_c00046;src:url('chunks/assets/font_c97874663a4d3841faf0a7c6.woff2')format("woff");}.ff6_c00046{font-family:ff6_c00046;line-height:1.000000;font-style:normal;font-weight: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_c00046;src:url('chunks/assets/font_773293fecb81370cf2fc4eab.woff2')format("woff");}.ff7_c00046{font-family:ff7_c00046;line-height:0.713867;font-style:normal;font-weight: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_c00046;src:url('chunks/assets/font_9bd5a83c5a272f21949be06f.woff2')format("woff");}.ff8_c00046{font-family:ff8_c00046;line-height:1.000000;font-style:normal;font-weight: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_c00046;src:url('chunks/assets/font_e6f627dd85014b7f7bf839f6.woff2')format("woff");}.ff9_c00046{font-family:ff9_c00046;line-height:0.727051;font-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_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;}
.ls2_c00046{letter-spacing:0.000000px;}
.ls1_c00046{letter-spacing:0.032153px;}
.ls0_c00046{letter-spacing:27.773458px;}
.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.059985px;}
.ws1_c00046{word-spacing:-0.046408px;}
.ws2_c00046{word-spacing:0.000000px;}
._4_c00046{width:1.301742px;}
._0_c00046{width:2.491011px;}
._9_c00046{width:4.113281px;}
._a_c00046{width:5.404101px;}
._7_c00046{width:6.912253px;}
._3_c00046{width:8.683595px;}
._8_c00046{width:9.703098px;}
._d_c00046{width:10.773932px;}
._1_c00046{width:12.201895px;}
._6_c00046{width:13.957029px;}
._5_c00046{width:15.292968px;}
._2_c00046{width:22.757763px;}
._b_c00046{width:27.713147px;}
._c_c00046{width:40.345297px;}
.fc2_c00046{color:rgb(255,255,255);}
.fc1_c00046{color:rgb(0,0,0);}
.fc0_c00046{color:rgb(74,93,83);}
.fs3_c00046{font-size:46.407871px;}
.fs2_c00046{font-size:49.387289px;}
.fs0_c00046{font-size:59.984997px;}
.fs1_c00046{font-size:71.999997px;}
.y0_c00046{bottom:0.000000px;}
.y1_c00046{bottom:0.000008px;}
.y17_c00046{bottom:29.400983px;}
.y16_c00046{bottom:573.895456px;}
.y15_c00046{bottom:587.218213px;}
.y14_c00046{bottom:633.720736px;}
.y13_c00046{bottom:662.970734px;}
.y12_c00046{bottom:692.220733px;}
.y11_c00046{bottom:721.470732px;}
.y10_c00046{bottom:766.748992px;}
.yf_c00046{bottom:795.998991px;}
.ye_c00046{bottom:825.248990px;}
.yd_c00046{bottom:854.498988px;}
.yc_c00046{bottom:883.748987px;}
.yb_c00046{bottom:912.998986px;}
.ya_c00046{bottom:942.248985px;}
.y9_c00046{bottom:971.498984px;}
.y8_c00046{bottom:1000.748982px;}
.y7_c00046{bottom:1029.998981px;}
.y6_c00046{bottom:1059.248980px;}
.y5_c00046{bottom:1088.498979px;}
.y4_c00046{bottom:1117.748977px;}
.y3_c00046{bottom:1146.998976px;}
.y2_c00046{bottom:1215.219413px;}
.h6_c00046{height:35.259105px;}
.h5_c00046{height:37.522764px;}
.h3_c00046{height:45.955303px;}
.h4_c00046{height:55.160154px;}
.h2_c00046{height:1304.999946px;}
.h0_c00046{height:1304.999953px;}
.h1_c00046{height:1305.000000px;}
.w2_c00046{width:934.874961px;}
.w0_c00046{width:934.875000px;}
.w1_c00046{width:935.250000px;}
.x0_c00046{left:0.000000px;}
.x1_c00046{left:88.030336px;}
.x2_c00046{left:456.319054px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls2_c00046{letter-spacing:0.000000pt;}
.ls1_c00046{letter-spacing:0.028580pt;}
.ls0_c00046{letter-spacing:24.687519pt;}
.ws0_c00046{word-spacing:-0.053320pt;}
.ws1_c00046{word-spacing:-0.041251pt;}
.ws2_c00046{word-spacing:0.000000pt;}
._4_c00046{width:1.157104pt;}
._0_c00046{width:2.214232pt;}
._9_c00046{width:3.656249pt;}
._a_c00046{width:4.803645pt;}
._7_c00046{width:6.144225pt;}
._3_c00046{width:7.718751pt;}
._8_c00046{width:8.624976pt;}
._d_c00046{width:9.576828pt;}
._1_c00046{width:10.846129pt;}
._6_c00046{width:12.406248pt;}
._5_c00046{width:13.593749pt;}
._2_c00046{width:20.229123pt;}
._b_c00046{width:24.633908pt;}
._c_c00046{width:35.862487pt;}
.fs3_c00046{font-size:41.251441pt;}
.fs2_c00046{font-size:43.899812pt;}
.fs0_c00046{font-size:53.319997pt;}
.fs1_c00046{font-size:63.999997pt;}
.y0_c00046{bottom:0.000000pt;}
.y1_c00046{bottom:0.000007pt;}
.y17_c00046{bottom:26.134207pt;}
.y16_c00046{bottom:510.129294pt;}
.y15_c00046{bottom:521.971745pt;}
.y14_c00046{bottom:563.307321pt;}
.y13_c00046{bottom:589.307319pt;}
.y12_c00046{bottom:615.307318pt;}
.y11_c00046{bottom:641.307317pt;}
.y10_c00046{bottom:681.554660pt;}
.yf_c00046{bottom:707.554659pt;}
.ye_c00046{bottom:733.554657pt;}
.yd_c00046{bottom:759.554656pt;}
.yc_c00046{bottom:785.554655pt;}
.yb_c00046{bottom:811.554654pt;}
.ya_c00046{bottom:837.554653pt;}
.y9_c00046{bottom:863.554652pt;}
.y8_c00046{bottom:889.554651pt;}
.y7_c00046{bottom:915.554650pt;}
.y6_c00046{bottom:941.554649pt;}
.y5_c00046{bottom:967.554648pt;}
.y4_c00046{bottom:993.554647pt;}
.y3_c00046{bottom:1019.554646pt;}
.y2_c00046{bottom:1080.195033pt;}
.h6_c00046{height:31.341427pt;}
.h5_c00046{height:33.353568pt;}
.h3_c00046{height:40.849158pt;}
.h4_c00046{height:49.031248pt;}
.h2_c00046{height:1159.999952pt;}
.h0_c00046{height:1159.999959pt;}
.h1_c00046{height:1160.000000pt;}
.w2_c00046{width:830.999965pt;}
.w0_c00046{width:831.000000pt;}
.w1_c00046{width:831.333333pt;}
.x0_c00046{left:0.000000pt;}
.x1_c00046{left:78.249187pt;}
.x2_c00046{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52ba09bca27dd8c2ea64b851.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.006348;font-style:normal;font-weight:normal;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_ffbcea63b289c4d0dfd11797.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.006348;font-style:normal;font-weight:normal;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_1dcd715f1e944b6270f9115f.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.006348;font-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_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;}
.ls0_c00047{letter-spacing:0.000000px;}
.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:-15.582041px;}
.ws1_c00047{word-spacing:0.000000px;}
._3_c00047{width:1.019552px;}
._a_c00047{width:2.419874px;}
._0_c00047{width:3.776757px;}
._c_c00047{width:5.214865px;}
._5_c00047{width:6.667946px;}
._10_c00047{width:8.455078px;}
._1_c00047{width:10.142575px;}
._b_c00047{width:11.256607px;}
._e_c00047{width:12.356159px;}
._d_c00047{width:13.377160px;}
._7_c00047{width:15.180426px;}
._6_c00047{width:21.810882px;}
._f_c00047{width:22.838885px;}
._9_c00047{width:24.228995px;}
._2_c00047{width:25.242186px;}
._12_c00047{width:26.787752px;}
._8_c00047{width:28.604345px;}
._4_c00047{width:33.103110px;}
._13_c00047{width:37.429663px;}
._11_c00047{width:42.359366px;}
.fc1_c00047{color:rgb(74,93,83);}
.fc0_c00047{color:rgb(0,0,0);}
.fs1_c00047{font-size:59.984997px;}
.fs0_c00047{font-size:71.999997px;}
.y0_c00047{bottom:0.000000px;}
.y1_c00047{bottom:0.000008px;}
.y23_c00047{bottom:29.401163px;}
.y21_c00047{bottom:91.421708px;}
.y20_c00047{bottom:120.671707px;}
.y1f_c00047{bottom:149.921706px;}
.y1e_c00047{bottom:179.171705px;}
.y1d_c00047{bottom:208.421703px;}
.y1c_c00047{bottom:237.671702px;}
.y1b_c00047{bottom:266.921701px;}
.y1a_c00047{bottom:296.171700px;}
.y19_c00047{bottom:325.421698px;}
.y22_c00047{bottom:395.310584px;}
.y16_c00047{bottom:458.115450px;}
.y15_c00047{bottom:487.365449px;}
.y14_c00047{bottom:516.615448px;}
.y13_c00047{bottom:545.865446px;}
.y12_c00047{bottom:575.115445px;}
.y11_c00047{bottom:604.365444px;}
.y10_c00047{bottom:633.615443px;}
.yf_c00047{bottom:662.865442px;}
.ye_c00047{bottom:692.115440px;}
.y18_c00047{bottom:760.601920px;}
.yd_c00047{bottom:815.625844px;}
.yc_c00047{bottom:844.875843px;}
.yb_c00047{bottom:874.125842px;}
.ya_c00047{bottom:903.375841px;}
.y9_c00047{bottom:932.625840px;}
.y8_c00047{bottom:961.875838px;}
.y7_c00047{bottom:991.125837px;}
.y6_c00047{bottom:1020.375836px;}
.y5_c00047{bottom:1049.625835px;}
.y4_c00047{bottom:1078.875833px;}
.y3_c00047{bottom:1108.125832px;}
.y2_c00047{bottom:1137.375831px;}
.y17_c00047{bottom:1202.847487px;}
.h4_c00047{height:45.955303px;}
.h3_c00047{height:55.160154px;}
.h2_c00047{height:1304.999946px;}
.h0_c00047{height:1304.999953px;}
.h1_c00047{height:1305.000000px;}
.w2_c00047{width:934.874961px;}
.w0_c00047{width:934.875000px;}
.w1_c00047{width:935.250000px;}
.x0_c00047{left:0.000000px;}
.x2_c00047{left:87.902647px;}
.x1_c00047{left:93.543307px;}
.x5_c00047{left:456.319054px;}
.x3_c00047{left:699.011552px;}
.x4_c00047{left:772.078223px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws0_c00047{word-spacing:-13.850703pt;}
.ws1_c00047{word-spacing:0.000000pt;}
._3_c00047{width:0.906268pt;}
._a_c00047{width:2.150999pt;}
._0_c00047{width:3.357117pt;}
._c_c00047{width:4.635436pt;}
._5_c00047{width:5.927063pt;}
._10_c00047{width:7.515625pt;}
._1_c00047{width:9.015623pt;}
._b_c00047{width:10.005873pt;}
._e_c00047{width:10.983252pt;}
._d_c00047{width:11.890809pt;}
._7_c00047{width:13.493712pt;}
._6_c00047{width:19.387451pt;}
._f_c00047{width:20.301231pt;}
._9_c00047{width:21.536884pt;}
._2_c00047{width:22.437498pt;}
._12_c00047{width:23.811335pt;}
._8_c00047{width:25.426084pt;}
._4_c00047{width:29.424987pt;}
._13_c00047{width:33.270811pt;}
._11_c00047{width:37.652770pt;}
.fs1_c00047{font-size:53.319997pt;}
.fs0_c00047{font-size:63.999997pt;}
.y0_c00047{bottom:0.000000pt;}
.y1_c00047{bottom:0.000007pt;}
.y23_c00047{bottom:26.134367pt;}
.y21_c00047{bottom:81.263741pt;}
.y20_c00047{bottom:107.263740pt;}
.y1f_c00047{bottom:133.263738pt;}
.y1e_c00047{bottom:159.263737pt;}
.y1d_c00047{bottom:185.263736pt;}
.y1c_c00047{bottom:211.263735pt;}
.y1b_c00047{bottom:237.263734pt;}
.y1a_c00047{bottom:263.263733pt;}
.y19_c00047{bottom:289.263732pt;}
.y22_c00047{bottom:351.387185pt;}
.y16_c00047{bottom:407.213733pt;}
.y15_c00047{bottom:433.213732pt;}
.y14_c00047{bottom:459.213731pt;}
.y13_c00047{bottom:485.213730pt;}
.y12_c00047{bottom:511.213729pt;}
.y11_c00047{bottom:537.213728pt;}
.y10_c00047{bottom:563.213727pt;}
.yf_c00047{bottom:589.213726pt;}
.ye_c00047{bottom:615.213725pt;}
.y18_c00047{bottom:676.090596pt;}
.yd_c00047{bottom:725.000751pt;}
.yc_c00047{bottom:751.000750pt;}
.yb_c00047{bottom:777.000748pt;}
.ya_c00047{bottom:803.000747pt;}
.y9_c00047{bottom:829.000746pt;}
.y8_c00047{bottom:855.000745pt;}
.y7_c00047{bottom:881.000744pt;}
.y6_c00047{bottom:907.000743pt;}
.y5_c00047{bottom:933.000742pt;}
.y4_c00047{bottom:959.000741pt;}
.y3_c00047{bottom:985.000740pt;}
.y2_c00047{bottom:1011.000739pt;}
.y17_c00047{bottom:1069.197767pt;}
.h4_c00047{height:40.849158pt;}
.h3_c00047{height:49.031248pt;}
.h2_c00047{height:1159.999952pt;}
.h0_c00047{height:1159.999959pt;}
.h1_c00047{height:1160.000000pt;}
.w2_c00047{width:830.999965pt;}
.w0_c00047{width:831.000000pt;}
.w1_c00047{width:831.333333pt;}
.x0_c00047{left:0.000000pt;}
.x2_c00047{left:78.135686pt;}
.x1_c00047{left:83.149606pt;}
.x5_c00047{left:405.616937pt;}
.x3_c00047{left:621.343602pt;}
.x4_c00047{left:686.291753pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a9ef4780cd75c9b1568a154.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.006348;font-style:normal;font-weight:normal;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_e4ea69dfbb97c723fad6a744.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00048;src:url('chunks/assets/font_fb7e7f16b08ab1b11f8ab017.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.006348;font-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_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);}
.v0_c00048{vertical-align:0.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.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:-18.703125px;}
.ws1_c00048{word-spacing:-0.059985px;}
.ws2_c00048{word-spacing:0.000000px;}
._4_c00048{width:1.914643px;}
._3_c00048{width:3.914287px;}
._0_c00048{width:5.107681px;}
._7_c00048{width:6.181665px;}
._2_c00048{width:7.898414px;}
._b_c00048{width:8.915609px;}
._9_c00048{width:10.294326px;}
._e_c00048{width:11.325642px;}
._c_c00048{width:12.371983px;}
._a_c00048{width:13.544697px;}
._6_c00048{width:16.004056px;}
._1_c00048{width:17.630860px;}
._8_c00048{width:22.886716px;}
._5_c00048{width:30.289028px;}
._d_c00048{width:52.045253px;}
.fc1_c00048{color:rgb(74,93,83);}
.fc0_c00048{color:rgb(0,0,0);}
.fs1_c00048{font-size:59.984997px;}
.fs0_c00048{font-size:71.999997px;}
.y0_c00048{bottom:0.000000px;}
.y1_c00048{bottom:0.000008px;}
.y24_c00048{bottom:29.401163px;}
.y22_c00048{bottom:135.358590px;}
.y21_c00048{bottom:164.608589px;}
.y20_c00048{bottom:193.858588px;}
.y1f_c00048{bottom:223.108587px;}
.y1e_c00048{bottom:252.358585px;}
.y1d_c00048{bottom:281.608584px;}
.y1c_c00048{bottom:310.858583px;}
.y1b_c00048{bottom:340.108582px;}
.y1a_c00048{bottom:369.358581px;}
.y19_c00048{bottom:398.608579px;}
.y18_c00048{bottom:427.858578px;}
.y17_c00048{bottom:457.108577px;}
.y16_c00048{bottom:502.652441px;}
.y15_c00048{bottom:531.902440px;}
.y14_c00048{bottom:561.152439px;}
.y13_c00048{bottom:590.402438px;}
.y12_c00048{bottom:619.652437px;}
.y11_c00048{bottom:648.902435px;}
.y10_c00048{bottom:678.152434px;}
.yf_c00048{bottom:707.402433px;}
.ye_c00048{bottom:752.945945px;}
.yd_c00048{bottom:782.195943px;}
.yc_c00048{bottom:811.445942px;}
.yb_c00048{bottom:840.695941px;}
.ya_c00048{bottom:869.945940px;}
.y9_c00048{bottom:899.195939px;}
.y8_c00048{bottom:928.445937px;}
.y7_c00048{bottom:957.695936px;}
.y6_c00048{bottom:1003.216246px;}
.y5_c00048{bottom:1032.466245px;}
.y4_c00048{bottom:1061.716243px;}
.y3_c00048{bottom:1090.966242px;}
.y2_c00048{bottom:1120.216241px;}
.y23_c00048{bottom:1202.847487px;}
.h4_c00048{height:45.955303px;}
.h3_c00048{height:55.160154px;}
.h2_c00048{height:1304.999946px;}
.h0_c00048{height:1304.999953px;}
.h1_c00048{height:1305.000000px;}
.w2_c00048{width:934.874961px;}
.w0_c00048{width:934.875000px;}
.w1_c00048{width:935.250000px;}
.x0_c00048{left:0.000000px;}
.x1_c00048{left:87.902647px;}
.x2_c00048{left:456.319054px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws0_c00048{word-spacing:-16.625000pt;}
.ws1_c00048{word-spacing:-0.053320pt;}
.ws2_c00048{word-spacing:0.000000pt;}
._4_c00048{width:1.701905pt;}
._3_c00048{width:3.479366pt;}
._0_c00048{width:4.540161pt;}
._7_c00048{width:5.494813pt;}
._2_c00048{width:7.020813pt;}
._b_c00048{width:7.924986pt;}
._9_c00048{width:9.150512pt;}
._e_c00048{width:10.067237pt;}
._c_c00048{width:10.997318pt;}
._a_c00048{width:12.039731pt;}
._6_c00048{width:14.225828pt;}
._1_c00048{width:15.671875pt;}
._8_c00048{width:20.343748pt;}
._5_c00048{width:26.923581pt;}
._d_c00048{width:46.262447pt;}
.fs1_c00048{font-size:53.319997pt;}
.fs0_c00048{font-size:63.999997pt;}
.y0_c00048{bottom:0.000000pt;}
.y1_c00048{bottom:0.000007pt;}
.y24_c00048{bottom:26.134367pt;}
.y22_c00048{bottom:120.318747pt;}
.y21_c00048{bottom:146.318746pt;}
.y20_c00048{bottom:172.318745pt;}
.y1f_c00048{bottom:198.318744pt;}
.y1e_c00048{bottom:224.318743pt;}
.y1d_c00048{bottom:250.318742pt;}
.y1c_c00048{bottom:276.318740pt;}
.y1b_c00048{bottom:302.318739pt;}
.y1a_c00048{bottom:328.318738pt;}
.y19_c00048{bottom:354.318737pt;}
.y18_c00048{bottom:380.318736pt;}
.y17_c00048{bottom:406.318735pt;}
.y16_c00048{bottom:446.802170pt;}
.y15_c00048{bottom:472.802169pt;}
.y14_c00048{bottom:498.802168pt;}
.y13_c00048{bottom:524.802167pt;}
.y12_c00048{bottom:550.802166pt;}
.y11_c00048{bottom:576.802165pt;}
.y10_c00048{bottom:602.802164pt;}
.yf_c00048{bottom:628.802163pt;}
.ye_c00048{bottom:669.285284pt;}
.yd_c00048{bottom:695.285283pt;}
.yc_c00048{bottom:721.285282pt;}
.yb_c00048{bottom:747.285281pt;}
.ya_c00048{bottom:773.285280pt;}
.y9_c00048{bottom:799.285279pt;}
.y8_c00048{bottom:825.285278pt;}
.y7_c00048{bottom:851.285277pt;}
.y6_c00048{bottom:891.747774pt;}
.y5_c00048{bottom:917.747773pt;}
.y4_c00048{bottom:943.747772pt;}
.y3_c00048{bottom:969.747771pt;}
.y2_c00048{bottom:995.747770pt;}
.y23_c00048{bottom:1069.197767pt;}
.h4_c00048{height:40.849158pt;}
.h3_c00048{height:49.031248pt;}
.h2_c00048{height:1159.999952pt;}
.h0_c00048{height:1159.999959pt;}
.h1_c00048{height:1160.000000pt;}
.w2_c00048{width:830.999965pt;}
.w0_c00048{width:831.000000pt;}
.w1_c00048{width:831.333333pt;}
.x0_c00048{left:0.000000pt;}
.x1_c00048{left:78.135686pt;}
.x2_c00048{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_62f846f47e6dd6ed5fb23dea.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.006348;font-style:normal;font-weight:normal;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_7e08c4c216d1ae45f6dfb3fa.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.000000;font-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_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;}
.ls2_c00049{letter-spacing:0.000000px;}
.ls1_c00049{letter-spacing:0.035133px;}
.ls0_c00049{letter-spacing:8.507812px;}
.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:-18.703125px;}
.ws1_c00049{word-spacing:0.000000px;}
._e_c00049{width:1.444564px;}
._8_c00049{width:4.381005px;}
._2_c00049{width:6.027650px;}
._6_c00049{width:7.457864px;}
._1_c00049{width:8.484327px;}
._0_c00049{width:10.072266px;}
._4_c00049{width:11.122144px;}
._3_c00049{width:13.007810px;}
._d_c00049{width:14.800781px;}
._a_c00049{width:16.198268px;}
._5_c00049{width:17.268718px;}
._9_c00049{width:20.541963px;}
._7_c00049{width:26.284033px;}
._10_c00049{width:27.300405px;}
._c_c00049{width:29.756191px;}
._b_c00049{width:37.954670px;}
._f_c00049{width:44.874959px;}
.fc0_c00049{color:rgb(0,0,0);}
.fs0_c00049{font-size:71.999997px;}
.y0_c00049{bottom:0.000000px;}
.y1_c00049{bottom:0.000008px;}
.y26_c00049{bottom:29.401163px;}
.y25_c00049{bottom:151.106466px;}
.y24_c00049{bottom:180.356464px;}
.y23_c00049{bottom:209.606463px;}
.y22_c00049{bottom:238.856462px;}
.y21_c00049{bottom:268.106461px;}
.y20_c00049{bottom:297.356460px;}
.y1f_c00049{bottom:326.606458px;}
.y1e_c00049{bottom:355.856457px;}
.y1d_c00049{bottom:385.106456px;}
.y1c_c00049{bottom:414.356455px;}
.y1b_c00049{bottom:454.661333px;}
.y1a_c00049{bottom:483.911332px;}
.y19_c00049{bottom:513.161331px;}
.y18_c00049{bottom:542.411329px;}
.y17_c00049{bottom:571.661328px;}
.y16_c00049{bottom:600.911327px;}
.y15_c00049{bottom:630.161326px;}
.y14_c00049{bottom:659.411325px;}
.y13_c00049{bottom:695.487978px;}
.y12_c00049{bottom:724.737977px;}
.y11_c00049{bottom:753.987975px;}
.y10_c00049{bottom:783.237974px;}
.yf_c00049{bottom:812.487973px;}
.ye_c00049{bottom:841.737972px;}
.yd_c00049{bottom:870.987971px;}
.yc_c00049{bottom:900.237969px;}
.yb_c00049{bottom:929.487968px;}
.ya_c00049{bottom:958.737967px;}
.y9_c00049{bottom:987.987966px;}
.y8_c00049{bottom:1024.032964px;}
.y7_c00049{bottom:1053.282963px;}
.y6_c00049{bottom:1082.532962px;}
.y5_c00049{bottom:1111.782960px;}
.y4_c00049{bottom:1141.032959px;}
.y3_c00049{bottom:1170.282958px;}
.y2_c00049{bottom:1199.532957px;}
.h3_c00049{height:55.160154px;}
.h2_c00049{height:1304.999946px;}
.h0_c00049{height:1304.999953px;}
.h1_c00049{height:1305.000000px;}
.w2_c00049{width:934.874961px;}
.w0_c00049{width:934.875000px;}
.w1_c00049{width:935.250000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:87.902647px;}
.x2_c00049{left:456.319054px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls2_c00049{letter-spacing:0.000000pt;}
.ls1_c00049{letter-spacing:0.031230pt;}
.ls0_c00049{letter-spacing:7.562499pt;}
.ws0_c00049{word-spacing:-16.625000pt;}
.ws1_c00049{word-spacing:0.000000pt;}
._e_c00049{width:1.284057pt;}
._8_c00049{width:3.894227pt;}
._2_c00049{width:5.357911pt;}
._6_c00049{width:6.629212pt;}
._1_c00049{width:7.541624pt;}
._0_c00049{width:8.953125pt;}
._4_c00049{width:9.886350pt;}
._3_c00049{width:11.562498pt;}
._d_c00049{width:13.156250pt;}
._a_c00049{width:14.398461pt;}
._5_c00049{width:15.349972pt;}
._9_c00049{width:18.259523pt;}
._7_c00049{width:23.363584pt;}
._10_c00049{width:24.267026pt;}
._c_c00049{width:26.449948pt;}
._b_c00049{width:33.737485pt;}
._f_c00049{width:39.888852pt;}
.fs0_c00049{font-size:63.999997pt;}
.y0_c00049{bottom:0.000000pt;}
.y1_c00049{bottom:0.000007pt;}
.y26_c00049{bottom:26.134367pt;}
.y25_c00049{bottom:134.316858pt;}
.y24_c00049{bottom:160.316857pt;}
.y23_c00049{bottom:186.316856pt;}
.y22_c00049{bottom:212.316855pt;}
.y21_c00049{bottom:238.316854pt;}
.y20_c00049{bottom:264.316853pt;}
.y1f_c00049{bottom:290.316852pt;}
.y1e_c00049{bottom:316.316851pt;}
.y1d_c00049{bottom:342.316850pt;}
.y1c_c00049{bottom:368.316849pt;}
.y1b_c00049{bottom:404.143407pt;}
.y1a_c00049{bottom:430.143406pt;}
.y19_c00049{bottom:456.143405pt;}
.y18_c00049{bottom:482.143404pt;}
.y17_c00049{bottom:508.143403pt;}
.y16_c00049{bottom:534.143402pt;}
.y15_c00049{bottom:560.143401pt;}
.y14_c00049{bottom:586.143400pt;}
.y13_c00049{bottom:618.211536pt;}
.y12_c00049{bottom:644.211535pt;}
.y11_c00049{bottom:670.211534pt;}
.y10_c00049{bottom:696.211533pt;}
.yf_c00049{bottom:722.211532pt;}
.ye_c00049{bottom:748.211530pt;}
.yd_c00049{bottom:774.211529pt;}
.yc_c00049{bottom:800.211528pt;}
.yb_c00049{bottom:826.211527pt;}
.ya_c00049{bottom:852.211526pt;}
.y9_c00049{bottom:878.211525pt;}
.y8_c00049{bottom:910.251524pt;}
.y7_c00049{bottom:936.251523pt;}
.y6_c00049{bottom:962.251522pt;}
.y5_c00049{bottom:988.251520pt;}
.y4_c00049{bottom:1014.251519pt;}
.y3_c00049{bottom:1040.251518pt;}
.y2_c00049{bottom:1066.251517pt;}
.h3_c00049{height:49.031248pt;}
.h2_c00049{height:1159.999952pt;}
.h0_c00049{height:1159.999959pt;}
.h1_c00049{height:1160.000000pt;}
.w2_c00049{width:830.999965pt;}
.w0_c00049{width:831.000000pt;}
.w1_c00049{width:831.333333pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:78.135686pt;}
.x2_c00049{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcfe8acad3a0476740cc912c.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.171387;font-style:normal;font-weight:normal;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_eb4937c1511c1added3bc1de.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.006348;font-style:normal;font-weight:normal;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_c03ff7b81fcdf8f61134c76e.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:0.727051;font-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_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;}
.ls0_c00050{letter-spacing:0.000000px;}
.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;}
._e_c00050{width:1.508424px;}
._4_c00050{width:2.571416px;}
._c_c00050{width:3.663751px;}
._9_c00050{width:4.819563px;}
._5_c00050{width:8.208982px;}
._8_c00050{width:9.650320px;}
._a_c00050{width:11.130595px;}
._2_c00050{width:12.140577px;}
._b_c00050{width:16.977173px;}
._0_c00050{width:21.119293px;}
._7_c00050{width:22.210920px;}
._d_c00050{width:23.430266px;}
._6_c00050{width:24.939786px;}
._10_c00050{width:27.984239px;}
._f_c00050{width:29.003903px;}
._1_c00050{width:36.801517px;}
._3_c00050{width:38.573483px;}
.fc1_c00050{color:rgb(255,255,255);}
.fc0_c00050{color:rgb(0,0,0);}
.fs1_c00050{font-size:59.984997px;}
.fs0_c00050{font-size:71.999997px;}
.y0_c00050{bottom:0.000000px;}
.y1_c00050{bottom:0.000008px;}
.y1e_c00050{bottom:29.401163px;}
.y1d_c00050{bottom:300.182675px;}
.y1c_c00050{bottom:320.432675px;}
.y1b_c00050{bottom:438.697098px;}
.y1a_c00050{bottom:467.947097px;}
.y19_c00050{bottom:497.197095px;}
.y18_c00050{bottom:526.447094px;}
.y17_c00050{bottom:555.697093px;}
.y16_c00050{bottom:614.533118px;}
.y15_c00050{bottom:643.783117px;}
.y14_c00050{bottom:673.033116px;}
.y13_c00050{bottom:702.283114px;}
.y12_c00050{bottom:731.533113px;}
.y11_c00050{bottom:760.783112px;}
.y10_c00050{bottom:790.033111px;}
.yf_c00050{bottom:819.283109px;}
.ye_c00050{bottom:848.533108px;}
.yd_c00050{bottom:877.783107px;}
.yc_c00050{bottom:907.033106px;}
.yb_c00050{bottom:936.283105px;}
.ya_c00050{bottom:965.533103px;}
.y9_c00050{bottom:994.783102px;}
.y8_c00050{bottom:1024.033101px;}
.y7_c00050{bottom:1053.283100px;}
.y6_c00050{bottom:1082.533098px;}
.y5_c00050{bottom:1111.783097px;}
.y4_c00050{bottom:1141.033096px;}
.y3_c00050{bottom:1170.283095px;}
.y2_c00050{bottom:1199.533094px;}
.h4_c00050{height:45.955303px;}
.h3_c00050{height:67.042966px;}
.h2_c00050{height:1304.999946px;}
.h0_c00050{height:1304.999953px;}
.h1_c00050{height:1305.000000px;}
.w2_c00050{width:934.874961px;}
.w0_c00050{width:934.875000px;}
.w1_c00050{width:935.250000px;}
.x0_c00050{left:0.000000px;}
.x1_c00050{left:87.902647px;}
.x2_c00050{left:456.319054px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:0.000000pt;}
._e_c00050{width:1.340821pt;}
._4_c00050{width:2.285703pt;}
._c_c00050{width:3.256668pt;}
._9_c00050{width:4.284056pt;}
._5_c00050{width:7.296872pt;}
._8_c00050{width:8.578062pt;}
._a_c00050{width:9.893862pt;}
._2_c00050{width:10.791624pt;}
._b_c00050{width:15.090821pt;}
._0_c00050{width:18.772705pt;}
._7_c00050{width:19.743040pt;}
._d_c00050{width:20.826903pt;}
._6_c00050{width:22.168698pt;}
._10_c00050{width:24.874879pt;}
._f_c00050{width:25.781247pt;}
._1_c00050{width:32.712459pt;}
._3_c00050{width:34.287540pt;}
.fs1_c00050{font-size:53.319997pt;}
.fs0_c00050{font-size:63.999997pt;}
.y0_c00050{bottom:0.000000pt;}
.y1_c00050{bottom:0.000007pt;}
.y1e_c00050{bottom:26.134367pt;}
.y1d_c00050{bottom:266.829045pt;}
.y1c_c00050{bottom:284.829044pt;}
.y1b_c00050{bottom:389.952976pt;}
.y1a_c00050{bottom:415.952975pt;}
.y19_c00050{bottom:441.952974pt;}
.y18_c00050{bottom:467.952973pt;}
.y17_c00050{bottom:493.952971pt;}
.y16_c00050{bottom:546.251660pt;}
.y15_c00050{bottom:572.251659pt;}
.y14_c00050{bottom:598.251658pt;}
.y13_c00050{bottom:624.251657pt;}
.y12_c00050{bottom:650.251656pt;}
.y11_c00050{bottom:676.251655pt;}
.y10_c00050{bottom:702.251654pt;}
.yf_c00050{bottom:728.251653pt;}
.ye_c00050{bottom:754.251652pt;}
.yd_c00050{bottom:780.251651pt;}
.yc_c00050{bottom:806.251650pt;}
.yb_c00050{bottom:832.251649pt;}
.ya_c00050{bottom:858.251647pt;}
.y9_c00050{bottom:884.251646pt;}
.y8_c00050{bottom:910.251645pt;}
.y7_c00050{bottom:936.251644pt;}
.y6_c00050{bottom:962.251643pt;}
.y5_c00050{bottom:988.251642pt;}
.y4_c00050{bottom:1014.251641pt;}
.y3_c00050{bottom:1040.251640pt;}
.y2_c00050{bottom:1066.251639pt;}
.h4_c00050{height:40.849158pt;}
.h3_c00050{height:59.593748pt;}
.h2_c00050{height:1159.999952pt;}
.h0_c00050{height:1159.999959pt;}
.h1_c00050{height:1160.000000pt;}
.w2_c00050{width:830.999965pt;}
.w0_c00050{width:831.000000pt;}
.w1_c00050{width:831.333333pt;}
.x0_c00050{left:0.000000pt;}
.x1_c00050{left:78.135686pt;}
.x2_c00050{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6236f992f0db9926f6c6fec.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.171387;font-style:normal;font-weight:normal;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_dd2e16d4df32f9c572fed28e.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.005371;font-style:normal;font-weight:normal;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_55f7c6c9d9f5ac49dff6aea7.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.006348;font-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_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);}
.v0_c00051{vertical-align:0.000000px;}
.ls0_c00051{letter-spacing:0.000000px;}
.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:0.000000px;}
._2_c00051{width:1.208491px;}
._3_c00051{width:2.716984px;}
._1_c00051{width:4.148438px;}
._0_c00051{width:5.203127px;}
._4_c00051{width:6.827314px;}
._5_c00051{width:8.121093px;}
._b_c00051{width:9.939051px;}
._a_c00051{width:11.003906px;}
._8_c00051{width:12.550782px;}
._9_c00051{width:14.137755px;}
._c_c00051{width:20.290100px;}
._7_c00051{width:29.352238px;}
._6_c00051{width:36.625736px;}
._d_c00051{width:75.921838px;}
.fc1_c00051{color:rgb(74,93,83);}
.fc0_c00051{color:rgb(0,0,0);}
.fs1_c00051{font-size:59.984997px;}
.fs0_c00051{font-size:71.999997px;}
.y0_c00051{bottom:0.000000px;}
.y1_c00051{bottom:0.000008px;}
.y21_c00051{bottom:29.400983px;}
.y20_c00051{bottom:213.812379px;}
.y1f_c00051{bottom:243.062378px;}
.y1e_c00051{bottom:272.312377px;}
.y1d_c00051{bottom:301.562375px;}
.y1c_c00051{bottom:383.348648px;}
.y1b_c00051{bottom:412.598647px;}
.y1a_c00051{bottom:441.848646px;}
.y19_c00051{bottom:471.098644px;}
.y18_c00051{bottom:500.348643px;}
.y17_c00051{bottom:529.598642px;}
.y16_c00051{bottom:558.848641px;}
.y15_c00051{bottom:588.098639px;}
.y14_c00051{bottom:617.348638px;}
.y12_c00051{bottom:662.708644px;}
.y11_c00051{bottom:691.958642px;}
.y10_c00051{bottom:721.208641px;}
.yf_c00051{bottom:750.458640px;}
.ye_c00051{bottom:779.708639px;}
.yd_c00051{bottom:808.958637px;}
.yc_c00051{bottom:838.208636px;}
.yb_c00051{bottom:867.458635px;}
.ya_c00051{bottom:896.708634px;}
.y9_c00051{bottom:925.958633px;}
.y8_c00051{bottom:955.208631px;}
.y7_c00051{bottom:984.458630px;}
.y6_c00051{bottom:1013.708629px;}
.y5_c00051{bottom:1042.958628px;}
.y4_c00051{bottom:1072.208627px;}
.y3_c00051{bottom:1101.458625px;}
.y2_c00051{bottom:1130.708624px;}
.y13_c00051{bottom:1200.600036px;}
.h4_c00051{height:45.955303px;}
.h5_c00051{height:55.160154px;}
.h3_c00051{height:67.042966px;}
.h2_c00051{height:1304.999946px;}
.h0_c00051{height:1304.999953px;}
.h1_c00051{height:1305.000000px;}
.w2_c00051{width:934.874961px;}
.w0_c00051{width:934.875000px;}
.w1_c00051{width:935.250000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:89.864283px;}
.x3_c00051{left:124.129243px;}
.x4_c00051{left:456.319054px;}
.x2_c00051{left:476.518581px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws0_c00051{word-spacing:0.000000pt;}
._2_c00051{width:1.074214pt;}
._3_c00051{width:2.415097pt;}
._1_c00051{width:3.687500pt;}
._0_c00051{width:4.625002pt;}
._4_c00051{width:6.068723pt;}
._5_c00051{width:7.218749pt;}
._b_c00051{width:8.834712pt;}
._a_c00051{width:9.781250pt;}
._8_c00051{width:11.156250pt;}
._9_c00051{width:12.566893pt;}
._c_c00051{width:18.035644pt;}
._7_c00051{width:26.090878pt;}
._6_c00051{width:32.556210pt;}
._d_c00051{width:67.486078pt;}
.fs1_c00051{font-size:53.319997pt;}
.fs0_c00051{font-size:63.999997pt;}
.y0_c00051{bottom:0.000000pt;}
.y1_c00051{bottom:0.000007pt;}
.y21_c00051{bottom:26.134207pt;}
.y20_c00051{bottom:190.055448pt;}
.y1f_c00051{bottom:216.055447pt;}
.y1e_c00051{bottom:242.055446pt;}
.y1d_c00051{bottom:268.055445pt;}
.y1c_c00051{bottom:340.754354pt;}
.y1b_c00051{bottom:366.754353pt;}
.y1a_c00051{bottom:392.754352pt;}
.y19_c00051{bottom:418.754351pt;}
.y18_c00051{bottom:444.754349pt;}
.y17_c00051{bottom:470.754348pt;}
.y16_c00051{bottom:496.754347pt;}
.y15_c00051{bottom:522.754346pt;}
.y14_c00051{bottom:548.754345pt;}
.y12_c00051{bottom:589.074350pt;}
.y11_c00051{bottom:615.074349pt;}
.y10_c00051{bottom:641.074348pt;}
.yf_c00051{bottom:667.074347pt;}
.ye_c00051{bottom:693.074346pt;}
.yd_c00051{bottom:719.074344pt;}
.yc_c00051{bottom:745.074343pt;}
.yb_c00051{bottom:771.074342pt;}
.ya_c00051{bottom:797.074341pt;}
.y9_c00051{bottom:823.074340pt;}
.y8_c00051{bottom:849.074339pt;}
.y7_c00051{bottom:875.074338pt;}
.y6_c00051{bottom:901.074337pt;}
.y5_c00051{bottom:927.074336pt;}
.y4_c00051{bottom:953.074335pt;}
.y3_c00051{bottom:979.074334pt;}
.y2_c00051{bottom:1005.074333pt;}
.y13_c00051{bottom:1067.200032pt;}
.h4_c00051{height:40.849158pt;}
.h5_c00051{height:49.031248pt;}
.h3_c00051{height:59.593748pt;}
.h2_c00051{height:1159.999952pt;}
.h0_c00051{height:1159.999959pt;}
.h1_c00051{height:1160.000000pt;}
.w2_c00051{width:830.999965pt;}
.w0_c00051{width:831.000000pt;}
.w1_c00051{width:831.333333pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:79.879363pt;}
.x3_c00051{left:110.337105pt;}
.x4_c00051{left:405.616937pt;}
.x2_c00051{left:423.572072pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_131bfdd8d7695979c3e599c1.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.000000;font-style:normal;font-weight:normal;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_3fc3b8a92d158a530fbda92c.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.171387;font-style:normal;font-weight:normal;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_426955d38352b5eef5692bdc.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.006348;font-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_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);}
.v0_c00052{vertical-align:0.000000px;}
.ls0_c00052{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00052{width:3.087895px;}
._0_c00052{width:10.685334px;}
._2_c00052{width:11.711166px;}
.fc1_c00052{color:rgb(0,0,0);}
.fc0_c00052{color:rgb(74,93,83);}
.fs0_c00052{font-size:59.984997px;}
.fs1_c00052{font-size:71.999997px;}
.y0_c00052{bottom:0.000000px;}
.y1_c00052{bottom:0.000008px;}
.y7_c00052{bottom:29.401163px;}
.y5_c00052{bottom:270.767797px;}
.y4_c00052{bottom:295.517796px;}
.y3_c00052{bottom:320.267795px;}
.y2_c00052{bottom:345.017794px;}
.y6_c00052{bottom:1200.600126px;}
.h4_c00052{height:45.955303px;}
.h3_c00052{height:55.855171px;}
.h5_c00052{height:67.042966px;}
.h2_c00052{height:1304.999946px;}
.h0_c00052{height:1304.999953px;}
.h1_c00052{height:1305.000000px;}
.w2_c00052{width:934.874961px;}
.w0_c00052{width:934.875000px;}
.w1_c00052{width:935.250000px;}
.x0_c00052{left:0.000000px;}
.x1_c00052{left:99.623228px;}
.x3_c00052{left:456.319054px;}
.x2_c00052{left:476.518581px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls0_c00052{letter-spacing:0.000000pt;}
.ws0_c00052{word-spacing:0.000000pt;}
._1_c00052{width:2.744796pt;}
._0_c00052{width:9.498074pt;}
._2_c00052{width:10.409925pt;}
.fs0_c00052{font-size:53.319997pt;}
.fs1_c00052{font-size:63.999997pt;}
.y0_c00052{bottom:0.000000pt;}
.y1_c00052{bottom:0.000007pt;}
.y7_c00052{bottom:26.134367pt;}
.y5_c00052{bottom:240.682486pt;}
.y4_c00052{bottom:262.682485pt;}
.y3_c00052{bottom:284.682484pt;}
.y2_c00052{bottom:306.682483pt;}
.y6_c00052{bottom:1067.200112pt;}
.h4_c00052{height:40.849158pt;}
.h3_c00052{height:49.649041pt;}
.h5_c00052{height:59.593748pt;}
.h2_c00052{height:1159.999952pt;}
.h0_c00052{height:1159.999959pt;}
.h1_c00052{height:1160.000000pt;}
.w2_c00052{width:830.999965pt;}
.w0_c00052{width:831.000000pt;}
.w1_c00052{width:831.333333pt;}
.x0_c00052{left:0.000000pt;}
.x1_c00052{left:88.553980pt;}
.x3_c00052{left:405.616937pt;}
.x2_c00052{left:423.572072pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff5cd5fc5c81e83dcba3843a.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.171387;font-style:normal;font-weight:normal;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_426955d38352b5eef5692bdc.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.006348;font-style:normal;font-weight:normal;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_21180c323e4b42d15e8b4332.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.005371;font-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_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);}
.v0_c00053{vertical-align:0.000000px;}
.ls0_c00053{letter-spacing:0.000000px;}
.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;}
._9_c00053{width:1.499978px;}
._a_c00053{width:2.655744px;}
._4_c00053{width:4.013167px;}
._6_c00053{width:5.327687px;}
._5_c00053{width:6.328124px;}
._c_c00053{width:7.491301px;}
._e_c00053{width:8.507812px;}
._d_c00053{width:9.515600px;}
._b_c00053{width:10.904825px;}
._1_c00053{width:12.667921px;}
._2_c00053{width:14.446472px;}
._8_c00053{width:15.571463px;}
._7_c00053{width:17.232948px;}
._3_c00053{width:22.485922px;}
._f_c00053{width:25.181620px;}
._0_c00053{width:26.540222px;}
._11_c00053{width:29.742184px;}
._10_c00053{width:40.450766px;}
.fc1_c00053{color:rgb(74,93,83);}
.fc0_c00053{color:rgb(0,0,0);}
.fs1_c00053{font-size:59.984997px;}
.fs0_c00053{font-size:71.999997px;}
.y0_c00053{bottom:0.000000px;}
.y1_c00053{bottom:0.000008px;}
.y23_c00053{bottom:29.401163px;}
.y22_c00053{bottom:204.494391px;}
.y21_c00053{bottom:233.744390px;}
.y20_c00053{bottom:262.994389px;}
.y1f_c00053{bottom:292.244388px;}
.y1e_c00053{bottom:321.494387px;}
.y1d_c00053{bottom:350.744385px;}
.y1c_c00053{bottom:379.994384px;}
.y1b_c00053{bottom:409.244383px;}
.y1a_c00053{bottom:438.494382px;}
.y19_c00053{bottom:467.744381px;}
.y18_c00053{bottom:509.729746px;}
.y17_c00053{bottom:538.979745px;}
.y16_c00053{bottom:568.229744px;}
.y15_c00053{bottom:597.479742px;}
.y14_c00053{bottom:626.729741px;}
.y13_c00053{bottom:655.979740px;}
.y12_c00053{bottom:685.229739px;}
.y11_c00053{bottom:714.479737px;}
.y10_c00053{bottom:743.729736px;}
.yf_c00053{bottom:772.979735px;}
.yd_c00053{bottom:815.593326px;}
.yc_c00053{bottom:844.843324px;}
.yb_c00053{bottom:874.093323px;}
.ya_c00053{bottom:903.343322px;}
.y9_c00053{bottom:932.593321px;}
.y8_c00053{bottom:961.843320px;}
.y7_c00053{bottom:991.093318px;}
.y6_c00053{bottom:1020.343317px;}
.y5_c00053{bottom:1049.593316px;}
.y4_c00053{bottom:1078.843315px;}
.y3_c00053{bottom:1108.093313px;}
.y2_c00053{bottom:1137.343312px;}
.ye_c00053{bottom:1200.600303px;}
.h4_c00053{height:45.955303px;}
.h3_c00053{height:67.042966px;}
.h2_c00053{height:1304.999946px;}
.h0_c00053{height:1304.999953px;}
.h1_c00053{height:1305.000000px;}
.w2_c00053{width:934.874961px;}
.w0_c00053{width:934.875000px;}
.w1_c00053{width:935.250000px;}
.x0_c00053{left:0.000000px;}
.x3_c00053{left:87.902647px;}
.x1_c00053{left:89.864283px;}
.x4_c00053{left:456.319054px;}
.x2_c00053{left:476.518581px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws0_c00053{word-spacing:0.000000pt;}
._9_c00053{width:1.333314pt;}
._a_c00053{width:2.360661pt;}
._4_c00053{width:3.567259pt;}
._6_c00053{width:4.735722pt;}
._5_c00053{width:5.624999pt;}
._c_c00053{width:6.658934pt;}
._e_c00053{width:7.562500pt;}
._d_c00053{width:8.458311pt;}
._b_c00053{width:9.693178pt;}
._1_c00053{width:11.260374pt;}
._2_c00053{width:12.841308pt;}
._8_c00053{width:13.841301pt;}
._7_c00053{width:15.318176pt;}
._3_c00053{width:19.987486pt;}
._f_c00053{width:22.383662pt;}
._0_c00053{width:23.591309pt;}
._11_c00053{width:26.437497pt;}
._10_c00053{width:35.956236pt;}
.fs1_c00053{font-size:53.319997pt;}
.fs0_c00053{font-size:63.999997pt;}
.y0_c00053{bottom:0.000000pt;}
.y1_c00053{bottom:0.000007pt;}
.y23_c00053{bottom:26.134367pt;}
.y22_c00053{bottom:181.772792pt;}
.y21_c00053{bottom:207.772791pt;}
.y20_c00053{bottom:233.772790pt;}
.y1f_c00053{bottom:259.772789pt;}
.y1e_c00053{bottom:285.772788pt;}
.y1d_c00053{bottom:311.772787pt;}
.y1c_c00053{bottom:337.772786pt;}
.y1b_c00053{bottom:363.772785pt;}
.y1a_c00053{bottom:389.772784pt;}
.y19_c00053{bottom:415.772783pt;}
.y18_c00053{bottom:453.093108pt;}
.y17_c00053{bottom:479.093106pt;}
.y16_c00053{bottom:505.093105pt;}
.y15_c00053{bottom:531.093104pt;}
.y14_c00053{bottom:557.093103pt;}
.y13_c00053{bottom:583.093102pt;}
.y12_c00053{bottom:609.093101pt;}
.y11_c00053{bottom:635.093100pt;}
.y10_c00053{bottom:661.093099pt;}
.yf_c00053{bottom:687.093098pt;}
.yd_c00053{bottom:724.971845pt;}
.yc_c00053{bottom:750.971844pt;}
.yb_c00053{bottom:776.971843pt;}
.ya_c00053{bottom:802.971842pt;}
.y9_c00053{bottom:828.971841pt;}
.y8_c00053{bottom:854.971840pt;}
.y7_c00053{bottom:880.971838pt;}
.y6_c00053{bottom:906.971837pt;}
.y5_c00053{bottom:932.971836pt;}
.y4_c00053{bottom:958.971835pt;}
.y3_c00053{bottom:984.971834pt;}
.y2_c00053{bottom:1010.971833pt;}
.ye_c00053{bottom:1067.200269pt;}
.h4_c00053{height:40.849158pt;}
.h3_c00053{height:59.593748pt;}
.h2_c00053{height:1159.999952pt;}
.h0_c00053{height:1159.999959pt;}
.h1_c00053{height:1160.000000pt;}
.w2_c00053{width:830.999965pt;}
.w0_c00053{width:831.000000pt;}
.w1_c00053{width:831.333333pt;}
.x0_c00053{left:0.000000pt;}
.x3_c00053{left:78.135686pt;}
.x1_c00053{left:79.879363pt;}
.x4_c00053{left:405.616937pt;}
.x2_c00053{left:423.572072pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_426955d38352b5eef5692bdc.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.006348;font-style:normal;font-weight:normal;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_1ac8a786c3a1e48e0fb0ce31.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.171387;font-style:normal;font-weight:normal;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_54527fa1023645290306a209.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.005371;font-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_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);}
.v0_c00054{vertical-align:0.000000px;}
.ls0_c00054{letter-spacing:0.000000px;}
.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;}
._3_c00054{width:1.169700px;}
._2_c00054{width:3.183219px;}
._6_c00054{width:4.685807px;}
._d_c00054{width:5.691469px;}
._5_c00054{width:6.960939px;}
._9_c00054{width:8.801835px;}
._4_c00054{width:10.247979px;}
._0_c00054{width:12.169897px;}
._8_c00054{width:13.269835px;}
._7_c00054{width:14.841772px;}
._e_c00054{width:16.235732px;}
._f_c00054{width:17.291104px;}
._1_c00054{width:19.863281px;}
._a_c00054{width:20.865232px;}
._10_c00054{width:22.359376px;}
._b_c00054{width:32.716389px;}
._c_c00054{width:33.848395px;}
.fc1_c00054{color:rgb(0,0,0);}
.fc0_c00054{color:rgb(74,93,83);}
.fs0_c00054{font-size:59.984997px;}
.fs1_c00054{font-size:71.999997px;}
.y0_c00054{bottom:0.000000px;}
.y1_c00054{bottom:0.000008px;}
.y24_c00054{bottom:29.401163px;}
.y23_c00054{bottom:142.555062px;}
.y22_c00054{bottom:171.805061px;}
.y21_c00054{bottom:201.055060px;}
.y20_c00054{bottom:230.305058px;}
.y1f_c00054{bottom:259.555057px;}
.y1e_c00054{bottom:288.805056px;}
.y1d_c00054{bottom:318.055055px;}
.y1c_c00054{bottom:347.305054px;}
.y1b_c00054{bottom:376.555052px;}
.y1a_c00054{bottom:405.805051px;}
.y19_c00054{bottom:435.055050px;}
.y18_c00054{bottom:464.305049px;}
.y17_c00054{bottom:493.555047px;}
.y16_c00054{bottom:538.977282px;}
.y15_c00054{bottom:568.227281px;}
.y14_c00054{bottom:597.477280px;}
.y13_c00054{bottom:626.727279px;}
.y12_c00054{bottom:655.977277px;}
.y11_c00054{bottom:685.227276px;}
.y10_c00054{bottom:714.477275px;}
.yf_c00054{bottom:743.727274px;}
.ye_c00054{bottom:789.320358px;}
.yd_c00054{bottom:818.570356px;}
.yc_c00054{bottom:847.820355px;}
.yb_c00054{bottom:896.708634px;}
.ya_c00054{bottom:925.958633px;}
.y9_c00054{bottom:955.208631px;}
.y8_c00054{bottom:984.458630px;}
.y7_c00054{bottom:1013.708629px;}
.y6_c00054{bottom:1042.958628px;}
.y5_c00054{bottom:1072.208627px;}
.y4_c00054{bottom:1101.458625px;}
.y3_c00054{bottom:1130.708624px;}
.y2_c00054{bottom:1200.600303px;}
.h3_c00054{height:45.955303px;}
.h4_c00054{height:67.042966px;}
.h2_c00054{height:1304.999946px;}
.h0_c00054{height:1304.999953px;}
.h1_c00054{height:1305.000000px;}
.w2_c00054{width:934.874961px;}
.w0_c00054{width:934.875000px;}
.w1_c00054{width:935.250000px;}
.x0_c00054{left:0.000000px;}
.x3_c00054{left:87.902647px;}
.x2_c00054{left:89.864283px;}
.x4_c00054{left:456.319054px;}
.x1_c00054{left:476.518581px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws0_c00054{word-spacing:0.000000pt;}
._3_c00054{width:1.039734pt;}
._2_c00054{width:2.829528pt;}
._6_c00054{width:4.165161pt;}
._d_c00054{width:5.059084pt;}
._5_c00054{width:6.187502pt;}
._9_c00054{width:7.823853pt;}
._4_c00054{width:9.109315pt;}
._0_c00054{width:10.817686pt;}
._8_c00054{width:11.795409pt;}
._7_c00054{width:13.192686pt;}
._e_c00054{width:14.431761pt;}
._f_c00054{width:15.369871pt;}
._1_c00054{width:17.656250pt;}
._a_c00054{width:18.546873pt;}
._10_c00054{width:19.875001pt;}
._b_c00054{width:29.081234pt;}
._c_c00054{width:30.087462pt;}
.fs0_c00054{font-size:53.319997pt;}
.fs1_c00054{font-size:63.999997pt;}
.y0_c00054{bottom:0.000000pt;}
.y1_c00054{bottom:0.000007pt;}
.y24_c00054{bottom:26.134367pt;}
.y23_c00054{bottom:126.715611pt;}
.y22_c00054{bottom:152.715610pt;}
.y21_c00054{bottom:178.715609pt;}
.y20_c00054{bottom:204.715607pt;}
.y1f_c00054{bottom:230.715606pt;}
.y1e_c00054{bottom:256.715605pt;}
.y1d_c00054{bottom:282.715604pt;}
.y1c_c00054{bottom:308.715603pt;}
.y1b_c00054{bottom:334.715602pt;}
.y1a_c00054{bottom:360.715601pt;}
.y19_c00054{bottom:386.715600pt;}
.y18_c00054{bottom:412.715599pt;}
.y17_c00054{bottom:438.715598pt;}
.y16_c00054{bottom:479.090918pt;}
.y15_c00054{bottom:505.090917pt;}
.y14_c00054{bottom:531.090915pt;}
.y13_c00054{bottom:557.090914pt;}
.y12_c00054{bottom:583.090913pt;}
.y11_c00054{bottom:609.090912pt;}
.y10_c00054{bottom:635.090911pt;}
.yf_c00054{bottom:661.090910pt;}
.ye_c00054{bottom:701.618096pt;}
.yd_c00054{bottom:727.618094pt;}
.yc_c00054{bottom:753.618093pt;}
.yb_c00054{bottom:797.074341pt;}
.ya_c00054{bottom:823.074340pt;}
.y9_c00054{bottom:849.074339pt;}
.y8_c00054{bottom:875.074338pt;}
.y7_c00054{bottom:901.074337pt;}
.y6_c00054{bottom:927.074336pt;}
.y5_c00054{bottom:953.074335pt;}
.y4_c00054{bottom:979.074334pt;}
.y3_c00054{bottom:1005.074333pt;}
.y2_c00054{bottom:1067.200269pt;}
.h3_c00054{height:40.849158pt;}
.h4_c00054{height:59.593748pt;}
.h2_c00054{height:1159.999952pt;}
.h0_c00054{height:1159.999959pt;}
.h1_c00054{height:1160.000000pt;}
.w2_c00054{width:830.999965pt;}
.w0_c00054{width:831.000000pt;}
.w1_c00054{width:831.333333pt;}
.x0_c00054{left:0.000000pt;}
.x3_c00054{left:78.135686pt;}
.x2_c00054{left:79.879363pt;}
.x4_c00054{left:405.616937pt;}
.x1_c00054{left:423.572072pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc938a594195940be92b6957.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.171387;font-style:normal;font-weight:normal;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_d738a79b389d24839a2b58c7.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.171387;font-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_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;}
.ls0_c00055{letter-spacing:0.000000px;}
.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{width:1.804639px;}
._2_c00055{width:3.037445px;}
._9_c00055{width:5.496118px;}
._7_c00055{width:6.527319px;}
._e_c00055{width:7.717621px;}
._3_c00055{width:9.117141px;}
._6_c00055{width:10.266513px;}
._4_c00055{width:11.537636px;}
._a_c00055{width:15.662107px;}
._f_c00055{width:17.210904px;}
._11_c00055{width:19.751482px;}
._b_c00055{width:20.761342px;}
._8_c00055{width:22.330054px;}
._d_c00055{width:23.568695px;}
._1_c00055{width:28.047614px;}
._5_c00055{width:30.375000px;}
._c_c00055{width:40.066380px;}
._10_c00055{width:48.234374px;}
.fc1_c00055{color:rgb(74,93,83);}
.fc0_c00055{color:rgb(0,0,0);}
.fs0_c00055{font-size:71.999997px;}
.fs1_c00055{font-size:119.969995px;}
.y0_c00055{bottom:0.000000px;}
.y1_c00055{bottom:0.000008px;}
.y20_c00055{bottom:29.401163px;}
.y1d_c00055{bottom:252.943099px;}
.y1c_c00055{bottom:282.193098px;}
.y1b_c00055{bottom:311.443097px;}
.y1a_c00055{bottom:340.693096px;}
.y19_c00055{bottom:369.943095px;}
.y18_c00055{bottom:428.443092px;}
.y17_c00055{bottom:457.693091px;}
.y16_c00055{bottom:486.943090px;}
.y15_c00055{bottom:516.193088px;}
.y14_c00055{bottom:545.443087px;}
.y13_c00055{bottom:574.693086px;}
.y12_c00055{bottom:633.193084px;}
.y11_c00055{bottom:662.443082px;}
.y10_c00055{bottom:691.693081px;}
.yf_c00055{bottom:720.943080px;}
.ye_c00055{bottom:750.193079px;}
.yd_c00055{bottom:779.443078px;}
.yc_c00055{bottom:808.693076px;}
.yb_c00055{bottom:837.943075px;}
.ya_c00055{bottom:867.193074px;}
.y9_c00055{bottom:896.443073px;}
.y8_c00055{bottom:925.693071px;}
.y7_c00055{bottom:954.943070px;}
.y6_c00055{bottom:984.193069px;}
.y5_c00055{bottom:1013.443068px;}
.y4_c00055{bottom:1042.693067px;}
.y3_c00055{bottom:1071.943065px;}
.y2_c00055{bottom:1101.193064px;}
.y1f_c00055{bottom:1156.347301px;}
.y1e_c00055{bottom:1187.847300px;}
.h3_c00055{height:67.042966px;}
.h4_c00055{height:111.710342px;}
.h2_c00055{height:1304.999946px;}
.h0_c00055{height:1304.999953px;}
.h1_c00055{height:1305.000000px;}
.w2_c00055{width:934.874961px;}
.w0_c00055{width:934.875000px;}
.w1_c00055{width:935.250000px;}
.x0_c00055{left:0.000000px;}
.x1_c00055{left:87.902647px;}
.x2_c00055{left:456.319054px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws0_c00055{word-spacing:0.000000pt;}
._0_c00055{width:1.604124pt;}
._2_c00055{width:2.699951pt;}
._9_c00055{width:4.885439pt;}
._7_c00055{width:5.802061pt;}
._e_c00055{width:6.860108pt;}
._3_c00055{width:8.104125pt;}
._6_c00055{width:9.125789pt;}
._4_c00055{width:10.255677pt;}
._a_c00055{width:13.921873pt;}
._f_c00055{width:15.298581pt;}
._11_c00055{width:17.556873pt;}
._b_c00055{width:18.454526pt;}
._8_c00055{width:19.848937pt;}
._d_c00055{width:20.949951pt;}
._1_c00055{width:24.931213pt;}
._5_c00055{width:27.000000pt;}
._c_c00055{width:35.614560pt;}
._10_c00055{width:42.874999pt;}
.fs0_c00055{font-size:63.999997pt;}
.fs1_c00055{font-size:106.639996pt;}
.y0_c00055{bottom:0.000000pt;}
.y1_c00055{bottom:0.000007pt;}
.y20_c00055{bottom:26.134367pt;}
.y1d_c00055{bottom:224.838311pt;}
.y1c_c00055{bottom:250.838310pt;}
.y1b_c00055{bottom:276.838308pt;}
.y1a_c00055{bottom:302.838307pt;}
.y19_c00055{bottom:328.838306pt;}
.y18_c00055{bottom:380.838304pt;}
.y17_c00055{bottom:406.838303pt;}
.y16_c00055{bottom:432.838302pt;}
.y15_c00055{bottom:458.838301pt;}
.y14_c00055{bottom:484.838300pt;}
.y13_c00055{bottom:510.838299pt;}
.y12_c00055{bottom:562.838297pt;}
.y11_c00055{bottom:588.838295pt;}
.y10_c00055{bottom:614.838294pt;}
.yf_c00055{bottom:640.838293pt;}
.ye_c00055{bottom:666.838292pt;}
.yd_c00055{bottom:692.838291pt;}
.yc_c00055{bottom:718.838290pt;}
.yb_c00055{bottom:744.838289pt;}
.ya_c00055{bottom:770.838288pt;}
.y9_c00055{bottom:796.838287pt;}
.y8_c00055{bottom:822.838286pt;}
.y7_c00055{bottom:848.838285pt;}
.y6_c00055{bottom:874.838284pt;}
.y5_c00055{bottom:900.838282pt;}
.y4_c00055{bottom:926.838281pt;}
.y3_c00055{bottom:952.838280pt;}
.y2_c00055{bottom:978.838279pt;}
.y1f_c00055{bottom:1027.864268pt;}
.y1e_c00055{bottom:1055.864266pt;}
.h3_c00055{height:59.593748pt;}
.h4_c00055{height:99.298082pt;}
.h2_c00055{height:1159.999952pt;}
.h0_c00055{height:1159.999959pt;}
.h1_c00055{height:1160.000000pt;}
.w2_c00055{width:830.999965pt;}
.w0_c00055{width:831.000000pt;}
.w1_c00055{width:831.333333pt;}
.x0_c00055{left:0.000000pt;}
.x1_c00055{left:78.135686pt;}
.x2_c00055{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aad0546231b47e81be0f4a2b.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.171387;font-style:normal;font-weight:normal;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_7176bf5f7d33a54da5ce7970.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_5ba2ddde88869177314dc74e.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.006348;font-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_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);}
.v0_c00056{vertical-align:0.000000px;}
.ls0_c00056{letter-spacing:0.000000px;}
.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;}
._1_c00056{width:1.005864px;}
._13_c00056{width:2.129229px;}
._3_c00056{width:3.275366px;}
._d_c00056{width:4.423851px;}
._a_c00056{width:5.519530px;}
._7_c00056{width:7.095655px;}
._f_c00056{width:8.417314px;}
._12_c00056{width:9.499191px;}
._10_c00056{width:10.986248px;}
._0_c00056{width:12.234377px;}
._b_c00056{width:14.036814px;}
._6_c00056{width:15.820314px;}
._4_c00056{width:17.303875px;}
._11_c00056{width:22.856301px;}
._8_c00056{width:24.123571px;}
._9_c00056{width:25.132109px;}
._2_c00056{width:26.852921px;}
._e_c00056{width:29.941382px;}
._5_c00056{width:31.746092px;}
._c_c00056{width:33.074059px;}
.fc1_c00056{color:rgb(74,93,83);}
.fc0_c00056{color:rgb(0,0,0);}
.fs1_c00056{font-size:59.984997px;}
.fs0_c00056{font-size:71.999997px;}
.y0_c00056{bottom:0.000000px;}
.y1_c00056{bottom:0.000008px;}
.y24_c00056{bottom:29.400983px;}
.y22_c00056{bottom:106.958667px;}
.y21_c00056{bottom:136.208666px;}
.y20_c00056{bottom:165.458664px;}
.y1f_c00056{bottom:194.708663px;}
.y1e_c00056{bottom:223.958662px;}
.y1d_c00056{bottom:282.458659px;}
.y1c_c00056{bottom:311.708658px;}
.y1b_c00056{bottom:340.958657px;}
.y1a_c00056{bottom:370.208656px;}
.y19_c00056{bottom:399.458655px;}
.y18_c00056{bottom:428.708653px;}
.y17_c00056{bottom:457.958652px;}
.y16_c00056{bottom:487.208651px;}
.y15_c00056{bottom:516.458650px;}
.y14_c00056{bottom:574.958647px;}
.y13_c00056{bottom:604.208646px;}
.y12_c00056{bottom:633.458645px;}
.y11_c00056{bottom:662.708644px;}
.y10_c00056{bottom:691.958642px;}
.yf_c00056{bottom:721.208641px;}
.ye_c00056{bottom:750.458640px;}
.yd_c00056{bottom:808.958637px;}
.yc_c00056{bottom:838.208636px;}
.yb_c00056{bottom:867.458635px;}
.ya_c00056{bottom:896.708634px;}
.y9_c00056{bottom:925.958633px;}
.y8_c00056{bottom:955.208631px;}
.y7_c00056{bottom:984.458630px;}
.y6_c00056{bottom:1013.708629px;}
.y5_c00056{bottom:1042.958628px;}
.y4_c00056{bottom:1072.208627px;}
.y3_c00056{bottom:1101.458625px;}
.y2_c00056{bottom:1130.708624px;}
.y23_c00056{bottom:1200.600036px;}
.h4_c00056{height:45.955303px;}
.h3_c00056{height:67.042966px;}
.h2_c00056{height:1304.999946px;}
.h0_c00056{height:1304.999953px;}
.h1_c00056{height:1305.000000px;}
.w2_c00056{width:934.874961px;}
.w0_c00056{width:934.875000px;}
.w1_c00056{width:935.250000px;}
.x0_c00056{left:0.000000px;}
.x1_c00056{left:87.902647px;}
.x2_c00056{left:456.319054px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws0_c00056{word-spacing:0.000000pt;}
._1_c00056{width:0.894102pt;}
._13_c00056{width:1.892648pt;}
._3_c00056{width:2.911437pt;}
._d_c00056{width:3.932312pt;}
._a_c00056{width:4.906249pt;}
._7_c00056{width:6.307249pt;}
._f_c00056{width:7.482057pt;}
._12_c00056{width:8.443725pt;}
._10_c00056{width:9.765554pt;}
._0_c00056{width:10.875002pt;}
._b_c00056{width:12.477168pt;}
._6_c00056{width:14.062501pt;}
._4_c00056{width:15.381222pt;}
._11_c00056{width:20.316712pt;}
._8_c00056{width:21.443174pt;}
._9_c00056{width:22.339652pt;}
._2_c00056{width:23.869263pt;}
._e_c00056{width:26.614562pt;}
._5_c00056{width:28.218749pt;}
._c_c00056{width:29.399164pt;}
.fs1_c00056{font-size:53.319997pt;}
.fs0_c00056{font-size:63.999997pt;}
.y0_c00056{bottom:0.000000pt;}
.y1_c00056{bottom:0.000007pt;}
.y24_c00056{bottom:26.134207pt;}
.y22_c00056{bottom:95.074370pt;}
.y21_c00056{bottom:121.074369pt;}
.y20_c00056{bottom:147.074368pt;}
.y1f_c00056{bottom:173.074367pt;}
.y1e_c00056{bottom:199.074366pt;}
.y1d_c00056{bottom:251.074364pt;}
.y1c_c00056{bottom:277.074363pt;}
.y1b_c00056{bottom:303.074362pt;}
.y1a_c00056{bottom:329.074361pt;}
.y19_c00056{bottom:355.074360pt;}
.y18_c00056{bottom:381.074359pt;}
.y17_c00056{bottom:407.074357pt;}
.y16_c00056{bottom:433.074356pt;}
.y15_c00056{bottom:459.074355pt;}
.y14_c00056{bottom:511.074353pt;}
.y13_c00056{bottom:537.074352pt;}
.y12_c00056{bottom:563.074351pt;}
.y11_c00056{bottom:589.074350pt;}
.y10_c00056{bottom:615.074349pt;}
.yf_c00056{bottom:641.074348pt;}
.ye_c00056{bottom:667.074347pt;}
.yd_c00056{bottom:719.074344pt;}
.yc_c00056{bottom:745.074343pt;}
.yb_c00056{bottom:771.074342pt;}
.ya_c00056{bottom:797.074341pt;}
.y9_c00056{bottom:823.074340pt;}
.y8_c00056{bottom:849.074339pt;}
.y7_c00056{bottom:875.074338pt;}
.y6_c00056{bottom:901.074337pt;}
.y5_c00056{bottom:927.074336pt;}
.y4_c00056{bottom:953.074335pt;}
.y3_c00056{bottom:979.074334pt;}
.y2_c00056{bottom:1005.074333pt;}
.y23_c00056{bottom:1067.200032pt;}
.h4_c00056{height:40.849158pt;}
.h3_c00056{height:59.593748pt;}
.h2_c00056{height:1159.999952pt;}
.h0_c00056{height:1159.999959pt;}
.h1_c00056{height:1160.000000pt;}
.w2_c00056{width:830.999965pt;}
.w0_c00056{width:831.000000pt;}
.w1_c00056{width:831.333333pt;}
.x0_c00056{left:0.000000pt;}
.x1_c00056{left:78.135686pt;}
.x2_c00056{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_571106ec149689da926e044e.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.171387;font-style:normal;font-weight:normal;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_4ca79a09af49189c4a2ec8e9.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.005371;font-style:normal;font-weight:normal;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_5ba2ddde88869177314dc74e.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.006348;font-style:normal;font-weight:normal;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_c03ff7b81fcdf8f61134c76e.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;line-height:0.727051;font-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_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);}
.v0_c00057{vertical-align:0.000000px;}
.ls2_c00057{letter-spacing:0.000000px;}
.ls1_c00057{letter-spacing:0.000023px;}
.ls0_c00057{letter-spacing:0.035156px;}
.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:-18.703125px;}
.ws1_c00057{word-spacing:0.000000px;}
._4_c00057{margin-left:-18.318600px;}
._2_c00057{width:2.622640px;}
._3_c00057{width:4.645979px;}
._b_c00057{width:6.570992px;}
._a_c00057{width:10.546877px;}
._7_c00057{width:12.445310px;}
._5_c00057{width:14.568074px;}
._1_c00057{width:15.602301px;}
._9_c00057{width:20.053067px;}
._d_c00057{width:21.853183px;}
._0_c00057{width:28.445251px;}
._8_c00057{width:30.023436px;}
._c_c00057{width:31.404005px;}
._6_c00057{width:34.221037px;}
.fc1_c00057{color:rgb(74,93,83);}
.fc0_c00057{color:rgb(0,0,0);}
.fs1_c00057{font-size:59.984997px;}
.fs0_c00057{font-size:71.999997px;}
.y0_c00057{bottom:0.000000px;}
.y1_c00057{bottom:0.000008px;}
.y17_c00057{bottom:29.401163px;}
.y16_c00057{bottom:469.665700px;}
.y15_c00057{bottom:489.915700px;}
.y13_c00057{bottom:604.208470px;}
.y12_c00057{bottom:633.458468px;}
.y11_c00057{bottom:662.708467px;}
.y10_c00057{bottom:691.958466px;}
.yf_c00057{bottom:721.208465px;}
.ye_c00057{bottom:750.458464px;}
.yd_c00057{bottom:808.958461px;}
.yc_c00057{bottom:838.208460px;}
.yb_c00057{bottom:867.458459px;}
.ya_c00057{bottom:896.708457px;}
.y9_c00057{bottom:925.958456px;}
.y8_c00057{bottom:955.208455px;}
.y7_c00057{bottom:984.458454px;}
.y6_c00057{bottom:1013.708453px;}
.y5_c00057{bottom:1042.958451px;}
.y4_c00057{bottom:1072.208450px;}
.y3_c00057{bottom:1101.458449px;}
.y2_c00057{bottom:1130.708448px;}
.y14_c00057{bottom:1200.600126px;}
.h4_c00057{height:45.955303px;}
.h5_c00057{height:55.855171px;}
.h3_c00057{height:67.042966px;}
.h2_c00057{height:1304.999946px;}
.h0_c00057{height:1304.999953px;}
.h1_c00057{height:1305.000000px;}
.w2_c00057{width:934.874961px;}
.w0_c00057{width:934.875000px;}
.w1_c00057{width:935.250000px;}
.x0_c00057{left:0.000000px;}
.x1_c00057{left:87.902647px;}
.x2_c00057{left:456.319054px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls2_c00057{letter-spacing:0.000000pt;}
.ls1_c00057{letter-spacing:0.000020pt;}
.ls0_c00057{letter-spacing:0.031250pt;}
.ws0_c00057{word-spacing:-16.625000pt;}
.ws1_c00057{word-spacing:0.000000pt;}
._4_c00057{margin-left:-16.283200pt;}
._2_c00057{width:2.331236pt;}
._3_c00057{width:4.129759pt;}
._b_c00057{width:5.840882pt;}
._a_c00057{width:9.375001pt;}
._7_c00057{width:11.062498pt;}
._5_c00057{width:12.949399pt;}
._1_c00057{width:13.868712pt;}
._9_c00057{width:17.824948pt;}
._d_c00057{width:19.425052pt;}
._0_c00057{width:25.284667pt;}
._8_c00057{width:26.687498pt;}
._c_c00057{width:27.914671pt;}
._6_c00057{width:30.418700pt;}
.fs1_c00057{font-size:53.319997pt;}
.fs0_c00057{font-size:63.999997pt;}
.y0_c00057{bottom:0.000000pt;}
.y1_c00057{bottom:0.000007pt;}
.y17_c00057{bottom:26.134367pt;}
.y16_c00057{bottom:417.480623pt;}
.y15_c00057{bottom:435.480622pt;}
.y13_c00057{bottom:537.074195pt;}
.y12_c00057{bottom:563.074194pt;}
.y11_c00057{bottom:589.074193pt;}
.y10_c00057{bottom:615.074192pt;}
.yf_c00057{bottom:641.074191pt;}
.ye_c00057{bottom:667.074190pt;}
.yd_c00057{bottom:719.074188pt;}
.yc_c00057{bottom:745.074187pt;}
.yb_c00057{bottom:771.074185pt;}
.ya_c00057{bottom:797.074184pt;}
.y9_c00057{bottom:823.074183pt;}
.y8_c00057{bottom:849.074182pt;}
.y7_c00057{bottom:875.074181pt;}
.y6_c00057{bottom:901.074180pt;}
.y5_c00057{bottom:927.074179pt;}
.y4_c00057{bottom:953.074178pt;}
.y3_c00057{bottom:979.074177pt;}
.y2_c00057{bottom:1005.074176pt;}
.y14_c00057{bottom:1067.200112pt;}
.h4_c00057{height:40.849158pt;}
.h5_c00057{height:49.649041pt;}
.h3_c00057{height:59.593748pt;}
.h2_c00057{height:1159.999952pt;}
.h0_c00057{height:1159.999959pt;}
.h1_c00057{height:1160.000000pt;}
.w2_c00057{width:830.999965pt;}
.w0_c00057{width:831.000000pt;}
.w1_c00057{width:831.333333pt;}
.x0_c00057{left:0.000000pt;}
.x1_c00057{left:78.135686pt;}
.x2_c00057{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44cab8874ba3e717472a70fd.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:0.775879;font-style:normal;font-weight:normal;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_984e562f1951fdba74218844.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.171387;font-style:normal;font-weight:normal;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_3489213defc3f24bc7b95a8e.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:1.005371;font-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_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;}
.ls0_c00058{letter-spacing:0.000000px;}
.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{width:4.767171px;}
.fc1_c00058{color:rgb(0,0,0);}
.fc0_c00058{color:rgb(67,91,56);}
.fs0_c00058{font-size:71.999997px;}
.y0_c00058{bottom:0.000000px;}
.y1_c00058{bottom:0.000008px;}
.y3_c00058{bottom:29.401163px;}
.y5_c00058{bottom:1113.231752px;}
.y4_c00058{bottom:1142.481750px;}
.y2_c00058{bottom:1199.772371px;}
.h3_c00058{height:55.160154px;}
.h4_c00058{height:67.042966px;}
.h2_c00058{height:1304.999946px;}
.h0_c00058{height:1304.999953px;}
.h1_c00058{height:1305.000000px;}
.w2_c00058{width:934.874961px;}
.w0_c00058{width:934.875000px;}
.w1_c00058{width:935.250000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:128.173847px;}
.x2_c00058{left:456.319054px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws0_c00058{word-spacing:0.000000pt;}
._0_c00058{width:4.237486pt;}
.fs0_c00058{font-size:63.999997pt;}
.y0_c00058{bottom:0.000000pt;}
.y1_c00058{bottom:0.000007pt;}
.y3_c00058{bottom:26.134367pt;}
.y5_c00058{bottom:989.539335pt;}
.y4_c00058{bottom:1015.539334pt;}
.y2_c00058{bottom:1066.464330pt;}
.h3_c00058{height:49.031248pt;}
.h4_c00058{height:59.593748pt;}
.h2_c00058{height:1159.999952pt;}
.h0_c00058{height:1159.999959pt;}
.h1_c00058{height:1160.000000pt;}
.w2_c00058{width:830.999965pt;}
.w0_c00058{width:831.000000pt;}
.w1_c00058{width:831.333333pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:113.932309pt;}
.x2_c00058{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00059{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
}
.y0_c00059{bottom:0.000000px;}
.h0_c00059{height:1304.999953px;}
.h1_c00059{height:1305.000000px;}
.w0_c00059{width:934.875000px;}
.w1_c00059{width:935.250000px;}
.x0_c00059{left:0.000000px;}
@media print{
.y0_c00059{bottom:0.000000pt;}
.h0_c00059{height:1159.999959pt;}
.h1_c00059{height:1160.000000pt;}
.w0_c00059{width:831.000000pt;}
.w1_c00059{width:831.333333pt;}
.x0_c00059{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_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_9cc3c82460a4f60d5ffc1fda.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.145996;font-style:normal;font-weight:normal;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_3a99c99ce6df57bee94a6fec.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.006348;font-style:normal;font-weight:normal;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_9a4a8c3085e8a6412ecaed24.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.006348;font-style:normal;font-weight:normal;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_af24c93efcc5d6409d693242.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:0.727051;font-style:normal;font-weight: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_c00060;src:url('chunks/assets/font_1cc5ba94b63500491afc350c.woff2')format("woff");}.ff5_c00060{font-family:ff5_c00060;line-height:0.895000;font-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_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);}
.v0_c00060{vertical-align:0.000000px;}
.ls0_c00060{letter-spacing:0.000000px;}
.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.059985px;}
.ws1_c00060{word-spacing:0.000000px;}
._0_c00060{margin-left:-4.319962px;}
.fc0_c00060{color:rgb(255,255,255);}
.fs2_c00060{font-size:59.984997px;}
.fs1_c00060{font-size:119.969995px;}
.fs0_c00060{font-size:269.999989px;}
.y0_c00060{bottom:0.000000px;}
.y1_c00060{bottom:0.000008px;}
.y9_c00060{bottom:255.927733px;}
.y6_c00060{bottom:429.249978px;}
.y5_c00060{bottom:470.874976px;}
.y4_c00060{bottom:512.499975px;}
.y3_c00060{bottom:561.587413px;}
.y2_c00060{bottom:627.962410px;}
.y8_c00060{bottom:1210.204675px;}
.y7_c00060{bottom:1230.454675px;}
.h6_c00060{height:42.889273px;}
.h5_c00060{height:45.955303px;}
.h4_c00060{height:91.910607px;}
.h3_c00060{height:240.600576px;}
.h2_c00060{height:1304.999946px;}
.h0_c00060{height:1304.999953px;}
.h1_c00060{height:1305.000000px;}
.w2_c00060{width:934.874961px;}
.w0_c00060{width:934.875000px;}
.w1_c00060{width:935.250000px;}
.x0_c00060{left:0.000000px;}
.x2_c00060{left:87.902647px;}
.x1_c00060{left:89.487450px;}
.x3_c00060{left:93.543307px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:-0.053320pt;}
.ws1_c00060{word-spacing:0.000000pt;}
._0_c00060{margin-left:-3.839966pt;}
.fs2_c00060{font-size:53.319997pt;}
.fs1_c00060{font-size:106.639996pt;}
.fs0_c00060{font-size:239.999990pt;}
.y0_c00060{bottom:0.000000pt;}
.y1_c00060{bottom:0.000007pt;}
.y9_c00060{bottom:227.491319pt;}
.y6_c00060{bottom:381.555536pt;}
.y5_c00060{bottom:418.555535pt;}
.y4_c00060{bottom:455.555533pt;}
.y3_c00060{bottom:499.188811pt;}
.y2_c00060{bottom:558.188809pt;}
.y8_c00060{bottom:1075.737489pt;}
.y7_c00060{bottom:1093.737489pt;}
.h6_c00060{height:38.123798pt;}
.h5_c00060{height:40.849158pt;}
.h4_c00060{height:81.698317pt;}
.h3_c00060{height:213.867179pt;}
.h2_c00060{height:1159.999952pt;}
.h0_c00060{height:1159.999959pt;}
.h1_c00060{height:1160.000000pt;}
.w2_c00060{width:830.999965pt;}
.w0_c00060{width:831.000000pt;}
.w1_c00060{width:831.333333pt;}
.x0_c00060{left:0.000000pt;}
.x2_c00060{left:78.135686pt;}
.x1_c00060{left:79.544400pt;}
.x3_c00060{left:83.149606pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00061{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
}
.y0_c00061{bottom:0.000000px;}
.h0_c00061{height:1304.999953px;}
.h1_c00061{height:1305.000000px;}
.w0_c00061{width:934.875000px;}
.w1_c00061{width:935.250000px;}
.x0_c00061{left:0.000000px;}
@media print{
.y0_c00061{bottom:0.000000pt;}
.h0_c00061{height:1159.999959pt;}
.h1_c00061{height:1160.000000pt;}
.w0_c00061{width:831.000000pt;}
.w1_c00061{width:831.333333pt;}
.x0_c00061{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_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_01dc85bd7f95edad0cfda41f.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.006348;font-style:normal;font-weight:normal;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_50a388371342beed4480078a.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.000000;font-style:normal;font-weight:normal;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_2d7deaa08558454454a2b37f.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:0.713867;font-style:normal;font-weight:normal;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_e0bbdd37e8d75bb2b3a95bf7.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.006348;font-style:normal;font-weight: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_c00062;src:url('chunks/assets/font_375923cfdb303d230c6037e0.woff2')format("woff");}.ff5_c00062{font-family:ff5_c00062;line-height:1.006348;font-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_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);}
.v0_c00062{vertical-align:0.000000px;}
.ls1_c00062{letter-spacing:0.000000px;}
.ls0_c00062{letter-spacing:5.273459px;}
.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:-18.703125px;}
.ws1_c00062{word-spacing:-0.119970px;}
.ws2_c00062{word-spacing:0.000000px;}
._1_c00062{width:1.214399px;}
._2_c00062{width:2.498018px;}
._3_c00062{width:3.860731px;}
._5_c00062{width:5.446471px;}
._8_c00062{width:6.637116px;}
._0_c00062{width:8.572700px;}
._b_c00062{width:14.477301px;}
._6_c00062{width:16.554677px;}
._4_c00062{width:25.005637px;}
._7_c00062{width:31.985733px;}
._d_c00062{width:35.789060px;}
._f_c00062{width:40.269558px;}
._a_c00062{width:41.960905px;}
._c_c00062{width:48.632765px;}
._9_c00062{width:54.000000px;}
._e_c00062{width:61.298418px;}
.fc2_c00062{color:rgb(102,141,85);}
.fc1_c00062{color:rgb(74,93,83);}
.fc0_c00062{color:rgb(0,0,0);}
.fs1_c00062{font-size:59.984997px;}
.fs0_c00062{font-size:71.999997px;}
.fs2_c00062{font-size:119.969995px;}
.y0_c00062{bottom:0.000000px;}
.y1_c00062{bottom:0.000008px;}
.y22_c00062{bottom:29.401163px;}
.y1f_c00062{bottom:93.557444px;}
.y1e_c00062{bottom:118.307443px;}
.y1d_c00062{bottom:143.057442px;}
.y1c_c00062{bottom:167.807441px;}
.y1b_c00062{bottom:192.557440px;}
.y1a_c00062{bottom:217.307439px;}
.y19_c00062{bottom:292.690536px;}
.y18_c00062{bottom:323.065535px;}
.y17_c00062{bottom:353.440533px;}
.y16_c00062{bottom:383.815532px;}
.y15_c00062{bottom:438.940530px;}
.y14_c00062{bottom:469.315528px;}
.y13_c00062{bottom:499.690527px;}
.y12_c00062{bottom:530.065526px;}
.y11_c00062{bottom:560.440525px;}
.y10_c00062{bottom:590.815523px;}
.yf_c00062{bottom:621.190522px;}
.ye_c00062{bottom:676.315520px;}
.yd_c00062{bottom:706.690519px;}
.yc_c00062{bottom:737.065517px;}
.yb_c00062{bottom:767.440516px;}
.ya_c00062{bottom:797.815515px;}
.y9_c00062{bottom:828.190513px;}
.y8_c00062{bottom:883.315511px;}
.y7_c00062{bottom:913.690510px;}
.y6_c00062{bottom:944.065509px;}
.y5_c00062{bottom:974.440507px;}
.y4_c00062{bottom:1004.815506px;}
.y3_c00062{bottom:1035.190505px;}
.y2_c00062{bottom:1065.565504px;}
.y21_c00062{bottom:1109.325716px;}
.y20_c00062{bottom:1200.600126px;}
.h4_c00062{height:45.955303px;}
.h3_c00062{height:55.160154px;}
.h5_c00062{height:91.910607px;}
.h2_c00062{height:1304.999946px;}
.h0_c00062{height:1304.999953px;}
.h1_c00062{height:1305.000000px;}
.w2_c00062{width:934.874961px;}
.w0_c00062{width:934.875000px;}
.w1_c00062{width:935.250000px;}
.x0_c00062{left:0.000000px;}
.x1_c00062{left:89.864283px;}
.x2_c00062{left:127.622500px;}
.x4_c00062{left:456.319054px;}
.x3_c00062{left:636.058362px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls1_c00062{letter-spacing:0.000000pt;}
.ls0_c00062{letter-spacing:4.687519pt;}
.ws0_c00062{word-spacing:-16.625000pt;}
.ws1_c00062{word-spacing:-0.106640pt;}
.ws2_c00062{word-spacing:0.000000pt;}
._1_c00062{width:1.079466pt;}
._2_c00062{width:2.220461pt;}
._3_c00062{width:3.431761pt;}
._5_c00062{width:4.841307pt;}
._8_c00062{width:5.899659pt;}
._0_c00062{width:7.620178pt;}
._b_c00062{width:12.868712pt;}
._6_c00062{width:14.715269pt;}
._4_c00062{width:22.227233pt;}
._7_c00062{width:28.431763pt;}
._d_c00062{width:31.812498pt;}
._f_c00062{width:35.795163pt;}
._a_c00062{width:37.298582pt;}
._c_c00062{width:43.229124pt;}
._9_c00062{width:48.000000pt;}
._e_c00062{width:54.487483pt;}
.fs1_c00062{font-size:53.319997pt;}
.fs0_c00062{font-size:63.999997pt;}
.fs2_c00062{font-size:106.639996pt;}
.y0_c00062{bottom:0.000000pt;}
.y1_c00062{bottom:0.000007pt;}
.y22_c00062{bottom:26.134367pt;}
.y1f_c00062{bottom:83.162173pt;}
.y1e_c00062{bottom:105.162172pt;}
.y1d_c00062{bottom:127.162171pt;}
.y1c_c00062{bottom:149.162170pt;}
.y1b_c00062{bottom:171.162169pt;}
.y1a_c00062{bottom:193.162168pt;}
.y19_c00062{bottom:260.169365pt;}
.y18_c00062{bottom:287.169364pt;}
.y17_c00062{bottom:314.169363pt;}
.y16_c00062{bottom:341.169362pt;}
.y15_c00062{bottom:390.169360pt;}
.y14_c00062{bottom:417.169359pt;}
.y13_c00062{bottom:444.169357pt;}
.y12_c00062{bottom:471.169356pt;}
.y11_c00062{bottom:498.169355pt;}
.y10_c00062{bottom:525.169354pt;}
.yf_c00062{bottom:552.169353pt;}
.ye_c00062{bottom:601.169351pt;}
.yd_c00062{bottom:628.169350pt;}
.yc_c00062{bottom:655.169349pt;}
.yb_c00062{bottom:682.169348pt;}
.ya_c00062{bottom:709.169346pt;}
.y9_c00062{bottom:736.169345pt;}
.y8_c00062{bottom:785.169343pt;}
.y7_c00062{bottom:812.169342pt;}
.y6_c00062{bottom:839.169341pt;}
.y5_c00062{bottom:866.169340pt;}
.y4_c00062{bottom:893.169339pt;}
.y3_c00062{bottom:920.169338pt;}
.y2_c00062{bottom:947.169337pt;}
.y21_c00062{bottom:986.067303pt;}
.y20_c00062{bottom:1067.200112pt;}
.h4_c00062{height:40.849158pt;}
.h3_c00062{height:49.031248pt;}
.h5_c00062{height:81.698317pt;}
.h2_c00062{height:1159.999952pt;}
.h0_c00062{height:1159.999959pt;}
.h1_c00062{height:1160.000000pt;}
.w2_c00062{width:830.999965pt;}
.w0_c00062{width:831.000000pt;}
.w1_c00062{width:831.333333pt;}
.x0_c00062{left:0.000000pt;}
.x1_c00062{left:79.879363pt;}
.x2_c00062{left:113.442222pt;}
.x4_c00062{left:405.616937pt;}
.x3_c00062{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbaf10b29a0970293c792715.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.006348;font-style:normal;font-weight:normal;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_33d78d79ab67edf8069664a9.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.006348;font-style:normal;font-weight:normal;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_8256333ea17e93d9df35a751.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.006348;font-style:normal;font-weight:normal;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_73fb277659cc7cad84815e10.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:0.945312;font-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_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);}
.v0_c00063{vertical-align:0.000000px;}
.ls2_c00063{letter-spacing:0.000000px;}
.ls1_c00063{letter-spacing:8.296874px;}
.ls0_c00063{letter-spacing:41.695333px;}
.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:-18.703125px;}
.ws1_c00063{word-spacing:0.000000px;}
._1_c00063{width:3.332771px;}
._e_c00063{width:5.367167px;}
._8_c00063{width:7.054662px;}
._3_c00063{width:8.268722px;}
._4_c00063{width:11.403395px;}
._7_c00063{width:12.772294px;}
._b_c00063{width:14.508955px;}
._11_c00063{width:15.742857px;}
._10_c00063{width:17.124937px;}
._6_c00063{width:19.822701px;}
._d_c00063{width:22.001904px;}
._c_c00063{width:26.078106px;}
._f_c00063{width:27.690285px;}
._5_c00063{width:35.132766px;}
._0_c00063{width:36.222606px;}
._9_c00063{width:37.352014px;}
._a_c00063{width:39.130402px;}
._2_c00063{width:41.667156px;}
._12_c00063{width:44.789062px;}
.fc3_c00063{color:transparent;}
.fc2_c00063{color:rgb(102,141,85);}
.fc1_c00063{color:rgb(0,0,0);}
.fc0_c00063{color:rgb(74,93,83);}
.fs0_c00063{font-size:59.984997px;}
.fs1_c00063{font-size:71.999997px;}
.y0_c00063{bottom:0.000000px;}
.y1_c00063{bottom:0.000008px;}
.y1c_c00063{bottom:29.401163px;}
.y1b_c00063{bottom:286.688659px;}
.y1a_c00063{bottom:320.438658px;}
.y19_c00063{bottom:354.188656px;}
.y18_c00063{bottom:387.938655px;}
.y17_c00063{bottom:421.688654px;}
.y16_c00063{bottom:455.438652px;}
.y15_c00063{bottom:489.188651px;}
.y14_c00063{bottom:522.938649px;}
.y13_c00063{bottom:556.688648px;}
.y12_c00063{bottom:590.438647px;}
.y11_c00063{bottom:624.188645px;}
.y10_c00063{bottom:657.938644px;}
.yf_c00063{bottom:691.688642px;}
.ye_c00063{bottom:725.438641px;}
.yd_c00063{bottom:759.188640px;}
.yc_c00063{bottom:826.688637px;}
.yb_c00063{bottom:860.438635px;}
.ya_c00063{bottom:894.188634px;}
.y9_c00063{bottom:927.938633px;}
.y8_c00063{bottom:961.688631px;}
.y7_c00063{bottom:995.438630px;}
.y6_c00063{bottom:1029.188628px;}
.y5_c00063{bottom:1062.938627px;}
.y4_c00063{bottom:1096.688626px;}
.y3_c00063{bottom:1130.438624px;}
.y2_c00063{bottom:1200.600303px;}
.h3_c00063{height:45.955303px;}
.h4_c00063{height:55.160154px;}
.h5_c00063{height:67.042966px;}
.h2_c00063{height:1304.999946px;}
.h0_c00063{height:1304.999953px;}
.h1_c00063{height:1305.000000px;}
.w2_c00063{width:934.874961px;}
.w0_c00063{width:934.875000px;}
.w1_c00063{width:935.250000px;}
.x0_c00063{left:0.000000px;}
.x2_c00063{left:87.902647px;}
.x3_c00063{left:456.319054px;}
.x1_c00063{left:636.058362px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls2_c00063{letter-spacing:0.000000pt;}
.ls1_c00063{letter-spacing:7.374999pt;}
.ls0_c00063{letter-spacing:37.062518pt;}
.ws0_c00063{word-spacing:-16.625000pt;}
.ws1_c00063{word-spacing:0.000000pt;}
._1_c00063{width:2.962463pt;}
._e_c00063{width:4.770815pt;}
._8_c00063{width:6.270811pt;}
._3_c00063{width:7.349975pt;}
._4_c00063{width:10.136351pt;}
._7_c00063{width:11.353151pt;}
._b_c00063{width:12.896849pt;}
._11_c00063{width:13.993651pt;}
._10_c00063{width:15.222166pt;}
._6_c00063{width:17.620179pt;}
._d_c00063{width:19.557248pt;}
._c_c00063{width:23.180538pt;}
._f_c00063{width:24.613586pt;}
._5_c00063{width:31.229125pt;}
._0_c00063{width:32.197872pt;}
._9_c00063{width:33.201790pt;}
._a_c00063{width:34.782580pt;}
._2_c00063{width:37.037472pt;}
._12_c00063{width:39.812499pt;}
.fs0_c00063{font-size:53.319997pt;}
.fs1_c00063{font-size:63.999997pt;}
.y0_c00063{bottom:0.000000pt;}
.y1_c00063{bottom:0.000007pt;}
.y1c_c00063{bottom:26.134367pt;}
.y1b_c00063{bottom:254.834364pt;}
.y1a_c00063{bottom:284.834363pt;}
.y19_c00063{bottom:314.834361pt;}
.y18_c00063{bottom:344.834360pt;}
.y17_c00063{bottom:374.834359pt;}
.y16_c00063{bottom:404.834358pt;}
.y15_c00063{bottom:434.834356pt;}
.y14_c00063{bottom:464.834355pt;}
.y13_c00063{bottom:494.834354pt;}
.y12_c00063{bottom:524.834353pt;}
.y11_c00063{bottom:554.834351pt;}
.y10_c00063{bottom:584.834350pt;}
.yf_c00063{bottom:614.834349pt;}
.ye_c00063{bottom:644.834348pt;}
.yd_c00063{bottom:674.834346pt;}
.yc_c00063{bottom:734.834344pt;}
.yb_c00063{bottom:764.834343pt;}
.ya_c00063{bottom:794.834341pt;}
.y9_c00063{bottom:824.834340pt;}
.y8_c00063{bottom:854.834339pt;}
.y7_c00063{bottom:884.834338pt;}
.y6_c00063{bottom:914.834336pt;}
.y5_c00063{bottom:944.834335pt;}
.y4_c00063{bottom:974.834334pt;}
.y3_c00063{bottom:1004.834333pt;}
.y2_c00063{bottom:1067.200269pt;}
.h3_c00063{height:40.849158pt;}
.h4_c00063{height:49.031248pt;}
.h5_c00063{height:59.593748pt;}
.h2_c00063{height:1159.999952pt;}
.h0_c00063{height:1159.999959pt;}
.h1_c00063{height:1160.000000pt;}
.w2_c00063{width:830.999965pt;}
.w0_c00063{width:831.000000pt;}
.w1_c00063{width:831.333333pt;}
.x0_c00063{left:0.000000pt;}
.x2_c00063{left:78.135686pt;}
.x3_c00063{left:405.616937pt;}
.x1_c00063{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6310890661fc4527080742af.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.006348;font-style:normal;font-weight:normal;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_0f20df974c8068757c01806d.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00064;src:url('chunks/assets/font_9b193c29027baf102582e1bc.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00064;src:url('chunks/assets/font_dbaf10b29a0970293c792715.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.006348;font-style:normal;font-weight: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_c00064;src:url('chunks/assets/font_0957b94aba4c76fe837545a5.woff2')format("woff");}.ff5_c00064{font-family:ff5_c00064;line-height:0.945312;font-style:normal;font-weight: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_c00064;src:url('chunks/assets/font_2985f17dbfc7a0dc31cadfdb.woff2')format("woff");}.ff6_c00064{font-family:ff6_c00064;line-height:1.006348;font-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_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);}
.v0_c00064{vertical-align:0.000000px;}
.ls0_c00064{letter-spacing:0.000000px;}
.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;}
._4_c00064{width:1.906194px;}
._b_c00064{width:2.988700px;}
._2_c00064{width:4.160110px;}
._5_c00064{width:5.884553px;}
._6_c00064{width:7.767743px;}
._c_c00064{width:9.259548px;}
._7_c00064{width:10.642728px;}
._9_c00064{width:12.409607px;}
._a_c00064{width:15.914038px;}
._8_c00064{width:17.103515px;}
._3_c00064{width:19.828123px;}
._0_c00064{width:21.495507px;}
._1_c00064{width:22.863505px;}
._d_c00064{width:90.386530px;}
._e_c00064{width:112.921637px;}
.fc4_c00064{color:transparent;}
.fc2_c00064{color:rgb(74,93,83);}
.fc1_c00064{color:rgb(102,141,85);}
.fc3_c00064{color:rgb(255,255,255);}
.fc0_c00064{color:rgb(0,0,0);}
.fs3_c00064{font-size:53.999887px;}
.fs1_c00064{font-size:59.984997px;}
.fs0_c00064{font-size:71.999997px;}
.fs2_c00064{font-size:119.969995px;}
.y0_c00064{bottom:0.000000px;}
.y1_c00064{bottom:0.000008px;}
.y1f_c00064{bottom:29.401163px;}
.y12_c00064{bottom:301.315775px;}
.y11_c00064{bottom:332.815774px;}
.y10_c00064{bottom:364.315773px;}
.yf_c00064{bottom:395.815772px;}
.ye_c00064{bottom:427.315770px;}
.yd_c00064{bottom:458.815769px;}
.yc_c00064{bottom:490.315768px;}
.yb_c00064{bottom:521.815766px;}
.ya_c00064{bottom:553.315765px;}
.y18_c00064{bottom:612.602553px;}
.y17_c00064{bottom:644.102552px;}
.y16_c00064{bottom:675.602551px;}
.y15_c00064{bottom:707.102549px;}
.y14_c00064{bottom:738.602548px;}
.y13_c00064{bottom:770.102547px;}
.y7_c00064{bottom:830.290044px;}
.y6_c00064{bottom:860.665043px;}
.y1e_c00064{bottom:887.287991px;}
.y5_c00064{bottom:891.040042px;}
.y1d_c00064{bottom:901.912960px;}
.y1c_c00064{bottom:916.537930px;}
.y4_c00064{bottom:921.415040px;}
.y1b_c00064{bottom:931.162899px;}
.y1a_c00064{bottom:945.787869px;}
.y3_c00064{bottom:951.790039px;}
.y19_c00064{bottom:960.412838px;}
.y2_c00064{bottom:982.165038px;}
.y9_c00064{bottom:1032.902183px;}
.y20_c00064{bottom:1109.325892px;}
.y8_c00064{bottom:1200.600303px;}
.h6_c00064{height:41.370031px;}
.h4_c00064{height:45.955303px;}
.h3_c00064{height:55.160154px;}
.h7_c00064{height:91.910607px;}
.h5_c00064{height:111.710342px;}
.h2_c00064{height:1304.999946px;}
.h0_c00064{height:1304.999953px;}
.h1_c00064{height:1305.000000px;}
.w2_c00064{width:934.874961px;}
.w0_c00064{width:934.875000px;}
.w1_c00064{width:935.250000px;}
.x0_c00064{left:0.000000px;}
.x1_c00064{left:88.695050px;}
.x6_c00064{left:89.864283px;}
.x3_c00064{left:91.147097px;}
.x5_c00064{left:456.319054px;}
.x4_c00064{left:598.182732px;}
.x2_c00064{left:636.058362px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws0_c00064{word-spacing:0.000000pt;}
._4_c00064{width:1.694395pt;}
._b_c00064{width:2.656622pt;}
._2_c00064{width:3.697875pt;}
._5_c00064{width:5.230714pt;}
._6_c00064{width:6.904661pt;}
._c_c00064{width:8.230709pt;}
._7_c00064{width:9.460203pt;}
._9_c00064{width:11.030762pt;}
._a_c00064{width:14.145812pt;}
._8_c00064{width:15.203125pt;}
._3_c00064{width:17.624998pt;}
._0_c00064{width:19.107117pt;}
._1_c00064{width:20.323116pt;}
._d_c00064{width:80.343582pt;}
._e_c00064{width:100.374789pt;}
.fs3_c00064{font-size:47.999900pt;}
.fs1_c00064{font-size:53.319997pt;}
.fs0_c00064{font-size:63.999997pt;}
.fs2_c00064{font-size:106.639996pt;}
.y0_c00064{bottom:0.000000pt;}
.y1_c00064{bottom:0.000007pt;}
.y1f_c00064{bottom:26.134367pt;}
.y12_c00064{bottom:267.836245pt;}
.y11_c00064{bottom:295.836244pt;}
.y10_c00064{bottom:323.836243pt;}
.yf_c00064{bottom:351.836241pt;}
.ye_c00064{bottom:379.836240pt;}
.yd_c00064{bottom:407.836239pt;}
.yc_c00064{bottom:435.836238pt;}
.yb_c00064{bottom:463.836237pt;}
.ya_c00064{bottom:491.836236pt;}
.y18_c00064{bottom:544.535603pt;}
.y17_c00064{bottom:572.535602pt;}
.y16_c00064{bottom:600.535601pt;}
.y15_c00064{bottom:628.535599pt;}
.y14_c00064{bottom:656.535598pt;}
.y13_c00064{bottom:684.535597pt;}
.y7_c00064{bottom:738.035595pt;}
.y6_c00064{bottom:765.035594pt;}
.y1e_c00064{bottom:788.700436pt;}
.y5_c00064{bottom:792.035593pt;}
.y1d_c00064{bottom:801.700409pt;}
.y1c_c00064{bottom:814.700382pt;}
.y4_c00064{bottom:819.035591pt;}
.y1b_c00064{bottom:827.700355pt;}
.y1a_c00064{bottom:840.700328pt;}
.y3_c00064{bottom:846.035590pt;}
.y19_c00064{bottom:853.700301pt;}
.y2_c00064{bottom:873.035589pt;}
.y9_c00064{bottom:918.135274pt;}
.y20_c00064{bottom:986.067460pt;}
.y8_c00064{bottom:1067.200269pt;}
.h6_c00064{height:36.773361pt;}
.h4_c00064{height:40.849158pt;}
.h3_c00064{height:49.031248pt;}
.h7_c00064{height:81.698317pt;}
.h5_c00064{height:99.298082pt;}
.h2_c00064{height:1159.999952pt;}
.h0_c00064{height:1159.999959pt;}
.h1_c00064{height:1160.000000pt;}
.w2_c00064{width:830.999965pt;}
.w0_c00064{width:831.000000pt;}
.w1_c00064{width:831.333333pt;}
.x0_c00064{left:0.000000pt;}
.x1_c00064{left:78.840045pt;}
.x6_c00064{left:79.879363pt;}
.x3_c00064{left:81.019641pt;}
.x5_c00064{left:405.616937pt;}
.x4_c00064{left:531.717984pt;}
.x2_c00064{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b16c986553f081d08d49ae0e.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.171387;font-style:normal;font-weight:normal;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_a93fb15967a612a2d5e231c4.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.000000;font-style:normal;font-weight:normal;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_2e80a4f15d31756e0af9da33.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00065;src:url('chunks/assets/font_4b3933569934e2153f8473bb.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:0.733887;font-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_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);}
.v0_c00065{vertical-align:0.000000px;}
.ls0_c00065{letter-spacing:0.000000px;}
.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.119970px;}
.ws1_c00065{word-spacing:0.000000px;}
._1_c00065{width:1.661134px;}
._9_c00065{width:2.698241px;}
._8_c00065{width:4.435524px;}
._3_c00065{width:5.835939px;}
._7_c00065{width:7.073408px;}
._a_c00065{width:8.492186px;}
._2_c00065{width:14.343749px;}
._5_c00065{width:16.338041px;}
._0_c00065{width:20.160461px;}
._4_c00065{width:23.639007px;}
._6_c00065{width:29.650725px;}
.fc3_c00065{color:rgb(239,244,7);}
.fc2_c00065{color:rgb(78,96,87);}
.fc1_c00065{color:rgb(102,141,85);}
.fc0_c00065{color:rgb(0,0,0);}
.fs3_c00065{font-size:59.984997px;}
.fs0_c00065{font-size:71.999997px;}
.fs4_c00065{font-size:80.919920px;}
.fs1_c00065{font-size:119.969995px;}
.fs2_c00065{font-size:244.045411px;}
.y0_c00065{bottom:0.000000px;}
.y1_c00065{bottom:0.000008px;}
.y11_c00065{bottom:29.401163px;}
.y14_c00065{bottom:99.047264px;}
.y13_c00065{bottom:123.797263px;}
.y12_c00065{bottom:148.547262px;}
.y15_c00065{bottom:240.137948px;}
.y16_c00065{bottom:252.172712px;}
.y17_c00065{bottom:268.459471px;}
.y18_c00065{bottom:280.494162px;}
.y19_c00065{bottom:292.528926px;}
.y1a_c00065{bottom:304.563689px;}
.y1b_c00065{bottom:319.103909px;}
.y6_c00065{bottom:618.962407px;}
.y5_c00065{bottom:649.337405px;}
.y4_c00065{bottom:679.712404px;}
.y3_c00065{bottom:710.087403px;}
.y2_c00065{bottom:740.462402px;}
.yc_c00065{bottom:790.100233px;}
.yb_c00065{bottom:820.475231px;}
.ya_c00065{bottom:850.850230px;}
.y9_c00065{bottom:881.225229px;}
.y8_c00065{bottom:911.600228px;}
.y7_c00065{bottom:941.975226px;}
.y10_c00065{bottom:1028.455740px;}
.ye_c00065{bottom:1032.069330px;}
.yd_c00065{bottom:1056.819329px;}
.yf_c00065{bottom:1118.813573px;}
.h6_c00065{height:55.855171px;}
.h7_c00065{height:58.595821px;}
.h3_c00065{height:67.042966px;}
.h4_c00065{height:91.149078px;}
.h5_c00065{height:185.417314px;}
.h2_c00065{height:1304.999946px;}
.h0_c00065{height:1304.999953px;}
.h1_c00065{height:1305.000000px;}
.w2_c00065{width:934.874961px;}
.w0_c00065{width:934.875000px;}
.w1_c00065{width:935.250000px;}
.x0_c00065{left:0.000000px;}
.x4_c00065{left:86.232064px;}
.x3_c00065{left:87.902647px;}
.x1_c00065{left:89.373870px;}
.xc_c00065{left:127.828229px;}
.x2_c00065{left:133.602006px;}
.xb_c00065{left:146.170870px;}
.xa_c00065{left:164.817098px;}
.x9_c00065{left:180.229298px;}
.x8_c00065{left:196.659463px;}
.x7_c00065{left:214.900303px;}
.x6_c00065{left:233.141124px;}
.x5_c00065{left:456.319054px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws0_c00065{word-spacing:-0.106640pt;}
.ws1_c00065{word-spacing:0.000000pt;}
._1_c00065{width:1.476563pt;}
._9_c00065{width:2.398437pt;}
._8_c00065{width:3.942688pt;}
._3_c00065{width:5.187501pt;}
._7_c00065{width:6.287474pt;}
._a_c00065{width:7.548609pt;}
._2_c00065{width:12.749999pt;}
._5_c00065{width:14.522703pt;}
._0_c00065{width:17.920410pt;}
._4_c00065{width:21.012451pt;}
._6_c00065{width:26.356200pt;}
.fs3_c00065{font-size:53.319997pt;}
.fs0_c00065{font-size:63.999997pt;}
.fs4_c00065{font-size:71.928818pt;}
.fs1_c00065{font-size:106.639996pt;}
.fs2_c00065{font-size:216.929254pt;}
.y0_c00065{bottom:0.000000pt;}
.y1_c00065{bottom:0.000007pt;}
.y11_c00065{bottom:26.134367pt;}
.y14_c00065{bottom:88.042012pt;}
.y13_c00065{bottom:110.042011pt;}
.y12_c00065{bottom:132.042010pt;}
.y15_c00065{bottom:213.455954pt;}
.y16_c00065{bottom:224.153521pt;}
.y17_c00065{bottom:238.630641pt;}
.y18_c00065{bottom:249.328144pt;}
.y19_c00065{bottom:260.025712pt;}
.y1a_c00065{bottom:270.723279pt;}
.y1b_c00065{bottom:283.647919pt;}
.y6_c00065{bottom:550.188806pt;}
.y5_c00065{bottom:577.188805pt;}
.y4_c00065{bottom:604.188804pt;}
.y3_c00065{bottom:631.188803pt;}
.y2_c00065{bottom:658.188801pt;}
.yc_c00065{bottom:702.311318pt;}
.yb_c00065{bottom:729.311317pt;}
.ya_c00065{bottom:756.311316pt;}
.y9_c00065{bottom:783.311315pt;}
.y8_c00065{bottom:810.311313pt;}
.y7_c00065{bottom:837.311312pt;}
.y10_c00065{bottom:914.182880pt;}
.ye_c00065{bottom:917.394960pt;}
.yd_c00065{bottom:939.394959pt;}
.yf_c00065{bottom:994.500954pt;}
.h6_c00065{height:49.649041pt;}
.h7_c00065{height:52.085174pt;}
.h3_c00065{height:59.593748pt;}
.h4_c00065{height:81.021403pt;}
.h5_c00065{height:164.815390pt;}
.h2_c00065{height:1159.999952pt;}
.h0_c00065{height:1159.999959pt;}
.h1_c00065{height:1160.000000pt;}
.w2_c00065{width:830.999965pt;}
.w0_c00065{width:831.000000pt;}
.w1_c00065{width:831.333333pt;}
.x0_c00065{left:0.000000pt;}
.x4_c00065{left:76.650723pt;}
.x3_c00065{left:78.135686pt;}
.x1_c00065{left:79.443440pt;}
.xc_c00065{left:113.625093pt;}
.x2_c00065{left:118.757339pt;}
.xb_c00065{left:129.929662pt;}
.xa_c00065{left:146.504087pt;}
.x9_c00065{left:160.203821pt;}
.x8_c00065{left:174.808412pt;}
.x7_c00065{left:191.022491pt;}
.x6_c00065{left:207.236555pt;}
.x5_c00065{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_658d89e9e189cf643f99c0a8.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.000000;font-style:normal;font-weight:normal;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_6e1b37bf7d357da568c75e05.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.171387;font-style:normal;font-weight:normal;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_17844963669dab73cc5a3484.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:0.729980;font-style:normal;font-weight:normal;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_1eec5259419d221cd9357155.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:0.716797;font-style:normal;font-weight: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_c00066;src:url('chunks/assets/font_874cf1db10d8c9f21445f602.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:1.006348;font-style:normal;font-weight: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_c00066;src:url('chunks/assets/font_abd6bfe5144ece765b7bf5a7.woff2')format("woff");}.ff6_c00066{font-family:ff6_c00066;line-height:0.734863;font-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_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;}
.ls2_c00066{letter-spacing:0.000000px;}
.ls0_c00066{letter-spacing:13.677714px;}
.ls1_c00066{letter-spacing:72.951149px;}
.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.056970px;}
.ws1_c00066{word-spacing:0.000000px;}
._2_c00066{width:1.043371px;}
._3_c00066{width:2.999144px;}
._5_c00066{width:5.519426px;}
._1_c00066{width:10.362391px;}
._0_c00066{width:13.593378px;}
._8_c00066{width:18.668724px;}
._7_c00066{width:23.182386px;}
._6_c00066{width:44.184791px;}
._4_c00066{width:72.874424px;}
.fc3_c00066{color:rgb(74,93,83);}
.fc2_c00066{color:rgb(34,135,65);}
.fc4_c00066{color:rgb(255,255,255);}
.fc1_c00066{color:rgb(0,0,0);}
.fc0_c00066{color:rgb(78,96,87);}
.fs0_c00066{font-size:56.969997px;}
.fs1_c00066{font-size:59.984997px;}
.fs3_c00066{font-size:71.999997px;}
.fs2_c00066{font-size:83.969997px;}
.y0_c00066{bottom:0.000000px;}
.y1_c00066{bottom:0.000008px;}
.y11_c00066{bottom:29.400983px;}
.yd_c00066{bottom:77.567505px;}
.yc_c00066{bottom:101.192504px;}
.yb_c00066{bottom:124.817503px;}
.ya_c00066{bottom:148.442502px;}
.y9_c00066{bottom:172.067501px;}
.y8_c00066{bottom:195.692500px;}
.y7_c00066{bottom:219.317499px;}
.y6_c00066{bottom:242.942498px;}
.y5_c00066{bottom:266.567497px;}
.y4_c00066{bottom:290.192496px;}
.y3_c00066{bottom:313.817495px;}
.yf_c00066{bottom:323.803103px;}
.y2_c00066{bottom:337.442494px;}
.y10_c00066{bottom:1136.992453px;}
.ye_c00066{bottom:1200.600036px;}
.h4_c00066{height:45.955303px;}
.h3_c00066{height:53.047746px;}
.h6_c00066{height:60.189431px;}
.h5_c00066{height:60.886448px;}
.h7_c00066{height:67.042966px;}
.h2_c00066{height:1304.999946px;}
.h0_c00066{height:1304.999953px;}
.h1_c00066{height:1305.000000px;}
.w2_c00066{width:934.874961px;}
.w0_c00066{width:934.875000px;}
.w1_c00066{width:935.250000px;}
.x0_c00066{left:0.000000px;}
.x3_c00066{left:455.186055px;}
.x5_c00066{left:456.319054px;}
.x1_c00066{left:507.962045px;}
.x2_c00066{left:636.058362px;}
.x4_c00066{left:742.585937px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls2_c00066{letter-spacing:0.000000pt;}
.ls0_c00066{letter-spacing:12.157968pt;}
.ls1_c00066{letter-spacing:64.845466pt;}
.ws0_c00066{word-spacing:-0.050640pt;}
.ws1_c00066{word-spacing:0.000000pt;}
._2_c00066{width:0.927441pt;}
._3_c00066{width:2.665906pt;}
._5_c00066{width:4.906157pt;}
._1_c00066{width:9.211014pt;}
._0_c00066{width:12.083003pt;}
._8_c00066{width:16.594421pt;}
._7_c00066{width:20.606565pt;}
._6_c00066{width:39.275370pt;}
._4_c00066{width:64.777266pt;}
.fs0_c00066{font-size:50.639997pt;}
.fs1_c00066{font-size:53.319997pt;}
.fs3_c00066{font-size:63.999997pt;}
.fs2_c00066{font-size:74.639997pt;}
.y0_c00066{bottom:0.000000pt;}
.y1_c00066{bottom:0.000007pt;}
.y11_c00066{bottom:26.134207pt;}
.yd_c00066{bottom:68.948893pt;}
.yc_c00066{bottom:89.948892pt;}
.yb_c00066{bottom:110.948891pt;}
.ya_c00066{bottom:131.948891pt;}
.y9_c00066{bottom:152.948890pt;}
.y8_c00066{bottom:173.948889pt;}
.y7_c00066{bottom:194.948888pt;}
.y6_c00066{bottom:215.948887pt;}
.y5_c00066{bottom:236.948886pt;}
.y4_c00066{bottom:257.948885pt;}
.y3_c00066{bottom:278.948884pt;}
.yf_c00066{bottom:287.824980pt;}
.y2_c00066{bottom:299.948884pt;}
.y10_c00066{bottom:1010.659958pt;}
.ye_c00066{bottom:1067.200032pt;}
.h4_c00066{height:40.849158pt;}
.h3_c00066{height:47.153552pt;}
.h6_c00066{height:53.501717pt;}
.h5_c00066{height:54.121287pt;}
.h7_c00066{height:59.593748pt;}
.h2_c00066{height:1159.999952pt;}
.h0_c00066{height:1159.999959pt;}
.h1_c00066{height:1160.000000pt;}
.w2_c00066{width:830.999965pt;}
.w0_c00066{width:831.000000pt;}
.w1_c00066{width:831.333333pt;}
.x0_c00066{left:0.000000pt;}
.x3_c00066{left:404.609826pt;}
.x5_c00066{left:405.616937pt;}
.x1_c00066{left:451.521818pt;}
.x2_c00066{left:565.385211pt;}
.x4_c00066{left:660.076388pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42d1278c090aed5aeed2e9d2.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.006348;font-style:normal;font-weight:normal;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_44db4858f600170a87513d18.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.171387;font-style:normal;font-weight:normal;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_294c2415d03e77dd1e8acf71.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:0.734863;font-style:normal;font-weight:normal;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_67d77c3fca8038769b5266d5.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:1.000000;font-style:normal;font-weight: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_9d3943edc6e7d278f71d299d.woff2')format("woff");}.ff5_c00067{font-family:ff5_c00067;line-height:1.000000;font-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_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);}
.v0_c00067{vertical-align:0.000000px;}
.ls0_c00067{letter-spacing:0.000000px;}
.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:-15.582041px;}
.ws1_c00067{word-spacing:0.000000px;}
._f_c00067{width:1.915033px;}
._8_c00067{width:3.496966px;}
._17_c00067{width:4.626834px;}
._16_c00067{width:6.038392px;}
._3_c00067{width:8.971131px;}
._13_c00067{width:10.172058px;}
._7_c00067{width:12.109856px;}
._e_c00067{width:14.048367px;}
._c_c00067{width:17.669917px;}
._1_c00067{width:19.451973px;}
._d_c00067{width:22.267374px;}
._4_c00067{width:23.969580px;}
._2_c00067{width:26.333459px;}
._10_c00067{width:27.730302px;}
._6_c00067{width:39.742369px;}
._9_c00067{width:40.996751px;}
._b_c00067{width:44.527328px;}
._5_c00067{width:45.879167px;}
._0_c00067{width:57.214040px;}
._a_c00067{width:65.662937px;}
._12_c00067{width:69.009968px;}
._15_c00067{width:71.126386px;}
._11_c00067{width:74.120600px;}
._14_c00067{width:90.014621px;}
.fc3_c00067{color:rgb(78,96,87);}
.fc2_c00067{color:rgb(255,255,255);}
.fc1_c00067{color:rgb(0,0,0);}
.fc0_c00067{color:rgb(74,93,83);}
.fs0_c00067{font-size:59.984997px;}
.fs2_c00067{font-size:71.999997px;}
.fs1_c00067{font-size:119.969995px;}
.y0_c00067{bottom:0.000000px;}
.y1_c00067{bottom:0.000008px;}
.y30_c00067{bottom:29.401163px;}
.y2f_c00067{bottom:63.243645px;}
.y2e_c00067{bottom:83.493645px;}
.y2d_c00067{bottom:103.743644px;}
.y2c_c00067{bottom:123.993643px;}
.y29_c00067{bottom:462.802841px;}
.y28_c00067{bottom:479.677840px;}
.y27_c00067{bottom:496.552839px;}
.y26_c00067{bottom:513.427839px;}
.y25_c00067{bottom:530.302838px;}
.y24_c00067{bottom:547.177837px;}
.y2a_c00067{bottom:547.260097px;}
.y23_c00067{bottom:564.052836px;}
.y22_c00067{bottom:580.927836px;}
.y2b_c00067{bottom:581.010096px;}
.y1e_c00067{bottom:587.197596px;}
.y21_c00067{bottom:597.802835px;}
.y1d_c00067{bottom:604.072595px;}
.y20_c00067{bottom:614.677834px;}
.y1f_c00067{bottom:631.552834px;}
.y1a_c00067{bottom:744.910633px;}
.y1c_c00067{bottom:746.736647px;}
.y17_c00067{bottom:752.924147px;}
.y1b_c00067{bottom:755.598133px;}
.y19_c00067{bottom:761.785633px;}
.y18_c00067{bottom:778.660632px;}
.y14_c00067{bottom:890.386836px;}
.y10_c00067{bottom:906.837853px;}
.y13_c00067{bottom:907.261835px;}
.y16_c00067{bottom:909.088205px;}
.y15_c00067{bottom:917.949335px;}
.yf_c00067{bottom:923.712852px;}
.y12_c00067{bottom:924.136835px;}
.y11_c00067{bottom:941.011834px;}
.y9_c00067{bottom:1027.099469px;}
.y8_c00067{bottom:1043.974469px;}
.y7_c00067{bottom:1060.849468px;}
.yc_c00067{bottom:1069.710950px;}
.ye_c00067{bottom:1071.536967px;}
.y6_c00067{bottom:1077.724467px;}
.yd_c00067{bottom:1080.398450px;}
.yb_c00067{bottom:1086.585950px;}
.y5_c00067{bottom:1094.599466px;}
.ya_c00067{bottom:1103.460949px;}
.y4_c00067{bottom:1111.474466px;}
.y3_c00067{bottom:1128.349465px;}
.y2_c00067{bottom:1200.600126px;}
.h3_c00067{height:45.955303px;}
.h4_c00067{height:55.855171px;}
.h6_c00067{height:67.042966px;}
.h5_c00067{height:86.989962px;}
.h2_c00067{height:1304.999946px;}
.h0_c00067{height:1304.999953px;}
.h1_c00067{height:1305.000000px;}
.w2_c00067{width:934.874961px;}
.w0_c00067{width:934.875000px;}
.w1_c00067{width:935.250000px;}
.x0_c00067{left:0.000000px;}
.x5_c00067{left:109.241812px;}
.x9_c00067{left:110.826600px;}
.x2_c00067{left:163.337480px;}
.x6_c00067{left:164.922290px;}
.xb_c00067{left:300.198767px;}
.xc_c00067{left:456.319054px;}
.x4_c00067{left:490.640473px;}
.x8_c00067{left:492.225272px;}
.xa_c00067{left:539.659929px;}
.x3_c00067{left:544.330479px;}
.x7_c00067{left:545.915281px;}
.x1_c00067{left:626.372816px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.ws0_c00067{word-spacing:-13.850703pt;}
.ws1_c00067{word-spacing:0.000000pt;}
._f_c00067{width:1.702252pt;}
._8_c00067{width:3.108414pt;}
._17_c00067{width:4.112741pt;}
._16_c00067{width:5.367459pt;}
._3_c00067{width:7.974338pt;}
._13_c00067{width:9.041829pt;}
._7_c00067{width:10.764316pt;}
._e_c00067{width:12.487437pt;}
._c_c00067{width:15.706593pt;}
._1_c00067{width:17.290643pt;}
._d_c00067{width:19.793221pt;}
._4_c00067{width:21.306293pt;}
._2_c00067{width:23.407519pt;}
._10_c00067{width:24.649157pt;}
._6_c00067{width:35.326551pt;}
._9_c00067{width:36.441557pt;}
._b_c00067{width:39.579847pt;}
._5_c00067{width:40.781481pt;}
._0_c00067{width:50.856925pt;}
._a_c00067{width:58.367055pt;}
._12_c00067{width:61.342194pt;}
._15_c00067{width:63.223454pt;}
._11_c00067{width:65.884978pt;}
._14_c00067{width:80.012997pt;}
.fs0_c00067{font-size:53.319997pt;}
.fs2_c00067{font-size:63.999997pt;}
.fs1_c00067{font-size:106.639996pt;}
.y0_c00067{bottom:0.000000pt;}
.y1_c00067{bottom:0.000007pt;}
.y30_c00067{bottom:26.134367pt;}
.y2f_c00067{bottom:56.216574pt;}
.y2e_c00067{bottom:74.216573pt;}
.y2d_c00067{bottom:92.216572pt;}
.y2c_c00067{bottom:110.216571pt;}
.y29_c00067{bottom:411.380303pt;}
.y28_c00067{bottom:426.380302pt;}
.y27_c00067{bottom:441.380302pt;}
.y26_c00067{bottom:456.380301pt;}
.y25_c00067{bottom:471.380300pt;}
.y24_c00067{bottom:486.380300pt;}
.y2a_c00067{bottom:486.453420pt;}
.y23_c00067{bottom:501.380299pt;}
.y22_c00067{bottom:516.380298pt;}
.y2b_c00067{bottom:516.453418pt;}
.y1e_c00067{bottom:521.953418pt;}
.y21_c00067{bottom:531.380298pt;}
.y1d_c00067{bottom:536.953418pt;}
.y20_c00067{bottom:546.380297pt;}
.y1f_c00067{bottom:561.380297pt;}
.y1a_c00067{bottom:662.142785pt;}
.y1c_c00067{bottom:663.765908pt;}
.y17_c00067{bottom:669.265908pt;}
.y1b_c00067{bottom:671.642785pt;}
.y19_c00067{bottom:677.142785pt;}
.y18_c00067{bottom:692.142784pt;}
.y14_c00067{bottom:791.454965pt;}
.y10_c00067{bottom:806.078091pt;}
.y13_c00067{bottom:806.454965pt;}
.y16_c00067{bottom:808.078405pt;}
.y15_c00067{bottom:815.954964pt;}
.yf_c00067{bottom:821.078091pt;}
.y12_c00067{bottom:821.454964pt;}
.y11_c00067{bottom:836.454964pt;}
.y9_c00067{bottom:912.977306pt;}
.y8_c00067{bottom:927.977305pt;}
.y7_c00067{bottom:942.977305pt;}
.yc_c00067{bottom:950.854178pt;}
.ye_c00067{bottom:952.477304pt;}
.y6_c00067{bottom:957.977304pt;}
.yd_c00067{bottom:960.354178pt;}
.yb_c00067{bottom:965.854177pt;}
.y5_c00067{bottom:972.977303pt;}
.ya_c00067{bottom:980.854177pt;}
.y4_c00067{bottom:987.977303pt;}
.y3_c00067{bottom:1002.977302pt;}
.y2_c00067{bottom:1067.200112pt;}
.h3_c00067{height:40.849158pt;}
.h4_c00067{height:49.649041pt;}
.h6_c00067{height:59.593748pt;}
.h5_c00067{height:77.324411pt;}
.h2_c00067{height:1159.999952pt;}
.h0_c00067{height:1159.999959pt;}
.h1_c00067{height:1160.000000pt;}
.w2_c00067{width:830.999965pt;}
.w0_c00067{width:831.000000pt;}
.w1_c00067{width:831.333333pt;}
.x0_c00067{left:0.000000pt;}
.x5_c00067{left:97.103833pt;}
.x9_c00067{left:98.512533pt;}
.x2_c00067{left:145.188871pt;}
.x6_c00067{left:146.597591pt;}
.xb_c00067{left:266.843349pt;}
.xc_c00067{left:405.616937pt;}
.x4_c00067{left:436.124865pt;}
.x8_c00067{left:437.533575pt;}
.xa_c00067{left:479.697714pt;}
.x3_c00067{left:483.849314pt;}
.x7_c00067{left:485.258028pt;}
.x1_c00067{left:556.775836pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b0e5d1889995833075842f7.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.171387;font-style:normal;font-weight:normal;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_42bfa4db8fab3ab439ab2462.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:0.734863;font-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_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;}
.v2_c00068{vertical-align:1.153152px;}
.v1_c00068{vertical-align:56.756158px;}
.ls0_c00068{letter-spacing:0.000000px;}
.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:-15.582041px;}
.ws1_c00068{word-spacing:-0.119970px;}
.ws2_c00068{word-spacing:0.000000px;}
._e_c00068{margin-left:-1669.994974px;}
._4_c00068{width:1.266041px;}
._1_c00068{width:3.129759px;}
._9_c00068{width:4.293149px;}
._f_c00068{width:7.046130px;}
._a_c00068{width:8.442222px;}
._6_c00068{width:9.529374px;}
._5_c00068{width:13.280785px;}
._b_c00068{width:14.323390px;}
._2_c00068{width:16.952280px;}
._d_c00068{width:22.034691px;}
._7_c00068{width:23.926860px;}
._c_c00068{width:49.136791px;}
._0_c00068{width:50.337002px;}
._11_c00068{width:57.477768px;}
._8_c00068{width:89.557631px;}
._3_c00068{width:99.302219px;}
._12_c00068{width:495.575867px;}
._10_c00068{width:728.912452px;}
.fc1_c00068{color:rgb(255,255,255);}
.fc0_c00068{color:rgb(0,0,0);}
.fs0_c00068{font-size:59.984997px;}
.fs2_c00068{font-size:71.999997px;}
.fs1_c00068{font-size:119.969995px;}
.y0_c00068{bottom:0.000000px;}
.y1_c00068{bottom:0.000008px;}
.y28_c00068{bottom:29.401163px;}
.y27_c00068{bottom:218.184615px;}
.y26_c00068{bottom:224.083827px;}
.y23_c00068{bottom:384.585788px;}
.y22_c00068{bottom:387.271748px;}
.y24_c00068{bottom:387.285464px;}
.y25_c00068{bottom:387.286148px;}
.y21_c00068{bottom:404.146747px;}
.y1c_c00068{bottom:553.687357px;}
.y1f_c00068{bottom:556.386997px;}
.y1e_c00068{bottom:557.009977px;}
.y1b_c00068{bottom:570.562356px;}
.y1d_c00068{bottom:573.884976px;}
.y15_c00068{bottom:722.788915px;}
.y18_c00068{bottom:723.662898px;}
.y1a_c00068{bottom:725.488562px;}
.y19_c00068{bottom:734.376415px;}
.y14_c00068{bottom:739.663914px;}
.y17_c00068{bottom:740.537897px;}
.y16_c00068{bottom:757.412896px;}
.yf_c00068{bottom:866.577971px;}
.ye_c00068{bottom:883.452970px;}
.y12_c00068{bottom:892.764456px;}
.y20_c00068{bottom:894.140470px;}
.yd_c00068{bottom:900.327969px;}
.y13_c00068{bottom:903.451956px;}
.y11_c00068{bottom:909.639455px;}
.yc_c00068{bottom:917.202969px;}
.y10_c00068{bottom:926.514455px;}
.yb_c00068{bottom:934.077968px;}
.y5_c00068{bottom:1041.289409px;}
.y4_c00068{bottom:1058.164408px;}
.y8_c00068{bottom:1058.588394px;}
.ya_c00068{bottom:1060.414408px;}
.y9_c00068{bottom:1069.275894px;}
.y3_c00068{bottom:1075.039407px;}
.y7_c00068{bottom:1075.463394px;}
.y2_c00068{bottom:1091.914407px;}
.y6_c00068{bottom:1092.338393px;}
.h3_c00068{height:55.855171px;}
.h6_c00068{height:57.008323px;}
.h7_c00068{height:67.042966px;}
.h4_c00068{height:86.989962px;}
.h5_c00068{height:112.611328px;}
.h2_c00068{height:1304.999946px;}
.h0_c00068{height:1304.999953px;}
.h1_c00068{height:1305.000000px;}
.w2_c00068{width:934.874961px;}
.w0_c00068{width:934.875000px;}
.w1_c00068{width:935.250000px;}
.x0_c00068{left:0.000000px;}
.x8_c00068{left:102.373369px;}
.x4_c00068{left:109.241812px;}
.x5_c00068{left:163.328692px;}
.x1_c00068{left:164.922290px;}
.xa_c00068{left:456.319054px;}
.x3_c00068{left:482.141979px;}
.x7_c00068{left:483.726778px;}
.x9_c00068{left:542.917111px;}
.x2_c00068{left:544.330479px;}
.x6_c00068{left:545.915281px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.v2_c00068{vertical-align:1.025024pt;}
.v1_c00068{vertical-align:50.449918pt;}
.ls0_c00068{letter-spacing:0.000000pt;}
.ws0_c00068{word-spacing:-13.850703pt;}
.ws1_c00068{word-spacing:-0.106640pt;}
.ws2_c00068{word-spacing:0.000000pt;}
._e_c00068{margin-left:-1484.439977pt;}
._4_c00068{width:1.125370pt;}
._1_c00068{width:2.782008pt;}
._9_c00068{width:3.816132pt;}
._f_c00068{width:6.263226pt;}
._a_c00068{width:7.504197pt;}
._6_c00068{width:8.470554pt;}
._5_c00068{width:11.805143pt;}
._b_c00068{width:12.731903pt;}
._2_c00068{width:15.068693pt;}
._d_c00068{width:19.586392pt;}
._7_c00068{width:21.268320pt;}
._c_c00068{width:43.677148pt;}
._0_c00068{width:44.744002pt;}
._11_c00068{width:51.091349pt;}
._8_c00068{width:79.606783pt;}
._3_c00068{width:88.268639pt;}
._12_c00068{width:440.511881pt;}
._10_c00068{width:647.922180pt;}
.fs0_c00068{font-size:53.319997pt;}
.fs2_c00068{font-size:63.999997pt;}
.fs1_c00068{font-size:106.639996pt;}
.y0_c00068{bottom:0.000000pt;}
.y1_c00068{bottom:0.000007pt;}
.y28_c00068{bottom:26.134367pt;}
.y27_c00068{bottom:193.941880pt;}
.y26_c00068{bottom:199.185624pt;}
.y23_c00068{bottom:341.854034pt;}
.y22_c00068{bottom:344.241554pt;}
.y24_c00068{bottom:344.253746pt;}
.y25_c00068{bottom:344.254354pt;}
.y21_c00068{bottom:359.241553pt;}
.y1c_c00068{bottom:492.166539pt;}
.y1f_c00068{bottom:494.566219pt;}
.y1e_c00068{bottom:495.119979pt;}
.y1b_c00068{bottom:507.166539pt;}
.y1d_c00068{bottom:510.119979pt;}
.y15_c00068{bottom:642.479036pt;}
.y18_c00068{bottom:643.255909pt;}
.y1a_c00068{bottom:644.878722pt;}
.y19_c00068{bottom:652.779035pt;}
.y14_c00068{bottom:657.479035pt;}
.y17_c00068{bottom:658.255909pt;}
.y16_c00068{bottom:673.255908pt;}
.yf_c00068{bottom:770.291530pt;}
.ye_c00068{bottom:785.291529pt;}
.y12_c00068{bottom:793.568405pt;}
.y20_c00068{bottom:794.791528pt;}
.yd_c00068{bottom:800.291528pt;}
.y13_c00068{bottom:803.068405pt;}
.y11_c00068{bottom:808.568405pt;}
.yc_c00068{bottom:815.291528pt;}
.y10_c00068{bottom:823.568404pt;}
.yb_c00068{bottom:830.291527pt;}
.y5_c00068{bottom:925.590585pt;}
.y4_c00068{bottom:940.590585pt;}
.y8_c00068{bottom:940.967462pt;}
.ya_c00068{bottom:942.590585pt;}
.y9_c00068{bottom:950.467461pt;}
.y3_c00068{bottom:955.590584pt;}
.y7_c00068{bottom:955.967461pt;}
.y2_c00068{bottom:970.590584pt;}
.y6_c00068{bottom:970.967460pt;}
.h3_c00068{height:49.649041pt;}
.h6_c00068{height:50.674064pt;}
.h7_c00068{height:59.593748pt;}
.h4_c00068{height:77.324411pt;}
.h5_c00068{height:100.098958pt;}
.h2_c00068{height:1159.999952pt;}
.h0_c00068{height:1159.999959pt;}
.h1_c00068{height:1160.000000pt;}
.w2_c00068{width:830.999965pt;}
.w0_c00068{width:831.000000pt;}
.w1_c00068{width:831.333333pt;}
.x0_c00068{left:0.000000pt;}
.x8_c00068{left:90.998550pt;}
.x4_c00068{left:97.103833pt;}
.x5_c00068{left:145.181060pt;}
.x1_c00068{left:146.597591pt;}
.xa_c00068{left:405.616937pt;}
.x3_c00068{left:428.570648pt;}
.x7_c00068{left:429.979358pt;}
.x9_c00068{left:482.592988pt;}
.x2_c00068{left:483.849314pt;}
.x6_c00068{left:485.258028pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b208218051b7fbaf69065750.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.171387;font-style:normal;font-weight:normal;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_42bfa4db8fab3ab439ab2462.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:0.734863;font-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_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);}
.v0_c00069{vertical-align:0.000000px;}
.v1_c00069{vertical-align:15.502507px;}
.v2_c00069{vertical-align:17.614655px;}
.ls0_c00069{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00069{word-spacing:-15.582041px;}
.ws0_c00069{word-spacing:-0.119970px;}
.ws2_c00069{word-spacing:0.000000px;}
._a_c00069{margin-left:-1669.994974px;}
._b_c00069{width:6.170362px;}
._9_c00069{width:8.332471px;}
._d_c00069{width:16.907229px;}
._6_c00069{width:21.814893px;}
._0_c00069{width:31.512794px;}
._e_c00069{width:35.730862px;}
._5_c00069{width:36.949658px;}
._c_c00069{width:40.194901px;}
._f_c00069{width:57.316798px;}
._1_c00069{width:70.187888px;}
._3_c00069{width:71.795413px;}
._2_c00069{width:73.897048px;}
._4_c00069{width:133.981375px;}
._7_c00069{width:434.267835px;}
._8_c00069{width:450.201349px;}
.fc1_c00069{color:rgb(255,255,255);}
.fc0_c00069{color:rgb(0,0,0);}
.fs0_c00069{font-size:59.984997px;}
.fs2_c00069{font-size:71.999997px;}
.fs1_c00069{font-size:119.969995px;}
.y0_c00069{bottom:0.000000px;}
.y1_c00069{bottom:0.000008px;}
.y23_c00069{bottom:29.401163px;}
.y1f_c00069{bottom:215.484615px;}
.y21_c00069{bottom:216.384615px;}
.y22_c00069{bottom:218.184615px;}
.y1e_c00069{bottom:232.359614px;}
.y20_c00069{bottom:233.259614px;}
.y1b_c00069{bottom:374.643272px;}
.y18_c00069{bottom:384.585464px;}
.y1c_c00069{bottom:387.285464px;}
.y1d_c00069{bottom:387.286148px;}
.y1a_c00069{bottom:391.518272px;}
.y17_c00069{bottom:401.460463px;}
.y19_c00069{bottom:408.393271px;}
.y14_c00069{bottom:549.815593px;}
.y15_c00069{bottom:556.386997px;}
.y13_c00069{bottom:562.286929px;}
.y12_c00069{bottom:725.488562px;}
.y10_c00069{bottom:731.676062px;}
.y11_c00069{bottom:734.376062px;}
.y16_c00069{bottom:894.140470px;}
.yc_c00069{bottom:894.576408px;}
.ye_c00069{bottom:896.215743px;}
.yf_c00069{bottom:903.451956px;}
.yb_c00069{bottom:911.451407px;}
.yd_c00069{bottom:913.090743px;}
.y5_c00069{bottom:1041.289059px;}
.y4_c00069{bottom:1058.164059px;}
.y8_c00069{bottom:1058.588041px;}
.ya_c00069{bottom:1060.414059px;}
.y9_c00069{bottom:1069.275541px;}
.y3_c00069{bottom:1075.039058px;}
.y7_c00069{bottom:1075.463041px;}
.y2_c00069{bottom:1091.914057px;}
.y6_c00069{bottom:1092.338040px;}
.h3_c00069{height:55.855171px;}
.h7_c00069{height:67.042966px;}
.h5_c00069{height:71.357677px;}
.h6_c00069{height:73.469826px;}
.h4_c00069{height:86.989962px;}
.h2_c00069{height:1304.999946px;}
.h0_c00069{height:1304.999953px;}
.h1_c00069{height:1305.000000px;}
.w2_c00069{width:934.874961px;}
.w0_c00069{width:934.875000px;}
.w1_c00069{width:935.250000px;}
.x0_c00069{left:0.000000px;}
.x4_c00069{left:101.122963px;}
.x7_c00069{left:102.373369px;}
.x8_c00069{left:163.328692px;}
.x1_c00069{left:164.922290px;}
.x9_c00069{left:456.319054px;}
.x3_c00069{left:482.141979px;}
.x6_c00069{left:483.726778px;}
.x2_c00069{left:544.330479px;}
.x5_c00069{left:546.292111px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.v1_c00069{vertical-align:13.780006pt;}
.v2_c00069{vertical-align:15.657471pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ws1_c00069{word-spacing:-13.850703pt;}
.ws0_c00069{word-spacing:-0.106640pt;}
.ws2_c00069{word-spacing:0.000000pt;}
._a_c00069{margin-left:-1484.439977pt;}
._b_c00069{width:5.484766pt;}
._9_c00069{width:7.406641pt;}
._d_c00069{width:15.028648pt;}
._6_c00069{width:19.391016pt;}
._0_c00069{width:28.011373pt;}
._e_c00069{width:31.760766pt;}
._5_c00069{width:32.844140pt;}
._c_c00069{width:35.728801pt;}
._f_c00069{width:50.948265pt;}
._1_c00069{width:62.389234pt;}
._3_c00069{width:63.818145pt;}
._2_c00069{width:65.686265pt;}
._4_c00069{width:119.094555pt;}
._7_c00069{width:386.015853pt;}
._8_c00069{width:400.178977pt;}
.fs0_c00069{font-size:53.319997pt;}
.fs2_c00069{font-size:63.999997pt;}
.fs1_c00069{font-size:106.639996pt;}
.y0_c00069{bottom:0.000000pt;}
.y1_c00069{bottom:0.000007pt;}
.y23_c00069{bottom:26.134367pt;}
.y1f_c00069{bottom:191.541880pt;}
.y21_c00069{bottom:192.341880pt;}
.y22_c00069{bottom:193.941880pt;}
.y1e_c00069{bottom:206.541879pt;}
.y20_c00069{bottom:207.341879pt;}
.y1b_c00069{bottom:333.016242pt;}
.y18_c00069{bottom:341.853746pt;}
.y1c_c00069{bottom:344.253746pt;}
.y1d_c00069{bottom:344.254354pt;}
.y1a_c00069{bottom:348.016241pt;}
.y17_c00069{bottom:356.853745pt;}
.y19_c00069{bottom:363.016241pt;}
.y14_c00069{bottom:488.724972pt;}
.y15_c00069{bottom:494.566219pt;}
.y13_c00069{bottom:499.810603pt;}
.y12_c00069{bottom:644.878722pt;}
.y10_c00069{bottom:650.378722pt;}
.y11_c00069{bottom:652.778722pt;}
.y16_c00069{bottom:794.791528pt;}
.yc_c00069{bottom:795.179029pt;}
.ye_c00069{bottom:796.636216pt;}
.yf_c00069{bottom:803.068405pt;}
.yb_c00069{bottom:810.179029pt;}
.yd_c00069{bottom:811.636216pt;}
.y5_c00069{bottom:925.590275pt;}
.y4_c00069{bottom:940.590274pt;}
.y8_c00069{bottom:940.967148pt;}
.ya_c00069{bottom:942.590274pt;}
.y9_c00069{bottom:950.467148pt;}
.y3_c00069{bottom:955.590274pt;}
.y7_c00069{bottom:955.967147pt;}
.y2_c00069{bottom:970.590273pt;}
.y6_c00069{bottom:970.967147pt;}
.h3_c00069{height:49.649041pt;}
.h7_c00069{height:59.593748pt;}
.h5_c00069{height:63.429046pt;}
.h6_c00069{height:65.306512pt;}
.h4_c00069{height:77.324411pt;}
.h2_c00069{height:1159.999952pt;}
.h0_c00069{height:1159.999959pt;}
.h1_c00069{height:1160.000000pt;}
.w2_c00069{width:830.999965pt;}
.w0_c00069{width:831.000000pt;}
.w1_c00069{width:831.333333pt;}
.x0_c00069{left:0.000000pt;}
.x4_c00069{left:89.887078pt;}
.x7_c00069{left:90.998550pt;}
.x8_c00069{left:145.181060pt;}
.x1_c00069{left:146.597591pt;}
.x9_c00069{left:405.616937pt;}
.x3_c00069{left:428.570648pt;}
.x6_c00069{left:429.979358pt;}
.x2_c00069{left:483.849314pt;}
.x5_c00069{left:485.592988pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2122492681962174a5bfc2fa.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.006348;font-style:normal;font-weight:normal;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_b343b656f231591a0e3d13bd.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:0.724121;font-style:normal;font-weight:normal;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_fc32ef1da51110f62d763407.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.005371;font-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_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);}
.v0_c00070{vertical-align:0.000000px;}
.ls0_c00070{letter-spacing:0.000000px;}
.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:-18.703125px;}
.ws1_c00070{word-spacing:0.000000px;}
._0_c00070{width:1.010729px;}
._8_c00070{width:2.039624px;}
._5_c00070{width:3.510543px;}
._9_c00070{width:4.883971px;}
._f_c00070{width:6.251356px;}
._1_c00070{width:8.117866px;}
._c_c00070{width:9.457031px;}
._7_c00070{width:12.759175px;}
._2_c00070{width:13.931897px;}
._4_c00070{width:15.978516px;}
._6_c00070{width:20.819501px;}
._d_c00070{width:22.675780px;}
._10_c00070{width:23.814719px;}
._a_c00070{width:28.631194px;}
._e_c00070{width:30.360920px;}
._b_c00070{width:34.584136px;}
._3_c00070{width:40.406202px;}
.fc1_c00070{color:rgb(78,96,87);}
.fc0_c00070{color:rgb(0,0,0);}
.fs0_c00070{font-size:71.999997px;}
.fs1_c00070{font-size:244.045411px;}
.y0_c00070{bottom:0.000000px;}
.y1_c00070{bottom:0.000008px;}
.y21_c00070{bottom:29.401163px;}
.y24_c00070{bottom:55.628962px;}
.y23_c00070{bottom:86.003960px;}
.y22_c00070{bottom:116.378959px;}
.y19_c00070{bottom:167.169377px;}
.y18_c00070{bottom:197.544376px;}
.y17_c00070{bottom:227.919375px;}
.y16_c00070{bottom:258.294373px;}
.y15_c00070{bottom:288.669372px;}
.y20_c00070{bottom:339.294370px;}
.y1f_c00070{bottom:369.669369px;}
.y1e_c00070{bottom:400.044367px;}
.y1d_c00070{bottom:430.419366px;}
.y1c_c00070{bottom:460.794365px;}
.y1b_c00070{bottom:491.169364px;}
.y1a_c00070{bottom:521.544362px;}
.y14_c00070{bottom:572.169396px;}
.y13_c00070{bottom:602.544395px;}
.y12_c00070{bottom:632.919394px;}
.y11_c00070{bottom:663.294392px;}
.y10_c00070{bottom:693.669391px;}
.yf_c00070{bottom:744.294389px;}
.ye_c00070{bottom:774.669388px;}
.yd_c00070{bottom:805.044386px;}
.yc_c00070{bottom:835.419385px;}
.yb_c00070{bottom:865.794384px;}
.ya_c00070{bottom:896.169383px;}
.y8_c00070{bottom:956.462961px;}
.y9_c00070{bottom:957.035357px;}
.y7_c00070{bottom:1048.347306px;}
.y6_c00070{bottom:1078.722304px;}
.y5_c00070{bottom:1109.097303px;}
.y4_c00070{bottom:1139.472302px;}
.y3_c00070{bottom:1169.847300px;}
.y2_c00070{bottom:1200.222299px;}
.h3_c00070{height:55.160154px;}
.h4_c00070{height:176.718430px;}
.h2_c00070{height:1304.999946px;}
.h0_c00070{height:1304.999953px;}
.h1_c00070{height:1305.000000px;}
.w2_c00070{width:934.874961px;}
.w0_c00070{width:934.875000px;}
.w1_c00070{width:935.250000px;}
.x0_c00070{left:0.000000px;}
.x1_c00070{left:87.902647px;}
.x4_c00070{left:88.997051px;}
.x3_c00070{left:90.915793px;}
.x2_c00070{left:138.129273px;}
.x5_c00070{left:456.319054px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ws0_c00070{word-spacing:-16.625000pt;}
.ws1_c00070{word-spacing:0.000000pt;}
._0_c00070{width:0.898426pt;}
._8_c00070{width:1.812999pt;}
._5_c00070{width:3.120483pt;}
._9_c00070{width:4.341307pt;}
._f_c00070{width:5.556761pt;}
._1_c00070{width:7.215881pt;}
._c_c00070{width:8.406250pt;}
._7_c00070{width:11.341489pt;}
._2_c00070{width:12.383909pt;}
._4_c00070{width:14.203125pt;}
._6_c00070{width:18.506223pt;}
._d_c00070{width:20.156249pt;}
._10_c00070{width:21.168639pt;}
._a_c00070{width:25.449950pt;}
._e_c00070{width:26.987485pt;}
._b_c00070{width:30.741454pt;}
._3_c00070{width:35.916624pt;}
.fs0_c00070{font-size:63.999997pt;}
.fs1_c00070{font-size:216.929254pt;}
.y0_c00070{bottom:0.000000pt;}
.y1_c00070{bottom:0.000007pt;}
.y21_c00070{bottom:26.134367pt;}
.y24_c00070{bottom:49.447966pt;}
.y23_c00070{bottom:76.447965pt;}
.y22_c00070{bottom:103.447964pt;}
.y19_c00070{bottom:148.595002pt;}
.y18_c00070{bottom:175.595001pt;}
.y17_c00070{bottom:202.595000pt;}
.y16_c00070{bottom:229.594998pt;}
.y15_c00070{bottom:256.594997pt;}
.y20_c00070{bottom:301.594995pt;}
.y1f_c00070{bottom:328.594994pt;}
.y1e_c00070{bottom:355.594993pt;}
.y1d_c00070{bottom:382.594992pt;}
.y1c_c00070{bottom:409.594991pt;}
.y1b_c00070{bottom:436.594990pt;}
.y1a_c00070{bottom:463.594989pt;}
.y14_c00070{bottom:508.595019pt;}
.y13_c00070{bottom:535.595018pt;}
.y12_c00070{bottom:562.595017pt;}
.y11_c00070{bottom:589.595015pt;}
.y10_c00070{bottom:616.595014pt;}
.yf_c00070{bottom:661.595012pt;}
.ye_c00070{bottom:688.595011pt;}
.yd_c00070{bottom:715.595010pt;}
.yc_c00070{bottom:742.595009pt;}
.yb_c00070{bottom:769.595008pt;}
.ya_c00070{bottom:796.595007pt;}
.y8_c00070{bottom:850.189299pt;}
.y9_c00070{bottom:850.698095pt;}
.y7_c00070{bottom:931.864272pt;}
.y6_c00070{bottom:958.864270pt;}
.y5_c00070{bottom:985.864269pt;}
.y4_c00070{bottom:1012.864268pt;}
.y3_c00070{bottom:1039.864267pt;}
.y2_c00070{bottom:1066.864266pt;}
.h3_c00070{height:49.031248pt;}
.h4_c00070{height:157.083049pt;}
.h2_c00070{height:1159.999952pt;}
.h0_c00070{height:1159.999959pt;}
.h1_c00070{height:1160.000000pt;}
.w2_c00070{width:830.999965pt;}
.w0_c00070{width:831.000000pt;}
.w1_c00070{width:831.333333pt;}
.x0_c00070{left:0.000000pt;}
.x1_c00070{left:78.135686pt;}
.x4_c00070{left:79.108490pt;}
.x3_c00070{left:80.814038pt;}
.x2_c00070{left:122.781576pt;}
.x5_c00070{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_452b9be1dc0f88d329ab2f64.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_9fd3731ad590c9798cf33619.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_e92bfb2ac2806afabe4d161a.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:0.724121;font-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_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);}
.v0_c00071{vertical-align:0.000000px;}
.ls0_c00071{letter-spacing:0.000000px;}
.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;}
._9_c00071{margin-left:-17.990444px;}
._e_c00071{width:1.360933px;}
._0_c00071{width:2.965897px;}
._c_c00071{width:4.299631px;}
._d_c00071{width:5.633790px;}
._3_c00071{width:6.652635px;}
._1_c00071{width:7.951146px;}
._f_c00071{width:9.117139px;}
._a_c00071{width:10.508970px;}
._b_c00071{width:12.426087px;}
._5_c00071{width:15.796828px;}
._6_c00071{width:17.578127px;}
._2_c00071{width:20.138623px;}
._8_c00071{width:21.963043px;}
._11_c00071{width:24.117532px;}
._7_c00071{width:25.142554px;}
._10_c00071{width:27.164039px;}
._4_c00071{width:39.607015px;}
.fc2_c00071{color:rgb(78,96,87);}
.fc1_c00071{color:rgb(102,141,85);}
.fc0_c00071{color:rgb(0,0,0);}
.fs0_c00071{font-size:71.999997px;}
.fs1_c00071{font-size:119.969995px;}
.fs2_c00071{font-size:244.045411px;}
.y0_c00071{bottom:0.000000px;}
.y1_c00071{bottom:0.000008px;}
.y1e_c00071{bottom:29.400983px;}
.y1d_c00071{bottom:160.599719px;}
.y1c_c00071{bottom:190.974718px;}
.y1b_c00071{bottom:221.349717px;}
.y1a_c00071{bottom:251.724716px;}
.y19_c00071{bottom:282.099714px;}
.y18_c00071{bottom:312.474713px;}
.y17_c00071{bottom:342.849712px;}
.y16_c00071{bottom:373.224710px;}
.y15_c00071{bottom:403.599709px;}
.y14_c00071{bottom:433.974708px;}
.y13_c00071{bottom:494.724705px;}
.y12_c00071{bottom:525.099704px;}
.y11_c00071{bottom:555.474703px;}
.y10_c00071{bottom:585.849702px;}
.yf_c00071{bottom:616.224700px;}
.ye_c00071{bottom:646.599699px;}
.yd_c00071{bottom:676.974698px;}
.yc_c00071{bottom:737.724695px;}
.yb_c00071{bottom:768.099694px;}
.ya_c00071{bottom:798.474693px;}
.y9_c00071{bottom:828.849691px;}
.y8_c00071{bottom:859.224690px;}
.y7_c00071{bottom:889.599689px;}
.y6_c00071{bottom:919.974688px;}
.y5_c00071{bottom:1020.793173px;}
.y3_c00071{bottom:1024.406853px;}
.y2_c00071{bottom:1049.156852px;}
.y4_c00071{bottom:1118.813508px;}
.h3_c00071{height:55.160154px;}
.h4_c00071{height:91.910607px;}
.h5_c00071{height:176.718430px;}
.h2_c00071{height:1304.999946px;}
.h0_c00071{height:1304.999953px;}
.h1_c00071{height:1305.000000px;}
.w2_c00071{width:934.874961px;}
.w0_c00071{width:934.875000px;}
.w1_c00071{width:935.250000px;}
.x0_c00071{left:0.000000px;}
.x3_c00071{left:86.232064px;}
.x2_c00071{left:88.193696px;}
.x1_c00071{left:133.602006px;}
.x4_c00071{left:456.319054px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ws0_c00071{word-spacing:0.000000pt;}
._9_c00071{margin-left:-15.991506pt;}
._e_c00071{width:1.209718pt;}
._0_c00071{width:2.636353pt;}
._c_c00071{width:3.821895pt;}
._d_c00071{width:5.007814pt;}
._3_c00071{width:5.913454pt;}
._1_c00071{width:7.067685pt;}
._f_c00071{width:8.104124pt;}
._a_c00071{width:9.341307pt;}
._b_c00071{width:11.045411pt;}
._5_c00071{width:14.041625pt;}
._6_c00071{width:15.625002pt;}
._2_c00071{width:17.900999pt;}
._8_c00071{width:19.522705pt;}
._11_c00071{width:21.437806pt;}
._7_c00071{width:22.348937pt;}
._10_c00071{width:24.145813pt;}
._4_c00071{width:35.206236pt;}
.fs0_c00071{font-size:63.999997pt;}
.fs1_c00071{font-size:106.639996pt;}
.fs2_c00071{font-size:216.929254pt;}
.y0_c00071{bottom:0.000000pt;}
.y1_c00071{bottom:0.000007pt;}
.y1e_c00071{bottom:26.134207pt;}
.y1d_c00071{bottom:142.755306pt;}
.y1c_c00071{bottom:169.755305pt;}
.y1b_c00071{bottom:196.755304pt;}
.y1a_c00071{bottom:223.755303pt;}
.y19_c00071{bottom:250.755302pt;}
.y18_c00071{bottom:277.755300pt;}
.y17_c00071{bottom:304.755299pt;}
.y16_c00071{bottom:331.755298pt;}
.y15_c00071{bottom:358.755297pt;}
.y14_c00071{bottom:385.755296pt;}
.y13_c00071{bottom:439.755294pt;}
.y12_c00071{bottom:466.755293pt;}
.y11_c00071{bottom:493.755291pt;}
.y10_c00071{bottom:520.755290pt;}
.yf_c00071{bottom:547.755289pt;}
.ye_c00071{bottom:574.755288pt;}
.yd_c00071{bottom:601.755287pt;}
.yc_c00071{bottom:655.755285pt;}
.yb_c00071{bottom:682.755284pt;}
.ya_c00071{bottom:709.755282pt;}
.y9_c00071{bottom:736.755281pt;}
.y8_c00071{bottom:763.755280pt;}
.y7_c00071{bottom:790.755279pt;}
.y6_c00071{bottom:817.755278pt;}
.y5_c00071{bottom:907.371709pt;}
.y3_c00071{bottom:910.583869pt;}
.y2_c00071{bottom:932.583868pt;}
.y4_c00071{bottom:994.500896pt;}
.h3_c00071{height:49.031248pt;}
.h4_c00071{height:81.698317pt;}
.h5_c00071{height:157.083049pt;}
.h2_c00071{height:1159.999952pt;}
.h0_c00071{height:1159.999959pt;}
.h1_c00071{height:1160.000000pt;}
.w2_c00071{width:830.999965pt;}
.w0_c00071{width:831.000000pt;}
.w1_c00071{width:831.333333pt;}
.x0_c00071{left:0.000000pt;}
.x3_c00071{left:76.650723pt;}
.x2_c00071{left:78.394397pt;}
.x1_c00071{left:118.757339pt;}
.x4_c00071{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.006348;font-style:normal;font-weight:normal;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_945242ebc9a4ebd24dce44e7.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.000000;font-style:normal;font-weight:normal;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_4a2489ae9bf209dcafef1e66.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_8bb3ffc41e86741fdfae4022.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.006348;font-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_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;}
.ls1_c00072{letter-spacing:0.000000px;}
.ls0_c00072{letter-spacing:0.056953px;}
.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:-15.582041px;}
.ws2_c00072{word-spacing:0.000000px;}
.ws1_c00072{word-spacing:1491.280950px;}
._0_c00072{width:1.967545px;}
._d_c00072{width:3.246868px;}
._3_c00072{width:4.695831px;}
._4_c00072{width:5.720856px;}
._c_c00072{width:7.254135px;}
._5_c00072{width:11.698860px;}
._2_c00072{width:13.103667px;}
._11_c00072{width:14.143682px;}
._e_c00072{width:15.601544px;}
._b_c00072{width:16.938854px;}
._10_c00072{width:21.857714px;}
._7_c00072{width:22.979344px;}
._a_c00072{width:25.798374px;}
._8_c00072{width:26.948844px;}
._6_c00072{width:30.860731px;}
._9_c00072{width:32.132813px;}
._1_c00072{width:50.234364px;}
._f_c00072{width:57.264448px;}
.fc2_c00072{color:rgb(102,141,85);}
.fc1_c00072{color:rgb(0,0,0);}
.fc0_c00072{color:rgb(74,93,83);}
.fs0_c00072{font-size:59.984997px;}
.fs1_c00072{font-size:71.999997px;}
.fs2_c00072{font-size:98.097849px;}
.y0_c00072{bottom:0.000000px;}
.y1_c00072{bottom:0.000008px;}
.y1d_c00072{bottom:29.401163px;}
.y1c_c00072{bottom:67.755921px;}
.y1b_c00072{bottom:98.130920px;}
.y1a_c00072{bottom:128.505919px;}
.y19_c00072{bottom:158.880917px;}
.y18_c00072{bottom:189.255916px;}
.y17_c00072{bottom:219.630915px;}
.y16_c00072{bottom:250.005914px;}
.y15_c00072{bottom:280.380912px;}
.y14_c00072{bottom:310.755911px;}
.y13_c00072{bottom:341.130910px;}
.y12_c00072{bottom:371.505909px;}
.y11_c00072{bottom:401.880907px;}
.y10_c00072{bottom:432.255906px;}
.yf_c00072{bottom:462.630905px;}
.y4_c00072{bottom:522.265406px;}
.y3_c00072{bottom:547.015405px;}
.ye_c00072{bottom:830.581805px;}
.yd_c00072{bottom:887.029239px;}
.yc_c00072{bottom:917.404237px;}
.yb_c00072{bottom:947.779236px;}
.ya_c00072{bottom:978.154235px;}
.y9_c00072{bottom:1008.529234px;}
.y8_c00072{bottom:1038.904232px;}
.y7_c00072{bottom:1069.279231px;}
.y6_c00072{bottom:1099.654230px;}
.y5_c00072{bottom:1130.029229px;}
.y2_c00072{bottom:1200.600126px;}
.h3_c00072{height:45.955303px;}
.h4_c00072{height:55.160154px;}
.h5_c00072{height:74.531373px;}
.h2_c00072{height:1304.999946px;}
.h0_c00072{height:1304.999953px;}
.h1_c00072{height:1305.000000px;}
.w2_c00072{width:934.874961px;}
.w0_c00072{width:934.875000px;}
.w1_c00072{width:935.250000px;}
.x0_c00072{left:0.000000px;}
.x2_c00072{left:90.403970px;}
.x3_c00072{left:438.039957px;}
.x4_c00072{left:456.319054px;}
.x1_c00072{left:636.058362px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls1_c00072{letter-spacing:0.000000pt;}
.ls0_c00072{letter-spacing:0.050625pt;}
.ws0_c00072{word-spacing:-13.850703pt;}
.ws2_c00072{word-spacing:0.000000pt;}
.ws1_c00072{word-spacing:1325.583067pt;}
._0_c00072{width:1.748929pt;}
._d_c00072{width:2.886105pt;}
._3_c00072{width:4.174072pt;}
._4_c00072{width:5.085205pt;}
._c_c00072{width:6.448120pt;}
._5_c00072{width:10.398987pt;}
._2_c00072{width:11.647704pt;}
._11_c00072{width:12.572162pt;}
._e_c00072{width:13.868039pt;}
._b_c00072{width:15.056759pt;}
._10_c00072{width:19.429079pt;}
._7_c00072{width:20.426084pt;}
._a_c00072{width:22.931888pt;}
._8_c00072{width:23.954528pt;}
._6_c00072{width:27.431761pt;}
._9_c00072{width:28.562500pt;}
._1_c00072{width:44.652768pt;}
._f_c00072{width:50.901732pt;}
.fs0_c00072{font-size:53.319997pt;}
.fs1_c00072{font-size:63.999997pt;}
.fs2_c00072{font-size:87.198088pt;}
.y0_c00072{bottom:0.000000pt;}
.y1_c00072{bottom:0.000007pt;}
.y1d_c00072{bottom:26.134367pt;}
.y1c_c00072{bottom:60.227485pt;}
.y1b_c00072{bottom:87.227484pt;}
.y1a_c00072{bottom:114.227483pt;}
.y19_c00072{bottom:141.227482pt;}
.y18_c00072{bottom:168.227481pt;}
.y17_c00072{bottom:195.227480pt;}
.y16_c00072{bottom:222.227479pt;}
.y15_c00072{bottom:249.227478pt;}
.y14_c00072{bottom:276.227476pt;}
.y13_c00072{bottom:303.227475pt;}
.y12_c00072{bottom:330.227474pt;}
.y11_c00072{bottom:357.227473pt;}
.y10_c00072{bottom:384.227472pt;}
.yf_c00072{bottom:411.227471pt;}
.y4_c00072{bottom:464.235917pt;}
.y3_c00072{bottom:486.235916pt;}
.ye_c00072{bottom:738.294937pt;}
.yd_c00072{bottom:788.470434pt;}
.yc_c00072{bottom:815.470433pt;}
.yb_c00072{bottom:842.470432pt;}
.ya_c00072{bottom:869.470431pt;}
.y9_c00072{bottom:896.470430pt;}
.y8_c00072{bottom:923.470429pt;}
.y7_c00072{bottom:950.470428pt;}
.y6_c00072{bottom:977.470426pt;}
.y5_c00072{bottom:1004.470425pt;}
.y2_c00072{bottom:1067.200112pt;}
.h3_c00072{height:40.849158pt;}
.h4_c00072{height:49.031248pt;}
.h5_c00072{height:66.250110pt;}
.h2_c00072{height:1159.999952pt;}
.h0_c00072{height:1159.999959pt;}
.h1_c00072{height:1160.000000pt;}
.w2_c00072{width:830.999965pt;}
.w0_c00072{width:831.000000pt;}
.w1_c00072{width:831.333333pt;}
.x0_c00072{left:0.000000pt;}
.x2_c00072{left:80.359085pt;}
.x3_c00072{left:389.368851pt;}
.x4_c00072{left:405.616937pt;}
.x1_c00072{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:0.734863;font-style:normal;font-weight:normal;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_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_09f39f6f88c3d1a4109edfe9.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00073;src:url('chunks/assets/font_dc09ae5fd26e70e9b897afa1.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.000000;font-style:normal;font-weight: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_c00073;src:url('chunks/assets/font_4f726663f6af36c176f4bec5.woff2')format("woff");}.ff5_c00073{font-family:ff5_c00073;line-height:1.006348;font-style:normal;font-weight: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_c00073;src:url('chunks/assets/font_2d7deaa08558454454a2b37f.woff2')format("woff");}.ff6_c00073{font-family:ff6_c00073;line-height:0.713867;font-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_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;}
.ls1_c00073{letter-spacing:0.000000px;}
.ls0_c00073{letter-spacing:12.023414px;}
.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;}
._5_c00073{width:3.470856px;}
._7_c00073{width:4.870789px;}
._3_c00073{width:8.592133px;}
._1_c00073{width:9.973956px;}
._2_c00073{width:12.008332px;}
._8_c00073{width:13.119118px;}
._b_c00073{width:16.696472px;}
._e_c00073{width:20.579301px;}
._4_c00073{width:21.649177px;}
._c_c00073{width:23.947240px;}
._d_c00073{width:28.365186px;}
._6_c00073{width:34.842520px;}
._a_c00073{width:41.439605px;}
._0_c00073{width:44.174544px;}
._9_c00073{width:74.661776px;}
.fc4_c00073{color:transparent;}
.fc3_c00073{color:rgb(102,141,85);}
.fc1_c00073{color:rgb(74,93,83);}
.fc2_c00073{color:rgb(0,0,0);}
.fc0_c00073{color:rgb(128,128,128);}
.fs1_c00073{font-size:59.984997px;}
.fs0_c00073{font-size:69.618741px;}
.fs2_c00073{font-size:71.999997px;}
.y0_c00073{bottom:0.000000px;}
.y1_c00073{bottom:0.000008px;}
.y4_c00073{bottom:29.401163px;}
.y2_c00073{bottom:30.348053px;}
.y1d_c00073{bottom:117.116012px;}
.y1c_c00073{bottom:147.491011px;}
.y1b_c00073{bottom:177.866010px;}
.y1a_c00073{bottom:208.241009px;}
.y19_c00073{bottom:238.616007px;}
.y18_c00073{bottom:268.991006px;}
.y17_c00073{bottom:299.366005px;}
.y16_c00073{bottom:329.741003px;}
.y15_c00073{bottom:360.116002px;}
.y14_c00073{bottom:390.491001px;}
.y13_c00073{bottom:420.866000px;}
.y12_c00073{bottom:451.240998px;}
.y11_c00073{bottom:481.615997px;}
.y10_c00073{bottom:511.990996px;}
.yf_c00073{bottom:542.365995px;}
.ye_c00073{bottom:572.740993px;}
.yd_c00073{bottom:633.490991px;}
.yc_c00073{bottom:663.865990px;}
.yb_c00073{bottom:694.240988px;}
.ya_c00073{bottom:724.615987px;}
.y9_c00073{bottom:754.990986px;}
.y8_c00073{bottom:785.365984px;}
.y7_c00073{bottom:875.232036px;}
.y6_c00073{bottom:895.482035px;}
.y5_c00073{bottom:915.732034px;}
.y3_c00073{bottom:1200.600303px;}
.h4_c00073{height:45.955303px;}
.h3_c00073{height:50.480386px;}
.h5_c00073{height:55.160154px;}
.h2_c00073{height:1304.999946px;}
.h0_c00073{height:1304.999953px;}
.h1_c00073{height:1305.000000px;}
.w2_c00073{width:934.874961px;}
.w0_c00073{width:934.875000px;}
.w1_c00073{width:935.250000px;}
.x0_c00073{left:0.000000px;}
.x5_c00073{left:87.902647px;}
.x1_c00073{left:452.786554px;}
.x3_c00073{left:456.319054px;}
.x4_c00073{left:472.858090px;}
.x2_c00073{left:636.058362px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls1_c00073{letter-spacing:0.000000pt;}
.ls0_c00073{letter-spacing:10.687479pt;}
.ws0_c00073{word-spacing:0.000000pt;}
._5_c00073{width:3.085205pt;}
._7_c00073{width:4.329590pt;}
._3_c00073{width:7.637452pt;}
._1_c00073{width:8.865739pt;}
._2_c00073{width:10.674073pt;}
._8_c00073{width:11.661438pt;}
._b_c00073{width:14.841309pt;}
._e_c00073{width:18.292712pt;}
._4_c00073{width:19.243713pt;}
._c_c00073{width:21.286435pt;}
._d_c00073{width:25.213499pt;}
._6_c00073{width:30.971129pt;}
._a_c00073{width:36.835205pt;}
._0_c00073{width:39.266262pt;}
._9_c00073{width:66.366023pt;}
.fs1_c00073{font-size:53.319997pt;}
.fs0_c00073{font-size:61.883325pt;}
.fs2_c00073{font-size:63.999997pt;}
.y0_c00073{bottom:0.000000pt;}
.y1_c00073{bottom:0.000007pt;}
.y4_c00073{bottom:26.134367pt;}
.y2_c00073{bottom:26.976047pt;}
.y1d_c00073{bottom:104.103122pt;}
.y1c_c00073{bottom:131.103121pt;}
.y1b_c00073{bottom:158.103120pt;}
.y1a_c00073{bottom:185.103119pt;}
.y19_c00073{bottom:212.103118pt;}
.y18_c00073{bottom:239.103116pt;}
.y17_c00073{bottom:266.103115pt;}
.y16_c00073{bottom:293.103114pt;}
.y15_c00073{bottom:320.103113pt;}
.y14_c00073{bottom:347.103112pt;}
.y13_c00073{bottom:374.103111pt;}
.y12_c00073{bottom:401.103110pt;}
.y11_c00073{bottom:428.103109pt;}
.y10_c00073{bottom:455.103107pt;}
.yf_c00073{bottom:482.103106pt;}
.ye_c00073{bottom:509.103105pt;}
.yd_c00073{bottom:563.103103pt;}
.yc_c00073{bottom:590.103102pt;}
.yb_c00073{bottom:617.103101pt;}
.ya_c00073{bottom:644.103100pt;}
.y9_c00073{bottom:671.103098pt;}
.y8_c00073{bottom:698.103097pt;}
.y7_c00073{bottom:777.984032pt;}
.y6_c00073{bottom:795.984031pt;}
.y5_c00073{bottom:813.984030pt;}
.y3_c00073{bottom:1067.200269pt;}
.h4_c00073{height:40.849158pt;}
.h3_c00073{height:44.871454pt;}
.h5_c00073{height:49.031248pt;}
.h2_c00073{height:1159.999952pt;}
.h0_c00073{height:1159.999959pt;}
.h1_c00073{height:1160.000000pt;}
.w2_c00073{width:830.999965pt;}
.w0_c00073{width:831.000000pt;}
.w1_c00073{width:831.333333pt;}
.x0_c00073{left:0.000000pt;}
.x5_c00073{left:78.135686pt;}
.x1_c00073{left:402.476937pt;}
.x3_c00073{left:405.616937pt;}
.x4_c00073{left:420.318302pt;}
.x2_c00073{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:0.734863;font-style:normal;font-weight:normal;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_314d081e56d18715c733e1c2.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.006348;font-style:normal;font-weight:normal;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_933db5004c4f4fdea75632b1.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.000000;font-style:normal;font-weight:normal;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_2a34fc7b951260812f350ac2.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.006348;font-style:normal;font-weight: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_b343b656f231591a0e3d13bd.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:0.724121;font-style:normal;font-weight: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_c00074;src:url('chunks/assets/font_6addd415033fff022f55c875.woff2')format("woff");}.ff6_c00074{font-family:ff6_c00074;line-height:1.005371;font-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_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);}
.v0_c00074{vertical-align:0.000000px;}
.ls0_c00074{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00074{word-spacing:-15.582041px;}
.ws2_c00074{word-spacing:0.000000px;}
.ws1_c00074{word-spacing:1491.280950px;}
._0_c00074{width:1.030000px;}
._5_c00074{width:2.109375px;}
._7_c00074{width:4.148439px;}
._9_c00074{width:6.257812px;}
._2_c00074{width:7.526869px;}
._1_c00074{width:8.599753px;}
._3_c00074{width:15.895982px;}
._6_c00074{width:17.045424px;}
._b_c00074{width:20.390626px;}
._8_c00074{width:27.292921px;}
._a_c00074{width:36.200842px;}
._4_c00074{width:42.266601px;}
.fc5_c00074{color:transparent;}
.fc4_c00074{color:rgb(78,96,87);}
.fc3_c00074{color:rgb(102,141,85);}
.fc2_c00074{color:rgb(74,93,83);}
.fc1_c00074{color:rgb(0,0,0);}
.fc0_c00074{color:rgb(128,128,128);}
.fs2_c00074{font-size:59.984997px;}
.fs0_c00074{font-size:69.618741px;}
.fs1_c00074{font-size:71.999997px;}
.fs3_c00074{font-size:98.097849px;}
.fs4_c00074{font-size:244.045411px;}
.y0_c00074{bottom:0.000000px;}
.y1_c00074{bottom:0.000008px;}
.y3_c00074{bottom:29.401163px;}
.y2_c00074{bottom:30.348053px;}
.y1b_c00074{bottom:140.900610px;}
.y1a_c00074{bottom:171.275609px;}
.y19_c00074{bottom:201.650608px;}
.y18_c00074{bottom:232.025606px;}
.y17_c00074{bottom:262.400605px;}
.y16_c00074{bottom:292.775604px;}
.y15_c00074{bottom:323.150603px;}
.y14_c00074{bottom:353.525601px;}
.y13_c00074{bottom:383.900600px;}
.y12_c00074{bottom:475.167490px;}
.y11_c00074{bottom:478.781008px;}
.y10_c00074{bottom:503.531007px;}
.yf_c00074{bottom:603.706968px;}
.ye_c00074{bottom:634.081967px;}
.yd_c00074{bottom:664.456966px;}
.yc_c00074{bottom:694.831964px;}
.yb_c00074{bottom:725.206963px;}
.ya_c00074{bottom:755.581962px;}
.y9_c00074{bottom:785.956960px;}
.y8_c00074{bottom:816.331959px;}
.y7_c00074{bottom:846.706958px;}
.y5_c00074{bottom:893.085785px;}
.y4_c00074{bottom:913.335784px;}
.y6_c00074{bottom:1198.082378px;}
.h5_c00074{height:45.955303px;}
.h3_c00074{height:50.480386px;}
.h4_c00074{height:55.160154px;}
.h6_c00074{height:74.531373px;}
.h7_c00074{height:176.718430px;}
.h2_c00074{height:1304.999946px;}
.h0_c00074{height:1304.999953px;}
.h1_c00074{height:1305.000000px;}
.w2_c00074{width:934.874961px;}
.w0_c00074{width:934.875000px;}
.w1_c00074{width:935.250000px;}
.x0_c00074{left:0.000000px;}
.x3_c00074{left:87.902647px;}
.x5_c00074{left:134.291784px;}
.x4_c00074{left:438.039957px;}
.x1_c00074{left:452.786554px;}
.x2_c00074{left:456.319054px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ws0_c00074{word-spacing:-13.850703pt;}
.ws2_c00074{word-spacing:0.000000pt;}
.ws1_c00074{word-spacing:1325.583067pt;}
._0_c00074{width:0.915555pt;}
._5_c00074{width:1.875000pt;}
._7_c00074{width:3.687502pt;}
._9_c00074{width:5.562499pt;}
._2_c00074{width:6.690550pt;}
._1_c00074{width:7.644225pt;}
._3_c00074{width:14.129762pt;}
._6_c00074{width:15.151488pt;}
._b_c00074{width:18.125001pt;}
._8_c00074{width:24.260374pt;}
._a_c00074{width:32.178526pt;}
._4_c00074{width:37.570312pt;}
.fs2_c00074{font-size:53.319997pt;}
.fs0_c00074{font-size:61.883325pt;}
.fs1_c00074{font-size:63.999997pt;}
.fs3_c00074{font-size:87.198088pt;}
.fs4_c00074{font-size:216.929254pt;}
.y0_c00074{bottom:0.000000pt;}
.y1_c00074{bottom:0.000007pt;}
.y3_c00074{bottom:26.134367pt;}
.y2_c00074{bottom:26.976047pt;}
.y1b_c00074{bottom:125.244987pt;}
.y1a_c00074{bottom:152.244986pt;}
.y19_c00074{bottom:179.244985pt;}
.y18_c00074{bottom:206.244983pt;}
.y17_c00074{bottom:233.244982pt;}
.y16_c00074{bottom:260.244981pt;}
.y15_c00074{bottom:287.244980pt;}
.y14_c00074{bottom:314.244979pt;}
.y13_c00074{bottom:341.244978pt;}
.y12_c00074{bottom:422.371102pt;}
.y11_c00074{bottom:425.583118pt;}
.y10_c00074{bottom:447.583117pt;}
.yf_c00074{bottom:536.628416pt;}
.ye_c00074{bottom:563.628415pt;}
.yd_c00074{bottom:590.628414pt;}
.yc_c00074{bottom:617.628413pt;}
.yb_c00074{bottom:644.628412pt;}
.ya_c00074{bottom:671.628410pt;}
.y9_c00074{bottom:698.628409pt;}
.y8_c00074{bottom:725.628408pt;}
.y7_c00074{bottom:752.628407pt;}
.y5_c00074{bottom:793.854031pt;}
.y4_c00074{bottom:811.854030pt;}
.y6_c00074{bottom:1064.962114pt;}
.h5_c00074{height:40.849158pt;}
.h3_c00074{height:44.871454pt;}
.h4_c00074{height:49.031248pt;}
.h6_c00074{height:66.250110pt;}
.h7_c00074{height:157.083049pt;}
.h2_c00074{height:1159.999952pt;}
.h0_c00074{height:1159.999959pt;}
.h1_c00074{height:1160.000000pt;}
.w2_c00074{width:830.999965pt;}
.w0_c00074{width:831.000000pt;}
.w1_c00074{width:831.333333pt;}
.x0_c00074{left:0.000000pt;}
.x3_c00074{left:78.135686pt;}
.x5_c00074{left:119.370475pt;}
.x4_c00074{left:389.368851pt;}
.x1_c00074{left:402.476937pt;}
.x2_c00074{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6d52958e11c6e891b4a1ce6.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00075;src:url('chunks/assets/font_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00075;src:url('chunks/assets/font_f4b9d2ca1935a616fe9da98d.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;line-height:0.917969;font-style:normal;font-weight: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_c00075;src:url('chunks/assets/font_b9795fa3550f03534d618b92.woff2')format("woff");}.ff5_c00075{font-family:ff5_c00075;line-height:0.882324;font-style:normal;font-weight: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_c00075;src:url('chunks/assets/font_d7b4965fec85cc941b7e6641.woff2')format("woff");}.ff6_c00075{font-family:ff6_c00075;line-height:1.000000;font-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_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;}
.ls1_c00075{letter-spacing:0.000000px;}
.ls0_c00075{letter-spacing:3.445289px;}
.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;}
._2_c00075{width:1.107421px;}
._a_c00075{width:2.601497px;}
._1_c00075{width:4.447266px;}
._3_c00075{width:5.595604px;}
._9_c00075{width:7.165971px;}
._4_c00075{width:8.390600px;}
._5_c00075{width:9.735535px;}
._7_c00075{width:11.014812px;}
._6_c00075{width:12.277711px;}
._0_c00075{width:13.413412px;}
._c_c00075{width:15.778084px;}
._e_c00075{width:26.496070px;}
._f_c00075{width:28.312519px;}
._8_c00075{width:31.464845px;}
._b_c00075{width:46.820295px;}
._d_c00075{width:51.046871px;}
.fc4_c00075{color:transparent;}
.fc3_c00075{color:rgb(102,141,85);}
.fc2_c00075{color:rgb(74,93,83);}
.fc1_c00075{color:rgb(128,128,128);}
.fc0_c00075{color:rgb(0,0,0);}
.fs2_c00075{font-size:59.984997px;}
.fs1_c00075{font-size:69.618741px;}
.fs0_c00075{font-size:71.999997px;}
.y0_c00075{bottom:0.000000px;}
.y1_c00075{bottom:0.000008px;}
.yd_c00075{bottom:29.401163px;}
.yb_c00075{bottom:30.348053px;}
.y22_c00075{bottom:206.359515px;}
.y21_c00075{bottom:234.484514px;}
.y20_c00075{bottom:262.609513px;}
.y1f_c00075{bottom:290.734512px;}
.y1e_c00075{bottom:318.859511px;}
.y1d_c00075{bottom:346.984510px;}
.y1c_c00075{bottom:375.109508px;}
.y1b_c00075{bottom:403.234507px;}
.y1a_c00075{bottom:463.109086px;}
.y19_c00075{bottom:493.484084px;}
.y18_c00075{bottom:523.859083px;}
.y17_c00075{bottom:554.234082px;}
.y16_c00075{bottom:584.609080px;}
.y15_c00075{bottom:614.984079px;}
.y14_c00075{bottom:645.359078px;}
.y13_c00075{bottom:675.734077px;}
.y12_c00075{bottom:706.109075px;}
.y11_c00075{bottom:736.484074px;}
.y10_c00075{bottom:766.859073px;}
.yf_c00075{bottom:797.234072px;}
.ye_c00075{bottom:827.609070px;}
.ya_c00075{bottom:887.888580px;}
.y9_c00075{bottom:918.263579px;}
.y8_c00075{bottom:948.638578px;}
.y7_c00075{bottom:979.013576px;}
.y6_c00075{bottom:1009.388575px;}
.y5_c00075{bottom:1039.763574px;}
.y4_c00075{bottom:1070.138573px;}
.y3_c00075{bottom:1100.513571px;}
.y2_c00075{bottom:1130.888570px;}
.yc_c00075{bottom:1200.600033px;}
.h5_c00075{height:45.955303px;}
.h4_c00075{height:50.480386px;}
.h3_c00075{height:55.160154px;}
.h2_c00075{height:1304.999946px;}
.h0_c00075{height:1304.999953px;}
.h1_c00075{height:1305.000000px;}
.w2_c00075{width:934.874961px;}
.w0_c00075{width:934.875000px;}
.w1_c00075{width:935.250000px;}
.x0_c00075{left:0.000000px;}
.x1_c00075{left:87.902647px;}
.x2_c00075{left:452.786554px;}
.x4_c00075{left:456.319054px;}
.x3_c00075{left:636.058362px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls1_c00075{letter-spacing:0.000000pt;}
.ls0_c00075{letter-spacing:3.062480pt;}
.ws0_c00075{word-spacing:0.000000pt;}
._2_c00075{width:0.984374pt;}
._a_c00075{width:2.312442pt;}
._1_c00075{width:3.953125pt;}
._3_c00075{width:4.973870pt;}
._9_c00075{width:6.369752pt;}
._4_c00075{width:7.458311pt;}
._5_c00075{width:8.653809pt;}
._7_c00075{width:9.790944pt;}
._6_c00075{width:10.913521pt;}
._0_c00075{width:11.923033pt;}
._c_c00075{width:14.024964pt;}
._e_c00075{width:23.552063pt;}
._f_c00075{width:25.166684pt;}
._8_c00075{width:27.968751pt;}
._b_c00075{width:41.618040pt;}
._d_c00075{width:45.374997pt;}
.fs2_c00075{font-size:53.319997pt;}
.fs1_c00075{font-size:61.883325pt;}
.fs0_c00075{font-size:63.999997pt;}
.y0_c00075{bottom:0.000000pt;}
.y1_c00075{bottom:0.000007pt;}
.yd_c00075{bottom:26.134367pt;}
.yb_c00075{bottom:26.976047pt;}
.y22_c00075{bottom:183.430680pt;}
.y21_c00075{bottom:208.430679pt;}
.y20_c00075{bottom:233.430678pt;}
.y1f_c00075{bottom:258.430677pt;}
.y1e_c00075{bottom:283.430676pt;}
.y1d_c00075{bottom:308.430675pt;}
.y1c_c00075{bottom:333.430674pt;}
.y1b_c00075{bottom:358.430673pt;}
.y1a_c00075{bottom:411.652520pt;}
.y19_c00075{bottom:438.652519pt;}
.y18_c00075{bottom:465.652518pt;}
.y17_c00075{bottom:492.652517pt;}
.y16_c00075{bottom:519.652516pt;}
.y15_c00075{bottom:546.652515pt;}
.y14_c00075{bottom:573.652514pt;}
.y13_c00075{bottom:600.652513pt;}
.y12_c00075{bottom:627.652511pt;}
.y11_c00075{bottom:654.652510pt;}
.y10_c00075{bottom:681.652509pt;}
.yf_c00075{bottom:708.652508pt;}
.ye_c00075{bottom:735.652507pt;}
.ya_c00075{bottom:789.234294pt;}
.y9_c00075{bottom:816.234292pt;}
.y8_c00075{bottom:843.234291pt;}
.y7_c00075{bottom:870.234290pt;}
.y6_c00075{bottom:897.234289pt;}
.y5_c00075{bottom:924.234288pt;}
.y4_c00075{bottom:951.234287pt;}
.y3_c00075{bottom:978.234286pt;}
.y2_c00075{bottom:1005.234285pt;}
.yc_c00075{bottom:1067.200029pt;}
.h5_c00075{height:40.849158pt;}
.h4_c00075{height:44.871454pt;}
.h3_c00075{height:49.031248pt;}
.h2_c00075{height:1159.999952pt;}
.h0_c00075{height:1159.999959pt;}
.h1_c00075{height:1160.000000pt;}
.w2_c00075{width:830.999965pt;}
.w0_c00075{width:831.000000pt;}
.w1_c00075{width:831.333333pt;}
.x0_c00075{left:0.000000pt;}
.x1_c00075{left:78.135686pt;}
.x2_c00075{left:402.476937pt;}
.x4_c00075{left:405.616937pt;}
.x3_c00075{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2dbb23e1e77d1d9927b2957.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00076;src:url('chunks/assets/font_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00076;src:url('chunks/assets/font_98c09d5ddc5aa1f5f6915a89.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:0.917969;font-style:normal;font-weight: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_c00076;src:url('chunks/assets/font_d7b4965fec85cc941b7e6641.woff2')format("woff");}.ff5_c00076{font-family:ff5_c00076;line-height:1.000000;font-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;}
.ls0_c00076{letter-spacing:0.000000px;}
.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;}
._8_c00076{width:1.066355px;}
._4_c00076{width:2.097707px;}
._2_c00076{width:3.486303px;}
._0_c00076{width:4.546827px;}
._3_c00076{width:6.346187px;}
._1_c00076{width:7.612906px;}
._6_c00076{width:8.776223px;}
._a_c00076{width:9.809622px;}
._5_c00076{width:10.936750px;}
._9_c00076{width:12.732396px;}
._f_c00076{width:13.842773px;}
._e_c00076{width:15.145270px;}
._b_c00076{width:17.565214px;}
._d_c00076{width:23.392363px;}
._7_c00076{width:30.691405px;}
._c_c00076{width:46.820295px;}
.fc4_c00076{color:transparent;}
.fc3_c00076{color:rgb(102,141,85);}
.fc2_c00076{color:rgb(74,93,83);}
.fc1_c00076{color:rgb(128,128,128);}
.fc0_c00076{color:rgb(0,0,0);}
.fs2_c00076{font-size:59.984997px;}
.fs1_c00076{font-size:69.618741px;}
.fs0_c00076{font-size:71.999997px;}
.y0_c00076{bottom:0.000000px;}
.y1_c00076{bottom:0.000008px;}
.y18_c00076{bottom:29.400983px;}
.y16_c00076{bottom:30.347873px;}
.y20_c00076{bottom:293.573652px;}
.y1f_c00076{bottom:323.948651px;}
.y1e_c00076{bottom:354.323649px;}
.y1d_c00076{bottom:384.698648px;}
.y1c_c00076{bottom:415.073647px;}
.y1b_c00076{bottom:445.448645px;}
.y1a_c00076{bottom:475.823644px;}
.y19_c00076{bottom:506.198643px;}
.y15_c00076{bottom:568.793648px;}
.y14_c00076{bottom:596.918646px;}
.y13_c00076{bottom:625.043645px;}
.y12_c00076{bottom:653.168644px;}
.y11_c00076{bottom:681.293643px;}
.y10_c00076{bottom:709.418642px;}
.yf_c00076{bottom:737.543640px;}
.ye_c00076{bottom:765.668639px;}
.yd_c00076{bottom:793.793638px;}
.yc_c00076{bottom:821.918637px;}
.yb_c00076{bottom:850.043636px;}
.ya_c00076{bottom:906.293633px;}
.y9_c00076{bottom:934.418632px;}
.y8_c00076{bottom:962.543631px;}
.y7_c00076{bottom:990.668630px;}
.y6_c00076{bottom:1018.793629px;}
.y5_c00076{bottom:1046.918628px;}
.y4_c00076{bottom:1075.043626px;}
.y3_c00076{bottom:1103.168625px;}
.y2_c00076{bottom:1131.293624px;}
.y17_c00076{bottom:1200.600036px;}
.h5_c00076{height:45.955303px;}
.h4_c00076{height:50.480386px;}
.h3_c00076{height:55.160154px;}
.h2_c00076{height:1304.999946px;}
.h0_c00076{height:1304.999953px;}
.h1_c00076{height:1305.000000px;}
.w2_c00076{width:934.874961px;}
.w0_c00076{width:934.875000px;}
.w1_c00076{width:935.250000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:87.902647px;}
.x2_c00076{left:452.786554px;}
.x4_c00076{left:456.319054px;}
.x3_c00076{left:636.058362px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws0_c00076{word-spacing:0.000000pt;}
._8_c00076{width:0.947871pt;}
._4_c00076{width:1.864629pt;}
._2_c00076{width:3.098936pt;}
._0_c00076{width:4.041624pt;}
._3_c00076{width:5.641055pt;}
._1_c00076{width:6.767028pt;}
._6_c00076{width:7.801087pt;}
._a_c00076{width:8.719664pt;}
._5_c00076{width:9.721556pt;}
._9_c00076{width:11.317685pt;}
._f_c00076{width:12.304687pt;}
._e_c00076{width:13.462462pt;}
._b_c00076{width:15.613524pt;}
._d_c00076{width:20.793211pt;}
._7_c00076{width:27.281249pt;}
._c_c00076{width:41.618040pt;}
.fs2_c00076{font-size:53.319997pt;}
.fs1_c00076{font-size:61.883325pt;}
.fs0_c00076{font-size:63.999997pt;}
.y0_c00076{bottom:0.000000pt;}
.y1_c00076{bottom:0.000007pt;}
.y18_c00076{bottom:26.134207pt;}
.y16_c00076{bottom:26.975887pt;}
.y20_c00076{bottom:260.954357pt;}
.y1f_c00076{bottom:287.954356pt;}
.y1e_c00076{bottom:314.954355pt;}
.y1d_c00076{bottom:341.954354pt;}
.y1c_c00076{bottom:368.954353pt;}
.y1b_c00076{bottom:395.954352pt;}
.y1a_c00076{bottom:422.954350pt;}
.y19_c00076{bottom:449.954349pt;}
.y15_c00076{bottom:505.594353pt;}
.y14_c00076{bottom:530.594352pt;}
.y13_c00076{bottom:555.594351pt;}
.y12_c00076{bottom:580.594350pt;}
.y11_c00076{bottom:605.594349pt;}
.y10_c00076{bottom:630.594348pt;}
.yf_c00076{bottom:655.594347pt;}
.ye_c00076{bottom:680.594346pt;}
.yd_c00076{bottom:705.594345pt;}
.yc_c00076{bottom:730.594344pt;}
.yb_c00076{bottom:755.594343pt;}
.ya_c00076{bottom:805.594341pt;}
.y9_c00076{bottom:830.594340pt;}
.y8_c00076{bottom:855.594339pt;}
.y7_c00076{bottom:880.594338pt;}
.y6_c00076{bottom:905.594337pt;}
.y5_c00076{bottom:930.594336pt;}
.y4_c00076{bottom:955.594335pt;}
.y3_c00076{bottom:980.594334pt;}
.y2_c00076{bottom:1005.594333pt;}
.y17_c00076{bottom:1067.200032pt;}
.h5_c00076{height:40.849158pt;}
.h4_c00076{height:44.871454pt;}
.h3_c00076{height:49.031248pt;}
.h2_c00076{height:1159.999952pt;}
.h0_c00076{height:1159.999959pt;}
.h1_c00076{height:1160.000000pt;}
.w2_c00076{width:830.999965pt;}
.w0_c00076{width:831.000000pt;}
.w1_c00076{width:831.333333pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:78.135686pt;}
.x2_c00076{left:402.476937pt;}
.x4_c00076{left:405.616937pt;}
.x3_c00076{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f081b9ce7d195f25645d925a.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:0.734863;font-style:normal;font-weight:normal;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_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.006348;font-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_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);}
.v0_c00077{vertical-align:0.000000px;}
.ls0_c00077{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00077{word-spacing:0.000000px;}
._6_c00077{width:1.098549px;}
._2_c00077{width:2.166849px;}
._5_c00077{width:3.387772px;}
._9_c00077{width:8.194564px;}
._8_c00077{width:10.936750px;}
._0_c00077{width:13.413412px;}
._c_c00077{width:14.791168px;}
._d_c00077{width:17.680298px;}
._f_c00077{width:20.913363px;}
._1_c00077{width:21.969428px;}
._3_c00077{width:23.288339px;}
._10_c00077{width:24.989468px;}
._7_c00077{width:26.021457px;}
._e_c00077{width:27.939544px;}
._4_c00077{width:29.358623px;}
._b_c00077{width:31.007811px;}
._a_c00077{width:34.804686px;}
.fc3_c00077{color:transparent;}
.fc2_c00077{color:rgb(74,93,83);}
.fc1_c00077{color:rgb(128,128,128);}
.fc0_c00077{color:rgb(0,0,0);}
.fs2_c00077{font-size:59.984997px;}
.fs1_c00077{font-size:69.618741px;}
.fs0_c00077{font-size:71.999997px;}
.y0_c00077{bottom:0.000000px;}
.y1_c00077{bottom:0.000008px;}
.y17_c00077{bottom:29.401163px;}
.y15_c00077{bottom:30.348053px;}
.y14_c00077{bottom:484.936504px;}
.y13_c00077{bottom:518.686502px;}
.y12_c00077{bottom:552.436501px;}
.y11_c00077{bottom:586.186500px;}
.y10_c00077{bottom:619.936498px;}
.yf_c00077{bottom:653.686497px;}
.ye_c00077{bottom:687.436495px;}
.yd_c00077{bottom:721.186494px;}
.yc_c00077{bottom:754.936493px;}
.yb_c00077{bottom:788.686491px;}
.ya_c00077{bottom:856.186488px;}
.y9_c00077{bottom:889.936487px;}
.y8_c00077{bottom:923.686486px;}
.y7_c00077{bottom:957.436484px;}
.y6_c00077{bottom:991.186483px;}
.y5_c00077{bottom:1024.936481px;}
.y4_c00077{bottom:1058.686480px;}
.y3_c00077{bottom:1092.436478px;}
.y2_c00077{bottom:1126.186477px;}
.y16_c00077{bottom:1200.600126px;}
.h5_c00077{height:45.955303px;}
.h4_c00077{height:50.480386px;}
.h3_c00077{height:55.160154px;}
.h2_c00077{height:1304.999946px;}
.h0_c00077{height:1304.999953px;}
.h1_c00077{height:1305.000000px;}
.w2_c00077{width:934.874961px;}
.w0_c00077{width:934.875000px;}
.w1_c00077{width:935.250000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:87.902647px;}
.x2_c00077{left:452.786554px;}
.x4_c00077{left:456.319054px;}
.x3_c00077{left:636.058362px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls0_c00077{letter-spacing:0.000000pt;}
.ws0_c00077{word-spacing:0.000000pt;}
._6_c00077{width:0.976488pt;}
._2_c00077{width:1.926088pt;}
._5_c00077{width:3.011353pt;}
._9_c00077{width:7.284057pt;}
._8_c00077{width:9.721556pt;}
._0_c00077{width:11.923033pt;}
._c_c00077{width:13.147705pt;}
._d_c00077{width:15.715820pt;}
._f_c00077{width:18.589656pt;}
._1_c00077{width:19.528380pt;}
._3_c00077{width:20.700746pt;}
._10_c00077{width:22.212861pt;}
._7_c00077{width:23.130184pt;}
._e_c00077{width:24.835150pt;}
._4_c00077{width:26.096554pt;}
._b_c00077{width:27.562499pt;}
._a_c00077{width:30.937499pt;}
.fs2_c00077{font-size:53.319997pt;}
.fs1_c00077{font-size:61.883325pt;}
.fs0_c00077{font-size:63.999997pt;}
.y0_c00077{bottom:0.000000pt;}
.y1_c00077{bottom:0.000007pt;}
.y17_c00077{bottom:26.134367pt;}
.y15_c00077{bottom:26.976047pt;}
.y14_c00077{bottom:431.054670pt;}
.y13_c00077{bottom:461.054669pt;}
.y12_c00077{bottom:491.054668pt;}
.y11_c00077{bottom:521.054666pt;}
.y10_c00077{bottom:551.054665pt;}
.yf_c00077{bottom:581.054664pt;}
.ye_c00077{bottom:611.054663pt;}
.yd_c00077{bottom:641.054661pt;}
.yc_c00077{bottom:671.054660pt;}
.yb_c00077{bottom:701.054659pt;}
.ya_c00077{bottom:761.054656pt;}
.y9_c00077{bottom:791.054655pt;}
.y8_c00077{bottom:821.054654pt;}
.y7_c00077{bottom:851.054653pt;}
.y6_c00077{bottom:881.054651pt;}
.y5_c00077{bottom:911.054650pt;}
.y4_c00077{bottom:941.054649pt;}
.y3_c00077{bottom:971.054648pt;}
.y2_c00077{bottom:1001.054646pt;}
.y16_c00077{bottom:1067.200112pt;}
.h5_c00077{height:40.849158pt;}
.h4_c00077{height:44.871454pt;}
.h3_c00077{height:49.031248pt;}
.h2_c00077{height:1159.999952pt;}
.h0_c00077{height:1159.999959pt;}
.h1_c00077{height:1160.000000pt;}
.w2_c00077{width:830.999965pt;}
.w0_c00077{width:831.000000pt;}
.w1_c00077{width:831.333333pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:78.135686pt;}
.x2_c00077{left:402.476937pt;}
.x4_c00077{left:405.616937pt;}
.x3_c00077{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a6d024e24133f56ab698513.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:0.917969;font-style:normal;font-weight:normal;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_ceff9b5061b28acf691ec286.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.006348;font-style:normal;font-weight:normal;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_d7b4965fec85cc941b7e6641.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.000000;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:0.734863;font-style:normal;font-weight: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_c00078;src:url('chunks/assets/font_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:1.006348;font-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_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);}
.v0_c00078{vertical-align:0.000000px;}
.ls0_c00078{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00078{word-spacing:0.000000px;}
._a_c00078{width:1.187688px;}
._7_c00078{width:2.302392px;}
._0_c00078{width:3.396629px;}
._b_c00078{width:4.564608px;}
._d_c00078{width:6.570991px;}
._3_c00078{width:7.656232px;}
._2_c00078{width:9.094002px;}
._1_c00078{width:10.131387px;}
._8_c00078{width:13.945287px;}
._c_c00078{width:16.470701px;}
._6_c00078{width:19.863299px;}
._9_c00078{width:21.723249px;}
._5_c00078{width:26.035674px;}
._4_c00078{width:76.612470px;}
.fc4_c00078{color:transparent;}
.fc3_c00078{color:rgb(74,93,83);}
.fc2_c00078{color:rgb(128,128,128);}
.fc1_c00078{color:rgb(0,0,0);}
.fc0_c00078{color:rgb(102,141,85);}
.fs2_c00078{font-size:59.984997px;}
.fs1_c00078{font-size:69.618741px;}
.fs0_c00078{font-size:71.999997px;}
.y0_c00078{bottom:0.000000px;}
.y1_c00078{bottom:0.000008px;}
.y1e_c00078{bottom:29.401163px;}
.y1c_c00078{bottom:30.348053px;}
.y1b_c00078{bottom:219.188662px;}
.y1a_c00078{bottom:252.938661px;}
.y19_c00078{bottom:286.688659px;}
.y18_c00078{bottom:320.438658px;}
.y17_c00078{bottom:354.188656px;}
.y16_c00078{bottom:387.938655px;}
.y15_c00078{bottom:421.688654px;}
.y14_c00078{bottom:455.438652px;}
.y13_c00078{bottom:489.188651px;}
.y12_c00078{bottom:556.688648px;}
.y11_c00078{bottom:590.438647px;}
.y10_c00078{bottom:624.188645px;}
.yf_c00078{bottom:657.938644px;}
.ye_c00078{bottom:691.688642px;}
.yd_c00078{bottom:725.438641px;}
.yc_c00078{bottom:759.188640px;}
.yb_c00078{bottom:792.938638px;}
.ya_c00078{bottom:826.688637px;}
.y9_c00078{bottom:894.188634px;}
.y8_c00078{bottom:927.938633px;}
.y7_c00078{bottom:961.688631px;}
.y6_c00078{bottom:995.438630px;}
.y5_c00078{bottom:1029.188628px;}
.y4_c00078{bottom:1062.938627px;}
.y3_c00078{bottom:1096.688626px;}
.y2_c00078{bottom:1130.438624px;}
.y1d_c00078{bottom:1200.600303px;}
.h5_c00078{height:45.955303px;}
.h4_c00078{height:50.480386px;}
.h3_c00078{height:55.160154px;}
.h2_c00078{height:1304.999946px;}
.h0_c00078{height:1304.999953px;}
.h1_c00078{height:1305.000000px;}
.w2_c00078{width:934.874961px;}
.w0_c00078{width:934.875000px;}
.w1_c00078{width:935.250000px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:87.902647px;}
.x2_c00078{left:452.786554px;}
.x4_c00078{left:456.319054px;}
.x3_c00078{left:636.058362px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws0_c00078{word-spacing:0.000000pt;}
._a_c00078{width:1.055722pt;}
._7_c00078{width:2.046571pt;}
._0_c00078{width:3.019226pt;}
._b_c00078{width:4.057430pt;}
._d_c00078{width:5.840881pt;}
._3_c00078{width:6.805539pt;}
._2_c00078{width:8.083557pt;}
._1_c00078{width:9.005678pt;}
._8_c00078{width:12.395811pt;}
._c_c00078{width:14.640623pt;}
._6_c00078{width:17.656266pt;}
._9_c00078{width:19.309555pt;}
._5_c00078{width:23.142821pt;}
._4_c00078{width:68.099973pt;}
.fs2_c00078{font-size:53.319997pt;}
.fs1_c00078{font-size:61.883325pt;}
.fs0_c00078{font-size:63.999997pt;}
.y0_c00078{bottom:0.000000pt;}
.y1_c00078{bottom:0.000007pt;}
.y1e_c00078{bottom:26.134367pt;}
.y1c_c00078{bottom:26.976047pt;}
.y1b_c00078{bottom:194.834366pt;}
.y1a_c00078{bottom:224.834365pt;}
.y19_c00078{bottom:254.834364pt;}
.y18_c00078{bottom:284.834363pt;}
.y17_c00078{bottom:314.834361pt;}
.y16_c00078{bottom:344.834360pt;}
.y15_c00078{bottom:374.834359pt;}
.y14_c00078{bottom:404.834358pt;}
.y13_c00078{bottom:434.834356pt;}
.y12_c00078{bottom:494.834354pt;}
.y11_c00078{bottom:524.834353pt;}
.y10_c00078{bottom:554.834351pt;}
.yf_c00078{bottom:584.834350pt;}
.ye_c00078{bottom:614.834349pt;}
.yd_c00078{bottom:644.834348pt;}
.yc_c00078{bottom:674.834346pt;}
.yb_c00078{bottom:704.834345pt;}
.ya_c00078{bottom:734.834344pt;}
.y9_c00078{bottom:794.834341pt;}
.y8_c00078{bottom:824.834340pt;}
.y7_c00078{bottom:854.834339pt;}
.y6_c00078{bottom:884.834338pt;}
.y5_c00078{bottom:914.834336pt;}
.y4_c00078{bottom:944.834335pt;}
.y3_c00078{bottom:974.834334pt;}
.y2_c00078{bottom:1004.834333pt;}
.y1d_c00078{bottom:1067.200269pt;}
.h5_c00078{height:40.849158pt;}
.h4_c00078{height:44.871454pt;}
.h3_c00078{height:49.031248pt;}
.h2_c00078{height:1159.999952pt;}
.h0_c00078{height:1159.999959pt;}
.h1_c00078{height:1160.000000pt;}
.w2_c00078{width:830.999965pt;}
.w0_c00078{width:831.000000pt;}
.w1_c00078{width:831.333333pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:78.135686pt;}
.x2_c00078{left:402.476937pt;}
.x4_c00078{left:405.616937pt;}
.x3_c00078{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c73897ed1b9954fa4fc341d.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.006348;font-style:normal;font-weight:normal;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_52e6708bc09bee86b83cf636.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:0.882324;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:0.734863;font-style:normal;font-weight:normal;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_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:1.006348;font-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_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);}
.v0_c00079{vertical-align:0.000000px;}
.ls0_c00079{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00079{word-spacing:-18.703125px;}
.ws1_c00079{word-spacing:0.000000px;}
._5_c00079{width:1.189401px;}
._3_c00079{width:2.349290px;}
._2_c00079{width:3.468725px;}
._7_c00079{width:4.500144px;}
._1_c00079{width:6.066031px;}
._c_c00079{width:9.182785px;}
._d_c00079{width:10.957901px;}
._4_c00079{width:14.116540px;}
._6_c00079{width:16.011680px;}
._10_c00079{width:17.604763px;}
._9_c00079{width:20.994115px;}
._0_c00079{width:21.999983px;}
._8_c00079{width:23.789039px;}
._a_c00079{width:26.584509px;}
._f_c00079{width:32.468717px;}
._e_c00079{width:37.209317px;}
._b_c00079{width:39.585935px;}
.fc3_c00079{color:transparent;}
.fc2_c00079{color:rgb(74,93,83);}
.fc1_c00079{color:rgb(128,128,128);}
.fc0_c00079{color:rgb(0,0,0);}
.fs2_c00079{font-size:59.984997px;}
.fs1_c00079{font-size:69.618741px;}
.fs0_c00079{font-size:71.999997px;}
.y0_c00079{bottom:0.000000px;}
.y1_c00079{bottom:0.000008px;}
.y21_c00079{bottom:29.401163px;}
.y1f_c00079{bottom:30.348053px;}
.y1e_c00079{bottom:117.938666px;}
.y1d_c00079{bottom:151.688665px;}
.y1c_c00079{bottom:185.438663px;}
.y1b_c00079{bottom:252.938661px;}
.y1a_c00079{bottom:286.688659px;}
.y19_c00079{bottom:320.438658px;}
.y18_c00079{bottom:354.188656px;}
.y17_c00079{bottom:387.938655px;}
.y16_c00079{bottom:421.688654px;}
.y15_c00079{bottom:455.438652px;}
.y14_c00079{bottom:489.188651px;}
.y13_c00079{bottom:556.688648px;}
.y12_c00079{bottom:590.438647px;}
.y11_c00079{bottom:624.188645px;}
.y10_c00079{bottom:657.938644px;}
.yf_c00079{bottom:691.688642px;}
.ye_c00079{bottom:725.438641px;}
.yd_c00079{bottom:759.188640px;}
.yc_c00079{bottom:792.938638px;}
.yb_c00079{bottom:826.688637px;}
.ya_c00079{bottom:860.438635px;}
.y9_c00079{bottom:894.188634px;}
.y8_c00079{bottom:927.938633px;}
.y7_c00079{bottom:961.688631px;}
.y6_c00079{bottom:995.438630px;}
.y5_c00079{bottom:1029.188628px;}
.y4_c00079{bottom:1062.938627px;}
.y3_c00079{bottom:1096.688626px;}
.y2_c00079{bottom:1130.438624px;}
.y20_c00079{bottom:1200.600303px;}
.h5_c00079{height:45.955303px;}
.h4_c00079{height:50.480386px;}
.h3_c00079{height:55.160154px;}
.h2_c00079{height:1304.999946px;}
.h0_c00079{height:1304.999953px;}
.h1_c00079{height:1305.000000px;}
.w2_c00079{width:934.874961px;}
.w0_c00079{width:934.875000px;}
.w1_c00079{width:935.250000px;}
.x0_c00079{left:0.000000px;}
.x1_c00079{left:87.902647px;}
.x2_c00079{left:452.786554px;}
.x4_c00079{left:456.319054px;}
.x3_c00079{left:636.058362px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ws0_c00079{word-spacing:-16.625000pt;}
.ws1_c00079{word-spacing:0.000000pt;}
._5_c00079{width:1.057245pt;}
._3_c00079{width:2.088258pt;}
._2_c00079{width:3.083311pt;}
._7_c00079{width:4.000128pt;}
._1_c00079{width:5.392027pt;}
._c_c00079{width:8.162475pt;}
._d_c00079{width:9.740357pt;}
._4_c00079{width:12.548036pt;}
._6_c00079{width:14.232605pt;}
._10_c00079{width:15.648678pt;}
._9_c00079{width:18.661436pt;}
._0_c00079{width:19.555541pt;}
._8_c00079{width:21.145812pt;}
._a_c00079{width:23.630675pt;}
._f_c00079{width:28.861082pt;}
._e_c00079{width:33.074948pt;}
._b_c00079{width:35.187498pt;}
.fs2_c00079{font-size:53.319997pt;}
.fs1_c00079{font-size:61.883325pt;}
.fs0_c00079{font-size:63.999997pt;}
.y0_c00079{bottom:0.000000pt;}
.y1_c00079{bottom:0.000007pt;}
.y21_c00079{bottom:26.134367pt;}
.y1f_c00079{bottom:26.976047pt;}
.y1e_c00079{bottom:104.834370pt;}
.y1d_c00079{bottom:134.834369pt;}
.y1c_c00079{bottom:164.834368pt;}
.y1b_c00079{bottom:224.834365pt;}
.y1a_c00079{bottom:254.834364pt;}
.y19_c00079{bottom:284.834363pt;}
.y18_c00079{bottom:314.834361pt;}
.y17_c00079{bottom:344.834360pt;}
.y16_c00079{bottom:374.834359pt;}
.y15_c00079{bottom:404.834358pt;}
.y14_c00079{bottom:434.834356pt;}
.y13_c00079{bottom:494.834354pt;}
.y12_c00079{bottom:524.834353pt;}
.y11_c00079{bottom:554.834351pt;}
.y10_c00079{bottom:584.834350pt;}
.yf_c00079{bottom:614.834349pt;}
.ye_c00079{bottom:644.834348pt;}
.yd_c00079{bottom:674.834346pt;}
.yc_c00079{bottom:704.834345pt;}
.yb_c00079{bottom:734.834344pt;}
.ya_c00079{bottom:764.834343pt;}
.y9_c00079{bottom:794.834341pt;}
.y8_c00079{bottom:824.834340pt;}
.y7_c00079{bottom:854.834339pt;}
.y6_c00079{bottom:884.834338pt;}
.y5_c00079{bottom:914.834336pt;}
.y4_c00079{bottom:944.834335pt;}
.y3_c00079{bottom:974.834334pt;}
.y2_c00079{bottom:1004.834333pt;}
.y20_c00079{bottom:1067.200269pt;}
.h5_c00079{height:40.849158pt;}
.h4_c00079{height:44.871454pt;}
.h3_c00079{height:49.031248pt;}
.h2_c00079{height:1159.999952pt;}
.h0_c00079{height:1159.999959pt;}
.h1_c00079{height:1160.000000pt;}
.w2_c00079{width:830.999965pt;}
.w0_c00079{width:831.000000pt;}
.w1_c00079{width:831.333333pt;}
.x0_c00079{left:0.000000pt;}
.x1_c00079{left:78.135686pt;}
.x2_c00079{left:402.476937pt;}
.x4_c00079{left:405.616937pt;}
.x3_c00079{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_edb46aa0e021759118700ed2.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:0.734863;font-style:normal;font-weight:normal;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_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.006348;font-style:normal;font-weight:normal;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_9e6449e4a8b8d8c454f1a01b.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:1.000000;font-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_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);}
.v0_c00080{vertical-align:0.000000px;}
.ls0_c00080{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00080{word-spacing:0.000000px;}
._6_c00080{width:1.073846px;}
._0_c00080{width:3.187476px;}
._5_c00080{width:5.081656px;}
._c_c00080{width:6.377701px;}
._7_c00080{width:7.945312px;}
._b_c00080{width:9.182646px;}
._d_c00080{width:10.769482px;}
._e_c00080{width:12.932074px;}
._f_c00080{width:14.374431px;}
._4_c00080{width:20.467938px;}
._2_c00080{width:22.384650px;}
._1_c00080{width:23.414061px;}
._8_c00080{width:24.482751px;}
._3_c00080{width:42.672614px;}
._9_c00080{width:50.384738px;}
._a_c00080{width:54.109312px;}
.fc3_c00080{color:transparent;}
.fc2_c00080{color:rgb(74,93,83);}
.fc1_c00080{color:rgb(128,128,128);}
.fc0_c00080{color:rgb(0,0,0);}
.fs2_c00080{font-size:59.984997px;}
.fs1_c00080{font-size:69.618741px;}
.fs0_c00080{font-size:71.999997px;}
.y0_c00080{bottom:0.000000px;}
.y1_c00080{bottom:0.000008px;}
.y1c_c00080{bottom:29.401163px;}
.y1a_c00080{bottom:30.348053px;}
.y19_c00080{bottom:72.488978px;}
.y18_c00080{bottom:106.238976px;}
.y17_c00080{bottom:139.988975px;}
.y16_c00080{bottom:173.738974px;}
.y15_c00080{bottom:207.488972px;}
.y14_c00080{bottom:241.238971px;}
.y13_c00080{bottom:274.988969px;}
.y12_c00080{bottom:308.738968px;}
.y11_c00080{bottom:342.488967px;}
.y10_c00080{bottom:376.238965px;}
.yf_c00080{bottom:409.988964px;}
.ye_c00080{bottom:443.738962px;}
.yd_c00080{bottom:477.488961px;}
.y1e_c00080{bottom:688.791989px;}
.y1d_c00080{bottom:712.416988px;}
.yc_c00080{bottom:792.488948px;}
.yb_c00080{bottom:826.238946px;}
.ya_c00080{bottom:859.988945px;}
.y9_c00080{bottom:893.738944px;}
.y8_c00080{bottom:927.488942px;}
.y7_c00080{bottom:961.238941px;}
.y6_c00080{bottom:994.988939px;}
.y5_c00080{bottom:1028.738938px;}
.y4_c00080{bottom:1062.488937px;}
.y3_c00080{bottom:1096.238935px;}
.y2_c00080{bottom:1129.988934px;}
.y1b_c00080{bottom:1200.600033px;}
.h5_c00080{height:45.955303px;}
.h4_c00080{height:50.480386px;}
.h3_c00080{height:55.160154px;}
.h2_c00080{height:1304.999946px;}
.h0_c00080{height:1304.999953px;}
.h1_c00080{height:1305.000000px;}
.w2_c00080{width:934.874961px;}
.w0_c00080{width:934.875000px;}
.w1_c00080{width:935.250000px;}
.x0_c00080{left:0.000000px;}
.x1_c00080{left:93.044253px;}
.x2_c00080{left:452.786554px;}
.x4_c00080{left:456.319054px;}
.x3_c00080{left:636.058362px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ws0_c00080{word-spacing:0.000000pt;}
._6_c00080{width:0.954530pt;}
._0_c00080{width:2.833312pt;}
._5_c00080{width:4.517028pt;}
._c_c00080{width:5.669068pt;}
._7_c00080{width:7.062499pt;}
._b_c00080{width:8.162352pt;}
._d_c00080{width:9.572873pt;}
._e_c00080{width:11.495177pt;}
._f_c00080{width:12.777272pt;}
._4_c00080{width:18.193722pt;}
._2_c00080{width:19.897466pt;}
._1_c00080{width:20.812498pt;}
._8_c00080{width:21.762445pt;}
._3_c00080{width:37.931212pt;}
._9_c00080{width:44.786434pt;}
._a_c00080{width:48.097166pt;}
.fs2_c00080{font-size:53.319997pt;}
.fs1_c00080{font-size:61.883325pt;}
.fs0_c00080{font-size:63.999997pt;}
.y0_c00080{bottom:0.000000pt;}
.y1_c00080{bottom:0.000007pt;}
.y1c_c00080{bottom:26.134367pt;}
.y1a_c00080{bottom:26.976047pt;}
.y19_c00080{bottom:64.434647pt;}
.y18_c00080{bottom:94.434646pt;}
.y17_c00080{bottom:124.434644pt;}
.y16_c00080{bottom:154.434643pt;}
.y15_c00080{bottom:184.434642pt;}
.y14_c00080{bottom:214.434641pt;}
.y13_c00080{bottom:244.434639pt;}
.y12_c00080{bottom:274.434638pt;}
.y11_c00080{bottom:304.434637pt;}
.y10_c00080{bottom:334.434636pt;}
.yf_c00080{bottom:364.434634pt;}
.ye_c00080{bottom:394.434633pt;}
.yd_c00080{bottom:424.434632pt;}
.y1e_c00080{bottom:612.259546pt;}
.y1d_c00080{bottom:633.259545pt;}
.yc_c00080{bottom:704.434620pt;}
.yb_c00080{bottom:734.434619pt;}
.ya_c00080{bottom:764.434618pt;}
.y9_c00080{bottom:794.434616pt;}
.y8_c00080{bottom:824.434615pt;}
.y7_c00080{bottom:854.434614pt;}
.y6_c00080{bottom:884.434613pt;}
.y5_c00080{bottom:914.434611pt;}
.y4_c00080{bottom:944.434610pt;}
.y3_c00080{bottom:974.434609pt;}
.y2_c00080{bottom:1004.434608pt;}
.y1b_c00080{bottom:1067.200029pt;}
.h5_c00080{height:40.849158pt;}
.h4_c00080{height:44.871454pt;}
.h3_c00080{height:49.031248pt;}
.h2_c00080{height:1159.999952pt;}
.h0_c00080{height:1159.999959pt;}
.h1_c00080{height:1160.000000pt;}
.w2_c00080{width:830.999965pt;}
.w0_c00080{width:831.000000pt;}
.w1_c00080{width:831.333333pt;}
.x0_c00080{left:0.000000pt;}
.x1_c00080{left:82.706003pt;}
.x2_c00080{left:402.476937pt;}
.x4_c00080{left:405.616937pt;}
.x3_c00080{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75c238f607641b15f85c4e0c.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:0.734863;font-style:normal;font-weight:normal;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_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00081;src:url('chunks/assets/font_a6066288065f61d18f94b0bc.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.000000;font-style:normal;font-weight: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_c00081;src:url('chunks/assets/font_a32e0940d17ed436009bf139.woff2')format("woff");}.ff5_c00081{font-family:ff5_c00081;line-height:0.733887;font-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_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);}
.v0_c00081{vertical-align:0.000000px;}
.ls0_c00081{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00081{word-spacing:0.000000px;}
._1_c00081{width:4.048802px;}
._2_c00081{width:6.852723px;}
._5_c00081{width:9.755855px;}
._0_c00081{width:11.068314px;}
._3_c00081{width:12.158429px;}
._4_c00081{width:17.103515px;}
._6_c00081{width:19.792970px;}
._7_c00081{width:31.310140px;}
.fc4_c00081{color:transparent;}
.fc3_c00081{color:rgb(78,96,87);}
.fc2_c00081{color:rgb(74,93,83);}
.fc1_c00081{color:rgb(128,128,128);}
.fc0_c00081{color:rgb(0,0,0);}
.fs2_c00081{font-size:59.984997px;}
.fs1_c00081{font-size:69.618741px;}
.fs0_c00081{font-size:71.999997px;}
.fs3_c00081{font-size:244.045411px;}
.y0_c00081{bottom:0.000000px;}
.y1_c00081{bottom:0.000008px;}
.yd_c00081{bottom:29.400983px;}
.yb_c00081{bottom:30.347873px;}
.ya_c00081{bottom:129.644815px;}
.y9_c00081{bottom:160.019813px;}
.y8_c00081{bottom:190.394812px;}
.y7_c00081{bottom:220.769811px;}
.y6_c00081{bottom:251.144810px;}
.y5_c00081{bottom:281.519808px;}
.y4_c00081{bottom:311.894807px;}
.y3_c00081{bottom:342.269806px;}
.y2_c00081{bottom:372.644804px;}
.y12_c00081{bottom:444.538475px;}
.y11_c00081{bottom:448.151993px;}
.y10_c00081{bottom:472.901992px;}
.yf_c00081{bottom:547.655773px;}
.ye_c00081{bottom:567.905772px;}
.yc_c00081{bottom:1200.600036px;}
.h5_c00081{height:45.955303px;}
.h4_c00081{height:50.480386px;}
.h3_c00081{height:55.160154px;}
.h6_c00081{height:176.718430px;}
.h2_c00081{height:1304.999946px;}
.h0_c00081{height:1304.999953px;}
.h1_c00081{height:1305.000000px;}
.w2_c00081{width:934.874961px;}
.w0_c00081{width:934.875000px;}
.w1_c00081{width:935.250000px;}
.x0_c00081{left:0.000000px;}
.x7_c00081{left:86.921824px;}
.x1_c00081{left:89.487450px;}
.x6_c00081{left:134.291784px;}
.x5_c00081{left:145.810200px;}
.x2_c00081{left:452.786554px;}
.x4_c00081{left:456.319054px;}
.x3_c00081{left:636.058362px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ws0_c00081{word-spacing:0.000000pt;}
._1_c00081{width:3.598936pt;}
._2_c00081{width:6.091309pt;}
._5_c00081{width:8.671871pt;}
._0_c00081{width:9.838501pt;}
._3_c00081{width:10.807492pt;}
._4_c00081{width:15.203125pt;}
._6_c00081{width:17.593751pt;}
._7_c00081{width:27.831236pt;}
.fs2_c00081{font-size:53.319997pt;}
.fs1_c00081{font-size:61.883325pt;}
.fs0_c00081{font-size:63.999997pt;}
.fs3_c00081{font-size:216.929254pt;}
.y0_c00081{bottom:0.000000pt;}
.y1_c00081{bottom:0.000007pt;}
.yd_c00081{bottom:26.134207pt;}
.yb_c00081{bottom:26.975887pt;}
.ya_c00081{bottom:115.239835pt;}
.y9_c00081{bottom:142.239834pt;}
.y8_c00081{bottom:169.239833pt;}
.y7_c00081{bottom:196.239832pt;}
.y6_c00081{bottom:223.239831pt;}
.y5_c00081{bottom:250.239830pt;}
.y4_c00081{bottom:277.239828pt;}
.y3_c00081{bottom:304.239827pt;}
.y2_c00081{bottom:331.239826pt;}
.y12_c00081{bottom:395.145311pt;}
.y11_c00081{bottom:398.357327pt;}
.y10_c00081{bottom:420.357326pt;}
.yf_c00081{bottom:486.805132pt;}
.ye_c00081{bottom:504.805131pt;}
.yc_c00081{bottom:1067.200032pt;}
.h5_c00081{height:40.849158pt;}
.h4_c00081{height:44.871454pt;}
.h3_c00081{height:49.031248pt;}
.h6_c00081{height:157.083049pt;}
.h2_c00081{height:1159.999952pt;}
.h0_c00081{height:1159.999959pt;}
.h1_c00081{height:1160.000000pt;}
.w2_c00081{width:830.999965pt;}
.w0_c00081{width:831.000000pt;}
.w1_c00081{width:831.333333pt;}
.x0_c00081{left:0.000000pt;}
.x7_c00081{left:77.263843pt;}
.x1_c00081{left:79.544400pt;}
.x6_c00081{left:119.370475pt;}
.x5_c00081{left:129.609067pt;}
.x2_c00081{left:402.476937pt;}
.x4_c00081{left:405.616937pt;}
.x3_c00081{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_866127b1872a8fa00074c4b1.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:0.734863;font-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_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);}
.v0_c00082{vertical-align:0.000000px;}
.ls0_c00082{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00082{word-spacing:0.000000px;}
._5_c00082{width:1.590821px;}
._7_c00082{width:2.761264px;}
._e_c00082{width:3.782740px;}
._c_c00082{width:5.099034px;}
._4_c00082{width:6.446912px;}
._3_c00082{width:7.575348px;}
._a_c00082{width:8.624265px;}
._6_c00082{width:9.939949px;}
._0_c00082{width:11.558233px;}
._d_c00082{width:12.939633px;}
._2_c00082{width:14.570894px;}
._9_c00082{width:15.859187px;}
._8_c00082{width:16.878157px;}
._b_c00082{width:34.885778px;}
._1_c00082{width:39.287108px;}
.fc2_c00082{color:transparent;}
.fc1_c00082{color:rgb(128,128,128);}
.fc0_c00082{color:rgb(0,0,0);}
.fs1_c00082{font-size:69.618741px;}
.fs0_c00082{font-size:71.999997px;}
.y0_c00082{bottom:0.000000px;}
.y1_c00082{bottom:0.000008px;}
.y14_c00082{bottom:29.401163px;}
.y13_c00082{bottom:30.348053px;}
.y28_c00082{bottom:119.107975px;}
.y27_c00082{bottom:147.232974px;}
.y26_c00082{bottom:175.357973px;}
.y25_c00082{bottom:203.482972px;}
.y24_c00082{bottom:231.607970px;}
.y23_c00082{bottom:259.732969px;}
.y22_c00082{bottom:287.857968px;}
.y21_c00082{bottom:315.982967px;}
.y20_c00082{bottom:344.107966px;}
.y1f_c00082{bottom:372.232964px;}
.y1e_c00082{bottom:434.777677px;}
.y1d_c00082{bottom:462.902676px;}
.y1c_c00082{bottom:491.027675px;}
.y1b_c00082{bottom:519.152674px;}
.y1a_c00082{bottom:547.277672px;}
.y19_c00082{bottom:575.402671px;}
.y18_c00082{bottom:603.527670px;}
.y17_c00082{bottom:631.652669px;}
.y16_c00082{bottom:659.777668px;}
.y15_c00082{bottom:687.902667px;}
.y12_c00082{bottom:750.447214px;}
.y11_c00082{bottom:778.572212px;}
.y10_c00082{bottom:806.697211px;}
.yf_c00082{bottom:834.822210px;}
.ye_c00082{bottom:862.947209px;}
.yd_c00082{bottom:891.072208px;}
.yc_c00082{bottom:919.197207px;}
.yb_c00082{bottom:947.322205px;}
.ya_c00082{bottom:975.447204px;}
.y9_c00082{bottom:1003.572203px;}
.y8_c00082{bottom:1031.697202px;}
.y7_c00082{bottom:1059.822201px;}
.y6_c00082{bottom:1087.947199px;}
.y5_c00082{bottom:1116.072198px;}
.y4_c00082{bottom:1144.197197px;}
.y3_c00082{bottom:1172.322196px;}
.y2_c00082{bottom:1200.447195px;}
.h4_c00082{height:50.480386px;}
.h3_c00082{height:55.160154px;}
.h2_c00082{height:1304.999946px;}
.h0_c00082{height:1304.999953px;}
.h1_c00082{height:1305.000000px;}
.w2_c00082{width:934.874961px;}
.w0_c00082{width:934.875000px;}
.w1_c00082{width:935.250000px;}
.x0_c00082{left:0.000000px;}
.x1_c00082{left:88.695050px;}
.x2_c00082{left:452.786554px;}
.x3_c00082{left:456.319054px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ws0_c00082{word-spacing:0.000000pt;}
._5_c00082{width:1.414063pt;}
._7_c00082{width:2.454457pt;}
._e_c00082{width:3.362435pt;}
._c_c00082{width:4.532474pt;}
._4_c00082{width:5.730588pt;}
._3_c00082{width:6.733642pt;}
._a_c00082{width:7.666013pt;}
._6_c00082{width:8.835510pt;}
._0_c00082{width:10.273985pt;}
._d_c00082{width:11.501896pt;}
._2_c00082{width:12.951906pt;}
._9_c00082{width:14.097055pt;}
._8_c00082{width:15.002806pt;}
._b_c00082{width:31.009580pt;}
._1_c00082{width:34.921874pt;}
.fs1_c00082{font-size:61.883325pt;}
.fs0_c00082{font-size:63.999997pt;}
.y0_c00082{bottom:0.000000pt;}
.y1_c00082{bottom:0.000007pt;}
.y14_c00082{bottom:26.134367pt;}
.y13_c00082{bottom:26.976047pt;}
.y28_c00082{bottom:105.873756pt;}
.y27_c00082{bottom:130.873755pt;}
.y26_c00082{bottom:155.873754pt;}
.y25_c00082{bottom:180.873752pt;}
.y24_c00082{bottom:205.873751pt;}
.y23_c00082{bottom:230.873750pt;}
.y22_c00082{bottom:255.873749pt;}
.y21_c00082{bottom:280.873748pt;}
.y20_c00082{bottom:305.873747pt;}
.y1f_c00082{bottom:330.873746pt;}
.y1e_c00082{bottom:386.469046pt;}
.y1d_c00082{bottom:411.469045pt;}
.y1c_c00082{bottom:436.469044pt;}
.y1b_c00082{bottom:461.469043pt;}
.y1a_c00082{bottom:486.469042pt;}
.y19_c00082{bottom:511.469041pt;}
.y18_c00082{bottom:536.469040pt;}
.y17_c00082{bottom:561.469039pt;}
.y16_c00082{bottom:586.469038pt;}
.y15_c00082{bottom:611.469037pt;}
.y12_c00082{bottom:667.064190pt;}
.y11_c00082{bottom:692.064189pt;}
.y10_c00082{bottom:717.064188pt;}
.yf_c00082{bottom:742.064187pt;}
.ye_c00082{bottom:767.064186pt;}
.yd_c00082{bottom:792.064185pt;}
.yc_c00082{bottom:817.064184pt;}
.yb_c00082{bottom:842.064183pt;}
.ya_c00082{bottom:867.064181pt;}
.y9_c00082{bottom:892.064180pt;}
.y8_c00082{bottom:917.064179pt;}
.y7_c00082{bottom:942.064178pt;}
.y6_c00082{bottom:967.064177pt;}
.y5_c00082{bottom:992.064176pt;}
.y4_c00082{bottom:1017.064175pt;}
.y3_c00082{bottom:1042.064174pt;}
.y2_c00082{bottom:1067.064173pt;}
.h4_c00082{height:44.871454pt;}
.h3_c00082{height:49.031248pt;}
.h2_c00082{height:1159.999952pt;}
.h0_c00082{height:1159.999959pt;}
.h1_c00082{height:1160.000000pt;}
.w2_c00082{width:830.999965pt;}
.w0_c00082{width:831.000000pt;}
.w1_c00082{width:831.333333pt;}
.x0_c00082{left:0.000000pt;}
.x1_c00082{left:78.840045pt;}
.x2_c00082{left:402.476937pt;}
.x3_c00082{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5915836a4b48038fd55653be.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:0.734863;font-style:normal;font-weight:normal;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_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.006348;font-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_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);}
.v0_c00083{vertical-align:0.000000px;}
.ls0_c00083{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00083{word-spacing:0.000000px;}
._5_c00083{width:1.919104px;}
._3_c00083{width:3.483148px;}
._e_c00083{width:5.484298px;}
._1_c00083{width:6.914040px;}
._9_c00083{width:8.012255px;}
._c_c00083{width:9.434646px;}
._d_c00083{width:10.756026px;}
._7_c00083{width:11.977158px;}
._0_c00083{width:13.001905px;}
._4_c00083{width:14.062501px;}
._b_c00083{width:15.887811px;}
._2_c00083{width:16.890584px;}
._8_c00083{width:20.601564px;}
._6_c00083{width:26.226563px;}
._a_c00083{width:27.882064px;}
._f_c00083{width:39.506833px;}
.fc3_c00083{color:transparent;}
.fc2_c00083{color:rgb(74,93,83);}
.fc1_c00083{color:rgb(128,128,128);}
.fc0_c00083{color:rgb(0,0,0);}
.fs2_c00083{font-size:59.984997px;}
.fs1_c00083{font-size:69.618741px;}
.fs0_c00083{font-size:71.999997px;}
.y0_c00083{bottom:0.000000px;}
.y1_c00083{bottom:0.000008px;}
.y22_c00083{bottom:29.401163px;}
.y20_c00083{bottom:30.348053px;}
.y1f_c00083{bottom:158.888665px;}
.y1e_c00083{bottom:189.263663px;}
.y1d_c00083{bottom:219.638662px;}
.y1c_c00083{bottom:250.013661px;}
.y1b_c00083{bottom:280.388660px;}
.y1a_c00083{bottom:310.763658px;}
.y19_c00083{bottom:371.513656px;}
.y18_c00083{bottom:401.888654px;}
.y17_c00083{bottom:432.263653px;}
.y16_c00083{bottom:462.638652px;}
.y15_c00083{bottom:493.013651px;}
.y14_c00083{bottom:523.388649px;}
.y13_c00083{bottom:553.763648px;}
.y12_c00083{bottom:584.138647px;}
.y11_c00083{bottom:614.513646px;}
.y10_c00083{bottom:644.888644px;}
.yf_c00083{bottom:675.263643px;}
.ye_c00083{bottom:705.638642px;}
.yd_c00083{bottom:766.388639px;}
.yc_c00083{bottom:796.763638px;}
.yb_c00083{bottom:827.138637px;}
.ya_c00083{bottom:857.513635px;}
.y9_c00083{bottom:887.888634px;}
.y8_c00083{bottom:918.263633px;}
.y7_c00083{bottom:948.638632px;}
.y6_c00083{bottom:1009.388629px;}
.y5_c00083{bottom:1039.763628px;}
.y4_c00083{bottom:1070.138627px;}
.y3_c00083{bottom:1100.513625px;}
.y2_c00083{bottom:1130.888624px;}
.y21_c00083{bottom:1200.600303px;}
.h5_c00083{height:45.955303px;}
.h4_c00083{height:50.480386px;}
.h3_c00083{height:55.160154px;}
.h2_c00083{height:1304.999946px;}
.h0_c00083{height:1304.999953px;}
.h1_c00083{height:1305.000000px;}
.w2_c00083{width:934.874961px;}
.w0_c00083{width:934.875000px;}
.w1_c00083{width:935.250000px;}
.x0_c00083{left:0.000000px;}
.x1_c00083{left:87.902647px;}
.x2_c00083{left:452.786554px;}
.x4_c00083{left:456.319054px;}
.x3_c00083{left:636.058362px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ws0_c00083{word-spacing:0.000000pt;}
._5_c00083{width:1.705870pt;}
._3_c00083{width:3.096132pt;}
._e_c00083{width:4.874932pt;}
._1_c00083{width:6.145813pt;}
._9_c00083{width:7.122005pt;}
._c_c00083{width:8.386352pt;}
._d_c00083{width:9.560912pt;}
._7_c00083{width:10.646363pt;}
._0_c00083{width:11.557249pt;}
._4_c00083{width:12.500001pt;}
._b_c00083{width:14.122499pt;}
._2_c00083{width:15.013852pt;}
._8_c00083{width:18.312501pt;}
._6_c00083{width:23.312500pt;}
._a_c00083{width:24.784057pt;}
._f_c00083{width:35.117185pt;}
.fs2_c00083{font-size:53.319997pt;}
.fs1_c00083{font-size:61.883325pt;}
.fs0_c00083{font-size:63.999997pt;}
.y0_c00083{bottom:0.000000pt;}
.y1_c00083{bottom:0.000007pt;}
.y22_c00083{bottom:26.134367pt;}
.y20_c00083{bottom:26.976047pt;}
.y1f_c00083{bottom:141.234369pt;}
.y1e_c00083{bottom:168.234367pt;}
.y1d_c00083{bottom:195.234366pt;}
.y1c_c00083{bottom:222.234365pt;}
.y1b_c00083{bottom:249.234364pt;}
.y1a_c00083{bottom:276.234363pt;}
.y19_c00083{bottom:330.234361pt;}
.y18_c00083{bottom:357.234360pt;}
.y17_c00083{bottom:384.234358pt;}
.y16_c00083{bottom:411.234357pt;}
.y15_c00083{bottom:438.234356pt;}
.y14_c00083{bottom:465.234355pt;}
.y13_c00083{bottom:492.234354pt;}
.y12_c00083{bottom:519.234353pt;}
.y11_c00083{bottom:546.234352pt;}
.y10_c00083{bottom:573.234351pt;}
.yf_c00083{bottom:600.234349pt;}
.ye_c00083{bottom:627.234348pt;}
.yd_c00083{bottom:681.234346pt;}
.yc_c00083{bottom:708.234345pt;}
.yb_c00083{bottom:735.234344pt;}
.ya_c00083{bottom:762.234343pt;}
.y9_c00083{bottom:789.234342pt;}
.y8_c00083{bottom:816.234340pt;}
.y7_c00083{bottom:843.234339pt;}
.y6_c00083{bottom:897.234337pt;}
.y5_c00083{bottom:924.234336pt;}
.y4_c00083{bottom:951.234335pt;}
.y3_c00083{bottom:978.234334pt;}
.y2_c00083{bottom:1005.234333pt;}
.y21_c00083{bottom:1067.200269pt;}
.h5_c00083{height:40.849158pt;}
.h4_c00083{height:44.871454pt;}
.h3_c00083{height:49.031248pt;}
.h2_c00083{height:1159.999952pt;}
.h0_c00083{height:1159.999959pt;}
.h1_c00083{height:1160.000000pt;}
.w2_c00083{width:830.999965pt;}
.w0_c00083{width:831.000000pt;}
.w1_c00083{width:831.333333pt;}
.x0_c00083{left:0.000000pt;}
.x1_c00083{left:78.135686pt;}
.x2_c00083{left:402.476937pt;}
.x4_c00083{left:405.616937pt;}
.x3_c00083{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc9a405e17776987f3eb278a.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.006348;font-style:normal;font-weight:normal;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_7e9f807cb8c335ba2a17a7f2.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00084;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00084;src:url('chunks/assets/font_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.006348;font-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_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;}
.ls0_c00084{letter-spacing:0.000000px;}
.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;}
._1_c00084{width:1.811491px;}
._0_c00084{width:2.901559px;}
._b_c00084{width:4.146025px;}
._2_c00084{width:5.830512px;}
._5_c00084{width:6.939588px;}
._f_c00084{width:9.304663px;}
._4_c00084{width:11.806045px;}
._e_c00084{width:15.158177px;}
._6_c00084{width:17.620970px;}
._7_c00084{width:20.058145px;}
._3_c00084{width:22.789008px;}
._9_c00084{width:25.157795px;}
._10_c00084{width:26.767913px;}
._c_c00084{width:31.695277px;}
._a_c00084{width:32.809568px;}
._d_c00084{width:38.492177px;}
._8_c00084{width:43.101561px;}
.fc3_c00084{color:transparent;}
.fc2_c00084{color:rgb(74,93,83);}
.fc1_c00084{color:rgb(128,128,128);}
.fc0_c00084{color:rgb(0,0,0);}
.fs2_c00084{font-size:59.984997px;}
.fs1_c00084{font-size:69.618741px;}
.fs0_c00084{font-size:71.999997px;}
.y0_c00084{bottom:0.000000px;}
.y1_c00084{bottom:0.000008px;}
.y1f_c00084{bottom:29.401163px;}
.y1d_c00084{bottom:30.348053px;}
.y1c_c00084{bottom:185.438663px;}
.y1b_c00084{bottom:252.938661px;}
.y1a_c00084{bottom:286.688659px;}
.y19_c00084{bottom:320.438658px;}
.y18_c00084{bottom:354.188656px;}
.y17_c00084{bottom:387.938655px;}
.y16_c00084{bottom:421.688654px;}
.y15_c00084{bottom:455.438652px;}
.y14_c00084{bottom:489.188651px;}
.y13_c00084{bottom:522.938649px;}
.y12_c00084{bottom:556.688648px;}
.y11_c00084{bottom:590.438647px;}
.y10_c00084{bottom:624.188645px;}
.yf_c00084{bottom:691.688642px;}
.ye_c00084{bottom:725.438641px;}
.yd_c00084{bottom:759.188640px;}
.yc_c00084{bottom:792.938638px;}
.yb_c00084{bottom:826.688637px;}
.ya_c00084{bottom:860.438635px;}
.y9_c00084{bottom:894.188634px;}
.y8_c00084{bottom:927.938633px;}
.y7_c00084{bottom:961.688631px;}
.y6_c00084{bottom:995.438630px;}
.y5_c00084{bottom:1029.188628px;}
.y4_c00084{bottom:1062.938627px;}
.y3_c00084{bottom:1096.688626px;}
.y2_c00084{bottom:1130.438624px;}
.y1e_c00084{bottom:1200.600303px;}
.h5_c00084{height:45.955303px;}
.h4_c00084{height:50.480386px;}
.h3_c00084{height:55.160154px;}
.h2_c00084{height:1304.999946px;}
.h0_c00084{height:1304.999953px;}
.h1_c00084{height:1305.000000px;}
.w2_c00084{width:934.874961px;}
.w0_c00084{width:934.875000px;}
.w1_c00084{width:935.250000px;}
.x0_c00084{left:0.000000px;}
.x1_c00084{left:87.902647px;}
.x2_c00084{left:452.786554px;}
.x4_c00084{left:456.319054px;}
.x3_c00084{left:636.058362px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ws0_c00084{word-spacing:0.000000pt;}
._1_c00084{width:1.610215pt;}
._0_c00084{width:2.579164pt;}
._b_c00084{width:3.685356pt;}
._2_c00084{width:5.182677pt;}
._5_c00084{width:6.168523pt;}
._f_c00084{width:8.270811pt;}
._4_c00084{width:10.494262pt;}
._e_c00084{width:13.473935pt;}
._6_c00084{width:15.663084pt;}
._7_c00084{width:17.829462pt;}
._3_c00084{width:20.256896pt;}
._9_c00084{width:22.362484pt;}
._10_c00084{width:23.793701pt;}
._c_c00084{width:28.173580pt;}
._a_c00084{width:29.164060pt;}
._d_c00084{width:34.215268pt;}
._8_c00084{width:38.312498pt;}
.fs2_c00084{font-size:53.319997pt;}
.fs1_c00084{font-size:61.883325pt;}
.fs0_c00084{font-size:63.999997pt;}
.y0_c00084{bottom:0.000000pt;}
.y1_c00084{bottom:0.000007pt;}
.y1f_c00084{bottom:26.134367pt;}
.y1d_c00084{bottom:26.976047pt;}
.y1c_c00084{bottom:164.834368pt;}
.y1b_c00084{bottom:224.834365pt;}
.y1a_c00084{bottom:254.834364pt;}
.y19_c00084{bottom:284.834363pt;}
.y18_c00084{bottom:314.834361pt;}
.y17_c00084{bottom:344.834360pt;}
.y16_c00084{bottom:374.834359pt;}
.y15_c00084{bottom:404.834358pt;}
.y14_c00084{bottom:434.834356pt;}
.y13_c00084{bottom:464.834355pt;}
.y12_c00084{bottom:494.834354pt;}
.y11_c00084{bottom:524.834353pt;}
.y10_c00084{bottom:554.834351pt;}
.yf_c00084{bottom:614.834349pt;}
.ye_c00084{bottom:644.834348pt;}
.yd_c00084{bottom:674.834346pt;}
.yc_c00084{bottom:704.834345pt;}
.yb_c00084{bottom:734.834344pt;}
.ya_c00084{bottom:764.834343pt;}
.y9_c00084{bottom:794.834341pt;}
.y8_c00084{bottom:824.834340pt;}
.y7_c00084{bottom:854.834339pt;}
.y6_c00084{bottom:884.834338pt;}
.y5_c00084{bottom:914.834336pt;}
.y4_c00084{bottom:944.834335pt;}
.y3_c00084{bottom:974.834334pt;}
.y2_c00084{bottom:1004.834333pt;}
.y1e_c00084{bottom:1067.200269pt;}
.h5_c00084{height:40.849158pt;}
.h4_c00084{height:44.871454pt;}
.h3_c00084{height:49.031248pt;}
.h2_c00084{height:1159.999952pt;}
.h0_c00084{height:1159.999959pt;}
.h1_c00084{height:1160.000000pt;}
.w2_c00084{width:830.999965pt;}
.w0_c00084{width:831.000000pt;}
.w1_c00084{width:831.333333pt;}
.x0_c00084{left:0.000000pt;}
.x1_c00084{left:78.135686pt;}
.x2_c00084{left:402.476937pt;}
.x4_c00084{left:405.616937pt;}
.x3_c00084{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_399a28a332d41a3cbee2722a.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:0.734863;font-style:normal;font-weight:normal;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_b27385b307f0b40c1eaeaf5b.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:0.713867;font-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_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);}
.v0_c00085{vertical-align:0.000000px;}
.ls0_c00085{letter-spacing:0.000000px;}
.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;}
._1_c00085{width:1.406248px;}
._c_c00085{width:2.946669px;}
._d_c00085{width:6.862334px;}
._0_c00085{width:7.875000px;}
._a_c00085{width:9.351560px;}
._3_c00085{width:13.612471px;}
._4_c00085{width:14.742140px;}
._e_c00085{width:15.765112px;}
._9_c00085{width:17.308545px;}
._b_c00085{width:20.301084px;}
._10_c00085{width:21.308254px;}
._6_c00085{width:24.610607px;}
._2_c00085{width:25.958083px;}
._8_c00085{width:28.668274px;}
._7_c00085{width:31.156195px;}
._5_c00085{width:39.902341px;}
._11_c00085{width:46.351523px;}
._f_c00085{width:48.445310px;}
.fc3_c00085{color:transparent;}
.fc2_c00085{color:rgb(78,96,87);}
.fc1_c00085{color:rgb(128,128,128);}
.fc0_c00085{color:rgb(0,0,0);}
.fs1_c00085{font-size:69.618741px;}
.fs0_c00085{font-size:71.999997px;}
.fs2_c00085{font-size:244.045411px;}
.y0_c00085{bottom:0.000000px;}
.y1_c00085{bottom:0.000008px;}
.ya_c00085{bottom:29.401163px;}
.y9_c00085{bottom:30.348053px;}
.y13_c00085{bottom:119.360299px;}
.y12_c00085{bottom:153.110298px;}
.y11_c00085{bottom:186.860296px;}
.y10_c00085{bottom:220.610295px;}
.yf_c00085{bottom:254.360293px;}
.ye_c00085{bottom:288.110292px;}
.y22_c00085{bottom:338.510290px;}
.y21_c00085{bottom:372.260288px;}
.y20_c00085{bottom:406.010287px;}
.y1f_c00085{bottom:439.760286px;}
.y1e_c00085{bottom:473.510284px;}
.y1d_c00085{bottom:523.910282px;}
.y1c_c00085{bottom:557.660281px;}
.y1b_c00085{bottom:591.410279px;}
.y1a_c00085{bottom:625.160278px;}
.y19_c00085{bottom:658.910277px;}
.y18_c00085{bottom:692.660275px;}
.y17_c00085{bottom:726.410274px;}
.y16_c00085{bottom:760.160272px;}
.y15_c00085{bottom:793.910271px;}
.y14_c00085{bottom:827.660270px;}
.y8_c00085{bottom:878.308293px;}
.y7_c00085{bottom:912.058292px;}
.y6_c00085{bottom:945.808290px;}
.y5_c00085{bottom:979.558289px;}
.y4_c00085{bottom:1013.308287px;}
.y3_c00085{bottom:1047.058286px;}
.y2_c00085{bottom:1080.808285px;}
.yc_c00085{bottom:1144.431338px;}
.yd_c00085{bottom:1167.499092px;}
.yb_c00085{bottom:1169.181336px;}
.h4_c00085{height:50.480386px;}
.h3_c00085{height:55.160154px;}
.h5_c00085{height:174.216011px;}
.h2_c00085{height:1304.999946px;}
.h0_c00085{height:1304.999953px;}
.h1_c00085{height:1305.000000px;}
.w2_c00085{width:934.874961px;}
.w0_c00085{width:934.875000px;}
.w1_c00085{width:935.250000px;}
.x0_c00085{left:0.000000px;}
.x5_c00085{left:81.772413px;}
.x1_c00085{left:87.902647px;}
.x4_c00085{left:129.142370px;}
.x2_c00085{left:452.786554px;}
.x3_c00085{left:456.319054px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ws0_c00085{word-spacing:0.000000pt;}
._1_c00085{width:1.249998pt;}
._c_c00085{width:2.619262pt;}
._d_c00085{width:6.099853pt;}
._0_c00085{width:7.000000pt;}
._a_c00085{width:8.312498pt;}
._3_c00085{width:12.099974pt;}
._4_c00085{width:13.104124pt;}
._e_c00085{width:14.013433pt;}
._9_c00085{width:15.385373pt;}
._b_c00085{width:18.045408pt;}
._10_c00085{width:18.940670pt;}
._6_c00085{width:21.876095pt;}
._2_c00085{width:23.073852pt;}
._8_c00085{width:25.482910pt;}
._7_c00085{width:27.694395pt;}
._5_c00085{width:35.468747pt;}
._11_c00085{width:41.201354pt;}
._f_c00085{width:43.062498pt;}
.fs1_c00085{font-size:61.883325pt;}
.fs0_c00085{font-size:63.999997pt;}
.fs2_c00085{font-size:216.929254pt;}
.y0_c00085{bottom:0.000000pt;}
.y1_c00085{bottom:0.000007pt;}
.ya_c00085{bottom:26.134367pt;}
.y9_c00085{bottom:26.976047pt;}
.y13_c00085{bottom:106.098044pt;}
.y12_c00085{bottom:136.098042pt;}
.y11_c00085{bottom:166.098041pt;}
.y10_c00085{bottom:196.098040pt;}
.yf_c00085{bottom:226.098039pt;}
.ye_c00085{bottom:256.098037pt;}
.y22_c00085{bottom:300.898035pt;}
.y21_c00085{bottom:330.898034pt;}
.y20_c00085{bottom:360.898033pt;}
.y1f_c00085{bottom:390.898032pt;}
.y1e_c00085{bottom:420.898030pt;}
.y1d_c00085{bottom:465.698029pt;}
.y1c_c00085{bottom:495.698027pt;}
.y1b_c00085{bottom:525.698026pt;}
.y1a_c00085{bottom:555.698025pt;}
.y19_c00085{bottom:585.698024pt;}
.y18_c00085{bottom:615.698022pt;}
.y17_c00085{bottom:645.698021pt;}
.y16_c00085{bottom:675.698020pt;}
.y15_c00085{bottom:705.698019pt;}
.y14_c00085{bottom:735.698017pt;}
.y8_c00085{bottom:780.718483pt;}
.y7_c00085{bottom:810.718481pt;}
.y6_c00085{bottom:840.718480pt;}
.y5_c00085{bottom:870.718479pt;}
.y4_c00085{bottom:900.718478pt;}
.y3_c00085{bottom:930.718476pt;}
.y2_c00085{bottom:960.718475pt;}
.yc_c00085{bottom:1017.272300pt;}
.yd_c00085{bottom:1037.776971pt;}
.yb_c00085{bottom:1039.272299pt;}
.h4_c00085{height:44.871454pt;}
.h3_c00085{height:49.031248pt;}
.h5_c00085{height:154.858676pt;}
.h2_c00085{height:1159.999952pt;}
.h0_c00085{height:1159.999959pt;}
.h1_c00085{height:1160.000000pt;}
.w2_c00085{width:830.999965pt;}
.w0_c00085{width:831.000000pt;}
.w1_c00085{width:831.333333pt;}
.x0_c00085{left:0.000000pt;}
.x5_c00085{left:72.686589pt;}
.x1_c00085{left:78.135686pt;}
.x4_c00085{left:114.793218pt;}
.x2_c00085{left:402.476937pt;}
.x3_c00085{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ecd6ae06f9d4a442a486106.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:0.734863;font-style:normal;font-weight:normal;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_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.006348;font-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_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);}
.v0_c00086{vertical-align:0.000000px;}
.ls0_c00086{letter-spacing:0.000000px;}
.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;}
._4_c00086{width:1.774018px;}
._9_c00086{width:3.154179px;}
._7_c00086{width:4.231244px;}
._1_c00086{width:5.361328px;}
._e_c00086{width:6.364654px;}
._b_c00086{width:7.670447px;}
._3_c00086{width:8.740521px;}
._2_c00086{width:10.059697px;}
._d_c00086{width:12.565817px;}
._6_c00086{width:13.654893px;}
._5_c00086{width:14.677734px;}
._f_c00086{width:15.694653px;}
._10_c00086{width:21.070264px;}
._0_c00086{width:25.111587px;}
._c_c00086{width:26.150341px;}
._8_c00086{width:55.999988px;}
._a_c00086{width:57.210887px;}
.fc3_c00086{color:transparent;}
.fc2_c00086{color:rgb(74,93,83);}
.fc1_c00086{color:rgb(128,128,128);}
.fc0_c00086{color:rgb(0,0,0);}
.fs2_c00086{font-size:59.984997px;}
.fs1_c00086{font-size:69.618741px;}
.fs0_c00086{font-size:71.999997px;}
.y0_c00086{bottom:0.000000px;}
.y1_c00086{bottom:0.000008px;}
.y22_c00086{bottom:29.400983px;}
.y20_c00086{bottom:30.347873px;}
.y1f_c00086{bottom:132.765640px;}
.y1e_c00086{bottom:163.140639px;}
.y1d_c00086{bottom:193.515638px;}
.y1c_c00086{bottom:223.890636px;}
.y1b_c00086{bottom:254.265635px;}
.y1a_c00086{bottom:315.015632px;}
.y19_c00086{bottom:345.390631px;}
.y18_c00086{bottom:375.765630px;}
.y17_c00086{bottom:406.140629px;}
.y16_c00086{bottom:436.515627px;}
.y15_c00086{bottom:466.890626px;}
.y14_c00086{bottom:497.265625px;}
.y13_c00086{bottom:527.640624px;}
.y12_c00086{bottom:588.390621px;}
.y11_c00086{bottom:618.765620px;}
.y10_c00086{bottom:649.140619px;}
.yf_c00086{bottom:679.515617px;}
.ye_c00086{bottom:709.890616px;}
.yd_c00086{bottom:740.265615px;}
.yc_c00086{bottom:801.015612px;}
.yb_c00086{bottom:831.390611px;}
.ya_c00086{bottom:861.765610px;}
.y9_c00086{bottom:892.140608px;}
.y8_c00086{bottom:922.515607px;}
.y7_c00086{bottom:952.890606px;}
.y6_c00086{bottom:983.265605px;}
.y5_c00086{bottom:1013.640603px;}
.y4_c00086{bottom:1044.015602px;}
.y3_c00086{bottom:1074.390601px;}
.y2_c00086{bottom:1104.765600px;}
.y21_c00086{bottom:1200.600036px;}
.h5_c00086{height:45.955303px;}
.h4_c00086{height:50.480386px;}
.h3_c00086{height:55.160154px;}
.h2_c00086{height:1304.999946px;}
.h0_c00086{height:1304.999953px;}
.h1_c00086{height:1305.000000px;}
.w2_c00086{width:934.874961px;}
.w0_c00086{width:934.875000px;}
.w1_c00086{width:935.250000px;}
.x0_c00086{left:0.000000px;}
.x1_c00086{left:87.902647px;}
.x2_c00086{left:452.786554px;}
.x4_c00086{left:456.319054px;}
.x3_c00086{left:636.058362px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ws0_c00086{word-spacing:0.000000pt;}
._4_c00086{width:1.576905pt;}
._9_c00086{width:2.803715pt;}
._7_c00086{width:3.761106pt;}
._1_c00086{width:4.765625pt;}
._e_c00086{width:5.657470pt;}
._b_c00086{width:6.818175pt;}
._3_c00086{width:7.769352pt;}
._2_c00086{width:8.941953pt;}
._d_c00086{width:11.169616pt;}
._6_c00086{width:12.137683pt;}
._5_c00086{width:13.046875pt;}
._f_c00086{width:13.950803pt;}
._10_c00086{width:18.729123pt;}
._0_c00086{width:22.321411pt;}
._c_c00086{width:23.244748pt;}
._8_c00086{width:49.777767pt;}
._a_c00086{width:50.854122pt;}
.fs2_c00086{font-size:53.319997pt;}
.fs1_c00086{font-size:61.883325pt;}
.fs0_c00086{font-size:63.999997pt;}
.y0_c00086{bottom:0.000000pt;}
.y1_c00086{bottom:0.000007pt;}
.y22_c00086{bottom:26.134207pt;}
.y20_c00086{bottom:26.975887pt;}
.y1f_c00086{bottom:118.013902pt;}
.y1e_c00086{bottom:145.013901pt;}
.y1d_c00086{bottom:172.013900pt;}
.y1c_c00086{bottom:199.013899pt;}
.y1b_c00086{bottom:226.013898pt;}
.y1a_c00086{bottom:280.013896pt;}
.y19_c00086{bottom:307.013894pt;}
.y18_c00086{bottom:334.013893pt;}
.y17_c00086{bottom:361.013892pt;}
.y16_c00086{bottom:388.013891pt;}
.y15_c00086{bottom:415.013890pt;}
.y14_c00086{bottom:442.013889pt;}
.y13_c00086{bottom:469.013888pt;}
.y12_c00086{bottom:523.013885pt;}
.y11_c00086{bottom:550.013884pt;}
.y10_c00086{bottom:577.013883pt;}
.yf_c00086{bottom:604.013882pt;}
.ye_c00086{bottom:631.013881pt;}
.yd_c00086{bottom:658.013880pt;}
.yc_c00086{bottom:712.013878pt;}
.yb_c00086{bottom:739.013876pt;}
.ya_c00086{bottom:766.013875pt;}
.y9_c00086{bottom:793.013874pt;}
.y8_c00086{bottom:820.013873pt;}
.y7_c00086{bottom:847.013872pt;}
.y6_c00086{bottom:874.013871pt;}
.y5_c00086{bottom:901.013870pt;}
.y4_c00086{bottom:928.013869pt;}
.y3_c00086{bottom:955.013867pt;}
.y2_c00086{bottom:982.013866pt;}
.y21_c00086{bottom:1067.200032pt;}
.h5_c00086{height:40.849158pt;}
.h4_c00086{height:44.871454pt;}
.h3_c00086{height:49.031248pt;}
.h2_c00086{height:1159.999952pt;}
.h0_c00086{height:1159.999959pt;}
.h1_c00086{height:1160.000000pt;}
.w2_c00086{width:830.999965pt;}
.w0_c00086{width:831.000000pt;}
.w1_c00086{width:831.333333pt;}
.x0_c00086{left:0.000000pt;}
.x1_c00086{left:78.135686pt;}
.x2_c00086{left:402.476937pt;}
.x4_c00086{left:405.616937pt;}
.x3_c00086{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:0.734863;font-style:normal;font-weight:normal;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_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.006348;font-style:normal;font-weight:normal;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_d05935db6dda911de4ab9e38.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00087;src:url('chunks/assets/font_b52991aac5aed9320ce094e3.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.000000;font-style:normal;font-weight: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_c00087;src:url('chunks/assets/font_825139a902235449f3a349d6.woff2')format("woff");}.ff5_c00087{font-family:ff5_c00087;line-height:0.772949;font-style:normal;font-weight: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_c00087;src:url('chunks/assets/font_195d0b82d5ff4cf21eacb020.woff2')format("woff");}.ff6_c00087{font-family:ff6_c00087;line-height:0.779297;font-style:normal;font-weight: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_c00087;src:url('chunks/assets/font_b940f5b0588e11295138d11c.woff2')format("woff");}.ff7_c00087{font-family:ff7_c00087;line-height:0.772949;font-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_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;}
.ls0_c00087{letter-spacing:0.000000px;}
.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.059985px;}
.ws2_c00087{word-spacing:0.000000px;}
.ws1_c00087{word-spacing:1399.665438px;}
._0_c00087{width:3.678919px;}
._1_c00087{width:7.504338px;}
.fc5_c00087{color:transparent;}
.fc4_c00087{color:rgb(0,147,221);}
.fc3_c00087{color:rgb(34,135,65);}
.fc1_c00087{color:rgb(74,93,83);}
.fc2_c00087{color:rgb(0,0,0);}
.fc0_c00087{color:rgb(128,128,128);}
.fs1_c00087{font-size:59.984997px;}
.fs0_c00087{font-size:69.618741px;}
.fs2_c00087{font-size:71.999997px;}
.fs3_c00087{font-size:83.969997px;}
.y0_c00087{bottom:0.000000px;}
.y1_c00087{bottom:0.000008px;}
.y4_c00087{bottom:29.401163px;}
.y2_c00087{bottom:30.348053px;}
.y9_c00087{bottom:242.176274px;}
.y8_c00087{bottom:262.426273px;}
.ya_c00087{bottom:315.186323px;}
.y7_c00087{bottom:1088.441321px;}
.y6_c00087{bottom:1108.691320px;}
.y5_c00087{bottom:1128.941319px;}
.y3_c00087{bottom:1200.600126px;}
.h4_c00087{height:45.955303px;}
.h3_c00087{height:50.480386px;}
.h5_c00087{height:55.160154px;}
.h6_c00087{height:63.797517px;}
.h2_c00087{height:1304.999946px;}
.h0_c00087{height:1304.999953px;}
.h1_c00087{height:1305.000000px;}
.w2_c00087{width:934.874961px;}
.w0_c00087{width:934.875000px;}
.w1_c00087{width:935.250000px;}
.x0_c00087{left:0.000000px;}
.x4_c00087{left:107.947713px;}
.x5_c00087{left:160.984923px;}
.x6_c00087{left:400.593720px;}
.x1_c00087{left:452.786554px;}
.x3_c00087{left:456.319054px;}
.x2_c00087{left:636.058362px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls0_c00087{letter-spacing:0.000000pt;}
.ws0_c00087{word-spacing:-0.053320pt;}
.ws2_c00087{word-spacing:0.000000pt;}
.ws1_c00087{word-spacing:1244.147056pt;}
._0_c00087{width:3.270150pt;}
._1_c00087{width:6.670523pt;}
.fs1_c00087{font-size:53.319997pt;}
.fs0_c00087{font-size:61.883325pt;}
.fs2_c00087{font-size:63.999997pt;}
.fs3_c00087{font-size:74.639997pt;}
.y0_c00087{bottom:0.000000pt;}
.y1_c00087{bottom:0.000007pt;}
.y4_c00087{bottom:26.134367pt;}
.y2_c00087{bottom:26.976047pt;}
.y9_c00087{bottom:215.267799pt;}
.y8_c00087{bottom:233.267798pt;}
.ya_c00087{bottom:280.165620pt;}
.y7_c00087{bottom:967.503396pt;}
.y6_c00087{bottom:985.503396pt;}
.y5_c00087{bottom:1003.503395pt;}
.y3_c00087{bottom:1067.200112pt;}
.h4_c00087{height:40.849158pt;}
.h3_c00087{height:44.871454pt;}
.h5_c00087{height:49.031248pt;}
.h6_c00087{height:56.708904pt;}
.h2_c00087{height:1159.999952pt;}
.h0_c00087{height:1159.999959pt;}
.h1_c00087{height:1160.000000pt;}
.w2_c00087{width:830.999965pt;}
.w0_c00087{width:831.000000pt;}
.w1_c00087{width:831.333333pt;}
.x0_c00087{left:0.000000pt;}
.x4_c00087{left:95.953522pt;}
.x5_c00087{left:143.097709pt;}
.x6_c00087{left:356.083307pt;}
.x1_c00087{left:402.476937pt;}
.x3_c00087{left:405.616937pt;}
.x2_c00087{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:0.734863;font-style:normal;font-weight:normal;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_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.006348;font-style:normal;font-weight:normal;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_7efdce935f33d58551a593d1.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.006348;font-style:normal;font-weight:normal;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_4470652d6cd5b27594f30cb5.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.000000;font-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_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);}
.v0_c00088{vertical-align:0.000000px;}
.ls0_c00088{letter-spacing:0.000000px;}
.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;}
._0_c00088{width:1.458810px;}
._3_c00088{width:4.567313px;}
._2_c00088{width:5.742928px;}
._1_c00088{width:11.528765px;}
.fc3_c00088{color:transparent;}
.fc1_c00088{color:rgb(74,93,83);}
.fc2_c00088{color:rgb(0,0,0);}
.fc0_c00088{color:rgb(128,128,128);}
.fs1_c00088{font-size:59.984997px;}
.fs0_c00088{font-size:69.618741px;}
.fs2_c00088{font-size:71.999997px;}
.y0_c00088{bottom:0.000000px;}
.y1_c00088{bottom:0.000008px;}
.y4_c00088{bottom:29.401163px;}
.y2_c00088{bottom:30.348053px;}
.ya_c00088{bottom:111.434395px;}
.y9_c00088{bottom:131.684395px;}
.y8_c00088{bottom:151.934394px;}
.y7_c00088{bottom:655.323021px;}
.y6_c00088{bottom:675.573020px;}
.y5_c00088{bottom:695.823019px;}
.y3_c00088{bottom:1200.600303px;}
.h4_c00088{height:45.955303px;}
.h3_c00088{height:50.480386px;}
.h5_c00088{height:55.160154px;}
.h2_c00088{height:1304.999946px;}
.h0_c00088{height:1304.999953px;}
.h1_c00088{height:1305.000000px;}
.w2_c00088{width:934.874961px;}
.w0_c00088{width:934.875000px;}
.w1_c00088{width:935.250000px;}
.x0_c00088{left:0.000000px;}
.x4_c00088{left:135.814728px;}
.x1_c00088{left:452.786554px;}
.x3_c00088{left:456.319054px;}
.x2_c00088{left:636.058362px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ws0_c00088{word-spacing:0.000000pt;}
._0_c00088{width:1.296720pt;}
._3_c00088{width:4.059834pt;}
._2_c00088{width:5.104825pt;}
._1_c00088{width:10.247791pt;}
.fs1_c00088{font-size:53.319997pt;}
.fs0_c00088{font-size:61.883325pt;}
.fs2_c00088{font-size:63.999997pt;}
.y0_c00088{bottom:0.000000pt;}
.y1_c00088{bottom:0.000007pt;}
.y4_c00088{bottom:26.134367pt;}
.y2_c00088{bottom:26.976047pt;}
.ya_c00088{bottom:99.052796pt;}
.y9_c00088{bottom:117.052795pt;}
.y8_c00088{bottom:135.052794pt;}
.y7_c00088{bottom:582.509352pt;}
.y6_c00088{bottom:600.509351pt;}
.y5_c00088{bottom:618.509350pt;}
.y3_c00088{bottom:1067.200269pt;}
.h4_c00088{height:40.849158pt;}
.h3_c00088{height:44.871454pt;}
.h5_c00088{height:49.031248pt;}
.h2_c00088{height:1159.999952pt;}
.h0_c00088{height:1159.999959pt;}
.h1_c00088{height:1160.000000pt;}
.w2_c00088{width:830.999965pt;}
.w0_c00088{width:831.000000pt;}
.w1_c00088{width:831.333333pt;}
.x0_c00088{left:0.000000pt;}
.x4_c00088{left:120.724203pt;}
.x1_c00088{left:402.476937pt;}
.x3_c00088{left:405.616937pt;}
.x2_c00088{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:0.734863;font-style:normal;font-weight:normal;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_748233fe6bb96e6e537a597e.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00089;src:url('chunks/assets/font_7fee5f93673864a7636d2348.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00089;src:url('chunks/assets/font_0e80984c82215e300accb56f.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.000000;font-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_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);}
.v0_c00089{vertical-align:0.000000px;}
.ls0_c00089{letter-spacing:0.000000px;}
.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;}
._1_c00089{width:1.973639px;}
._2_c00089{width:8.033466px;}
._0_c00089{width:9.059357px;}
.fc3_c00089{color:transparent;}
.fc1_c00089{color:rgb(74,93,83);}
.fc2_c00089{color:rgb(0,0,0);}
.fc0_c00089{color:rgb(128,128,128);}
.fs1_c00089{font-size:59.984997px;}
.fs0_c00089{font-size:69.618741px;}
.fs2_c00089{font-size:71.999997px;}
.y0_c00089{bottom:0.000000px;}
.y1_c00089{bottom:0.000008px;}
.y4_c00089{bottom:29.401163px;}
.y2_c00089{bottom:30.348053px;}
.yb_c00089{bottom:85.716572px;}
.ya_c00089{bottom:105.966572px;}
.y9_c00089{bottom:413.448715px;}
.y8_c00089{bottom:433.698714px;}
.y7_c00089{bottom:741.769774px;}
.y6_c00089{bottom:762.019773px;}
.y5_c00089{bottom:782.269772px;}
.y3_c00089{bottom:1200.600303px;}
.h4_c00089{height:45.955303px;}
.h3_c00089{height:50.480386px;}
.h5_c00089{height:55.160154px;}
.h2_c00089{height:1304.999946px;}
.h0_c00089{height:1304.999953px;}
.h1_c00089{height:1305.000000px;}
.w2_c00089{width:934.874961px;}
.w0_c00089{width:934.875000px;}
.w1_c00089{width:935.250000px;}
.x0_c00089{left:0.000000px;}
.x4_c00089{left:140.625016px;}
.x1_c00089{left:452.786554px;}
.x3_c00089{left:456.319054px;}
.x2_c00089{left:636.058362px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls0_c00089{letter-spacing:0.000000pt;}
.ws0_c00089{word-spacing:0.000000pt;}
._1_c00089{width:1.754346pt;}
._2_c00089{width:7.140858pt;}
._0_c00089{width:8.052762pt;}
.fs1_c00089{font-size:53.319997pt;}
.fs0_c00089{font-size:61.883325pt;}
.fs2_c00089{font-size:63.999997pt;}
.y0_c00089{bottom:0.000000pt;}
.y1_c00089{bottom:0.000007pt;}
.y4_c00089{bottom:26.134367pt;}
.y2_c00089{bottom:26.976047pt;}
.yb_c00089{bottom:76.192509pt;}
.ya_c00089{bottom:94.192508pt;}
.y9_c00089{bottom:367.509969pt;}
.y8_c00089{bottom:385.509968pt;}
.y7_c00089{bottom:659.350910pt;}
.y6_c00089{bottom:677.350909pt;}
.y5_c00089{bottom:695.350909pt;}
.y3_c00089{bottom:1067.200269pt;}
.h4_c00089{height:40.849158pt;}
.h3_c00089{height:44.871454pt;}
.h5_c00089{height:49.031248pt;}
.h2_c00089{height:1159.999952pt;}
.h0_c00089{height:1159.999959pt;}
.h1_c00089{height:1160.000000pt;}
.w2_c00089{width:830.999965pt;}
.w0_c00089{width:831.000000pt;}
.w1_c00089{width:831.333333pt;}
.x0_c00089{left:0.000000pt;}
.x4_c00089{left:125.000014pt;}
.x1_c00089{left:402.476937pt;}
.x3_c00089{left:405.616937pt;}
.x2_c00089{left:565.385211pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15cfe1dbd75f3c83b2dcf848.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00090;src:url('chunks/assets/font_a560db233208f85e3f2dfa52.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.005371;font-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_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);}
.v0_c00090{vertical-align:0.000000px;}
.ls0_c00090{letter-spacing:0.000000px;}
.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:0.000000px;}
._3_c00090{width:1.072679px;}
._0_c00090{width:3.070264px;}
._a_c00090{width:4.902645px;}
._2_c00090{width:6.679689px;}
._6_c00090{width:8.523399px;}
._b_c00090{width:9.617227px;}
._f_c00090{width:11.854660px;}
._5_c00090{width:17.140591px;}
._c_c00090{width:23.995717px;}
._4_c00090{width:26.887458px;}
._7_c00090{width:31.218751px;}
._8_c00090{width:32.294006px;}
._e_c00090{width:37.124933px;}
._1_c00090{width:38.531248px;}
._9_c00090{width:42.321049px;}
._d_c00090{width:51.943358px;}
.fc3_c00090{color:transparent;}
.fc2_c00090{color:rgb(102,141,85);}
.fc1_c00090{color:rgb(128,128,128);}
.fc0_c00090{color:rgb(0,0,0);}
.fs1_c00090{font-size:69.618741px;}
.fs0_c00090{font-size:71.999997px;}
.fs2_c00090{font-size:119.969995px;}
.y0_c00090{bottom:0.000000px;}
.y1_c00090{bottom:0.000008px;}
.y20_c00090{bottom:29.401163px;}
.y1f_c00090{bottom:30.348053px;}
.y1e_c00090{bottom:272.209132px;}
.y1d_c00090{bottom:299.209131px;}
.y1c_c00090{bottom:326.209130px;}
.y1b_c00090{bottom:353.209129px;}
.y1a_c00090{bottom:380.209128px;}
.y19_c00090{bottom:434.209126px;}
.y18_c00090{bottom:461.209124px;}
.y17_c00090{bottom:488.209123px;}
.y16_c00090{bottom:515.209122px;}
.y15_c00090{bottom:542.209121px;}
.y14_c00090{bottom:569.209120px;}
.y13_c00090{bottom:623.209118px;}
.y12_c00090{bottom:650.209117px;}
.y11_c00090{bottom:677.209115px;}
.y10_c00090{bottom:704.209114px;}
.yf_c00090{bottom:731.209113px;}
.ye_c00090{bottom:758.209112px;}
.yd_c00090{bottom:812.209110px;}
.yc_c00090{bottom:839.209109px;}
.yb_c00090{bottom:866.209108px;}
.ya_c00090{bottom:893.209106px;}
.y9_c00090{bottom:920.209105px;}
.y8_c00090{bottom:974.209103px;}
.y7_c00090{bottom:1001.209102px;}
.y6_c00090{bottom:1028.209101px;}
.y5_c00090{bottom:1055.209100px;}
.y4_c00090{bottom:1082.209099px;}
.y3_c00090{bottom:1109.209097px;}
.y2_c00090{bottom:1136.209096px;}
.y21_c00090{bottom:1197.101211px;}
.h4_c00090{height:50.480386px;}
.h3_c00090{height:55.160154px;}
.h5_c00090{height:91.793448px;}
.h2_c00090{height:1304.999946px;}
.h0_c00090{height:1304.999953px;}
.h1_c00090{height:1305.000000px;}
.w2_c00090{width:934.874961px;}
.w0_c00090{width:934.875000px;}
.w1_c00090{width:935.250000px;}
.x0_c00090{left:0.000000px;}
.x4_c00090{left:87.902647px;}
.x1_c00090{left:89.487450px;}
.x2_c00090{left:452.786554px;}
.x3_c00090{left:456.319054px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ws0_c00090{word-spacing:0.000000pt;}
._3_c00090{width:0.953492pt;}
._0_c00090{width:2.729124pt;}
._a_c00090{width:4.357907pt;}
._2_c00090{width:5.937502pt;}
._6_c00090{width:7.576355pt;}
._b_c00090{width:8.548646pt;}
._f_c00090{width:10.537476pt;}
._5_c00090{width:15.236081pt;}
._c_c00090{width:21.329526pt;}
._4_c00090{width:23.899962pt;}
._7_c00090{width:27.750001pt;}
._8_c00090{width:28.705783pt;}
._e_c00090{width:32.999941pt;}
._1_c00090{width:34.249998pt;}
._9_c00090{width:37.618710pt;}
._d_c00090{width:46.171873pt;}
.fs1_c00090{font-size:61.883325pt;}
.fs0_c00090{font-size:63.999997pt;}
.fs2_c00090{font-size:106.639996pt;}
.y0_c00090{bottom:0.000000pt;}
.y1_c00090{bottom:0.000007pt;}
.y20_c00090{bottom:26.134367pt;}
.y1f_c00090{bottom:26.976047pt;}
.y1e_c00090{bottom:241.963673pt;}
.y1d_c00090{bottom:265.963672pt;}
.y1c_c00090{bottom:289.963671pt;}
.y1b_c00090{bottom:313.963670pt;}
.y1a_c00090{bottom:337.963669pt;}
.y19_c00090{bottom:385.963667pt;}
.y18_c00090{bottom:409.963666pt;}
.y17_c00090{bottom:433.963665pt;}
.y16_c00090{bottom:457.963664pt;}
.y15_c00090{bottom:481.963663pt;}
.y14_c00090{bottom:505.963662pt;}
.y13_c00090{bottom:553.963660pt;}
.y12_c00090{bottom:577.963659pt;}
.y11_c00090{bottom:601.963658pt;}
.y10_c00090{bottom:625.963657pt;}
.yf_c00090{bottom:649.963656pt;}
.ye_c00090{bottom:673.963655pt;}
.yd_c00090{bottom:721.963653pt;}
.yc_c00090{bottom:745.963652pt;}
.yb_c00090{bottom:769.963651pt;}
.ya_c00090{bottom:793.963650pt;}
.y9_c00090{bottom:817.963649pt;}
.y8_c00090{bottom:865.963647pt;}
.y7_c00090{bottom:889.963646pt;}
.y6_c00090{bottom:913.963645pt;}
.y5_c00090{bottom:937.963644pt;}
.y4_c00090{bottom:961.963643pt;}
.y3_c00090{bottom:985.963642pt;}
.y2_c00090{bottom:1009.963641pt;}
.y21_c00090{bottom:1064.089965pt;}
.h4_c00090{height:44.871454pt;}
.h3_c00090{height:49.031248pt;}
.h5_c00090{height:81.594176pt;}
.h2_c00090{height:1159.999952pt;}
.h0_c00090{height:1159.999959pt;}
.h1_c00090{height:1160.000000pt;}
.w2_c00090{width:830.999965pt;}
.w0_c00090{width:831.000000pt;}
.w1_c00090{width:831.333333pt;}
.x0_c00090{left:0.000000pt;}
.x4_c00090{left:78.135686pt;}
.x1_c00090{left:79.544400pt;}
.x2_c00090{left:402.476937pt;}
.x3_c00090{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eedef0e51769174f916dd2c8.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:0.772949;font-style:normal;font-weight:normal;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_0511cb5796a25b9a35982994.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:0.734863;font-style:normal;font-weight:normal;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_c1e0ed1fe1fb784f43636618.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.006348;font-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_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);}
.v0_c00091{vertical-align:0.000000px;}
.ls0_c00091{letter-spacing:0.000000px;}
.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;}
._1_c00091{width:1.062171px;}
._0_c00091{width:4.081362px;}
.fc3_c00091{color:transparent;}
.fc2_c00091{color:rgb(128,128,128);}
.fc1_c00091{color:rgb(0,0,0);}
.fc0_c00091{color:rgb(74,93,83);}
.fs0_c00091{font-size:59.984997px;}
.fs1_c00091{font-size:69.618741px;}
.fs2_c00091{font-size:71.999997px;}
.y0_c00091{bottom:0.000000px;}
.y1_c00091{bottom:0.000008px;}
.y6_c00091{bottom:29.400983px;}
.y5_c00091{bottom:30.347873px;}
.y4_c00091{bottom:1123.561447px;}
.y3_c00091{bottom:1143.811446px;}
.y2_c00091{bottom:1164.061445px;}
.y7_c00091{bottom:1199.772371px;}
.h3_c00091{height:45.955303px;}
.h4_c00091{height:50.480386px;}
.h5_c00091{height:55.160154px;}
.h2_c00091{height:1304.999946px;}
.h0_c00091{height:1304.999953px;}
.h1_c00091{height:1305.000000px;}
.w2_c00091{width:934.874961px;}
.w0_c00091{width:934.875000px;}
.w1_c00091{width:935.250000px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:87.902647px;}
.x2_c00091{left:452.786554px;}
.x3_c00091{left:456.319054px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws0_c00091{word-spacing:0.000000pt;}
._1_c00091{width:0.944152pt;}
._0_c00091{width:3.627877pt;}
.fs0_c00091{font-size:53.319997pt;}
.fs1_c00091{font-size:61.883325pt;}
.fs2_c00091{font-size:63.999997pt;}
.y0_c00091{bottom:0.000000pt;}
.y1_c00091{bottom:0.000007pt;}
.y6_c00091{bottom:26.134207pt;}
.y5_c00091{bottom:26.975887pt;}
.y4_c00091{bottom:998.721286pt;}
.y3_c00091{bottom:1016.721286pt;}
.y2_c00091{bottom:1034.721285pt;}
.y7_c00091{bottom:1066.464330pt;}
.h3_c00091{height:40.849158pt;}
.h4_c00091{height:44.871454pt;}
.h5_c00091{height:49.031248pt;}
.h2_c00091{height:1159.999952pt;}
.h0_c00091{height:1159.999959pt;}
.h1_c00091{height:1160.000000pt;}
.w2_c00091{width:830.999965pt;}
.w0_c00091{width:831.000000pt;}
.w1_c00091{width:831.333333pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:78.135686pt;}
.x2_c00091{left:402.476937pt;}
.x3_c00091{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eedef0e51769174f916dd2c8.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:0.772949;font-style:normal;font-weight:normal;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_c273e9b1e084e57191ff9bf0.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_c1e0ed1fe1fb784f43636618.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.006348;font-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_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;}
.ls0_c00092{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00092{word-spacing:0.000000px;}
._0_c00092{width:3.034021px;}
._1_c00092{width:8.541550px;}
.fc1_c00092{color:rgb(0,0,0);}
.fc0_c00092{color:rgb(74,93,83);}
.fs0_c00092{font-size:59.984997px;}
.fs1_c00092{font-size:71.999997px;}
.y0_c00092{bottom:0.000000px;}
.y1_c00092{bottom:0.000008px;}
.y5_c00092{bottom:29.401163px;}
.y4_c00092{bottom:1123.561534px;}
.y3_c00092{bottom:1143.811533px;}
.y2_c00092{bottom:1164.061532px;}
.y6_c00092{bottom:1199.772371px;}
.h3_c00092{height:45.955303px;}
.h4_c00092{height:55.160154px;}
.h2_c00092{height:1304.999946px;}
.h0_c00092{height:1304.999953px;}
.h1_c00092{height:1305.000000px;}
.w2_c00092{width:934.874961px;}
.w0_c00092{width:934.875000px;}
.w1_c00092{width:935.250000px;}
.x0_c00092{left:0.000000px;}
.x3_c00092{left:87.902647px;}
.x1_c00092{left:89.864283px;}
.x2_c00092{left:456.319054px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls0_c00092{letter-spacing:0.000000pt;}
.ws0_c00092{word-spacing:0.000000pt;}
._0_c00092{width:2.696908pt;}
._1_c00092{width:7.592489pt;}
.fs0_c00092{font-size:53.319997pt;}
.fs1_c00092{font-size:63.999997pt;}
.y0_c00092{bottom:0.000000pt;}
.y1_c00092{bottom:0.000007pt;}
.y5_c00092{bottom:26.134367pt;}
.y4_c00092{bottom:998.721363pt;}
.y3_c00092{bottom:1016.721362pt;}
.y2_c00092{bottom:1034.721362pt;}
.y6_c00092{bottom:1066.464330pt;}
.h3_c00092{height:40.849158pt;}
.h4_c00092{height:49.031248pt;}
.h2_c00092{height:1159.999952pt;}
.h0_c00092{height:1159.999959pt;}
.h1_c00092{height:1160.000000pt;}
.w2_c00092{width:830.999965pt;}
.w0_c00092{width:831.000000pt;}
.w1_c00092{width:831.333333pt;}
.x0_c00092{left:0.000000pt;}
.x3_c00092{left:78.135686pt;}
.x1_c00092{left:79.879363pt;}
.x2_c00092{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eedef0e51769174f916dd2c8.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:0.772949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00093;src:url('chunks/assets/font_54dce62fd40b77275d0596b8.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00093;src:url('chunks/assets/font_c1e0ed1fe1fb784f43636618.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.006348;font-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_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);}
.v0_c00093{vertical-align:0.000000px;}
.ls0_c00093{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00093{word-spacing:0.000000px;}
._0_c00093{width:1.990457px;}
.fc1_c00093{color:rgb(0,0,0);}
.fc0_c00093{color:rgb(74,93,83);}
.fs0_c00093{font-size:59.984997px;}
.fs1_c00093{font-size:71.999997px;}
.y0_c00093{bottom:0.000000px;}
.y1_c00093{bottom:0.000008px;}
.y5_c00093{bottom:29.401163px;}
.y4_c00093{bottom:1123.296631px;}
.y3_c00093{bottom:1143.546630px;}
.y2_c00093{bottom:1163.796630px;}
.y6_c00093{bottom:1199.772371px;}
.h3_c00093{height:45.955303px;}
.h4_c00093{height:55.160154px;}
.h2_c00093{height:1304.999946px;}
.h0_c00093{height:1304.999953px;}
.h1_c00093{height:1305.000000px;}
.w2_c00093{width:934.874961px;}
.w0_c00093{width:934.875000px;}
.w1_c00093{width:935.250000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:87.902647px;}
.x2_c00093{left:456.319054px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ws0_c00093{word-spacing:0.000000pt;}
._0_c00093{width:1.769295pt;}
.fs0_c00093{font-size:53.319997pt;}
.fs1_c00093{font-size:63.999997pt;}
.y0_c00093{bottom:0.000000pt;}
.y1_c00093{bottom:0.000007pt;}
.y5_c00093{bottom:26.134367pt;}
.y4_c00093{bottom:998.485894pt;}
.y3_c00093{bottom:1016.485894pt;}
.y2_c00093{bottom:1034.485893pt;}
.y6_c00093{bottom:1066.464330pt;}
.h3_c00093{height:40.849158pt;}
.h4_c00093{height:49.031248pt;}
.h2_c00093{height:1159.999952pt;}
.h0_c00093{height:1159.999959pt;}
.h1_c00093{height:1160.000000pt;}
.w2_c00093{width:830.999965pt;}
.w0_c00093{width:831.000000pt;}
.w1_c00093{width:831.333333pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:78.135686pt;}
.x2_c00093{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83ce699f6e1ef41c94f57e5c.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:0.772949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00094;src:url('chunks/assets/font_56ef3d4e45fa5f36efedf6fe.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00094;src:url('chunks/assets/font_c1e0ed1fe1fb784f43636618.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.006348;font-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_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;}
.ls0_c00094{letter-spacing:0.000000px;}
.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;}
._0_c00094{width:2.438219px;}
._1_c00094{width:7.007034px;}
.fc1_c00094{color:rgb(0,0,0);}
.fc0_c00094{color:rgb(74,93,83);}
.fs0_c00094{font-size:59.984997px;}
.fs1_c00094{font-size:71.999997px;}
.y0_c00094{bottom:0.000000px;}
.y1_c00094{bottom:0.000008px;}
.y5_c00094{bottom:29.401163px;}
.y4_c00094{bottom:1123.561361px;}
.y3_c00094{bottom:1143.811360px;}
.y2_c00094{bottom:1164.061359px;}
.y6_c00094{bottom:1199.772371px;}
.h3_c00094{height:45.955303px;}
.h4_c00094{height:55.160154px;}
.h2_c00094{height:1304.999946px;}
.h0_c00094{height:1304.999953px;}
.h1_c00094{height:1305.000000px;}
.w2_c00094{width:934.874961px;}
.w0_c00094{width:934.875000px;}
.w1_c00094{width:935.250000px;}
.x0_c00094{left:0.000000px;}
.x1_c00094{left:87.902647px;}
.x2_c00094{left:456.319054px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws0_c00094{word-spacing:0.000000pt;}
._0_c00094{width:2.167306pt;}
._1_c00094{width:6.228475pt;}
.fs0_c00094{font-size:53.319997pt;}
.fs1_c00094{font-size:63.999997pt;}
.y0_c00094{bottom:0.000000pt;}
.y1_c00094{bottom:0.000007pt;}
.y5_c00094{bottom:26.134367pt;}
.y4_c00094{bottom:998.721210pt;}
.y3_c00094{bottom:1016.721209pt;}
.y2_c00094{bottom:1034.721208pt;}
.y6_c00094{bottom:1066.464330pt;}
.h3_c00094{height:40.849158pt;}
.h4_c00094{height:49.031248pt;}
.h2_c00094{height:1159.999952pt;}
.h0_c00094{height:1159.999959pt;}
.h1_c00094{height:1160.000000pt;}
.w2_c00094{width:830.999965pt;}
.w0_c00094{width:831.000000pt;}
.w1_c00094{width:831.333333pt;}
.x0_c00094{left:0.000000pt;}
.x1_c00094{left:78.135686pt;}
.x2_c00094{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72503ef56c845cb95c22ed30.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:0.772949;font-style:normal;font-weight:normal;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_30b7962f2e074d2dedfac7d6.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00095;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00095;src:url('chunks/assets/font_c1e0ed1fe1fb784f43636618.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:1.006348;font-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_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;}
.ls0_c00095{letter-spacing:0.000000px;}
.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;}
._0_c00095{width:3.485559px;}
._1_c00095{width:6.841622px;}
.fc3_c00095{color:transparent;}
.fc2_c00095{color:rgb(128,128,128);}
.fc1_c00095{color:rgb(0,0,0);}
.fc0_c00095{color:rgb(74,93,83);}
.fs0_c00095{font-size:59.984997px;}
.fs1_c00095{font-size:69.618741px;}
.fs2_c00095{font-size:71.999997px;}
.y0_c00095{bottom:0.000000px;}
.y1_c00095{bottom:0.000008px;}
.y7_c00095{bottom:29.401163px;}
.y5_c00095{bottom:30.348053px;}
.y4_c00095{bottom:1123.561458px;}
.y3_c00095{bottom:1143.811457px;}
.y2_c00095{bottom:1164.061456px;}
.y6_c00095{bottom:1199.772299px;}
.h3_c00095{height:45.955303px;}
.h4_c00095{height:50.480386px;}
.h5_c00095{height:55.160154px;}
.h2_c00095{height:1304.999946px;}
.h0_c00095{height:1304.999953px;}
.h1_c00095{height:1305.000000px;}
.w2_c00095{width:934.874961px;}
.w0_c00095{width:934.875000px;}
.w1_c00095{width:935.250000px;}
.x0_c00095{left:0.000000px;}
.x1_c00095{left:87.902647px;}
.x2_c00095{left:452.786554px;}
.x3_c00095{left:456.319054px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ws0_c00095{word-spacing:0.000000pt;}
._0_c00095{width:3.098275pt;}
._1_c00095{width:6.081442pt;}
.fs0_c00095{font-size:53.319997pt;}
.fs1_c00095{font-size:61.883325pt;}
.fs2_c00095{font-size:63.999997pt;}
.y0_c00095{bottom:0.000000pt;}
.y1_c00095{bottom:0.000007pt;}
.y7_c00095{bottom:26.134367pt;}
.y5_c00095{bottom:26.976047pt;}
.y4_c00095{bottom:998.721296pt;}
.y3_c00095{bottom:1016.721295pt;}
.y2_c00095{bottom:1034.721294pt;}
.y6_c00095{bottom:1066.464266pt;}
.h3_c00095{height:40.849158pt;}
.h4_c00095{height:44.871454pt;}
.h5_c00095{height:49.031248pt;}
.h2_c00095{height:1159.999952pt;}
.h0_c00095{height:1159.999959pt;}
.h1_c00095{height:1160.000000pt;}
.w2_c00095{width:830.999965pt;}
.w0_c00095{width:831.000000pt;}
.w1_c00095{width:831.333333pt;}
.x0_c00095{left:0.000000pt;}
.x1_c00095{left:78.135686pt;}
.x2_c00095{left:402.476937pt;}
.x3_c00095{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83ce699f6e1ef41c94f57e5c.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:0.772949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_32f208986dbcc5cfb88f5b3d.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00096;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00096;src:url('chunks/assets/font_c1e0ed1fe1fb784f43636618.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.006348;font-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_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;}
.ls0_c00096{letter-spacing:0.000000px;}
.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{width:2.027468px;}
._1_c00096{width:5.092118px;}
.fc3_c00096{color:transparent;}
.fc2_c00096{color:rgb(128,128,128);}
.fc1_c00096{color:rgb(0,0,0);}
.fc0_c00096{color:rgb(74,93,83);}
.fs0_c00096{font-size:59.984997px;}
.fs1_c00096{font-size:69.618741px;}
.fs2_c00096{font-size:71.999997px;}
.y0_c00096{bottom:0.000000px;}
.y1_c00096{bottom:0.000008px;}
.y7_c00096{bottom:29.400983px;}
.y5_c00096{bottom:30.347873px;}
.y4_c00096{bottom:1123.561447px;}
.y3_c00096{bottom:1143.811446px;}
.y2_c00096{bottom:1164.061445px;}
.y6_c00096{bottom:1199.772371px;}
.h3_c00096{height:45.955303px;}
.h4_c00096{height:50.480386px;}
.h5_c00096{height:55.160154px;}
.h2_c00096{height:1304.999946px;}
.h0_c00096{height:1304.999953px;}
.h1_c00096{height:1305.000000px;}
.w2_c00096{width:934.874961px;}
.w0_c00096{width:934.875000px;}
.w1_c00096{width:935.250000px;}
.x0_c00096{left:0.000000px;}
.x1_c00096{left:87.902647px;}
.x2_c00096{left:452.786554px;}
.x3_c00096{left:456.319054px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ws0_c00096{word-spacing:0.000000pt;}
._0_c00096{width:1.802193pt;}
._1_c00096{width:4.526327pt;}
.fs0_c00096{font-size:53.319997pt;}
.fs1_c00096{font-size:61.883325pt;}
.fs2_c00096{font-size:63.999997pt;}
.y0_c00096{bottom:0.000000pt;}
.y1_c00096{bottom:0.000007pt;}
.y7_c00096{bottom:26.134207pt;}
.y5_c00096{bottom:26.975887pt;}
.y4_c00096{bottom:998.721286pt;}
.y3_c00096{bottom:1016.721286pt;}
.y2_c00096{bottom:1034.721285pt;}
.y6_c00096{bottom:1066.464330pt;}
.h3_c00096{height:40.849158pt;}
.h4_c00096{height:44.871454pt;}
.h5_c00096{height:49.031248pt;}
.h2_c00096{height:1159.999952pt;}
.h0_c00096{height:1159.999959pt;}
.h1_c00096{height:1160.000000pt;}
.w2_c00096{width:830.999965pt;}
.w0_c00096{width:831.000000pt;}
.w1_c00096{width:831.333333pt;}
.x0_c00096{left:0.000000pt;}
.x1_c00096{left:78.135686pt;}
.x2_c00096{left:402.476937pt;}
.x3_c00096{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83ce699f6e1ef41c94f57e5c.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:0.772949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_73cd2ddac7efa1527f6e4bb8.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00097;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00097;src:url('chunks/assets/font_c1e0ed1fe1fb784f43636618.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.006348;font-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_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;}
.ls0_c00097{letter-spacing:0.000000px;}
.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;}
._0_c00097{width:1.394655px;}
._1_c00097{width:6.841622px;}
.fc3_c00097{color:transparent;}
.fc2_c00097{color:rgb(128,128,128);}
.fc1_c00097{color:rgb(0,0,0);}
.fc0_c00097{color:rgb(74,93,83);}
.fs0_c00097{font-size:59.984997px;}
.fs1_c00097{font-size:69.618741px;}
.fs2_c00097{font-size:71.999997px;}
.y0_c00097{bottom:0.000000px;}
.y1_c00097{bottom:0.000008px;}
.y7_c00097{bottom:29.401163px;}
.y5_c00097{bottom:30.348053px;}
.y4_c00097{bottom:1123.561534px;}
.y3_c00097{bottom:1143.811533px;}
.y2_c00097{bottom:1164.061532px;}
.y6_c00097{bottom:1199.772371px;}
.h3_c00097{height:45.955303px;}
.h4_c00097{height:50.480386px;}
.h5_c00097{height:55.160154px;}
.h2_c00097{height:1304.999946px;}
.h0_c00097{height:1304.999953px;}
.h1_c00097{height:1305.000000px;}
.w2_c00097{width:934.874961px;}
.w0_c00097{width:934.875000px;}
.w1_c00097{width:935.250000px;}
.x0_c00097{left:0.000000px;}
.x1_c00097{left:87.902647px;}
.x2_c00097{left:452.786554px;}
.x3_c00097{left:456.319054px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ws0_c00097{word-spacing:0.000000pt;}
._0_c00097{width:1.239693pt;}
._1_c00097{width:6.081442pt;}
.fs0_c00097{font-size:53.319997pt;}
.fs1_c00097{font-size:61.883325pt;}
.fs2_c00097{font-size:63.999997pt;}
.y0_c00097{bottom:0.000000pt;}
.y1_c00097{bottom:0.000007pt;}
.y7_c00097{bottom:26.134367pt;}
.y5_c00097{bottom:26.976047pt;}
.y4_c00097{bottom:998.721363pt;}
.y3_c00097{bottom:1016.721362pt;}
.y2_c00097{bottom:1034.721362pt;}
.y6_c00097{bottom:1066.464330pt;}
.h3_c00097{height:40.849158pt;}
.h4_c00097{height:44.871454pt;}
.h5_c00097{height:49.031248pt;}
.h2_c00097{height:1159.999952pt;}
.h0_c00097{height:1159.999959pt;}
.h1_c00097{height:1160.000000pt;}
.w2_c00097{width:830.999965pt;}
.w0_c00097{width:831.000000pt;}
.w1_c00097{width:831.333333pt;}
.x0_c00097{left:0.000000pt;}
.x1_c00097{left:78.135686pt;}
.x2_c00097{left:402.476937pt;}
.x3_c00097{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83ce699f6e1ef41c94f57e5c.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:0.772949;font-style:normal;font-weight:normal;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_32f208986dbcc5cfb88f5b3d.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.006348;font-style:normal;font-weight:normal;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_c1e0ed1fe1fb784f43636618.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.006348;font-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_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);}
.v0_c00098{vertical-align:0.000000px;}
.ls0_c00098{letter-spacing:0.000000px;}
.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;}
._0_c00098{width:1.458170px;}
.fc1_c00098{color:rgb(0,0,0);}
.fc0_c00098{color:rgb(74,93,83);}
.fs0_c00098{font-size:59.984997px;}
.fs1_c00098{font-size:71.999997px;}
.y0_c00098{bottom:0.000000px;}
.y1_c00098{bottom:0.000008px;}
.y6_c00098{bottom:29.401163px;}
.y4_c00098{bottom:1123.729405px;}
.y3_c00098{bottom:1143.979404px;}
.y2_c00098{bottom:1164.229403px;}
.y5_c00098{bottom:1199.772371px;}
.h3_c00098{height:45.955303px;}
.h4_c00098{height:55.160154px;}
.h2_c00098{height:1304.999946px;}
.h0_c00098{height:1304.999953px;}
.h1_c00098{height:1305.000000px;}
.w2_c00098{width:934.874961px;}
.w0_c00098{width:934.875000px;}
.w1_c00098{width:935.250000px;}
.x0_c00098{left:0.000000px;}
.x2_c00098{left:87.902647px;}
.x1_c00098{left:89.624675px;}
.x3_c00098{left:456.319054px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws0_c00098{word-spacing:0.000000pt;}
._0_c00098{width:1.296151pt;}
.fs0_c00098{font-size:53.319997pt;}
.fs1_c00098{font-size:63.999997pt;}
.y0_c00098{bottom:0.000000pt;}
.y1_c00098{bottom:0.000007pt;}
.y6_c00098{bottom:26.134367pt;}
.y4_c00098{bottom:998.870582pt;}
.y3_c00098{bottom:1016.870582pt;}
.y2_c00098{bottom:1034.870581pt;}
.y5_c00098{bottom:1066.464330pt;}
.h3_c00098{height:40.849158pt;}
.h4_c00098{height:49.031248pt;}
.h2_c00098{height:1159.999952pt;}
.h0_c00098{height:1159.999959pt;}
.h1_c00098{height:1160.000000pt;}
.w2_c00098{width:830.999965pt;}
.w0_c00098{width:831.000000pt;}
.w1_c00098{width:831.333333pt;}
.x0_c00098{left:0.000000pt;}
.x2_c00098{left:78.135686pt;}
.x1_c00098{left:79.666377pt;}
.x3_c00098{left:405.616937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44cab8874ba3e717472a70fd.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:0.775879;font-style:normal;font-weight:normal;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_1276e8e0a4f1da4589e2172d.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.006348;font-style:normal;font-weight:normal;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_c09df13aa7854b6da7d83294.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:0.929688;font-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_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);}
.v0_c00099{vertical-align:0.000000px;}
.ls0_c00099{letter-spacing:0.000000px;}
.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;}
._0_c00099{width:4.767171px;}
.fc1_c00099{color:rgb(0,0,0);}
.fc0_c00099{color:rgb(67,91,56);}
.fs0_c00099{font-size:71.999997px;}
.y0_c00099{bottom:0.000000px;}
.y1_c00099{bottom:0.000008px;}
.y3_c00099{bottom:29.399075px;}
.y5_c00099{bottom:1113.232101px;}
.y4_c00099{bottom:1142.482100px;}
.y2_c00099{bottom:1199.772371px;}
.h3_c00099{height:55.160154px;}
.h2_c00099{height:1304.999946px;}
.h0_c00099{height:1304.999953px;}
.h1_c00099{height:1305.000000px;}
.w2_c00099{width:934.874961px;}
.w0_c00099{width:934.875000px;}
.w1_c00099{width:935.250000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:128.173847px;}
.x2_c00099{left:452.274108px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ws0_c00099{word-spacing:0.000000pt;}
._0_c00099{width:4.237486pt;}
.fs0_c00099{font-size:63.999997pt;}
.y0_c00099{bottom:0.000000pt;}
.y1_c00099{bottom:0.000007pt;}
.y3_c00099{bottom:26.132511pt;}
.y5_c00099{bottom:989.539645pt;}
.y4_c00099{bottom:1015.539644pt;}
.y2_c00099{bottom:1066.464330pt;}
.h3_c00099{height:49.031248pt;}
.h2_c00099{height:1159.999952pt;}
.h0_c00099{height:1159.999959pt;}
.h1_c00099{height:1160.000000pt;}
.w2_c00099{width:830.999965pt;}
.w0_c00099{width:831.000000pt;}
.w1_c00099{width:831.333333pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:113.932309pt;}
.x2_c00099{left:402.021430pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba2c087c995560f9efe80ea3.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:0.893555;font-style:normal;font-weight:normal;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_ea156174dfd5aa8bdd960ebd.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.151475;font-style:normal;font-weight:normal;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_5f2b08a9561f85d42cf9eddd.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:0.974121;font-style:normal;font-weight:normal;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_b76bbd90e0299e73fbe9db62.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:1.006348;font-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_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;}
.ls0_c00100{letter-spacing:0.000000px;}
.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.509985px;}
.ws1_c00100{word-spacing:0.000000px;}
._0_c00100{margin-left:-8.165401px;}
.fc0_c00100{color:rgb(255,255,255);}
.fs2_c00100{font-size:55.754999px;}
.fs1_c00100{font-size:59.984997px;}
.fs0_c00100{font-size:509.984988px;}
.y0_c00100{bottom:0.000000px;}
.y1_c00100{bottom:0.000008px;}
.ya_c00100{bottom:92.273360px;}
.y9_c00100{bottom:113.648359px;}
.y8_c00100{bottom:135.023358px;}
.y7_c00100{bottom:156.398357px;}
.y6_c00100{bottom:177.773357px;}
.y5_c00100{bottom:199.148356px;}
.y4_c00100{bottom:220.523355px;}
.y3_c00100{bottom:241.898354px;}
.y2_c00100{bottom:535.488602px;}
.yc_c00100{bottom:1202.472299px;}
.yb_c00100{bottom:1221.597298px;}
.h5_c00100{height:42.714645px;}
.h4_c00100{height:57.037401px;}
.h3_c00100{height:450.719154px;}
.h2_c00100{height:1304.999946px;}
.h0_c00100{height:1304.999953px;}
.h1_c00100{height:1305.000000px;}
.w2_c00100{width:934.874961px;}
.w0_c00100{width:934.875000px;}
.w1_c00100{width:935.250000px;}
.x0_c00100{left:0.000000px;}
.x3_c00100{left:74.153488px;}
.x2_c00100{left:87.902647px;}
.x1_c00100{left:91.048613px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:-0.453320pt;}
.ws1_c00100{word-spacing:0.000000pt;}
._0_c00100{margin-left:-7.258134pt;}
.fs2_c00100{font-size:49.559999pt;}
.fs1_c00100{font-size:53.319997pt;}
.fs0_c00100{font-size:453.319989pt;}
.y0_c00100{bottom:0.000000pt;}
.y1_c00100{bottom:0.000007pt;}
.ya_c00100{bottom:82.020765pt;}
.y9_c00100{bottom:101.020764pt;}
.y8_c00100{bottom:120.020763pt;}
.y7_c00100{bottom:139.020762pt;}
.y6_c00100{bottom:158.020761pt;}
.y5_c00100{bottom:177.020761pt;}
.y4_c00100{bottom:196.020760pt;}
.y3_c00100{bottom:215.020759pt;}
.y2_c00100{bottom:475.989868pt;}
.yc_c00100{bottom:1068.864266pt;}
.yb_c00100{bottom:1085.864265pt;}
.h5_c00100{height:37.968574pt;}
.h4_c00100{height:50.699912pt;}
.h3_c00100{height:400.639248pt;}
.h2_c00100{height:1159.999952pt;}
.h0_c00100{height:1159.999959pt;}
.h1_c00100{height:1160.000000pt;}
.w2_c00100{width:830.999965pt;}
.w0_c00100{width:831.000000pt;}
.w1_c00100{width:831.333333pt;}
.x0_c00100{left:0.000000pt;}
.x3_c00100{left:65.914212pt;}
.x2_c00100{left:78.135686pt;}
.x1_c00100{left:80.932101pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00101{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
}
.y0_c00101{bottom:0.000000px;}
.h0_c00101{height:1304.999953px;}
.h1_c00101{height:1305.000000px;}
.w0_c00101{width:934.875000px;}
.w1_c00101{width:935.250000px;}
.x0_c00101{left:0.000000px;}
@media print{
.y0_c00101{bottom:0.000000pt;}
.h0_c00101{height:1159.999959pt;}
.h1_c00101{height:1160.000000pt;}
.w0_c00101{width:831.000000pt;}
.w1_c00101{width:831.333333pt;}
.x0_c00101{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_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_68ebe1409eb70d394c88229c.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.006348;font-style:normal;font-weight:normal;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_c82790a004be8d3049caea64.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00102;src:url('chunks/assets/font_eff5294fda85a00f0a468041.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00102;src:url('chunks/assets/font_2d7deaa08558454454a2b37f.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:0.713867;font-style:normal;font-weight: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_c00102;src:url('chunks/assets/font_db71cd677002c5845a589b56.woff2')format("woff");}.ff5_c00102{font-family:ff5_c00102;line-height:1.005371;font-style:normal;font-weight: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_c00102;src:url('chunks/assets/font_e1167c0d024addc7c3aa6ffc.woff2')format("woff");}.ff6_c00102{font-family:ff6_c00102;line-height:0.974121;font-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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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;}
.ls2_c00102{letter-spacing:0.000000px;}
.ls0_c00102{letter-spacing:3.578203px;}
.ls1_c00102{letter-spacing:3.578226px;}
.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;}
}
.ws0_c00102{word-spacing:-18.703125px;}
.ws2_c00102{word-spacing:-15.617109px;}
.ws1_c00102{word-spacing:-0.060120px;}
.ws4_c00102{word-spacing:-0.059985px;}
.ws5_c00102{word-spacing:0.000000px;}
.ws3_c00102{word-spacing:1402.392124px;}
._b_c00102{width:1.346651px;}
._0_c00102{width:3.304687px;}
._9_c00102{width:4.464846px;}
._a_c00102{width:5.500026px;}
._1_c00102{width:6.531232px;}
._7_c00102{width:11.081222px;}
._6_c00102{width:16.853851px;}
._2_c00102{width:20.684647px;}
._4_c00102{width:22.531927px;}
._8_c00102{width:36.351560px;}
._5_c00102{width:43.351499px;}
._3_c00102{width:56.961912px;}
.fc4_c00102{color:transparent;}
.fc3_c00102{color:rgb(67,39,123);}
.fc2_c00102{color:rgb(198,111,25);}
.fc1_c00102{color:rgb(186,118,50);}
.fc0_c00102{color:rgb(0,0,0);}
.fs4_c00102{font-size:59.984997px;}
.fs2_c00102{font-size:60.119996px;}
.fs1_c00102{font-size:69.618741px;}
.fs0_c00102{font-size:71.999997px;}
.fs3_c00102{font-size:132.228633px;}
.y0_c00102{bottom:0.000000px;}
.y1_c00102{bottom:0.000008px;}
.y16_c00102{bottom:29.401163px;}
.y11_c00102{bottom:30.348053px;}
.y13_c00102{bottom:214.677747px;}
.y12_c00102{bottom:234.927746px;}
.y14_c00102{bottom:537.445012px;}
.y10_c00102{bottom:675.263643px;}
.yf_c00102{bottom:705.638642px;}
.ye_c00102{bottom:736.013641px;}
.yd_c00102{bottom:766.388639px;}
.yc_c00102{bottom:796.763638px;}
.yb_c00102{bottom:827.138637px;}
.ya_c00102{bottom:887.888634px;}
.y9_c00102{bottom:918.263633px;}
.y8_c00102{bottom:948.638632px;}
.y7_c00102{bottom:979.013630px;}
.y6_c00102{bottom:1009.388629px;}
.y5_c00102{bottom:1039.763628px;}
.y4_c00102{bottom:1070.138627px;}
.y3_c00102{bottom:1100.513625px;}
.y2_c00102{bottom:1130.888624px;}
.y15_c00102{bottom:1200.600126px;}
.h7_c00102{height:44.022193px;}
.h5_c00102{height:46.058728px;}
.h4_c00102{height:53.335842px;}
.h3_c00102{height:55.160154px;}
.h6_c00102{height:100.462770px;}
.h2_c00102{height:1304.999946px;}
.h0_c00102{height:1304.999953px;}
.h1_c00102{height:1305.000000px;}
.w2_c00102{width:934.874961px;}
.w0_c00102{width:934.875000px;}
.w1_c00102{width:935.250000px;}
.x0_c00102{left:0.000000px;}
.x1_c00102{left:87.902647px;}
.x3_c00102{left:144.277100px;}
.x2_c00102{left:452.786554px;}
.x4_c00102{left:774.075019px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls2_c00102{letter-spacing:0.000000pt;}
.ls0_c00102{letter-spacing:3.180625pt;}
.ls1_c00102{letter-spacing:3.180645pt;}
.ws0_c00102{word-spacing:-16.625000pt;}
.ws2_c00102{word-spacing:-13.881874pt;}
.ws1_c00102{word-spacing:-0.053440pt;}
.ws4_c00102{word-spacing:-0.053320pt;}
.ws5_c00102{word-spacing:0.000000pt;}
.ws3_c00102{word-spacing:1246.570777pt;}
._b_c00102{width:1.197023pt;}
._0_c00102{width:2.937500pt;}
._9_c00102{width:3.968752pt;}
._a_c00102{width:4.888912pt;}
._1_c00102{width:5.805540pt;}
._7_c00102{width:9.849975pt;}
._6_c00102{width:14.981201pt;}
._2_c00102{width:18.386353pt;}
._4_c00102{width:20.028379pt;}
._8_c00102{width:32.312498pt;}
._5_c00102{width:38.534666pt;}
._3_c00102{width:50.632811pt;}
.fs4_c00102{font-size:53.319997pt;}
.fs2_c00102{font-size:53.439997pt;}
.fs1_c00102{font-size:61.883325pt;}
.fs0_c00102{font-size:63.999997pt;}
.fs3_c00102{font-size:117.536562pt;}
.y0_c00102{bottom:0.000000pt;}
.y1_c00102{bottom:0.000007pt;}
.y16_c00102{bottom:26.134367pt;}
.y11_c00102{bottom:26.976047pt;}
.y13_c00102{bottom:190.824664pt;}
.y12_c00102{bottom:208.824663pt;}
.y14_c00102{bottom:477.728900pt;}
.y10_c00102{bottom:600.234349pt;}
.yf_c00102{bottom:627.234348pt;}
.ye_c00102{bottom:654.234347pt;}
.yd_c00102{bottom:681.234346pt;}
.yc_c00102{bottom:708.234345pt;}
.yb_c00102{bottom:735.234344pt;}
.ya_c00102{bottom:789.234342pt;}
.y9_c00102{bottom:816.234340pt;}
.y8_c00102{bottom:843.234339pt;}
.y7_c00102{bottom:870.234338pt;}
.y6_c00102{bottom:897.234337pt;}
.y5_c00102{bottom:924.234336pt;}
.y4_c00102{bottom:951.234335pt;}
.y3_c00102{bottom:978.234334pt;}
.y2_c00102{bottom:1005.234333pt;}
.y15_c00102{bottom:1067.200112pt;}
.h7_c00102{height:39.130838pt;}
.h5_c00102{height:40.941091pt;}
.h4_c00102{height:47.409637pt;}
.h3_c00102{height:49.031248pt;}
.h6_c00102{height:89.300240pt;}
.h2_c00102{height:1159.999952pt;}
.h0_c00102{height:1159.999959pt;}
.h1_c00102{height:1160.000000pt;}
.w2_c00102{width:830.999965pt;}
.w0_c00102{width:831.000000pt;}
.w1_c00102{width:831.333333pt;}
.x0_c00102{left:0.000000pt;}
.x1_c00102{left:78.135686pt;}
.x3_c00102{left:128.246311pt;}
.x2_c00102{left:402.476937pt;}
.x4_c00102{left:688.066683pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f61e1911fb3d4ff77382f06.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.006348;font-style:normal;font-weight:normal;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_f30c1834dee429c25d8b7fba.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.006348;font-style:normal;font-weight:normal;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_74a03068cb6859f68f0087c3.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00103;src:url('chunks/assets/font_65f5245f5edb851abe43b31f.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.000000;font-style:normal;font-weight: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_c00103;src:url('chunks/assets/font_2d87f1450be9e65d6a03f265.woff2')format("woff");}.ff5_c00103{font-family:ff5_c00103;line-height:1.005371;font-style:normal;font-weight: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_c00103;src:url('chunks/assets/font_1f4685331ecb294337938604.woff2')format("woff");}.ff6_c00103{font-family:ff6_c00103;line-height:1.006348;font-style:normal;font-weight: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_c00103;src:url('chunks/assets/font_e1167c0d024addc7c3aa6ffc.woff2')format("woff");}.ff7_c00103{font-family:ff7_c00103;line-height:0.974121;font-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_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;}
.ls0_c00103{letter-spacing:0.000000px;}
.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:-17.136738px;}
.ws1_c00103{word-spacing:-0.059985px;}
.ws2_c00103{word-spacing:0.000000px;}
._2_c00103{margin-left:-1.007366px;}
._14_c00103{width:1.118544px;}
._11_c00103{width:2.953124px;}
._12_c00103{width:4.419972px;}
._4_c00103{width:6.408154px;}
._e_c00103{width:7.816358px;}
._7_c00103{width:9.819375px;}
._16_c00103{width:10.830933px;}
._9_c00103{width:11.925941px;}
._5_c00103{width:13.583567px;}
._17_c00103{width:14.897179px;}
._15_c00103{width:17.686749px;}
._1_c00103{width:19.128229px;}
._b_c00103{width:20.483058px;}
._6_c00103{width:21.650291px;}
._3_c00103{width:25.816967px;}
._13_c00103{width:30.016981px;}
._d_c00103{width:31.358396px;}
._10_c00103{width:34.593750px;}
._c_c00103{width:42.780036px;}
._f_c00103{width:50.062498px;}
._a_c00103{width:56.570264px;}
._0_c00103{width:78.134216px;}
._8_c00103{width:185.599267px;}
.fc4_c00103{color:transparent;}
.fc3_c00103{color:rgb(198,111,25);}
.fc2_c00103{color:rgb(186,118,50);}
.fc1_c00103{color:rgb(0,0,0);}
.fc0_c00103{color:rgb(255,255,255);}
.fs2_c00103{font-size:59.984997px;}
.fs0_c00103{font-size:65.969996px;}
.fs1_c00103{font-size:69.618741px;}
.fs3_c00103{font-size:71.999997px;}
.y0_c00103{bottom:0.000000px;}
.y10_c00103{bottom:0.000008px;}
.yf_c00103{bottom:13.499999px;}
.y2a_c00103{bottom:28.687499px;}
.y11_c00103{bottom:30.348053px;}
.ye_c00103{bottom:35.999998px;}
.yd_c00103{bottom:58.499998px;}
.yc_c00103{bottom:80.999997px;}
.yb_c00103{bottom:103.499996px;}
.ya_c00103{bottom:125.999995px;}
.y9_c00103{bottom:148.499994px;}
.y8_c00103{bottom:170.999993px;}
.y28_c00103{bottom:173.589617px;}
.y7_c00103{bottom:193.499992px;}
.y27_c00103{bottom:203.964616px;}
.y6_c00103{bottom:215.999991px;}
.y26_c00103{bottom:234.339614px;}
.y5_c00103{bottom:238.499990px;}
.y4_c00103{bottom:260.999989px;}
.y25_c00103{bottom:264.714613px;}
.y3_c00103{bottom:283.499988px;}
.y24_c00103{bottom:295.089612px;}
.y2_c00103{bottom:305.999987px;}
.y23_c00103{bottom:325.464610px;}
.y22_c00103{bottom:355.839609px;}
.y21_c00103{bottom:386.214608px;}
.y20_c00103{bottom:416.589607px;}
.y1f_c00103{bottom:446.964605px;}
.y1e_c00103{bottom:507.714603px;}
.y1d_c00103{bottom:538.089602px;}
.y1c_c00103{bottom:568.464600px;}
.y1b_c00103{bottom:598.839599px;}
.y15_c00103{bottom:651.070870px;}
.y14_c00103{bottom:671.320869px;}
.y13_c00103{bottom:691.570868px;}
.y12_c00103{bottom:711.820868px;}
.y1_c00103{bottom:809.987669px;}
.y1a_c00103{bottom:1003.487653px;}
.y19_c00103{bottom:1033.862652px;}
.y18_c00103{bottom:1064.237651px;}
.y17_c00103{bottom:1094.612650px;}
.y16_c00103{bottom:1124.987648px;}
.y29_c00103{bottom:1200.600303px;}
.h8_c00103{height:44.022193px;}
.h6_c00103{height:45.955303px;}
.h3_c00103{height:50.540490px;}
.h5_c00103{height:53.335842px;}
.h7_c00103{height:55.160154px;}
.h2_c00103{height:331.874986px;}
.h4_c00103{height:1304.999946px;}
.h0_c00103{height:1304.999953px;}
.h1_c00103{height:1305.000000px;}
.w2_c00103{width:334.125029px;}
.w3_c00103{width:934.874961px;}
.w0_c00103{width:934.875000px;}
.w1_c00103{width:935.250000px;}
.x0_c00103{left:0.000000px;}
.x2_c00103{left:6.521484px;}
.x5_c00103{left:87.902647px;}
.x4_c00103{left:91.252422px;}
.x3_c00103{left:452.786554px;}
.x1_c00103{left:507.962045px;}
.x6_c00103{left:774.075019px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws0_c00103{word-spacing:-15.232656pt;}
.ws1_c00103{word-spacing:-0.053320pt;}
.ws2_c00103{word-spacing:0.000000pt;}
._2_c00103{margin-left:-0.895436pt;}
._14_c00103{width:0.994262pt;}
._11_c00103{width:2.624999pt;}
._12_c00103{width:3.928864pt;}
._4_c00103{width:5.696137pt;}
._e_c00103{width:6.947874pt;}
._7_c00103{width:8.728333pt;}
._16_c00103{width:9.627496pt;}
._9_c00103{width:10.600837pt;}
._5_c00103{width:12.074282pt;}
._17_c00103{width:13.241937pt;}
._15_c00103{width:15.721554pt;}
._1_c00103{width:17.002870pt;}
._b_c00103{width:18.207162pt;}
._6_c00103{width:19.244703pt;}
._3_c00103{width:22.948415pt;}
._13_c00103{width:26.681761pt;}
._d_c00103{width:27.874129pt;}
._10_c00103{width:30.750000pt;}
._c_c00103{width:38.026699pt;}
._f_c00103{width:44.499998pt;}
._a_c00103{width:50.284679pt;}
._0_c00103{width:69.452637pt;}
._8_c00103{width:164.977126pt;}
.fs2_c00103{font-size:53.319997pt;}
.fs0_c00103{font-size:58.639997pt;}
.fs1_c00103{font-size:61.883325pt;}
.fs3_c00103{font-size:63.999997pt;}
.y0_c00103{bottom:0.000000pt;}
.y10_c00103{bottom:0.000007pt;}
.yf_c00103{bottom:11.999999pt;}
.y2a_c00103{bottom:25.499999pt;}
.y11_c00103{bottom:26.976047pt;}
.ye_c00103{bottom:31.999999pt;}
.yd_c00103{bottom:51.999998pt;}
.yc_c00103{bottom:71.999997pt;}
.yb_c00103{bottom:91.999996pt;}
.ya_c00103{bottom:111.999995pt;}
.y9_c00103{bottom:131.999994pt;}
.y8_c00103{bottom:151.999994pt;}
.y28_c00103{bottom:154.301882pt;}
.y7_c00103{bottom:171.999993pt;}
.y27_c00103{bottom:181.301880pt;}
.y6_c00103{bottom:191.999992pt;}
.y26_c00103{bottom:208.301879pt;}
.y5_c00103{bottom:211.999991pt;}
.y4_c00103{bottom:231.999990pt;}
.y25_c00103{bottom:235.301878pt;}
.y3_c00103{bottom:251.999989pt;}
.y24_c00103{bottom:262.301877pt;}
.y2_c00103{bottom:271.999989pt;}
.y23_c00103{bottom:289.301876pt;}
.y22_c00103{bottom:316.301875pt;}
.y21_c00103{bottom:343.301874pt;}
.y20_c00103{bottom:370.301873pt;}
.y1f_c00103{bottom:397.301871pt;}
.y1e_c00103{bottom:451.301869pt;}
.y1d_c00103{bottom:478.301868pt;}
.y1c_c00103{bottom:505.301867pt;}
.y1b_c00103{bottom:532.301866pt;}
.y15_c00103{bottom:578.729662pt;}
.y14_c00103{bottom:596.729662pt;}
.y13_c00103{bottom:614.729661pt;}
.y12_c00103{bottom:632.729660pt;}
.y1_c00103{bottom:719.989039pt;}
.y1a_c00103{bottom:891.989025pt;}
.y19_c00103{bottom:918.989024pt;}
.y18_c00103{bottom:945.989023pt;}
.y17_c00103{bottom:972.989022pt;}
.y16_c00103{bottom:999.989021pt;}
.y29_c00103{bottom:1067.200269pt;}
.h8_c00103{height:39.130838pt;}
.h6_c00103{height:40.849158pt;}
.h3_c00103{height:44.924880pt;}
.h5_c00103{height:47.409637pt;}
.h7_c00103{height:49.031248pt;}
.h2_c00103{height:294.999988pt;}
.h4_c00103{height:1159.999952pt;}
.h0_c00103{height:1159.999959pt;}
.h1_c00103{height:1160.000000pt;}
.w2_c00103{width:297.000026pt;}
.w3_c00103{width:830.999965pt;}
.w0_c00103{width:831.000000pt;}
.w1_c00103{width:831.333333pt;}
.x0_c00103{left:0.000000pt;}
.x2_c00103{left:5.796875pt;}
.x5_c00103{left:78.135686pt;}
.x4_c00103{left:81.113264pt;}
.x3_c00103{left:402.476937pt;}
.x1_c00103{left:451.521818pt;}
.x6_c00103{left:688.066683pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1cec77e365002ac441de0e36.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.006348;font-style:normal;font-weight:normal;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_07b7344f4343390a31de8e54.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:0.769531;font-style:normal;font-weight:normal;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_8249ad68344dd61417063966.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.005371;font-style:normal;font-weight:normal;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_c41e4866dd9f16994f221f67.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.000000;font-style:normal;font-weight: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_e1167c0d024addc7c3aa6ffc.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;line-height:0.974121;font-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_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);}
.v0_c00104{vertical-align:0.000000px;}
.ls1_c00104{letter-spacing:0.000000px;}
.ls0_c00104{letter-spacing:0.035178px;}
.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;}
}
.ws0_c00104{word-spacing:-18.703125px;}
.ws1_c00104{word-spacing:-0.059985px;}
.ws2_c00104{word-spacing:0.000000px;}
._4_c00104{width:1.508491px;}
._6_c00104{width:3.261361px;}
._9_c00104{width:4.627308px;}
._2_c00104{width:5.673615px;}
._7_c00104{width:6.999251px;}
._8_c00104{width:10.646848px;}
._1_c00104{width:12.429656px;}
._3_c00104{width:14.225166px;}
._0_c00104{width:20.467253px;}
._a_c00104{width:23.765630px;}
._5_c00104{width:24.890624px;}
._b_c00104{width:31.317144px;}
.fc3_c00104{color:transparent;}
.fc2_c00104{color:rgb(186,118,50);}
.fc1_c00104{color:rgb(198,111,25);}
.fc0_c00104{color:rgb(0,0,0);}
.fs2_c00104{font-size:59.984997px;}
.fs0_c00104{font-size:69.618741px;}
.fs1_c00104{font-size:71.999997px;}
.y0_c00104{bottom:0.000000px;}
.y1_c00104{bottom:0.000008px;}
.y19_c00104{bottom:29.401163px;}
.y2_c00104{bottom:30.348053px;}
.y10_c00104{bottom:92.048216px;}
.yf_c00104{bottom:122.423215px;}
.ye_c00104{bottom:152.798214px;}
.yd_c00104{bottom:183.173212px;}
.yc_c00104{bottom:213.548211px;}
.yb_c00104{bottom:243.923210px;}
.ya_c00104{bottom:274.298209px;}
.y9_c00104{bottom:304.673207px;}
.y8_c00104{bottom:335.048206px;}
.y7_c00104{bottom:365.423205px;}
.y6_c00104{bottom:395.798204px;}
.y5_c00104{bottom:456.548201px;}
.y4_c00104{bottom:486.923200px;}
.y3_c00104{bottom:517.298198px;}
.y17_c00104{bottom:584.080284px;}
.y16_c00104{bottom:981.337106px;}
.y15_c00104{bottom:1011.712105px;}
.y14_c00104{bottom:1042.087104px;}
.y13_c00104{bottom:1072.462103px;}
.y12_c00104{bottom:1102.837101px;}
.y11_c00104{bottom:1133.212100px;}
.y18_c00104{bottom:1200.600303px;}
.h6_c00104{height:44.022193px;}
.h5_c00104{height:45.955303px;}
.h3_c00104{height:53.335842px;}
.h4_c00104{height:55.160154px;}
.h2_c00104{height:1304.999946px;}
.h0_c00104{height:1304.999953px;}
.h1_c00104{height:1305.000000px;}
.w2_c00104{width:934.874961px;}
.w0_c00104{width:934.875000px;}
.w1_c00104{width:935.250000px;}
.x0_c00104{left:0.000000px;}
.x2_c00104{left:87.902647px;}
.x3_c00104{left:205.543755px;}
.x1_c00104{left:452.786554px;}
.x4_c00104{left:774.075019px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls1_c00104{letter-spacing:0.000000pt;}
.ls0_c00104{letter-spacing:0.031270pt;}
.ws0_c00104{word-spacing:-16.625000pt;}
.ws1_c00104{word-spacing:-0.053320pt;}
.ws2_c00104{word-spacing:0.000000pt;}
._4_c00104{width:1.340881pt;}
._6_c00104{width:2.898988pt;}
._9_c00104{width:4.113162pt;}
._2_c00104{width:5.043213pt;}
._7_c00104{width:6.221557pt;}
._8_c00104{width:9.463865pt;}
._1_c00104{width:11.048583pt;}
._3_c00104{width:12.644592pt;}
._0_c00104{width:18.193113pt;}
._a_c00104{width:21.125005pt;}
._5_c00104{width:22.124999pt;}
._b_c00104{width:27.837461pt;}
.fs2_c00104{font-size:53.319997pt;}
.fs0_c00104{font-size:61.883325pt;}
.fs1_c00104{font-size:63.999997pt;}
.y0_c00104{bottom:0.000000pt;}
.y1_c00104{bottom:0.000007pt;}
.y19_c00104{bottom:26.134367pt;}
.y2_c00104{bottom:26.976047pt;}
.y10_c00104{bottom:81.820637pt;}
.yf_c00104{bottom:108.820635pt;}
.ye_c00104{bottom:135.820634pt;}
.yd_c00104{bottom:162.820633pt;}
.yc_c00104{bottom:189.820632pt;}
.yb_c00104{bottom:216.820631pt;}
.ya_c00104{bottom:243.820630pt;}
.y9_c00104{bottom:270.820629pt;}
.y8_c00104{bottom:297.820628pt;}
.y7_c00104{bottom:324.820626pt;}
.y6_c00104{bottom:351.820625pt;}
.y5_c00104{bottom:405.820623pt;}
.y4_c00104{bottom:432.820622pt;}
.y3_c00104{bottom:459.820621pt;}
.y17_c00104{bottom:519.182474pt;}
.y16_c00104{bottom:872.299650pt;}
.y15_c00104{bottom:899.299649pt;}
.y14_c00104{bottom:926.299648pt;}
.y13_c00104{bottom:953.299647pt;}
.y12_c00104{bottom:980.299646pt;}
.y11_c00104{bottom:1007.299644pt;}
.y18_c00104{bottom:1067.200269pt;}
.h6_c00104{height:39.130838pt;}
.h5_c00104{height:40.849158pt;}
.h3_c00104{height:47.409637pt;}
.h4_c00104{height:49.031248pt;}
.h2_c00104{height:1159.999952pt;}
.h0_c00104{height:1159.999959pt;}
.h1_c00104{height:1160.000000pt;}
.w2_c00104{width:830.999965pt;}
.w0_c00104{width:831.000000pt;}
.w1_c00104{width:831.333333pt;}
.x0_c00104{left:0.000000pt;}
.x2_c00104{left:78.135686pt;}
.x3_c00104{left:182.705560pt;}
.x1_c00104{left:402.476937pt;}
.x4_c00104{left:688.066683pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d3e7920276eca5f4482a7d6.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:0.769531;font-style:normal;font-weight:normal;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_6af50d622657189b80877400.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00105;src:url('chunks/assets/font_7ce15eae482207470305a56d.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:0.772949;font-style:normal;font-weight: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_c00105;src:url('chunks/assets/font_3943a66c7c7fa6a97c361240.woff2')format("woff");}.ff5_c00105{font-family:ff5_c00105;line-height:1.171387;font-style:normal;font-weight: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_c00105;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff6_c00105{font-family:ff6_c00105;line-height:0.734863;font-style:normal;font-weight: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_c00105;src:url('chunks/assets/font_e906d83b51b31050589564a0.woff2')format("woff");}.ff7_c00105{font-family:ff7_c00105;line-height:1.000000;font-style:normal;font-weight: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_c00105;src:url('chunks/assets/font_92d3f58a0f65e5f567c9aadd.woff2')format("woff");}.ff8_c00105{font-family:ff8_c00105;line-height:1.006348;font-style:normal;font-weight: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_c00105;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00105{font-family:ff9_c00105;line-height:0.734863;font-style:normal;font-weight: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_c00105;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ffa_c00105{font-family:ffa_c00105;line-height:0.894000;font-style:normal;font-weight: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_c00105;src:url('chunks/assets/font_2d358f218610cf5c16549b37.woff2')format("woff");}.ffb_c00105{font-family:ffb_c00105;line-height:0.895000;font-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_c00105{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3d_c00105{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m29_c00105{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00105{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2a_c00105{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3c_c00105{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00105{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m15_c00105{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00105{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2b_c00105{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m28_c00105{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m16_c00105{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00105{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2c_c00105{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3b_c00105{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00105{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m17_c00105{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m27_c00105{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00105{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00105{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2d_c00105{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m18_c00105{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3a_c00105{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m26_c00105{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00105{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00105{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m19_c00105{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2e_c00105{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m39_c00105{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00105{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m25_c00105{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1a_c00105{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00105{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m2f_c00105{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m38_c00105{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m24_c00105{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00105{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m23_c00105{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00105{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m30_c00105{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1b_c00105{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m37_c00105{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m22_c00105{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00105{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m31_c00105{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00105{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m21_c00105{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00105{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m32_c00105{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1c_c00105{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00105{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m33_c00105{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m20_c00105{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m36_c00105{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1d_c00105{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00105{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00105{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m34_c00105{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1e_c00105{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m1f_c00105{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m35_c00105{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00105{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m3e_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);}
.v0_c00105{vertical-align:0.000000px;}
.ls0_c00105{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00105{word-spacing:-15.171263px;}
.ws2_c00105{word-spacing:0.000000px;}
.ws1_c00105{word-spacing:271.779181px;}
._4_c00105{width:8.163253px;}
._0_c00105{width:14.153890px;}
._1_c00105{width:15.178377px;}
._3_c00105{width:20.523421px;}
._2_c00105{width:26.846535px;}
.fc4_c00105{color:transparent;}
.fc3_c00105{color:rgb(186,118,50);}
.fc2_c00105{color:rgb(128,128,128);}
.fc1_c00105{color:rgb(255,255,255);}
.fc0_c00105{color:rgb(0,0,0);}
.fs9_c00105{font-size:39.757786px;}
.fs6_c00105{font-size:41.999830px;}
.fs8_c00105{font-size:42.000118px;}
.fs3_c00105{font-size:47.368230px;}
.fs0_c00105{font-size:47.368231px;}
.fs4_c00105{font-size:47.368232px;}
.fs1_c00105{font-size:47.368233px;}
.fs2_c00105{font-size:47.368235px;}
.fsf_c00105{font-size:50.617585px;}
.fsd_c00105{font-size:55.754999px;}
.fs10_c00105{font-size:61.734125px;}
.fsb_c00105{font-size:69.618741px;}
.fsa_c00105{font-size:71.999997px;}
.fse_c00105{font-size:74.424240px;}
.fs5_c00105{font-size:77.011488px;}
.fs7_c00105{font-size:89.985250px;}
.fsc_c00105{font-size:95.984996px;}
.y0_c00105{bottom:0.000000px;}
.y1_c00105{bottom:0.000008px;}
.y54_c00105{bottom:29.401163px;}
.y49_c00105{bottom:30.348053px;}
.y51_c00105{bottom:156.745541px;}
.y50_c00105{bottom:187.120540px;}
.y4f_c00105{bottom:217.495539px;}
.y4e_c00105{bottom:247.870538px;}
.y4d_c00105{bottom:278.245536px;}
.y4c_c00105{bottom:308.620535px;}
.y52_c00105{bottom:338.449226px;}
.y53_c00105{bottom:402.483650px;}
.y41_c00105{bottom:488.651110px;}
.yf_c00105{bottom:495.091113px;}
.y37_c00105{bottom:495.106211px;}
.ye_c00105{bottom:495.616377px;}
.y38_c00105{bottom:495.636052px;}
.y21_c00105{bottom:495.979775px;}
.y36_c00105{bottom:496.350860px;}
.yd_c00105{bottom:496.682522px;}
.y22_c00105{bottom:496.813100px;}
.y20_c00105{bottom:496.833258px;}
.y35_c00105{bottom:497.602140px;}
.yc_c00105{bottom:497.755746px;}
.y1f_c00105{bottom:497.868049px;}
.y39_c00105{bottom:498.052552px;}
.y10_c00105{bottom:498.116213px;}
.y23_c00105{bottom:498.994415px;}
.y34_c00105{bottom:499.247012px;}
.yb_c00105{bottom:499.407306px;}
.y1e_c00105{bottom:500.070772px;}
.y24_c00105{bottom:500.385244px;}
.y33_c00105{bottom:500.935271px;}
.ya_c00105{bottom:501.100919px;}
.y25_c00105{bottom:502.083615px;}
.y11_c00105{bottom:502.393539px;}
.y32_c00105{bottom:502.800509px;}
.y9_c00105{bottom:502.970912px;}
.y3a_c00105{bottom:503.153371px;}
.y1d_c00105{bottom:503.862423px;}
.y26_c00105{bottom:504.525911px;}
.y12_c00105{bottom:504.912261px;}
.y3b_c00105{bottom:506.781534px;}
.y27_c00105{bottom:506.784873px;}
.y31_c00105{bottom:507.454863px;}
.y8_c00105{bottom:507.634626px;}
.y1c_c00105{bottom:509.331246px;}
.y28_c00105{bottom:510.053747px;}
.y13_c00105{bottom:510.864732px;}
.y3c_c00105{bottom:512.415439px;}
.y1b_c00105{bottom:513.797837px;}
.y30_c00105{bottom:513.856305px;}
.y7_c00105{bottom:514.044570px;}
.y14_c00105{bottom:515.613465px;}
.y29_c00105{bottom:518.451039px;}
.y3d_c00105{bottom:519.073090px;}
.y1a_c00105{bottom:520.222527px;}
.y2f_c00105{bottom:521.163376px;}
.y6_c00105{bottom:521.253577px;}
.y5_c00105{bottom:524.712352px;}
.y19_c00105{bottom:524.792474px;}
.y2a_c00105{bottom:526.500013px;}
.y15_c00105{bottom:527.397342px;}
.y2e_c00105{bottom:528.324992px;}
.y4_c00105{bottom:530.722671px;}
.y3e_c00105{bottom:531.036114px;}
.y18_c00105{bottom:532.564636px;}
.y2d_c00105{bottom:533.094218px;}
.y44_c00105{bottom:534.965011px;}
.y40_c00105{bottom:535.030855px;}
.y17_c00105{bottom:536.458303px;}
.y3_c00105{bottom:537.982154px;}
.y2c_c00105{bottom:539.266614px;}
.y16_c00105{bottom:539.637941px;}
.y3f_c00105{bottom:540.001674px;}
.y42_c00105{bottom:541.737464px;}
.y2b_c00105{bottom:546.329982px;}
.y2_c00105{bottom:547.516930px;}
.y43_c00105{bottom:579.199854px;}
.y4b_c00105{bottom:639.092601px;}
.y55_c00105{bottom:1026.801482px;}
.y48_c00105{bottom:1128.788247px;}
.y46_c00105{bottom:1133.738464px;}
.y45_c00105{bottom:1147.738503px;}
.y4a_c00105{bottom:1151.817083px;}
.y47_c00105{bottom:1171.082779px;}
.h8_c00105{height:35.988753px;}
.h9_c00105{height:35.988755px;}
.ha_c00105{height:35.988756px;}
.h15_c00105{height:36.702692px;}
.hf_c00105{height:37.020556px;}
.hc_c00105{height:39.108240px;}
.he_c00105{height:39.108509px;}
.h6_c00105{height:44.107038px;}
.h3_c00105{height:44.107039px;}
.h7_c00105{height:44.107040px;}
.h4_c00105{height:44.107042px;}
.h5_c00105{height:44.107043px;}
.h16_c00105{height:44.139900px;}
.h11_c00105{height:50.480386px;}
.h13_c00105{height:51.916398px;}
.hb_c00105{height:56.295398px;}
.h14_c00105{height:57.017399px;}
.h10_c00105{height:67.042966px;}
.hd_c00105{height:68.367700px;}
.h12_c00105{height:89.376654px;}
.h2_c00105{height:1304.999946px;}
.h0_c00105{height:1304.999953px;}
.h1_c00105{height:1305.000000px;}
.w2_c00105{width:934.874961px;}
.w0_c00105{width:934.875000px;}
.w1_c00105{width:935.250000px;}
.x0_c00105{left:0.000000px;}
.x3e_c00105{left:89.487450px;}
.x3f_c00105{left:90.844844px;}
.x3a_c00105{left:107.230262px;}
.x3b_c00105{left:108.827167px;}
.x41_c00105{left:113.759556px;}
.x26_c00105{left:134.974838px;}
.x25_c00105{left:136.648279px;}
.x27_c00105{left:140.021272px;}
.x28_c00105{left:144.871714px;}
.x29_c00105{left:150.237526px;}
.x2a_c00105{left:152.990336px;}
.x2b_c00105{left:156.000220px;}
.x2c_c00105{left:159.847713px;}
.x36_c00105{left:161.443962px;}
.x2d_c00105{left:163.301377px;}
.x2e_c00105{left:171.586339px;}
.x2f_c00105{left:179.855997px;}
.x30_c00105{left:188.287487px;}
.x31_c00105{left:196.673970px;}
.x32_c00105{left:200.841336px;}
.x33_c00105{left:205.399483px;}
.x34_c00105{left:209.208896px;}
.x35_c00105{left:211.795693px;}
.x2_c00105{left:230.398389px;}
.x1_c00105{left:232.534609px;}
.x3_c00105{left:235.623324px;}
.x4_c00105{left:240.462566px;}
.x5_c00105{left:245.820252px;}
.x6_c00105{left:248.569815px;}
.x7_c00105{left:251.576732px;}
.x8_c00105{left:255.421336px;}
.x9_c00105{left:258.708042px;}
.xa_c00105{left:263.145298px;}
.xb_c00105{left:271.763354px;}
.xc_c00105{left:283.603990px;}
.xd_c00105{left:291.041304px;}
.xe_c00105{left:294.435991px;}
.xf_c00105{left:299.775542px;}
.x10_c00105{left:303.165014px;}
.x11_c00105{left:307.176807px;}
.x12_c00105{left:325.572760px;}
.x13_c00105{left:326.790062px;}
.x14_c00105{left:328.211075px;}
.x15_c00105{left:331.608300px;}
.x16_c00105{left:334.832839px;}
.x17_c00105{left:340.715086px;}
.x18_c00105{left:346.902068px;}
.x19_c00105{left:352.595072px;}
.x1a_c00105{left:356.005071px;}
.x1b_c00105{left:363.912198px;}
.x1c_c00105{left:371.901113px;}
.x1d_c00105{left:378.660822px;}
.x1e_c00105{left:381.681036px;}
.x1f_c00105{left:384.685260px;}
.x20_c00105{left:388.083238px;}
.x21_c00105{left:390.700316px;}
.x22_c00105{left:394.014858px;}
.x23_c00105{left:399.190176px;}
.x24_c00105{left:401.994929px;}
.x3c_c00105{left:452.786554px;}
.x38_c00105{left:464.896169px;}
.x3d_c00105{left:648.571797px;}
.x40_c00105{left:699.140609px;}
.x39_c00105{left:733.540639px;}
.x37_c00105{left:757.088990px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.ws0_c00105{word-spacing:-13.485567pt;}
.ws2_c00105{word-spacing:0.000000pt;}
.ws1_c00105{word-spacing:241.581494pt;}
._4_c00105{width:7.256225pt;}
._0_c00105{width:12.581235pt;}
._1_c00105{width:13.491890pt;}
._3_c00105{width:18.243041pt;}
._2_c00105{width:23.863587pt;}
.fs9_c00105{font-size:35.340254pt;}
.fs6_c00105{font-size:37.333182pt;}
.fs8_c00105{font-size:37.333438pt;}
.fs3_c00105{font-size:42.105093pt;}
.fs0_c00105{font-size:42.105094pt;}
.fs4_c00105{font-size:42.105095pt;}
.fs1_c00105{font-size:42.105096pt;}
.fs2_c00105{font-size:42.105098pt;}
.fsf_c00105{font-size:44.993408pt;}
.fsd_c00105{font-size:49.559999pt;}
.fs10_c00105{font-size:54.874778pt;}
.fsb_c00105{font-size:61.883325pt;}
.fsa_c00105{font-size:63.999997pt;}
.fse_c00105{font-size:66.154880pt;}
.fs5_c00105{font-size:68.454656pt;}
.fs7_c00105{font-size:79.986889pt;}
.fsc_c00105{font-size:85.319996pt;}
.y0_c00105{bottom:0.000000pt;}
.y1_c00105{bottom:0.000007pt;}
.y54_c00105{bottom:26.134367pt;}
.y49_c00105{bottom:26.976047pt;}
.y51_c00105{bottom:139.329370pt;}
.y50_c00105{bottom:166.329369pt;}
.y4f_c00105{bottom:193.329368pt;}
.y4e_c00105{bottom:220.329367pt;}
.y4d_c00105{bottom:247.329366pt;}
.y4c_c00105{bottom:274.329365pt;}
.y52_c00105{bottom:300.843757pt;}
.y53_c00105{bottom:357.763244pt;}
.y41_c00105{bottom:434.356542pt;}
.yf_c00105{bottom:440.080990pt;}
.y37_c00105{bottom:440.094410pt;}
.ye_c00105{bottom:440.547890pt;}
.y38_c00105{bottom:440.565380pt;}
.y21_c00105{bottom:440.870911pt;}
.y36_c00105{bottom:441.200765pt;}
.yd_c00105{bottom:441.495576pt;}
.y22_c00105{bottom:441.611645pt;}
.y20_c00105{bottom:441.629563pt;}
.y35_c00105{bottom:442.313014pt;}
.yc_c00105{bottom:442.449552pt;}
.y1f_c00105{bottom:442.549377pt;}
.y39_c00105{bottom:442.713380pt;}
.y10_c00105{bottom:442.769967pt;}
.y23_c00105{bottom:443.550591pt;}
.y34_c00105{bottom:443.775122pt;}
.yb_c00105{bottom:443.917606pt;}
.y1e_c00105{bottom:444.507353pt;}
.y24_c00105{bottom:444.786883pt;}
.y33_c00105{bottom:445.275797pt;}
.ya_c00105{bottom:445.423039pt;}
.y25_c00105{bottom:446.296546pt;}
.y11_c00105{bottom:446.572035pt;}
.y32_c00105{bottom:446.933786pt;}
.y9_c00105{bottom:447.085255pt;}
.y3a_c00105{bottom:447.247441pt;}
.y1d_c00105{bottom:447.877709pt;}
.y26_c00105{bottom:448.467477pt;}
.y12_c00105{bottom:448.810899pt;}
.y3b_c00105{bottom:450.472475pt;}
.y27_c00105{bottom:450.475443pt;}
.y31_c00105{bottom:451.070990pt;}
.y8_c00105{bottom:451.230778pt;}
.y1c_c00105{bottom:452.738886pt;}
.y28_c00105{bottom:453.381109pt;}
.y13_c00105{bottom:454.101984pt;}
.y3c_c00105{bottom:455.480391pt;}
.y1b_c00105{bottom:456.709189pt;}
.y30_c00105{bottom:456.761160pt;}
.y7_c00105{bottom:456.928507pt;}
.y14_c00105{bottom:458.323080pt;}
.y29_c00105{bottom:460.845368pt;}
.y3d_c00105{bottom:461.398303pt;}
.y1a_c00105{bottom:462.420024pt;}
.y2f_c00105{bottom:463.256334pt;}
.y6_c00105{bottom:463.336513pt;}
.y5_c00105{bottom:466.410980pt;}
.y19_c00105{bottom:466.482199pt;}
.y2a_c00105{bottom:468.000011pt;}
.y15_c00105{bottom:468.797638pt;}
.y2e_c00105{bottom:469.622215pt;}
.y4_c00105{bottom:471.753485pt;}
.y3e_c00105{bottom:472.032101pt;}
.y18_c00105{bottom:473.390788pt;}
.y2d_c00105{bottom:473.861528pt;}
.y44_c00105{bottom:475.524454pt;}
.y40_c00105{bottom:475.582982pt;}
.y17_c00105{bottom:476.851825pt;}
.y3_c00105{bottom:478.206359pt;}
.y2c_c00105{bottom:479.348101pt;}
.y16_c00105{bottom:479.678170pt;}
.y3f_c00105{bottom:480.001488pt;}
.y42_c00105{bottom:481.544412pt;}
.y2b_c00105{bottom:485.626650pt;}
.y2_c00105{bottom:486.681716pt;}
.y43_c00105{bottom:514.844315pt;}
.y4b_c00105{bottom:568.082312pt;}
.y55_c00105{bottom:912.712428pt;}
.y48_c00105{bottom:1003.367331pt;}
.y46_c00105{bottom:1007.767524pt;}
.y45_c00105{bottom:1020.212003pt;}
.y4a_c00105{bottom:1023.837407pt;}
.y47_c00105{bottom:1040.962470pt;}
.h8_c00105{height:31.990003pt;}
.h9_c00105{height:31.990004pt;}
.ha_c00105{height:31.990006pt;}
.h15_c00105{height:32.624615pt;}
.hf_c00105{height:32.907161pt;}
.hc_c00105{height:34.762880pt;}
.he_c00105{height:34.763119pt;}
.h6_c00105{height:39.206256pt;}
.h3_c00105{height:39.206257pt;}
.h7_c00105{height:39.206258pt;}
.h4_c00105{height:39.206259pt;}
.h5_c00105{height:39.206261pt;}
.h16_c00105{height:39.235466pt;}
.h11_c00105{height:44.871454pt;}
.h13_c00105{height:46.147909pt;}
.hb_c00105{height:50.040354pt;}
.h14_c00105{height:50.682132pt;}
.h10_c00105{height:59.593748pt;}
.hd_c00105{height:60.771289pt;}
.h12_c00105{height:79.445915pt;}
.h2_c00105{height:1159.999952pt;}
.h0_c00105{height:1159.999959pt;}
.h1_c00105{height:1160.000000pt;}
.w2_c00105{width:830.999965pt;}
.w0_c00105{width:831.000000pt;}
.w1_c00105{width:831.333333pt;}
.x0_c00105{left:0.000000pt;}
.x3e_c00105{left:79.544400pt;}
.x3f_c00105{left:80.750973pt;}
.x3a_c00105{left:95.315788pt;}
.x3b_c00105{left:96.735260pt;}
.x41_c00105{left:101.119605pt;}
.x26_c00105{left:119.977634pt;}
.x25_c00105{left:121.465137pt;}
.x27_c00105{left:124.463353pt;}
.x28_c00105{left:128.774857pt;}
.x29_c00105{left:133.544468pt;}
.x2a_c00105{left:135.991410pt;}
.x2b_c00105{left:138.666862pt;}
.x2c_c00105{left:142.086856pt;}
.x36_c00105{left:143.505744pt;}
.x2d_c00105{left:145.156780pt;}
.x2e_c00105{left:152.521190pt;}
.x2f_c00105{left:159.871997pt;}
.x30_c00105{left:167.366655pt;}
.x31_c00105{left:174.821307pt;}
.x32_c00105{left:178.525632pt;}
.x33_c00105{left:182.577318pt;}
.x34_c00105{left:185.963463pt;}
.x35_c00105{left:188.262839pt;}
.x2_c00105{left:204.798568pt;}
.x1_c00105{left:206.697430pt;}
.x3_c00105{left:209.442955pt;}
.x4_c00105{left:213.744503pt;}
.x5_c00105{left:218.506891pt;}
.x6_c00105{left:220.950947pt;}
.x7_c00105{left:223.623762pt;}
.x8_c00105{left:227.041187pt;}
.x9_c00105{left:229.962704pt;}
.xa_c00105{left:233.906932pt;}
.xb_c00105{left:241.567426pt;}
.xc_c00105{left:252.092435pt;}
.xd_c00105{left:258.703382pt;}
.xe_c00105{left:261.720880pt;}
.xf_c00105{left:266.467148pt;}
.x10_c00105{left:269.480012pt;}
.x11_c00105{left:273.046051pt;}
.x12_c00105{left:289.398009pt;}
.x13_c00105{left:290.480055pt;}
.x14_c00105{left:291.743178pt;}
.x15_c00105{left:294.762933pt;}
.x16_c00105{left:297.629190pt;}
.x17_c00105{left:302.857854pt;}
.x18_c00105{left:308.357394pt;}
.x19_c00105{left:313.417841pt;}
.x1a_c00105{left:316.448952pt;}
.x1b_c00105{left:323.477509pt;}
.x1c_c00105{left:330.578767pt;}
.x1d_c00105{left:336.587398pt;}
.x1e_c00105{left:339.272032pt;}
.x1f_c00105{left:341.942453pt;}
.x20_c00105{left:344.962878pt;}
.x21_c00105{left:347.289170pt;}
.x22_c00105{left:350.235429pt;}
.x23_c00105{left:354.835712pt;}
.x24_c00105{left:357.328825pt;}
.x3c_c00105{left:402.476937pt;}
.x38_c00105{left:413.241039pt;}
.x3d_c00105{left:576.508264pt;}
.x40_c00105{left:621.458319pt;}
.x39_c00105{left:652.036124pt;}
.x37_c00105{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d481bc86199693b425517ec9.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.006348;font-style:normal;font-weight:normal;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_28f1fa7af62b8cf45b6fff45.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.171387;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_d3a6dbb20666792113a03dd4.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.000000;font-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_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);}
.v0_c00106{vertical-align:0.000000px;}
.ls0_c00106{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00106{word-spacing:-19.320776px;}
.ws1_c00106{word-spacing:0.000000px;}
._7_c00106{width:1.083595px;}
._9_c00106{width:2.114049px;}
._e_c00106{width:3.365654px;}
._4_c00106{width:4.387044px;}
._1_c00106{width:5.596023px;}
._5_c00106{width:8.619115px;}
._6_c00106{width:10.732679px;}
._3_c00106{width:11.753858px;}
._c_c00106{width:14.466795px;}
._0_c00106{width:15.756385px;}
._b_c00106{width:17.261719px;}
._2_c00106{width:19.945125px;}
._10_c00106{width:21.937498px;}
._8_c00106{width:23.420446px;}
._a_c00106{width:25.139876px;}
._11_c00106{width:29.607948px;}
._d_c00106{width:37.819334px;}
._f_c00106{width:39.278320px;}
.fc3_c00106{color:transparent;}
.fc2_c00106{color:rgb(128,128,128);}
.fc1_c00106{color:rgb(0,0,0);}
.fc0_c00106{color:rgb(186,118,50);}
.fs2_c00106{font-size:69.618741px;}
.fs1_c00106{font-size:71.999997px;}
.fs0_c00106{font-size:74.377724px;}
.y0_c00106{bottom:0.000000px;}
.y1_c00106{bottom:0.000008px;}
.y1e_c00106{bottom:29.400983px;}
.y6_c00106{bottom:30.347873px;}
.y1d_c00106{bottom:341.805046px;}
.y1c_c00106{bottom:372.180044px;}
.y1b_c00106{bottom:402.555043px;}
.y1a_c00106{bottom:432.930042px;}
.y19_c00106{bottom:463.305041px;}
.y18_c00106{bottom:493.680039px;}
.y17_c00106{bottom:527.940338px;}
.y15_c00106{bottom:586.202318px;}
.y14_c00106{bottom:616.577317px;}
.y13_c00106{bottom:646.952315px;}
.y12_c00106{bottom:677.327314px;}
.y11_c00106{bottom:707.702313px;}
.y10_c00106{bottom:738.077312px;}
.yf_c00106{bottom:768.452310px;}
.ye_c00106{bottom:798.827309px;}
.yd_c00106{bottom:829.202308px;}
.yc_c00106{bottom:859.577307px;}
.yb_c00106{bottom:889.952305px;}
.ya_c00106{bottom:920.327304px;}
.y9_c00106{bottom:950.702303px;}
.y8_c00106{bottom:981.077302px;}
.y7_c00106{bottom:1011.452300px;}
.y16_c00106{bottom:1044.527299px;}
.y5_c00106{bottom:1104.854368px;}
.y4_c00106{bottom:1135.229367px;}
.y3_c00106{bottom:1165.604366px;}
.y2_c00106{bottom:1199.188987px;}
.h5_c00106{height:50.480386px;}
.h6_c00106{height:55.160154px;}
.h3_c00106{height:56.981762px;}
.h4_c00106{height:67.042966px;}
.h2_c00106{height:1304.999946px;}
.h0_c00106{height:1304.999953px;}
.h1_c00106{height:1305.000000px;}
.w2_c00106{width:934.874961px;}
.w0_c00106{width:934.875000px;}
.w1_c00106{width:935.250000px;}
.x0_c00106{left:0.000000px;}
.x1_c00106{left:88.794432px;}
.x3_c00106{left:90.252846px;}
.x2_c00106{left:452.786554px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.ws0_c00106{word-spacing:-17.174023pt;}
.ws1_c00106{word-spacing:0.000000pt;}
._7_c00106{width:0.963195pt;}
._9_c00106{width:1.879155pt;}
._e_c00106{width:2.991692pt;}
._4_c00106{width:3.899595pt;}
._1_c00106{width:4.974243pt;}
._5_c00106{width:7.661435pt;}
._6_c00106{width:9.540159pt;}
._3_c00106{width:10.447874pt;}
._c_c00106{width:12.859373pt;}
._0_c00106{width:14.005676pt;}
._b_c00106{width:15.343750pt;}
._2_c00106{width:17.729000pt;}
._10_c00106{width:19.499999pt;}
._8_c00106{width:20.818174pt;}
._a_c00106{width:22.346557pt;}
._11_c00106{width:26.318176pt;}
._d_c00106{width:33.617185pt;}
._f_c00106{width:34.914063pt;}
.fs2_c00106{font-size:61.883325pt;}
.fs1_c00106{font-size:63.999997pt;}
.fs0_c00106{font-size:66.113533pt;}
.y0_c00106{bottom:0.000000pt;}
.y1_c00106{bottom:0.000007pt;}
.y1e_c00106{bottom:26.134207pt;}
.y6_c00106{bottom:26.975887pt;}
.y1d_c00106{bottom:303.826707pt;}
.y1c_c00106{bottom:330.826706pt;}
.y1b_c00106{bottom:357.826705pt;}
.y1a_c00106{bottom:384.826704pt;}
.y19_c00106{bottom:411.826703pt;}
.y18_c00106{bottom:438.826702pt;}
.y17_c00106{bottom:469.280300pt;}
.y15_c00106{bottom:521.068727pt;}
.y14_c00106{bottom:548.068726pt;}
.y13_c00106{bottom:575.068725pt;}
.y12_c00106{bottom:602.068724pt;}
.y11_c00106{bottom:629.068723pt;}
.y10_c00106{bottom:656.068721pt;}
.yf_c00106{bottom:683.068720pt;}
.ye_c00106{bottom:710.068719pt;}
.yd_c00106{bottom:737.068718pt;}
.yc_c00106{bottom:764.068717pt;}
.yb_c00106{bottom:791.068716pt;}
.ya_c00106{bottom:818.068715pt;}
.y9_c00106{bottom:845.068714pt;}
.y8_c00106{bottom:872.068712pt;}
.y7_c00106{bottom:899.068711pt;}
.y16_c00106{bottom:928.468710pt;}
.y5_c00106{bottom:982.092772pt;}
.y4_c00106{bottom:1009.092771pt;}
.y3_c00106{bottom:1036.092770pt;}
.y2_c00106{bottom:1065.945766pt;}
.h5_c00106{height:44.871454pt;}
.h6_c00106{height:49.031248pt;}
.h3_c00106{height:50.650455pt;}
.h4_c00106{height:59.593748pt;}
.h2_c00106{height:1159.999952pt;}
.h0_c00106{height:1159.999959pt;}
.h1_c00106{height:1160.000000pt;}
.w2_c00106{width:830.999965pt;}
.w0_c00106{width:831.000000pt;}
.w1_c00106{width:831.333333pt;}
.x0_c00106{left:0.000000pt;}
.x1_c00106{left:78.928384pt;}
.x3_c00106{left:80.224752pt;}
.x2_c00106{left:402.476937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c90535fa6d3233f8c8d3b4a.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:0.772949;font-style:normal;font-weight:normal;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_5a6989701467117682bede95.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.171387;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:0.734863;font-style:normal;font-weight:normal;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_52aeed6dc5e2313b5cd33b5c.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.000000;font-style:normal;font-weight: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_248c038ba19c9445549822fd.woff2')format("woff");}.ff5_c00107{font-family:ff5_c00107;line-height:1.171387;font-style:normal;font-weight: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_c00107;src:url('chunks/assets/font_92d3f58a0f65e5f567c9aadd.woff2')format("woff");}.ff6_c00107{font-family:ff6_c00107;line-height:1.006348;font-style:normal;font-weight: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_c00107;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00107{font-family:ff7_c00107;line-height:0.769531;font-style:normal;font-weight: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_c00107;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff8_c00107{font-family:ff8_c00107;line-height:0.743000;font-style:normal;font-weight: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_c00107;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00107{font-family:ff9_c00107;line-height:0.734863;font-style:normal;font-weight: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_c00107;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ffa_c00107{font-family:ffa_c00107;line-height:0.894000;font-style:normal;font-weight: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_c00107;src:url('chunks/assets/font_2d358f218610cf5c16549b37.woff2')format("woff");}.ffb_c00107{font-family:ffb_c00107;line-height:0.895000;font-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_c00107{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00107{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00107{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00107{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00107{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00107{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00107{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00107{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00107{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00107{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00107{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00107{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00107{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00107{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00107{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00107{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00107{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00107{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00107{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00107{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00107{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00107{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00107{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00107{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00107{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00107{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00107{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00107{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00107{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00107{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00107{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00107{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00107{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00107{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00107{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00107{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00107{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00107{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00107{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00107{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00107{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00107{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00107{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00107{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00107{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00107{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00107{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00107{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00107{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00107{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00107{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00107{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00107{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00107{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00107{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00107{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00107{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00107{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00107{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00107{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00107{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00107{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00107{vertical-align:0.000000px;}
.ls0_c00107{letter-spacing:0.000000px;}
.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:-15.171263px;}
.ws2_c00107{word-spacing:0.000000px;}
.ws1_c00107{word-spacing:271.779181px;}
._0_c00107{width:1.212888px;}
._2_c00107{width:5.477921px;}
._1_c00107{width:25.371962px;}
.fc4_c00107{color:transparent;}
.fc3_c00107{color:rgb(186,118,50);}
.fc2_c00107{color:rgb(0,0,0);}
.fc1_c00107{color:rgb(128,128,128);}
.fc0_c00107{color:rgb(255,255,255);}
.fs2_c00107{font-size:39.757786px;}
.fse_c00107{font-size:41.999830px;}
.fs1_c00107{font-size:42.000118px;}
.fsb_c00107{font-size:47.368230px;}
.fs8_c00107{font-size:47.368231px;}
.fsc_c00107{font-size:47.368232px;}
.fs9_c00107{font-size:47.368233px;}
.fsa_c00107{font-size:47.368235px;}
.fsf_c00107{font-size:50.617585px;}
.fs7_c00107{font-size:55.754999px;}
.fs10_c00107{font-size:61.734125px;}
.fs4_c00107{font-size:69.618741px;}
.fs3_c00107{font-size:71.999997px;}
.fs6_c00107{font-size:74.424240px;}
.fsd_c00107{font-size:77.011488px;}
.fs0_c00107{font-size:89.985250px;}
.fs5_c00107{font-size:95.984996px;}
.y0_c00107{bottom:0.000000px;}
.y1_c00107{bottom:0.000008px;}
.y52_c00107{bottom:29.401163px;}
.y6_c00107{bottom:30.348053px;}
.yb_c00107{bottom:206.754939px;}
.ya_c00107{bottom:237.129938px;}
.y9_c00107{bottom:267.504937px;}
.y8_c00107{bottom:297.879936px;}
.yc_c00107{bottom:338.958374px;}
.y51_c00107{bottom:402.483470px;}
.y4d_c00107{bottom:488.651254px;}
.y1b_c00107{bottom:495.090933px;}
.y43_c00107{bottom:495.106103px;}
.y1a_c00107{bottom:495.616449px;}
.y44_c00107{bottom:495.636124px;}
.y2d_c00107{bottom:495.979775px;}
.y42_c00107{bottom:496.350860px;}
.y19_c00107{bottom:496.682414px;}
.y2e_c00107{bottom:496.812992px;}
.y2c_c00107{bottom:496.833258px;}
.y41_c00107{bottom:497.602248px;}
.y18_c00107{bottom:497.755746px;}
.y2b_c00107{bottom:497.868121px;}
.y45_c00107{bottom:498.052732px;}
.y1c_c00107{bottom:498.116213px;}
.y2f_c00107{bottom:498.994595px;}
.y40_c00107{bottom:499.247120px;}
.y17_c00107{bottom:499.407306px;}
.y2a_c00107{bottom:500.070772px;}
.y30_c00107{bottom:500.385244px;}
.y3f_c00107{bottom:500.935415px;}
.y16_c00107{bottom:501.100811px;}
.y31_c00107{bottom:502.083507px;}
.y1d_c00107{bottom:502.393431px;}
.y3e_c00107{bottom:502.800329px;}
.y15_c00107{bottom:502.971020px;}
.y46_c00107{bottom:503.153263px;}
.y29_c00107{bottom:503.862315px;}
.y32_c00107{bottom:504.525911px;}
.y1e_c00107{bottom:504.912261px;}
.y47_c00107{bottom:506.781786px;}
.y33_c00107{bottom:506.784693px;}
.y3d_c00107{bottom:507.454863px;}
.y14_c00107{bottom:507.634626px;}
.y28_c00107{bottom:509.331246px;}
.y34_c00107{bottom:510.053855px;}
.y1f_c00107{bottom:510.864984px;}
.y48_c00107{bottom:512.415439px;}
.y27_c00107{bottom:513.797657px;}
.y3c_c00107{bottom:513.856161px;}
.y13_c00107{bottom:514.044390px;}
.y20_c00107{bottom:515.613465px;}
.y35_c00107{bottom:518.450859px;}
.y49_c00107{bottom:519.072982px;}
.y26_c00107{bottom:520.222347px;}
.y3b_c00107{bottom:521.163484px;}
.y12_c00107{bottom:521.253469px;}
.y11_c00107{bottom:524.712352px;}
.y25_c00107{bottom:524.792222px;}
.y36_c00107{bottom:526.500013px;}
.y21_c00107{bottom:527.397342px;}
.y3a_c00107{bottom:528.324992px;}
.y10_c00107{bottom:530.722491px;}
.y4a_c00107{bottom:531.036114px;}
.y24_c00107{bottom:532.564636px;}
.y39_c00107{bottom:533.094470px;}
.y50_c00107{bottom:534.965011px;}
.y4c_c00107{bottom:535.031107px;}
.y23_c00107{bottom:536.458555px;}
.yf_c00107{bottom:537.982082px;}
.y38_c00107{bottom:539.266614px;}
.y22_c00107{bottom:539.638049px;}
.y4b_c00107{bottom:540.001566px;}
.y4e_c00107{bottom:541.737572px;}
.y37_c00107{bottom:546.330270px;}
.ye_c00107{bottom:547.517182px;}
.y4f_c00107{bottom:579.199710px;}
.yd_c00107{bottom:639.092421px;}
.y53_c00107{bottom:1026.801593px;}
.y5_c00107{bottom:1128.788391px;}
.y3_c00107{bottom:1133.738586px;}
.y2_c00107{bottom:1147.738626px;}
.y7_c00107{bottom:1151.816964px;}
.y4_c00107{bottom:1171.082869px;}
.h10_c00107{height:35.988753px;}
.h11_c00107{height:35.988755px;}
.h12_c00107{height:35.988756px;}
.h15_c00107{height:36.702692px;}
.h5_c00107{height:37.020556px;}
.h14_c00107{height:39.108240px;}
.h4_c00107{height:39.108509px;}
.he_c00107{height:44.107038px;}
.hb_c00107{height:44.107039px;}
.hf_c00107{height:44.107040px;}
.hc_c00107{height:44.107042px;}
.hd_c00107{height:44.107043px;}
.h16_c00107{height:44.139900px;}
.h7_c00107{height:50.480386px;}
.ha_c00107{height:51.916398px;}
.h13_c00107{height:56.295398px;}
.h9_c00107{height:57.017399px;}
.h6_c00107{height:67.042966px;}
.h3_c00107{height:68.367700px;}
.h8_c00107{height:89.376654px;}
.h2_c00107{height:1304.999946px;}
.h0_c00107{height:1304.999953px;}
.h1_c00107{height:1305.000000px;}
.w2_c00107{width:934.874961px;}
.w0_c00107{width:934.875000px;}
.w1_c00107{width:935.250000px;}
.x0_c00107{left:0.000000px;}
.x5_c00107{left:89.487450px;}
.x6_c00107{left:90.844844px;}
.x1_c00107{left:107.230262px;}
.x2_c00107{left:108.827167px;}
.x41_c00107{left:113.759556px;}
.x2c_c00107{left:134.974838px;}
.x2b_c00107{left:136.648279px;}
.x2d_c00107{left:140.021272px;}
.x2e_c00107{left:144.871714px;}
.x2f_c00107{left:150.237526px;}
.x30_c00107{left:152.990336px;}
.x31_c00107{left:156.000220px;}
.x32_c00107{left:159.847713px;}
.x3c_c00107{left:161.443962px;}
.x33_c00107{left:163.301377px;}
.x34_c00107{left:171.586339px;}
.x35_c00107{left:179.855997px;}
.x36_c00107{left:188.287487px;}
.x37_c00107{left:196.673970px;}
.x38_c00107{left:200.841336px;}
.x39_c00107{left:205.399483px;}
.x3a_c00107{left:209.208896px;}
.x3b_c00107{left:211.795693px;}
.x9_c00107{left:230.398389px;}
.x8_c00107{left:232.534609px;}
.xa_c00107{left:235.623324px;}
.xb_c00107{left:240.462566px;}
.xc_c00107{left:245.820252px;}
.xd_c00107{left:248.569815px;}
.xe_c00107{left:251.576732px;}
.xf_c00107{left:255.421336px;}
.x10_c00107{left:258.708042px;}
.x11_c00107{left:263.145298px;}
.x12_c00107{left:271.763354px;}
.x13_c00107{left:283.603990px;}
.x14_c00107{left:291.041304px;}
.x3_c00107{left:295.177092px;}
.x15_c00107{left:299.775542px;}
.x16_c00107{left:303.165014px;}
.x17_c00107{left:307.176807px;}
.x18_c00107{left:325.572760px;}
.x19_c00107{left:326.790062px;}
.x1a_c00107{left:328.211075px;}
.x1b_c00107{left:331.608300px;}
.x1c_c00107{left:334.832839px;}
.x1d_c00107{left:340.715086px;}
.x1e_c00107{left:346.902068px;}
.x1f_c00107{left:352.595072px;}
.x20_c00107{left:356.005071px;}
.x21_c00107{left:363.912198px;}
.x22_c00107{left:371.901113px;}
.x23_c00107{left:378.660822px;}
.x24_c00107{left:381.681036px;}
.x25_c00107{left:384.685260px;}
.x26_c00107{left:388.083238px;}
.x27_c00107{left:390.700316px;}
.x28_c00107{left:394.014858px;}
.x29_c00107{left:399.190176px;}
.x2a_c00107{left:401.994929px;}
.x4_c00107{left:452.786554px;}
.x3e_c00107{left:464.896169px;}
.x7_c00107{left:648.571797px;}
.x40_c00107{left:699.140609px;}
.x3f_c00107{left:733.540639px;}
.x3d_c00107{left:757.088990px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls0_c00107{letter-spacing:0.000000pt;}
.ws0_c00107{word-spacing:-13.485567pt;}
.ws2_c00107{word-spacing:0.000000pt;}
.ws1_c00107{word-spacing:241.581494pt;}
._0_c00107{width:1.078122pt;}
._2_c00107{width:4.869263pt;}
._1_c00107{width:22.552855pt;}
.fs2_c00107{font-size:35.340254pt;}
.fse_c00107{font-size:37.333182pt;}
.fs1_c00107{font-size:37.333438pt;}
.fsb_c00107{font-size:42.105093pt;}
.fs8_c00107{font-size:42.105094pt;}
.fsc_c00107{font-size:42.105095pt;}
.fs9_c00107{font-size:42.105096pt;}
.fsa_c00107{font-size:42.105098pt;}
.fsf_c00107{font-size:44.993408pt;}
.fs7_c00107{font-size:49.559999pt;}
.fs10_c00107{font-size:54.874778pt;}
.fs4_c00107{font-size:61.883325pt;}
.fs3_c00107{font-size:63.999997pt;}
.fs6_c00107{font-size:66.154880pt;}
.fsd_c00107{font-size:68.454656pt;}
.fs0_c00107{font-size:79.986889pt;}
.fs5_c00107{font-size:85.319996pt;}
.y0_c00107{bottom:0.000000pt;}
.y1_c00107{bottom:0.000007pt;}
.y52_c00107{bottom:26.134367pt;}
.y6_c00107{bottom:26.976047pt;}
.yb_c00107{bottom:183.782168pt;}
.ya_c00107{bottom:210.782167pt;}
.y9_c00107{bottom:237.782166pt;}
.y8_c00107{bottom:264.782165pt;}
.yc_c00107{bottom:301.296333pt;}
.y51_c00107{bottom:357.763084pt;}
.y4d_c00107{bottom:434.356670pt;}
.y1b_c00107{bottom:440.080830pt;}
.y43_c00107{bottom:440.094314pt;}
.y1a_c00107{bottom:440.547954pt;}
.y44_c00107{bottom:440.565444pt;}
.y2d_c00107{bottom:440.870911pt;}
.y42_c00107{bottom:441.200765pt;}
.y19_c00107{bottom:441.495480pt;}
.y2e_c00107{bottom:441.611549pt;}
.y2c_c00107{bottom:441.629563pt;}
.y41_c00107{bottom:442.313110pt;}
.y18_c00107{bottom:442.449552pt;}
.y2b_c00107{bottom:442.549441pt;}
.y45_c00107{bottom:442.713540pt;}
.y1c_c00107{bottom:442.769967pt;}
.y2f_c00107{bottom:443.550751pt;}
.y40_c00107{bottom:443.775218pt;}
.y17_c00107{bottom:443.917606pt;}
.y2a_c00107{bottom:444.507353pt;}
.y30_c00107{bottom:444.786883pt;}
.y3f_c00107{bottom:445.275925pt;}
.y16_c00107{bottom:445.422943pt;}
.y31_c00107{bottom:446.296450pt;}
.y1d_c00107{bottom:446.571939pt;}
.y3e_c00107{bottom:446.933626pt;}
.y15_c00107{bottom:447.085351pt;}
.y46_c00107{bottom:447.247345pt;}
.y29_c00107{bottom:447.877613pt;}
.y32_c00107{bottom:448.467477pt;}
.y1e_c00107{bottom:448.810899pt;}
.y47_c00107{bottom:450.472699pt;}
.y33_c00107{bottom:450.475283pt;}
.y3d_c00107{bottom:451.070990pt;}
.y14_c00107{bottom:451.230778pt;}
.y28_c00107{bottom:452.738886pt;}
.y34_c00107{bottom:453.381205pt;}
.y1f_c00107{bottom:454.102208pt;}
.y48_c00107{bottom:455.480391pt;}
.y27_c00107{bottom:456.709029pt;}
.y3c_c00107{bottom:456.761032pt;}
.y13_c00107{bottom:456.928347pt;}
.y20_c00107{bottom:458.323080pt;}
.y35_c00107{bottom:460.845208pt;}
.y49_c00107{bottom:461.398207pt;}
.y26_c00107{bottom:462.419864pt;}
.y3b_c00107{bottom:463.256430pt;}
.y12_c00107{bottom:463.336417pt;}
.y11_c00107{bottom:466.410980pt;}
.y25_c00107{bottom:466.481975pt;}
.y36_c00107{bottom:468.000011pt;}
.y21_c00107{bottom:468.797638pt;}
.y3a_c00107{bottom:469.622215pt;}
.y10_c00107{bottom:471.753325pt;}
.y4a_c00107{bottom:472.032101pt;}
.y24_c00107{bottom:473.390788pt;}
.y39_c00107{bottom:473.861752pt;}
.y50_c00107{bottom:475.524454pt;}
.y4c_c00107{bottom:475.583206pt;}
.y23_c00107{bottom:476.852049pt;}
.yf_c00107{bottom:478.206295pt;}
.y38_c00107{bottom:479.348101pt;}
.y22_c00107{bottom:479.678266pt;}
.y4b_c00107{bottom:480.001392pt;}
.y4e_c00107{bottom:481.544508pt;}
.y37_c00107{bottom:485.626906pt;}
.ye_c00107{bottom:486.681940pt;}
.y4f_c00107{bottom:514.844187pt;}
.yd_c00107{bottom:568.082152pt;}
.y53_c00107{bottom:912.712527pt;}
.y5_c00107{bottom:1003.367459pt;}
.y3_c00107{bottom:1007.767632pt;}
.y2_c00107{bottom:1020.212112pt;}
.y7_c00107{bottom:1023.837301pt;}
.y4_c00107{bottom:1040.962550pt;}
.h10_c00107{height:31.990003pt;}
.h11_c00107{height:31.990004pt;}
.h12_c00107{height:31.990006pt;}
.h15_c00107{height:32.624615pt;}
.h5_c00107{height:32.907161pt;}
.h14_c00107{height:34.762880pt;}
.h4_c00107{height:34.763119pt;}
.he_c00107{height:39.206256pt;}
.hb_c00107{height:39.206257pt;}
.hf_c00107{height:39.206258pt;}
.hc_c00107{height:39.206259pt;}
.hd_c00107{height:39.206261pt;}
.h16_c00107{height:39.235466pt;}
.h7_c00107{height:44.871454pt;}
.ha_c00107{height:46.147909pt;}
.h13_c00107{height:50.040354pt;}
.h9_c00107{height:50.682132pt;}
.h6_c00107{height:59.593748pt;}
.h3_c00107{height:60.771289pt;}
.h8_c00107{height:79.445915pt;}
.h2_c00107{height:1159.999952pt;}
.h0_c00107{height:1159.999959pt;}
.h1_c00107{height:1160.000000pt;}
.w2_c00107{width:830.999965pt;}
.w0_c00107{width:831.000000pt;}
.w1_c00107{width:831.333333pt;}
.x0_c00107{left:0.000000pt;}
.x5_c00107{left:79.544400pt;}
.x6_c00107{left:80.750973pt;}
.x1_c00107{left:95.315788pt;}
.x2_c00107{left:96.735260pt;}
.x41_c00107{left:101.119605pt;}
.x2c_c00107{left:119.977634pt;}
.x2b_c00107{left:121.465137pt;}
.x2d_c00107{left:124.463353pt;}
.x2e_c00107{left:128.774857pt;}
.x2f_c00107{left:133.544468pt;}
.x30_c00107{left:135.991410pt;}
.x31_c00107{left:138.666862pt;}
.x32_c00107{left:142.086856pt;}
.x3c_c00107{left:143.505744pt;}
.x33_c00107{left:145.156780pt;}
.x34_c00107{left:152.521190pt;}
.x35_c00107{left:159.871997pt;}
.x36_c00107{left:167.366655pt;}
.x37_c00107{left:174.821307pt;}
.x38_c00107{left:178.525632pt;}
.x39_c00107{left:182.577318pt;}
.x3a_c00107{left:185.963463pt;}
.x3b_c00107{left:188.262839pt;}
.x9_c00107{left:204.798568pt;}
.x8_c00107{left:206.697430pt;}
.xa_c00107{left:209.442955pt;}
.xb_c00107{left:213.744503pt;}
.xc_c00107{left:218.506891pt;}
.xd_c00107{left:220.950947pt;}
.xe_c00107{left:223.623762pt;}
.xf_c00107{left:227.041187pt;}
.x10_c00107{left:229.962704pt;}
.x11_c00107{left:233.906932pt;}
.x12_c00107{left:241.567426pt;}
.x13_c00107{left:252.092435pt;}
.x14_c00107{left:258.703382pt;}
.x3_c00107{left:262.379637pt;}
.x15_c00107{left:266.467148pt;}
.x16_c00107{left:269.480012pt;}
.x17_c00107{left:273.046051pt;}
.x18_c00107{left:289.398009pt;}
.x19_c00107{left:290.480055pt;}
.x1a_c00107{left:291.743178pt;}
.x1b_c00107{left:294.762933pt;}
.x1c_c00107{left:297.629190pt;}
.x1d_c00107{left:302.857854pt;}
.x1e_c00107{left:308.357394pt;}
.x1f_c00107{left:313.417841pt;}
.x20_c00107{left:316.448952pt;}
.x21_c00107{left:323.477509pt;}
.x22_c00107{left:330.578767pt;}
.x23_c00107{left:336.587398pt;}
.x24_c00107{left:339.272032pt;}
.x25_c00107{left:341.942453pt;}
.x26_c00107{left:344.962878pt;}
.x27_c00107{left:347.289170pt;}
.x28_c00107{left:350.235429pt;}
.x29_c00107{left:354.835712pt;}
.x2a_c00107{left:357.328825pt;}
.x4_c00107{left:402.476937pt;}
.x3e_c00107{left:413.241039pt;}
.x7_c00107{left:576.508264pt;}
.x40_c00107{left:621.458319pt;}
.x3f_c00107{left:652.036124pt;}
.x3d_c00107{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d481bc86199693b425517ec9.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.006348;font-style:normal;font-weight:normal;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_77426380361bb2391f58f5db.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.171387;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_cb525cc13d101ab98a4e45b1.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:1.000000;font-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_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);}
.v0_c00108{vertical-align:0.000000px;}
.ls0_c00108{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00108{word-spacing:-19.320776px;}
.ws1_c00108{word-spacing:0.000000px;}
._2_c00108{width:3.417158px;}
._5_c00108{width:5.263140px;}
._3_c00108{width:7.820891px;}
._4_c00108{width:12.495504px;}
._6_c00108{width:14.258400px;}
._1_c00108{width:19.925419px;}
._0_c00108{width:25.548978px;}
.fc3_c00108{color:transparent;}
.fc2_c00108{color:rgb(128,128,128);}
.fc1_c00108{color:rgb(0,0,0);}
.fc0_c00108{color:rgb(186,118,50);}
.fs2_c00108{font-size:69.618741px;}
.fs1_c00108{font-size:71.999997px;}
.fs0_c00108{font-size:74.377724px;}
.y0_c00108{bottom:0.000000px;}
.y1_c00108{bottom:0.000008px;}
.y10_c00108{bottom:29.401163px;}
.y6_c00108{bottom:30.348053px;}
.yf_c00108{bottom:745.251647px;}
.ye_c00108{bottom:775.626646px;}
.yd_c00108{bottom:809.999264px;}
.yb_c00108{bottom:880.199611px;}
.ya_c00108{bottom:910.574609px;}
.y9_c00108{bottom:940.949608px;}
.y8_c00108{bottom:971.324607px;}
.y7_c00108{bottom:1001.699605px;}
.yc_c00108{bottom:1034.774604px;}
.y5_c00108{bottom:1104.854368px;}
.y4_c00108{bottom:1135.229367px;}
.y3_c00108{bottom:1165.604366px;}
.y2_c00108{bottom:1199.188901px;}
.h5_c00108{height:50.480386px;}
.h6_c00108{height:55.160154px;}
.h3_c00108{height:56.981762px;}
.h4_c00108{height:67.042966px;}
.h2_c00108{height:1304.999946px;}
.h0_c00108{height:1304.999953px;}
.h1_c00108{height:1305.000000px;}
.w2_c00108{width:934.874961px;}
.w0_c00108{width:934.875000px;}
.w1_c00108{width:935.250000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:88.794432px;}
.x3_c00108{left:90.257367px;}
.x2_c00108{left:452.786554px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws0_c00108{word-spacing:-17.174023pt;}
.ws1_c00108{word-spacing:0.000000pt;}
._2_c00108{width:3.037474pt;}
._5_c00108{width:4.678347pt;}
._3_c00108{width:6.951903pt;}
._4_c00108{width:11.107115pt;}
._6_c00108{width:12.674133pt;}
._1_c00108{width:17.711484pt;}
._0_c00108{width:22.710203pt;}
.fs2_c00108{font-size:61.883325pt;}
.fs1_c00108{font-size:63.999997pt;}
.fs0_c00108{font-size:66.113533pt;}
.y0_c00108{bottom:0.000000pt;}
.y1_c00108{bottom:0.000007pt;}
.y10_c00108{bottom:26.134367pt;}
.y6_c00108{bottom:26.976047pt;}
.yf_c00108{bottom:662.445908pt;}
.ye_c00108{bottom:689.445907pt;}
.yd_c00108{bottom:719.999346pt;}
.yb_c00108{bottom:782.399654pt;}
.ya_c00108{bottom:809.399653pt;}
.y9_c00108{bottom:836.399652pt;}
.y8_c00108{bottom:863.399650pt;}
.y7_c00108{bottom:890.399649pt;}
.yc_c00108{bottom:919.799648pt;}
.y5_c00108{bottom:982.092772pt;}
.y4_c00108{bottom:1009.092771pt;}
.y3_c00108{bottom:1036.092770pt;}
.y2_c00108{bottom:1065.945690pt;}
.h5_c00108{height:44.871454pt;}
.h6_c00108{height:49.031248pt;}
.h3_c00108{height:50.650455pt;}
.h4_c00108{height:59.593748pt;}
.h2_c00108{height:1159.999952pt;}
.h0_c00108{height:1159.999959pt;}
.h1_c00108{height:1160.000000pt;}
.w2_c00108{width:830.999965pt;}
.w0_c00108{width:831.000000pt;}
.w1_c00108{width:831.333333pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:78.928384pt;}
.x3_c00108{left:80.228771pt;}
.x2_c00108{left:402.476937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c90535fa6d3233f8c8d3b4a.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:0.772949;font-style:normal;font-weight:normal;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_582ada291e43df23c5ea6e8f.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.171387;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_ea2bac582bbbfba8dc4e25f7.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.000000;font-style:normal;font-weight: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_c00109;src:url('chunks/assets/font_90970be5fbe7cf69f67fea6f.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;line-height:1.171387;font-style:normal;font-weight: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_c00109;src:url('chunks/assets/font_92d3f58a0f65e5f567c9aadd.woff2')format("woff");}.ff6_c00109{font-family:ff6_c00109;line-height:1.006348;font-style:normal;font-weight: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_c00109;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00109{font-family:ff7_c00109;line-height:0.769531;font-style:normal;font-weight: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_c00109;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff8_c00109{font-family:ff8_c00109;line-height:0.743000;font-style:normal;font-weight: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_c00109;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00109{font-family:ff9_c00109;line-height:0.734863;font-style:normal;font-weight: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_c00109;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ffa_c00109{font-family:ffa_c00109;line-height:0.894000;font-style:normal;font-weight: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_c00109;src:url('chunks/assets/font_2d358f218610cf5c16549b37.woff2')format("woff");}.ffb_c00109{font-family:ffb_c00109;line-height:0.895000;font-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_c00109{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00109{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00109{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00109{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00109{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00109{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00109{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00109{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00109{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00109{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00109{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00109{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00109{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00109{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00109{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00109{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00109{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00109{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00109{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00109{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00109{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00109{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00109{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00109{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00109{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00109{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00109{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00109{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00109{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00109{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00109{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00109{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00109{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00109{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00109{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00109{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00109{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00109{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00109{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00109{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00109{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00109{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00109{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00109{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00109{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00109{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00109{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00109{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00109{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00109{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00109{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00109{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00109{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00109{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00109{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00109{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00109{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00109{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00109{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00109{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00109{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00109{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00109{vertical-align:0.000000px;}
.ls0_c00109{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00109{word-spacing:-15.171263px;}
.ws2_c00109{word-spacing:0.000000px;}
.ws1_c00109{word-spacing:271.779181px;}
._4_c00109{width:9.894835px;}
._1_c00109{width:14.601515px;}
._0_c00109{width:24.599967px;}
._3_c00109{width:26.670067px;}
._2_c00109{width:31.104488px;}
.fc4_c00109{color:transparent;}
.fc3_c00109{color:rgb(186,118,50);}
.fc2_c00109{color:rgb(0,0,0);}
.fc1_c00109{color:rgb(128,128,128);}
.fc0_c00109{color:rgb(255,255,255);}
.fs2_c00109{font-size:39.757786px;}
.fse_c00109{font-size:41.999830px;}
.fs1_c00109{font-size:42.000118px;}
.fsb_c00109{font-size:47.368230px;}
.fs8_c00109{font-size:47.368231px;}
.fsc_c00109{font-size:47.368232px;}
.fs9_c00109{font-size:47.368233px;}
.fsa_c00109{font-size:47.368235px;}
.fsf_c00109{font-size:50.617585px;}
.fs7_c00109{font-size:55.754999px;}
.fs10_c00109{font-size:61.734125px;}
.fs4_c00109{font-size:69.618741px;}
.fs3_c00109{font-size:71.999997px;}
.fs6_c00109{font-size:74.424240px;}
.fsd_c00109{font-size:77.011488px;}
.fs0_c00109{font-size:89.985250px;}
.fs5_c00109{font-size:95.984996px;}
.y0_c00109{bottom:0.000000px;}
.y1_c00109{bottom:0.000008px;}
.y54_c00109{bottom:29.401163px;}
.y6_c00109{bottom:30.348053px;}
.yd_c00109{bottom:145.495542px;}
.yc_c00109{bottom:175.870541px;}
.yb_c00109{bottom:206.245539px;}
.ya_c00109{bottom:236.620538px;}
.y9_c00109{bottom:266.995537px;}
.y8_c00109{bottom:297.370536px;}
.ye_c00109{bottom:338.449334px;}
.y53_c00109{bottom:402.483830px;}
.y4f_c00109{bottom:488.651254px;}
.y1d_c00109{bottom:495.090933px;}
.y45_c00109{bottom:495.106103px;}
.y1c_c00109{bottom:495.616089px;}
.y46_c00109{bottom:495.635800px;}
.y2f_c00109{bottom:495.979775px;}
.y44_c00109{bottom:496.351184px;}
.y1b_c00109{bottom:496.682414px;}
.y30_c00109{bottom:496.812632px;}
.y2e_c00109{bottom:496.833258px;}
.y43_c00109{bottom:497.602248px;}
.y1a_c00109{bottom:497.755746px;}
.y2d_c00109{bottom:497.868121px;}
.y47_c00109{bottom:498.052732px;}
.y1e_c00109{bottom:498.115853px;}
.y31_c00109{bottom:498.994235px;}
.y42_c00109{bottom:499.246760px;}
.y19_c00109{bottom:499.407666px;}
.y2c_c00109{bottom:500.070772px;}
.y32_c00109{bottom:500.385244px;}
.y41_c00109{bottom:500.935415px;}
.y18_c00109{bottom:501.100811px;}
.y33_c00109{bottom:502.083507px;}
.y1f_c00109{bottom:502.393431px;}
.y40_c00109{bottom:502.800689px;}
.y17_c00109{bottom:502.971020px;}
.y48_c00109{bottom:503.153263px;}
.y2b_c00109{bottom:503.862315px;}
.y34_c00109{bottom:504.525587px;}
.y20_c00109{bottom:504.912621px;}
.y49_c00109{bottom:506.781462px;}
.y35_c00109{bottom:506.785053px;}
.y3f_c00109{bottom:507.454863px;}
.y16_c00109{bottom:507.634950px;}
.y2a_c00109{bottom:509.331606px;}
.y36_c00109{bottom:510.053495px;}
.y21_c00109{bottom:510.864984px;}
.y4a_c00109{bottom:512.415763px;}
.y29_c00109{bottom:513.798017px;}
.y3e_c00109{bottom:513.856161px;}
.y15_c00109{bottom:514.044390px;}
.y22_c00109{bottom:515.613465px;}
.y37_c00109{bottom:518.450859px;}
.y4b_c00109{bottom:519.073342px;}
.y28_c00109{bottom:520.222347px;}
.y3d_c00109{bottom:521.163124px;}
.y14_c00109{bottom:521.253469px;}
.y13_c00109{bottom:524.712352px;}
.y27_c00109{bottom:524.792222px;}
.y38_c00109{bottom:526.500013px;}
.y23_c00109{bottom:527.397702px;}
.y3c_c00109{bottom:528.324992px;}
.y12_c00109{bottom:530.723211px;}
.y4c_c00109{bottom:531.035754px;}
.y26_c00109{bottom:532.564960px;}
.y3b_c00109{bottom:533.093750px;}
.y52_c00109{bottom:534.965011px;}
.y4e_c00109{bottom:535.031107px;}
.y25_c00109{bottom:536.458231px;}
.y11_c00109{bottom:537.982442px;}
.y3a_c00109{bottom:539.266614px;}
.y24_c00109{bottom:539.638049px;}
.y4d_c00109{bottom:540.001242px;}
.y50_c00109{bottom:541.737896px;}
.y39_c00109{bottom:546.329550px;}
.y10_c00109{bottom:547.516498px;}
.y51_c00109{bottom:579.199710px;}
.yf_c00109{bottom:639.092781px;}
.y55_c00109{bottom:1026.801241px;}
.y5_c00109{bottom:1128.788039px;}
.y3_c00109{bottom:1133.738410px;}
.y2_c00109{bottom:1147.738449px;}
.y7_c00109{bottom:1151.817140px;}
.y4_c00109{bottom:1171.082693px;}
.h10_c00109{height:35.988753px;}
.h11_c00109{height:35.988755px;}
.h12_c00109{height:35.988756px;}
.h15_c00109{height:36.702692px;}
.h5_c00109{height:37.020556px;}
.h14_c00109{height:39.108240px;}
.h4_c00109{height:39.108509px;}
.he_c00109{height:44.107038px;}
.hb_c00109{height:44.107039px;}
.hf_c00109{height:44.107040px;}
.hc_c00109{height:44.107042px;}
.hd_c00109{height:44.107043px;}
.h16_c00109{height:44.139900px;}
.h7_c00109{height:50.480386px;}
.ha_c00109{height:51.916398px;}
.h13_c00109{height:56.295398px;}
.h9_c00109{height:57.017399px;}
.h6_c00109{height:67.042966px;}
.h3_c00109{height:68.367700px;}
.h8_c00109{height:89.376654px;}
.h2_c00109{height:1304.999946px;}
.h0_c00109{height:1304.999953px;}
.h1_c00109{height:1305.000000px;}
.w2_c00109{width:934.874961px;}
.w0_c00109{width:934.875000px;}
.w1_c00109{width:935.250000px;}
.x0_c00109{left:0.000000px;}
.x5_c00109{left:87.902647px;}
.x6_c00109{left:89.260034px;}
.x1_c00109{left:107.230262px;}
.x2_c00109{left:108.827167px;}
.x41_c00109{left:113.759556px;}
.x2c_c00109{left:134.974838px;}
.x2b_c00109{left:136.648279px;}
.x2d_c00109{left:140.021272px;}
.x2e_c00109{left:144.871714px;}
.x2f_c00109{left:150.237526px;}
.x30_c00109{left:152.990336px;}
.x31_c00109{left:156.000220px;}
.x32_c00109{left:159.847713px;}
.x3c_c00109{left:161.443962px;}
.x33_c00109{left:163.301377px;}
.x34_c00109{left:171.586339px;}
.x35_c00109{left:179.855997px;}
.x36_c00109{left:188.287487px;}
.x37_c00109{left:196.673970px;}
.x38_c00109{left:200.841336px;}
.x39_c00109{left:205.399483px;}
.x3a_c00109{left:209.208896px;}
.x3b_c00109{left:211.795693px;}
.x9_c00109{left:230.398389px;}
.x8_c00109{left:232.534609px;}
.xa_c00109{left:235.623324px;}
.xb_c00109{left:240.462566px;}
.xc_c00109{left:245.820252px;}
.xd_c00109{left:248.569815px;}
.xe_c00109{left:251.576732px;}
.xf_c00109{left:255.421336px;}
.x10_c00109{left:258.708042px;}
.x11_c00109{left:263.145298px;}
.x12_c00109{left:271.763354px;}
.x13_c00109{left:283.603990px;}
.x14_c00109{left:291.041304px;}
.x3_c00109{left:295.177092px;}
.x15_c00109{left:299.775542px;}
.x16_c00109{left:303.165014px;}
.x17_c00109{left:307.176807px;}
.x18_c00109{left:325.572760px;}
.x19_c00109{left:326.790062px;}
.x1a_c00109{left:328.211075px;}
.x1b_c00109{left:331.608300px;}
.x1c_c00109{left:334.832839px;}
.x1d_c00109{left:340.715086px;}
.x1e_c00109{left:346.902068px;}
.x1f_c00109{left:352.595072px;}
.x20_c00109{left:356.005071px;}
.x21_c00109{left:363.912198px;}
.x22_c00109{left:371.901113px;}
.x23_c00109{left:378.660822px;}
.x24_c00109{left:381.681036px;}
.x25_c00109{left:384.685260px;}
.x26_c00109{left:388.083238px;}
.x27_c00109{left:390.700316px;}
.x28_c00109{left:394.014858px;}
.x29_c00109{left:399.190176px;}
.x2a_c00109{left:401.994929px;}
.x4_c00109{left:452.786554px;}
.x3e_c00109{left:464.896169px;}
.x7_c00109{left:648.571797px;}
.x40_c00109{left:699.140609px;}
.x3f_c00109{left:733.540639px;}
.x3d_c00109{left:757.088990px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws0_c00109{word-spacing:-13.485567pt;}
.ws2_c00109{word-spacing:0.000000pt;}
.ws1_c00109{word-spacing:241.581494pt;}
._4_c00109{width:8.795409pt;}
._1_c00109{width:12.979124pt;}
._0_c00109{width:21.866637pt;}
._3_c00109{width:23.706726pt;}
._2_c00109{width:27.648434pt;}
.fs2_c00109{font-size:35.340254pt;}
.fse_c00109{font-size:37.333182pt;}
.fs1_c00109{font-size:37.333438pt;}
.fsb_c00109{font-size:42.105093pt;}
.fs8_c00109{font-size:42.105094pt;}
.fsc_c00109{font-size:42.105095pt;}
.fs9_c00109{font-size:42.105096pt;}
.fsa_c00109{font-size:42.105098pt;}
.fsf_c00109{font-size:44.993408pt;}
.fs7_c00109{font-size:49.559999pt;}
.fs10_c00109{font-size:54.874778pt;}
.fs4_c00109{font-size:61.883325pt;}
.fs3_c00109{font-size:63.999997pt;}
.fs6_c00109{font-size:66.154880pt;}
.fsd_c00109{font-size:68.454656pt;}
.fs0_c00109{font-size:79.986889pt;}
.fs5_c00109{font-size:85.319996pt;}
.y0_c00109{bottom:0.000000pt;}
.y1_c00109{bottom:0.000007pt;}
.y54_c00109{bottom:26.134367pt;}
.y6_c00109{bottom:26.976047pt;}
.yd_c00109{bottom:129.329371pt;}
.yc_c00109{bottom:156.329369pt;}
.yb_c00109{bottom:183.329368pt;}
.ya_c00109{bottom:210.329367pt;}
.y9_c00109{bottom:237.329366pt;}
.y8_c00109{bottom:264.329365pt;}
.ye_c00109{bottom:300.843853pt;}
.y53_c00109{bottom:357.763404pt;}
.y4f_c00109{bottom:434.356670pt;}
.y1d_c00109{bottom:440.080830pt;}
.y45_c00109{bottom:440.094314pt;}
.y1c_c00109{bottom:440.547634pt;}
.y46_c00109{bottom:440.565156pt;}
.y2f_c00109{bottom:440.870911pt;}
.y44_c00109{bottom:441.201053pt;}
.y1b_c00109{bottom:441.495480pt;}
.y30_c00109{bottom:441.611229pt;}
.y2e_c00109{bottom:441.629563pt;}
.y43_c00109{bottom:442.313110pt;}
.y1a_c00109{bottom:442.449552pt;}
.y2d_c00109{bottom:442.549441pt;}
.y47_c00109{bottom:442.713540pt;}
.y1e_c00109{bottom:442.769647pt;}
.y31_c00109{bottom:443.550431pt;}
.y42_c00109{bottom:443.774898pt;}
.y19_c00109{bottom:443.917926pt;}
.y2c_c00109{bottom:444.507353pt;}
.y32_c00109{bottom:444.786883pt;}
.y41_c00109{bottom:445.275925pt;}
.y18_c00109{bottom:445.422943pt;}
.y33_c00109{bottom:446.296450pt;}
.y1f_c00109{bottom:446.571939pt;}
.y40_c00109{bottom:446.933946pt;}
.y17_c00109{bottom:447.085351pt;}
.y48_c00109{bottom:447.247345pt;}
.y2b_c00109{bottom:447.877613pt;}
.y34_c00109{bottom:448.467189pt;}
.y20_c00109{bottom:448.811219pt;}
.y49_c00109{bottom:450.472411pt;}
.y35_c00109{bottom:450.475603pt;}
.y3f_c00109{bottom:451.070990pt;}
.y16_c00109{bottom:451.231066pt;}
.y2a_c00109{bottom:452.739206pt;}
.y36_c00109{bottom:453.380885pt;}
.y21_c00109{bottom:454.102208pt;}
.y4a_c00109{bottom:455.480679pt;}
.y29_c00109{bottom:456.709349pt;}
.y3e_c00109{bottom:456.761032pt;}
.y15_c00109{bottom:456.928347pt;}
.y22_c00109{bottom:458.323080pt;}
.y37_c00109{bottom:460.845208pt;}
.y4b_c00109{bottom:461.398527pt;}
.y28_c00109{bottom:462.419864pt;}
.y3d_c00109{bottom:463.256110pt;}
.y14_c00109{bottom:463.336417pt;}
.y13_c00109{bottom:466.410980pt;}
.y27_c00109{bottom:466.481975pt;}
.y38_c00109{bottom:468.000011pt;}
.y23_c00109{bottom:468.797958pt;}
.y3c_c00109{bottom:469.622215pt;}
.y12_c00109{bottom:471.753965pt;}
.y4c_c00109{bottom:472.031781pt;}
.y26_c00109{bottom:473.391076pt;}
.y3b_c00109{bottom:473.861112pt;}
.y52_c00109{bottom:475.524454pt;}
.y4e_c00109{bottom:475.583206pt;}
.y25_c00109{bottom:476.851761pt;}
.y11_c00109{bottom:478.206615pt;}
.y3a_c00109{bottom:479.348101pt;}
.y24_c00109{bottom:479.678266pt;}
.y4d_c00109{bottom:480.001104pt;}
.y50_c00109{bottom:481.544796pt;}
.y39_c00109{bottom:485.626266pt;}
.y10_c00109{bottom:486.681332pt;}
.y51_c00109{bottom:514.844187pt;}
.yf_c00109{bottom:568.082472pt;}
.y55_c00109{bottom:912.712214pt;}
.y5_c00109{bottom:1003.367145pt;}
.y3_c00109{bottom:1007.767476pt;}
.y2_c00109{bottom:1020.211955pt;}
.y7_c00109{bottom:1023.837458pt;}
.y4_c00109{bottom:1040.962393pt;}
.h10_c00109{height:31.990003pt;}
.h11_c00109{height:31.990004pt;}
.h12_c00109{height:31.990006pt;}
.h15_c00109{height:32.624615pt;}
.h5_c00109{height:32.907161pt;}
.h14_c00109{height:34.762880pt;}
.h4_c00109{height:34.763119pt;}
.he_c00109{height:39.206256pt;}
.hb_c00109{height:39.206257pt;}
.hf_c00109{height:39.206258pt;}
.hc_c00109{height:39.206259pt;}
.hd_c00109{height:39.206261pt;}
.h16_c00109{height:39.235466pt;}
.h7_c00109{height:44.871454pt;}
.ha_c00109{height:46.147909pt;}
.h13_c00109{height:50.040354pt;}
.h9_c00109{height:50.682132pt;}
.h6_c00109{height:59.593748pt;}
.h3_c00109{height:60.771289pt;}
.h8_c00109{height:79.445915pt;}
.h2_c00109{height:1159.999952pt;}
.h0_c00109{height:1159.999959pt;}
.h1_c00109{height:1160.000000pt;}
.w2_c00109{width:830.999965pt;}
.w0_c00109{width:831.000000pt;}
.w1_c00109{width:831.333333pt;}
.x0_c00109{left:0.000000pt;}
.x5_c00109{left:78.135686pt;}
.x6_c00109{left:79.342253pt;}
.x1_c00109{left:95.315788pt;}
.x2_c00109{left:96.735260pt;}
.x41_c00109{left:101.119605pt;}
.x2c_c00109{left:119.977634pt;}
.x2b_c00109{left:121.465137pt;}
.x2d_c00109{left:124.463353pt;}
.x2e_c00109{left:128.774857pt;}
.x2f_c00109{left:133.544468pt;}
.x30_c00109{left:135.991410pt;}
.x31_c00109{left:138.666862pt;}
.x32_c00109{left:142.086856pt;}
.x3c_c00109{left:143.505744pt;}
.x33_c00109{left:145.156780pt;}
.x34_c00109{left:152.521190pt;}
.x35_c00109{left:159.871997pt;}
.x36_c00109{left:167.366655pt;}
.x37_c00109{left:174.821307pt;}
.x38_c00109{left:178.525632pt;}
.x39_c00109{left:182.577318pt;}
.x3a_c00109{left:185.963463pt;}
.x3b_c00109{left:188.262839pt;}
.x9_c00109{left:204.798568pt;}
.x8_c00109{left:206.697430pt;}
.xa_c00109{left:209.442955pt;}
.xb_c00109{left:213.744503pt;}
.xc_c00109{left:218.506891pt;}
.xd_c00109{left:220.950947pt;}
.xe_c00109{left:223.623762pt;}
.xf_c00109{left:227.041187pt;}
.x10_c00109{left:229.962704pt;}
.x11_c00109{left:233.906932pt;}
.x12_c00109{left:241.567426pt;}
.x13_c00109{left:252.092435pt;}
.x14_c00109{left:258.703382pt;}
.x3_c00109{left:262.379637pt;}
.x15_c00109{left:266.467148pt;}
.x16_c00109{left:269.480012pt;}
.x17_c00109{left:273.046051pt;}
.x18_c00109{left:289.398009pt;}
.x19_c00109{left:290.480055pt;}
.x1a_c00109{left:291.743178pt;}
.x1b_c00109{left:294.762933pt;}
.x1c_c00109{left:297.629190pt;}
.x1d_c00109{left:302.857854pt;}
.x1e_c00109{left:308.357394pt;}
.x1f_c00109{left:313.417841pt;}
.x20_c00109{left:316.448952pt;}
.x21_c00109{left:323.477509pt;}
.x22_c00109{left:330.578767pt;}
.x23_c00109{left:336.587398pt;}
.x24_c00109{left:339.272032pt;}
.x25_c00109{left:341.942453pt;}
.x26_c00109{left:344.962878pt;}
.x27_c00109{left:347.289170pt;}
.x28_c00109{left:350.235429pt;}
.x29_c00109{left:354.835712pt;}
.x2a_c00109{left:357.328825pt;}
.x4_c00109{left:402.476937pt;}
.x3e_c00109{left:413.241039pt;}
.x7_c00109{left:576.508264pt;}
.x40_c00109{left:621.458319pt;}
.x3f_c00109{left:652.036124pt;}
.x3d_c00109{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d481bc86199693b425517ec9.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.006348;font-style:normal;font-weight:normal;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_d6dbdd5a9ba36292dcdbe1de.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.171387;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_d06a3e405ef460985f78bf2f.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.000000;font-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_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);}
.v0_c00110{vertical-align:0.000000px;}
.ls0_c00110{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00110{word-spacing:-19.320776px;}
.ws1_c00110{word-spacing:-18.703125px;}
.ws2_c00110{word-spacing:0.000000px;}
._3_c00110{width:2.867155px;}
._2_c00110{width:3.904677px;}
._9_c00110{width:5.289918px;}
._4_c00110{width:6.744634px;}
._1_c00110{width:7.831672px;}
._6_c00110{width:9.740547px;}
._a_c00110{width:13.376951px;}
._8_c00110{width:14.622663px;}
._5_c00110{width:16.049996px;}
._7_c00110{width:29.721037px;}
._0_c00110{width:38.784344px;}
.fc3_c00110{color:transparent;}
.fc2_c00110{color:rgb(128,128,128);}
.fc1_c00110{color:rgb(0,0,0);}
.fc0_c00110{color:rgb(186,118,50);}
.fs2_c00110{font-size:69.618741px;}
.fs1_c00110{font-size:71.999997px;}
.fs0_c00110{font-size:74.377724px;}
.y0_c00110{bottom:0.000000px;}
.y1_c00110{bottom:0.000008px;}
.y14_c00110{bottom:29.401163px;}
.y7_c00110{bottom:30.348053px;}
.y13_c00110{bottom:625.523662px;}
.y12_c00110{bottom:655.898661px;}
.y11_c00110{bottom:690.271715px;}
.yf_c00110{bottom:759.346777px;}
.ye_c00110{bottom:789.721775px;}
.yd_c00110{bottom:820.096774px;}
.yc_c00110{bottom:850.471773px;}
.yb_c00110{bottom:880.846772px;}
.ya_c00110{bottom:911.221770px;}
.y9_c00110{bottom:941.596769px;}
.y8_c00110{bottom:971.971768px;}
.y10_c00110{bottom:1005.046767px;}
.y6_c00110{bottom:1074.479258px;}
.y5_c00110{bottom:1104.854257px;}
.y4_c00110{bottom:1135.229255px;}
.y3_c00110{bottom:1165.604254px;}
.y2_c00110{bottom:1199.188955px;}
.h5_c00110{height:50.480386px;}
.h6_c00110{height:55.160154px;}
.h3_c00110{height:56.981762px;}
.h4_c00110{height:67.042966px;}
.h2_c00110{height:1304.999946px;}
.h0_c00110{height:1304.999953px;}
.h1_c00110{height:1305.000000px;}
.w2_c00110{width:934.874961px;}
.w0_c00110{width:934.875000px;}
.w1_c00110{width:935.250000px;}
.x0_c00110{left:0.000000px;}
.x1_c00110{left:88.794432px;}
.x3_c00110{left:90.722973px;}
.x2_c00110{left:452.786554px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ws0_c00110{word-spacing:-17.174023pt;}
.ws1_c00110{word-spacing:-16.625000pt;}
.ws2_c00110{word-spacing:0.000000pt;}
._3_c00110{width:2.548582pt;}
._2_c00110{width:3.470824pt;}
._9_c00110{width:4.702149pt;}
._4_c00110{width:5.995230pt;}
._1_c00110{width:6.961487pt;}
._6_c00110{width:8.658264pt;}
._a_c00110{width:11.890623pt;}
._8_c00110{width:12.997923pt;}
._5_c00110{width:14.266663pt;}
._7_c00110{width:26.418699pt;}
._0_c00110{width:34.474972pt;}
.fs2_c00110{font-size:61.883325pt;}
.fs1_c00110{font-size:63.999997pt;}
.fs0_c00110{font-size:66.113533pt;}
.y0_c00110{bottom:0.000000pt;}
.y1_c00110{bottom:0.000007pt;}
.y14_c00110{bottom:26.134367pt;}
.y7_c00110{bottom:26.976047pt;}
.y13_c00110{bottom:556.021033pt;}
.y12_c00110{bottom:583.021032pt;}
.y11_c00110{bottom:613.574858pt;}
.yf_c00110{bottom:674.974913pt;}
.ye_c00110{bottom:701.974912pt;}
.yd_c00110{bottom:728.974910pt;}
.yc_c00110{bottom:755.974909pt;}
.yb_c00110{bottom:782.974908pt;}
.ya_c00110{bottom:809.974907pt;}
.y9_c00110{bottom:836.974906pt;}
.y8_c00110{bottom:863.974905pt;}
.y10_c00110{bottom:893.374904pt;}
.y6_c00110{bottom:955.092674pt;}
.y5_c00110{bottom:982.092673pt;}
.y4_c00110{bottom:1009.092672pt;}
.y3_c00110{bottom:1036.092670pt;}
.y2_c00110{bottom:1065.945738pt;}
.h5_c00110{height:44.871454pt;}
.h6_c00110{height:49.031248pt;}
.h3_c00110{height:50.650455pt;}
.h4_c00110{height:59.593748pt;}
.h2_c00110{height:1159.999952pt;}
.h0_c00110{height:1159.999959pt;}
.h1_c00110{height:1160.000000pt;}
.w2_c00110{width:830.999965pt;}
.w0_c00110{width:831.000000pt;}
.w1_c00110{width:831.333333pt;}
.x0_c00110{left:0.000000pt;}
.x1_c00110{left:78.928384pt;}
.x3_c00110{left:80.642643pt;}
.x2_c00110{left:402.476937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24f26dc4ecae475daeee2409.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:0.772949;font-style:normal;font-weight:normal;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_63a329dddd0e321aae497638.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.171387;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00111;src:url('chunks/assets/font_292c5a04dde44c630f59ee1f.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:1.000000;font-style:normal;font-weight: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_c00111;src:url('chunks/assets/font_226f3104fa145c56c14ff19a.woff2')format("woff");}.ff5_c00111{font-family:ff5_c00111;line-height:1.171387;font-style:normal;font-weight: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_c00111;src:url('chunks/assets/font_14c4a0d4e651c982843a7d46.woff2')format("woff");}.ff6_c00111{font-family:ff6_c00111;line-height:1.000000;font-style:normal;font-weight: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_c00111;src:url('chunks/assets/font_92d3f58a0f65e5f567c9aadd.woff2')format("woff");}.ff7_c00111{font-family:ff7_c00111;line-height:1.006348;font-style:normal;font-weight: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_c00111;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff8_c00111{font-family:ff8_c00111;line-height:0.769531;font-style:normal;font-weight: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_c00111;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff9_c00111{font-family:ff9_c00111;line-height:0.743000;font-style:normal;font-weight: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_c00111;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ffa_c00111{font-family:ffa_c00111;line-height:0.734863;font-style:normal;font-weight: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_c00111;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ffb_c00111{font-family:ffb_c00111;line-height:0.894000;font-style:normal;font-weight: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_c00111;src:url('chunks/assets/font_2d358f218610cf5c16549b37.woff2')format("woff");}.ffc_c00111{font-family:ffc_c00111;line-height:0.895000;font-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_c00111{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00111{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00111{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00111{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00111{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00111{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00111{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00111{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00111{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00111{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00111{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00111{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00111{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00111{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00111{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00111{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00111{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00111{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00111{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00111{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00111{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00111{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00111{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00111{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00111{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00111{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00111{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00111{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00111{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00111{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00111{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00111{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00111{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00111{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00111{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00111{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00111{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00111{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00111{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00111{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00111{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00111{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00111{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00111{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00111{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00111{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00111{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00111{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00111{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00111{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00111{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00111{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00111{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00111{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00111{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00111{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00111{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00111{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00111{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00111{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00111{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00111{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00111{vertical-align:0.000000px;}
.ls0_c00111{letter-spacing:0.000000px;}
.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:-15.171263px;}
.ws2_c00111{word-spacing:0.000000px;}
.ws1_c00111{word-spacing:271.779181px;}
._4_c00111{width:2.054099px;}
._2_c00111{width:4.274986px;}
._3_c00111{width:5.792609px;}
._1_c00111{width:8.496692px;}
._0_c00111{width:9.626357px;}
.fc4_c00111{color:transparent;}
.fc3_c00111{color:rgb(186,118,50);}
.fc2_c00111{color:rgb(0,0,0);}
.fc1_c00111{color:rgb(128,128,128);}
.fc0_c00111{color:rgb(255,255,255);}
.fs2_c00111{font-size:39.757786px;}
.fse_c00111{font-size:41.999830px;}
.fs1_c00111{font-size:42.000118px;}
.fsb_c00111{font-size:47.368230px;}
.fs8_c00111{font-size:47.368231px;}
.fsc_c00111{font-size:47.368232px;}
.fs9_c00111{font-size:47.368233px;}
.fsa_c00111{font-size:47.368235px;}
.fsf_c00111{font-size:50.617585px;}
.fs7_c00111{font-size:55.754999px;}
.fs10_c00111{font-size:61.734125px;}
.fs4_c00111{font-size:69.618741px;}
.fs3_c00111{font-size:71.999997px;}
.fs6_c00111{font-size:74.424240px;}
.fsd_c00111{font-size:77.011488px;}
.fs0_c00111{font-size:89.985250px;}
.fs5_c00111{font-size:95.984996px;}
.y0_c00111{bottom:0.000000px;}
.y1_c00111{bottom:0.000008px;}
.y55_c00111{bottom:29.400983px;}
.y6_c00111{bottom:30.347873px;}
.ye_c00111{bottom:115.120543px;}
.yd_c00111{bottom:145.495542px;}
.yc_c00111{bottom:175.870541px;}
.yb_c00111{bottom:206.245539px;}
.ya_c00111{bottom:236.620538px;}
.y9_c00111{bottom:266.995537px;}
.y8_c00111{bottom:297.370536px;}
.yf_c00111{bottom:338.449334px;}
.y54_c00111{bottom:402.483650px;}
.y50_c00111{bottom:488.651254px;}
.y1e_c00111{bottom:495.091113px;}
.y46_c00111{bottom:495.106103px;}
.y1d_c00111{bottom:495.616449px;}
.y47_c00111{bottom:495.635980px;}
.y30_c00111{bottom:495.979775px;}
.y45_c00111{bottom:496.350860px;}
.y1c_c00111{bottom:496.682414px;}
.y31_c00111{bottom:496.813172px;}
.y2f_c00111{bottom:496.833078px;}
.y44_c00111{bottom:497.602248px;}
.y1b_c00111{bottom:497.755746px;}
.y2e_c00111{bottom:497.868121px;}
.y48_c00111{bottom:498.052552px;}
.y1f_c00111{bottom:498.116213px;}
.y32_c00111{bottom:498.994235px;}
.y43_c00111{bottom:499.247120px;}
.y1a_c00111{bottom:499.407306px;}
.y2d_c00111{bottom:500.070592px;}
.y33_c00111{bottom:500.385244px;}
.y42_c00111{bottom:500.935415px;}
.y19_c00111{bottom:501.100991px;}
.y34_c00111{bottom:502.083507px;}
.y20_c00111{bottom:502.393431px;}
.y41_c00111{bottom:502.800689px;}
.y18_c00111{bottom:502.970840px;}
.y49_c00111{bottom:503.153443px;}
.y2c_c00111{bottom:503.862495px;}
.y35_c00111{bottom:504.525911px;}
.y21_c00111{bottom:504.912261px;}
.y4a_c00111{bottom:506.781606px;}
.y36_c00111{bottom:506.784873px;}
.y40_c00111{bottom:507.454863px;}
.y17_c00111{bottom:507.634626px;}
.y2b_c00111{bottom:509.331066px;}
.y37_c00111{bottom:510.053675px;}
.y22_c00111{bottom:510.864660px;}
.y4b_c00111{bottom:512.415439px;}
.y2a_c00111{bottom:513.797837px;}
.y3f_c00111{bottom:513.856305px;}
.y16_c00111{bottom:514.044570px;}
.y23_c00111{bottom:515.613465px;}
.y38_c00111{bottom:518.451219px;}
.y4c_c00111{bottom:519.073162px;}
.y29_c00111{bottom:520.222527px;}
.y3e_c00111{bottom:521.163484px;}
.y15_c00111{bottom:521.253649px;}
.y14_c00111{bottom:524.712352px;}
.y28_c00111{bottom:524.792546px;}
.y39_c00111{bottom:526.500013px;}
.y24_c00111{bottom:527.397342px;}
.y3d_c00111{bottom:528.324992px;}
.y13_c00111{bottom:530.722671px;}
.y4d_c00111{bottom:531.036114px;}
.y27_c00111{bottom:532.564636px;}
.y3c_c00111{bottom:533.094290px;}
.y53_c00111{bottom:534.965011px;}
.y4f_c00111{bottom:535.030747px;}
.y26_c00111{bottom:536.458411px;}
.y12_c00111{bottom:537.982082px;}
.y3b_c00111{bottom:539.266614px;}
.y25_c00111{bottom:539.638049px;}
.y4e_c00111{bottom:540.001566px;}
.y51_c00111{bottom:541.737572px;}
.y3a_c00111{bottom:546.329910px;}
.y11_c00111{bottom:547.516858px;}
.y52_c00111{bottom:579.199890px;}
.y10_c00111{bottom:639.092601px;}
.y56_c00111{bottom:1026.801593px;}
.y5_c00111{bottom:1128.788391px;}
.y3_c00111{bottom:1133.738410px;}
.y2_c00111{bottom:1147.738449px;}
.y7_c00111{bottom:1151.817050px;}
.y4_c00111{bottom:1171.082779px;}
.h10_c00111{height:35.988753px;}
.h11_c00111{height:35.988755px;}
.h12_c00111{height:35.988756px;}
.h15_c00111{height:36.702692px;}
.h5_c00111{height:37.020556px;}
.h14_c00111{height:39.108240px;}
.h4_c00111{height:39.108509px;}
.he_c00111{height:44.107038px;}
.hb_c00111{height:44.107039px;}
.hf_c00111{height:44.107040px;}
.hc_c00111{height:44.107042px;}
.hd_c00111{height:44.107043px;}
.h16_c00111{height:44.139900px;}
.h7_c00111{height:50.480386px;}
.ha_c00111{height:51.916398px;}
.h13_c00111{height:56.295398px;}
.h9_c00111{height:57.017399px;}
.h6_c00111{height:67.042966px;}
.h3_c00111{height:68.367700px;}
.h8_c00111{height:89.376654px;}
.h2_c00111{height:1304.999946px;}
.h0_c00111{height:1304.999953px;}
.h1_c00111{height:1305.000000px;}
.w2_c00111{width:934.874961px;}
.w0_c00111{width:934.875000px;}
.w1_c00111{width:935.250000px;}
.x0_c00111{left:0.000000px;}
.x5_c00111{left:87.902647px;}
.x6_c00111{left:89.260034px;}
.x1_c00111{left:107.230262px;}
.x2_c00111{left:108.827167px;}
.x41_c00111{left:113.759556px;}
.x2c_c00111{left:134.974838px;}
.x2b_c00111{left:136.648279px;}
.x2d_c00111{left:140.021272px;}
.x2e_c00111{left:144.871714px;}
.x2f_c00111{left:150.237526px;}
.x30_c00111{left:152.990336px;}
.x31_c00111{left:156.000220px;}
.x32_c00111{left:159.847713px;}
.x3c_c00111{left:161.443962px;}
.x33_c00111{left:163.301377px;}
.x34_c00111{left:171.586339px;}
.x35_c00111{left:179.855997px;}
.x36_c00111{left:188.287487px;}
.x37_c00111{left:196.673970px;}
.x38_c00111{left:200.841336px;}
.x39_c00111{left:205.399483px;}
.x3a_c00111{left:209.208896px;}
.x3b_c00111{left:211.795693px;}
.x9_c00111{left:230.398389px;}
.x8_c00111{left:232.534609px;}
.xa_c00111{left:235.623324px;}
.xb_c00111{left:240.462566px;}
.xc_c00111{left:245.820252px;}
.xd_c00111{left:248.569815px;}
.xe_c00111{left:251.576732px;}
.xf_c00111{left:255.421336px;}
.x10_c00111{left:258.708042px;}
.x11_c00111{left:263.145298px;}
.x12_c00111{left:271.763354px;}
.x13_c00111{left:283.603990px;}
.x14_c00111{left:291.041304px;}
.x3_c00111{left:295.177092px;}
.x15_c00111{left:299.775542px;}
.x16_c00111{left:303.165014px;}
.x17_c00111{left:307.176807px;}
.x18_c00111{left:325.572760px;}
.x19_c00111{left:326.790062px;}
.x1a_c00111{left:328.211075px;}
.x1b_c00111{left:331.608300px;}
.x1c_c00111{left:334.832839px;}
.x1d_c00111{left:340.715086px;}
.x1e_c00111{left:346.902068px;}
.x1f_c00111{left:352.595072px;}
.x20_c00111{left:356.005071px;}
.x21_c00111{left:363.912198px;}
.x22_c00111{left:371.901113px;}
.x23_c00111{left:378.660822px;}
.x24_c00111{left:381.681036px;}
.x25_c00111{left:384.685260px;}
.x26_c00111{left:388.083238px;}
.x27_c00111{left:390.700316px;}
.x28_c00111{left:394.014858px;}
.x29_c00111{left:399.190176px;}
.x2a_c00111{left:401.994929px;}
.x4_c00111{left:452.786554px;}
.x3e_c00111{left:464.896169px;}
.x7_c00111{left:648.571797px;}
.x40_c00111{left:699.140609px;}
.x3f_c00111{left:733.540639px;}
.x3d_c00111{left:757.088990px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws0_c00111{word-spacing:-13.485567pt;}
.ws2_c00111{word-spacing:0.000000pt;}
.ws1_c00111{word-spacing:241.581494pt;}
._4_c00111{width:1.825866pt;}
._2_c00111{width:3.799987pt;}
._3_c00111{width:5.148985pt;}
._1_c00111{width:7.552615pt;}
._0_c00111{width:8.556762pt;}
.fs2_c00111{font-size:35.340254pt;}
.fse_c00111{font-size:37.333182pt;}
.fs1_c00111{font-size:37.333438pt;}
.fsb_c00111{font-size:42.105093pt;}
.fs8_c00111{font-size:42.105094pt;}
.fsc_c00111{font-size:42.105095pt;}
.fs9_c00111{font-size:42.105096pt;}
.fsa_c00111{font-size:42.105098pt;}
.fsf_c00111{font-size:44.993408pt;}
.fs7_c00111{font-size:49.559999pt;}
.fs10_c00111{font-size:54.874778pt;}
.fs4_c00111{font-size:61.883325pt;}
.fs3_c00111{font-size:63.999997pt;}
.fs6_c00111{font-size:66.154880pt;}
.fsd_c00111{font-size:68.454656pt;}
.fs0_c00111{font-size:79.986889pt;}
.fs5_c00111{font-size:85.319996pt;}
.y0_c00111{bottom:0.000000pt;}
.y1_c00111{bottom:0.000007pt;}
.y55_c00111{bottom:26.134207pt;}
.y6_c00111{bottom:26.975887pt;}
.ye_c00111{bottom:102.329372pt;}
.yd_c00111{bottom:129.329371pt;}
.yc_c00111{bottom:156.329369pt;}
.yb_c00111{bottom:183.329368pt;}
.ya_c00111{bottom:210.329367pt;}
.y9_c00111{bottom:237.329366pt;}
.y8_c00111{bottom:264.329365pt;}
.yf_c00111{bottom:300.843853pt;}
.y54_c00111{bottom:357.763244pt;}
.y50_c00111{bottom:434.356670pt;}
.y1e_c00111{bottom:440.080990pt;}
.y46_c00111{bottom:440.094314pt;}
.y1d_c00111{bottom:440.547954pt;}
.y47_c00111{bottom:440.565316pt;}
.y30_c00111{bottom:440.870911pt;}
.y45_c00111{bottom:441.200765pt;}
.y1c_c00111{bottom:441.495480pt;}
.y31_c00111{bottom:441.611709pt;}
.y2f_c00111{bottom:441.629403pt;}
.y44_c00111{bottom:442.313110pt;}
.y1b_c00111{bottom:442.449552pt;}
.y2e_c00111{bottom:442.549441pt;}
.y48_c00111{bottom:442.713380pt;}
.y1f_c00111{bottom:442.769967pt;}
.y32_c00111{bottom:443.550431pt;}
.y43_c00111{bottom:443.775218pt;}
.y1a_c00111{bottom:443.917606pt;}
.y2d_c00111{bottom:444.507193pt;}
.y33_c00111{bottom:444.786883pt;}
.y42_c00111{bottom:445.275925pt;}
.y19_c00111{bottom:445.423103pt;}
.y34_c00111{bottom:446.296450pt;}
.y20_c00111{bottom:446.571939pt;}
.y41_c00111{bottom:446.933946pt;}
.y18_c00111{bottom:447.085191pt;}
.y49_c00111{bottom:447.247505pt;}
.y2c_c00111{bottom:447.877773pt;}
.y35_c00111{bottom:448.467477pt;}
.y21_c00111{bottom:448.810899pt;}
.y4a_c00111{bottom:450.472539pt;}
.y36_c00111{bottom:450.475443pt;}
.y40_c00111{bottom:451.070990pt;}
.y17_c00111{bottom:451.230778pt;}
.y2b_c00111{bottom:452.738726pt;}
.y37_c00111{bottom:453.381045pt;}
.y22_c00111{bottom:454.101920pt;}
.y4b_c00111{bottom:455.480391pt;}
.y2a_c00111{bottom:456.709189pt;}
.y3f_c00111{bottom:456.761160pt;}
.y16_c00111{bottom:456.928507pt;}
.y23_c00111{bottom:458.323080pt;}
.y38_c00111{bottom:460.845528pt;}
.y4c_c00111{bottom:461.398367pt;}
.y29_c00111{bottom:462.420024pt;}
.y3e_c00111{bottom:463.256430pt;}
.y15_c00111{bottom:463.336577pt;}
.y14_c00111{bottom:466.410980pt;}
.y28_c00111{bottom:466.482263pt;}
.y39_c00111{bottom:468.000011pt;}
.y24_c00111{bottom:468.797638pt;}
.y3d_c00111{bottom:469.622215pt;}
.y13_c00111{bottom:471.753485pt;}
.y4d_c00111{bottom:472.032101pt;}
.y27_c00111{bottom:473.390788pt;}
.y3c_c00111{bottom:473.861592pt;}
.y53_c00111{bottom:475.524454pt;}
.y4f_c00111{bottom:475.582886pt;}
.y26_c00111{bottom:476.851921pt;}
.y12_c00111{bottom:478.206295pt;}
.y3b_c00111{bottom:479.348101pt;}
.y25_c00111{bottom:479.678266pt;}
.y4e_c00111{bottom:480.001392pt;}
.y51_c00111{bottom:481.544508pt;}
.y3a_c00111{bottom:485.626586pt;}
.y11_c00111{bottom:486.681652pt;}
.y52_c00111{bottom:514.844347pt;}
.y10_c00111{bottom:568.082312pt;}
.y56_c00111{bottom:912.712527pt;}
.y5_c00111{bottom:1003.367459pt;}
.y3_c00111{bottom:1007.767476pt;}
.y2_c00111{bottom:1020.211955pt;}
.y7_c00111{bottom:1023.837378pt;}
.y4_c00111{bottom:1040.962470pt;}
.h10_c00111{height:31.990003pt;}
.h11_c00111{height:31.990004pt;}
.h12_c00111{height:31.990006pt;}
.h15_c00111{height:32.624615pt;}
.h5_c00111{height:32.907161pt;}
.h14_c00111{height:34.762880pt;}
.h4_c00111{height:34.763119pt;}
.he_c00111{height:39.206256pt;}
.hb_c00111{height:39.206257pt;}
.hf_c00111{height:39.206258pt;}
.hc_c00111{height:39.206259pt;}
.hd_c00111{height:39.206261pt;}
.h16_c00111{height:39.235466pt;}
.h7_c00111{height:44.871454pt;}
.ha_c00111{height:46.147909pt;}
.h13_c00111{height:50.040354pt;}
.h9_c00111{height:50.682132pt;}
.h6_c00111{height:59.593748pt;}
.h3_c00111{height:60.771289pt;}
.h8_c00111{height:79.445915pt;}
.h2_c00111{height:1159.999952pt;}
.h0_c00111{height:1159.999959pt;}
.h1_c00111{height:1160.000000pt;}
.w2_c00111{width:830.999965pt;}
.w0_c00111{width:831.000000pt;}
.w1_c00111{width:831.333333pt;}
.x0_c00111{left:0.000000pt;}
.x5_c00111{left:78.135686pt;}
.x6_c00111{left:79.342253pt;}
.x1_c00111{left:95.315788pt;}
.x2_c00111{left:96.735260pt;}
.x41_c00111{left:101.119605pt;}
.x2c_c00111{left:119.977634pt;}
.x2b_c00111{left:121.465137pt;}
.x2d_c00111{left:124.463353pt;}
.x2e_c00111{left:128.774857pt;}
.x2f_c00111{left:133.544468pt;}
.x30_c00111{left:135.991410pt;}
.x31_c00111{left:138.666862pt;}
.x32_c00111{left:142.086856pt;}
.x3c_c00111{left:143.505744pt;}
.x33_c00111{left:145.156780pt;}
.x34_c00111{left:152.521190pt;}
.x35_c00111{left:159.871997pt;}
.x36_c00111{left:167.366655pt;}
.x37_c00111{left:174.821307pt;}
.x38_c00111{left:178.525632pt;}
.x39_c00111{left:182.577318pt;}
.x3a_c00111{left:185.963463pt;}
.x3b_c00111{left:188.262839pt;}
.x9_c00111{left:204.798568pt;}
.x8_c00111{left:206.697430pt;}
.xa_c00111{left:209.442955pt;}
.xb_c00111{left:213.744503pt;}
.xc_c00111{left:218.506891pt;}
.xd_c00111{left:220.950947pt;}
.xe_c00111{left:223.623762pt;}
.xf_c00111{left:227.041187pt;}
.x10_c00111{left:229.962704pt;}
.x11_c00111{left:233.906932pt;}
.x12_c00111{left:241.567426pt;}
.x13_c00111{left:252.092435pt;}
.x14_c00111{left:258.703382pt;}
.x3_c00111{left:262.379637pt;}
.x15_c00111{left:266.467148pt;}
.x16_c00111{left:269.480012pt;}
.x17_c00111{left:273.046051pt;}
.x18_c00111{left:289.398009pt;}
.x19_c00111{left:290.480055pt;}
.x1a_c00111{left:291.743178pt;}
.x1b_c00111{left:294.762933pt;}
.x1c_c00111{left:297.629190pt;}
.x1d_c00111{left:302.857854pt;}
.x1e_c00111{left:308.357394pt;}
.x1f_c00111{left:313.417841pt;}
.x20_c00111{left:316.448952pt;}
.x21_c00111{left:323.477509pt;}
.x22_c00111{left:330.578767pt;}
.x23_c00111{left:336.587398pt;}
.x24_c00111{left:339.272032pt;}
.x25_c00111{left:341.942453pt;}
.x26_c00111{left:344.962878pt;}
.x27_c00111{left:347.289170pt;}
.x28_c00111{left:350.235429pt;}
.x29_c00111{left:354.835712pt;}
.x2a_c00111{left:357.328825pt;}
.x4_c00111{left:402.476937pt;}
.x3e_c00111{left:413.241039pt;}
.x7_c00111{left:576.508264pt;}
.x40_c00111{left:621.458319pt;}
.x3f_c00111{left:652.036124pt;}
.x3d_c00111{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d481bc86199693b425517ec9.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.006348;font-style:normal;font-weight:normal;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_ade6ad42bce50079ccc48bb1.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.171387;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_430e4e9e0bb101a0f837ca57.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:1.000000;font-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_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);}
.v0_c00112{vertical-align:0.000000px;}
.ls0_c00112{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00112{word-spacing:-19.320776px;}
.ws1_c00112{word-spacing:0.000000px;}
._2_c00112{width:1.576947px;}
._0_c00112{width:3.353301px;}
._3_c00112{width:4.518131px;}
._9_c00112{width:7.588668px;}
._7_c00112{width:8.693617px;}
._8_c00112{width:10.195311px;}
._c_c00112{width:13.376951px;}
._a_c00112{width:15.187502px;}
._6_c00112{width:17.156250px;}
._5_c00112{width:19.725266px;}
._b_c00112{width:23.740012px;}
._1_c00112{width:26.803067px;}
._4_c00112{width:30.861281px;}
.fc3_c00112{color:transparent;}
.fc2_c00112{color:rgb(128,128,128);}
.fc1_c00112{color:rgb(0,0,0);}
.fc0_c00112{color:rgb(186,118,50);}
.fs2_c00112{font-size:69.618741px;}
.fs1_c00112{font-size:71.999997px;}
.fs0_c00112{font-size:74.377724px;}
.y0_c00112{bottom:0.000000px;}
.y1_c00112{bottom:0.000008px;}
.y19_c00112{bottom:29.401163px;}
.ya_c00112{bottom:30.348053px;}
.y18_c00112{bottom:448.902737px;}
.y17_c00112{bottom:479.277736px;}
.y16_c00112{bottom:513.650715px;}
.y14_c00112{bottom:595.100718px;}
.y13_c00112{bottom:625.475717px;}
.y12_c00112{bottom:655.850716px;}
.y11_c00112{bottom:686.225715px;}
.y10_c00112{bottom:716.600713px;}
.yf_c00112{bottom:746.975712px;}
.ye_c00112{bottom:777.350711px;}
.yd_c00112{bottom:807.725710px;}
.yc_c00112{bottom:838.100708px;}
.yb_c00112{bottom:868.475707px;}
.y15_c00112{bottom:901.550706px;}
.y9_c00112{bottom:983.354373px;}
.y8_c00112{bottom:1013.729372px;}
.y7_c00112{bottom:1044.104371px;}
.y6_c00112{bottom:1074.479370px;}
.y5_c00112{bottom:1104.854368px;}
.y4_c00112{bottom:1135.229367px;}
.y3_c00112{bottom:1165.604366px;}
.y2_c00112{bottom:1199.188901px;}
.h5_c00112{height:50.480386px;}
.h6_c00112{height:55.160154px;}
.h3_c00112{height:56.981762px;}
.h4_c00112{height:67.042966px;}
.h2_c00112{height:1304.999946px;}
.h0_c00112{height:1304.999953px;}
.h1_c00112{height:1305.000000px;}
.w2_c00112{width:934.874961px;}
.w0_c00112{width:934.875000px;}
.w1_c00112{width:935.250000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:88.794432px;}
.x3_c00112{left:90.722973px;}
.x2_c00112{left:452.786554px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls0_c00112{letter-spacing:0.000000pt;}
.ws0_c00112{word-spacing:-17.174023pt;}
.ws1_c00112{word-spacing:0.000000pt;}
._2_c00112{width:1.401731pt;}
._0_c00112{width:2.980712pt;}
._3_c00112{width:4.016116pt;}
._9_c00112{width:6.745482pt;}
._7_c00112{width:7.727659pt;}
._8_c00112{width:9.062498pt;}
._c_c00112{width:11.890623pt;}
._a_c00112{width:13.500002pt;}
._6_c00112{width:15.250000pt;}
._5_c00112{width:17.533569pt;}
._b_c00112{width:21.102233pt;}
._1_c00112{width:23.824948pt;}
._4_c00112{width:27.432250pt;}
.fs2_c00112{font-size:61.883325pt;}
.fs1_c00112{font-size:63.999997pt;}
.fs0_c00112{font-size:66.113533pt;}
.y0_c00112{bottom:0.000000pt;}
.y1_c00112{bottom:0.000007pt;}
.y19_c00112{bottom:26.134367pt;}
.ya_c00112{bottom:26.976047pt;}
.y18_c00112{bottom:399.024655pt;}
.y17_c00112{bottom:426.024654pt;}
.y16_c00112{bottom:456.578413pt;}
.y14_c00112{bottom:528.978416pt;}
.y13_c00112{bottom:555.978415pt;}
.y12_c00112{bottom:582.978414pt;}
.y11_c00112{bottom:609.978413pt;}
.y10_c00112{bottom:636.978412pt;}
.yf_c00112{bottom:663.978411pt;}
.ye_c00112{bottom:690.978410pt;}
.yd_c00112{bottom:717.978408pt;}
.yc_c00112{bottom:744.978407pt;}
.yb_c00112{bottom:771.978406pt;}
.y15_c00112{bottom:801.378405pt;}
.y9_c00112{bottom:874.092776pt;}
.y8_c00112{bottom:901.092775pt;}
.y7_c00112{bottom:928.092774pt;}
.y6_c00112{bottom:955.092773pt;}
.y5_c00112{bottom:982.092772pt;}
.y4_c00112{bottom:1009.092771pt;}
.y3_c00112{bottom:1036.092770pt;}
.y2_c00112{bottom:1065.945690pt;}
.h5_c00112{height:44.871454pt;}
.h6_c00112{height:49.031248pt;}
.h3_c00112{height:50.650455pt;}
.h4_c00112{height:59.593748pt;}
.h2_c00112{height:1159.999952pt;}
.h0_c00112{height:1159.999959pt;}
.h1_c00112{height:1160.000000pt;}
.w2_c00112{width:830.999965pt;}
.w0_c00112{width:831.000000pt;}
.w1_c00112{width:831.333333pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:78.928384pt;}
.x3_c00112{left:80.642643pt;}
.x2_c00112{left:402.476937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24f26dc4ecae475daeee2409.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:0.772949;font-style:normal;font-weight:normal;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_8d17670e586be4c8ef38b618.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00113;src:url('chunks/assets/font_1b7b3b45c720b687c38aebe2.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.000000;font-style:normal;font-weight: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_c00113;src:url('chunks/assets/font_7f80766d1733f8ac753c7c4b.woff2')format("woff");}.ff5_c00113{font-family:ff5_c00113;line-height:1.171387;font-style:normal;font-weight: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_c00113;src:url('chunks/assets/font_92d3f58a0f65e5f567c9aadd.woff2')format("woff");}.ff6_c00113{font-family:ff6_c00113;line-height:1.006348;font-style:normal;font-weight: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_c00113;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00113{font-family:ff7_c00113;line-height:0.769531;font-style:normal;font-weight: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_c00113;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff8_c00113{font-family:ff8_c00113;line-height:0.743000;font-style:normal;font-weight: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_c00113;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00113{font-family:ff9_c00113;line-height:0.734863;font-style:normal;font-weight: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_c00113;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ffa_c00113{font-family:ffa_c00113;line-height:0.894000;font-style:normal;font-weight: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_c00113;src:url('chunks/assets/font_2d358f218610cf5c16549b37.woff2')format("woff");}.ffb_c00113{font-family:ffb_c00113;line-height:0.895000;font-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_c00113{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00113{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00113{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00113{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00113{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00113{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00113{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00113{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00113{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00113{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00113{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00113{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00113{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00113{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00113{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00113{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00113{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00113{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00113{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00113{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00113{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00113{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00113{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00113{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00113{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00113{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00113{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00113{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00113{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00113{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00113{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00113{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00113{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00113{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00113{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00113{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00113{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00113{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00113{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00113{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00113{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00113{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00113{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00113{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00113{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00113{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00113{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00113{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00113{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00113{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00113{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00113{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00113{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00113{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00113{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00113{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00113{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00113{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00113{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00113{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00113{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00113{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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;}
.ls0_c00113{letter-spacing:0.000000px;}
.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:-15.171263px;}
.ws2_c00113{word-spacing:0.000000px;}
.ws1_c00113{word-spacing:271.779181px;}
._2_c00113{width:4.384437px;}
._0_c00113{width:5.423401px;}
._1_c00113{width:19.962842px;}
.fc4_c00113{color:transparent;}
.fc3_c00113{color:rgb(186,118,50);}
.fc2_c00113{color:rgb(0,0,0);}
.fc1_c00113{color:rgb(128,128,128);}
.fc0_c00113{color:rgb(255,255,255);}
.fs2_c00113{font-size:39.757786px;}
.fse_c00113{font-size:41.999830px;}
.fs1_c00113{font-size:42.000118px;}
.fsb_c00113{font-size:47.368230px;}
.fs8_c00113{font-size:47.368231px;}
.fsc_c00113{font-size:47.368232px;}
.fs9_c00113{font-size:47.368233px;}
.fsa_c00113{font-size:47.368235px;}
.fsf_c00113{font-size:50.617585px;}
.fs7_c00113{font-size:55.754999px;}
.fs10_c00113{font-size:61.734125px;}
.fs4_c00113{font-size:69.618741px;}
.fs3_c00113{font-size:71.999997px;}
.fs6_c00113{font-size:74.424240px;}
.fsd_c00113{font-size:77.011488px;}
.fs0_c00113{font-size:89.985250px;}
.fs5_c00113{font-size:95.984996px;}
.y0_c00113{bottom:0.000000px;}
.y1_c00113{bottom:0.000008px;}
.y52_c00113{bottom:29.401163px;}
.y6_c00113{bottom:30.348053px;}
.yb_c00113{bottom:206.245179px;}
.ya_c00113{bottom:236.620178px;}
.y9_c00113{bottom:266.995177px;}
.y8_c00113{bottom:297.370176px;}
.yc_c00113{bottom:338.448974px;}
.y51_c00113{bottom:402.483470px;}
.y4d_c00113{bottom:488.651254px;}
.y1b_c00113{bottom:495.090933px;}
.y43_c00113{bottom:495.106463px;}
.y1a_c00113{bottom:495.616089px;}
.y44_c00113{bottom:495.635800px;}
.y2d_c00113{bottom:495.979775px;}
.y42_c00113{bottom:496.350860px;}
.y19_c00113{bottom:496.682414px;}
.y2e_c00113{bottom:496.812992px;}
.y2c_c00113{bottom:496.833258px;}
.y41_c00113{bottom:497.602572px;}
.y18_c00113{bottom:497.755386px;}
.y2b_c00113{bottom:497.868121px;}
.y45_c00113{bottom:498.052732px;}
.y1c_c00113{bottom:498.116213px;}
.y2f_c00113{bottom:498.994235px;}
.y40_c00113{bottom:499.247120px;}
.y17_c00113{bottom:499.407306px;}
.y2a_c00113{bottom:500.070772px;}
.y30_c00113{bottom:500.385568px;}
.y3f_c00113{bottom:500.935415px;}
.y16_c00113{bottom:501.100811px;}
.y31_c00113{bottom:502.083507px;}
.y1d_c00113{bottom:502.393431px;}
.y3e_c00113{bottom:502.800689px;}
.y15_c00113{bottom:502.970660px;}
.y46_c00113{bottom:503.153263px;}
.y29_c00113{bottom:503.862315px;}
.y32_c00113{bottom:504.525911px;}
.y1e_c00113{bottom:504.912621px;}
.y47_c00113{bottom:506.781462px;}
.y33_c00113{bottom:506.784693px;}
.y3d_c00113{bottom:507.455223px;}
.y14_c00113{bottom:507.634950px;}
.y28_c00113{bottom:509.331606px;}
.y34_c00113{bottom:510.053855px;}
.y1f_c00113{bottom:510.864984px;}
.y48_c00113{bottom:512.415439px;}
.y27_c00113{bottom:513.798017px;}
.y3c_c00113{bottom:513.856161px;}
.y13_c00113{bottom:514.044390px;}
.y20_c00113{bottom:515.613465px;}
.y35_c00113{bottom:518.450859px;}
.y49_c00113{bottom:519.072982px;}
.y26_c00113{bottom:520.222347px;}
.y3b_c00113{bottom:521.163484px;}
.y12_c00113{bottom:521.253829px;}
.y11_c00113{bottom:524.712352px;}
.y25_c00113{bottom:524.792222px;}
.y36_c00113{bottom:526.500013px;}
.y21_c00113{bottom:527.397702px;}
.y3a_c00113{bottom:528.324992px;}
.y10_c00113{bottom:530.722851px;}
.y4a_c00113{bottom:531.036114px;}
.y24_c00113{bottom:532.564636px;}
.y39_c00113{bottom:533.094110px;}
.y50_c00113{bottom:534.965011px;}
.y4c_c00113{bottom:535.031107px;}
.y23_c00113{bottom:536.458555px;}
.yf_c00113{bottom:537.982082px;}
.y38_c00113{bottom:539.266974px;}
.y22_c00113{bottom:539.637689px;}
.y4b_c00113{bottom:540.001566px;}
.y4e_c00113{bottom:541.737572px;}
.y37_c00113{bottom:546.329910px;}
.ye_c00113{bottom:547.516858px;}
.y4f_c00113{bottom:579.200070px;}
.yd_c00113{bottom:639.092421px;}
.y53_c00113{bottom:1026.801593px;}
.y5_c00113{bottom:1128.788391px;}
.y3_c00113{bottom:1133.738410px;}
.y2_c00113{bottom:1147.738449px;}
.y7_c00113{bottom:1151.817140px;}
.y4_c00113{bottom:1171.082693px;}
.h10_c00113{height:35.988753px;}
.h11_c00113{height:35.988755px;}
.h12_c00113{height:35.988756px;}
.h15_c00113{height:36.702692px;}
.h5_c00113{height:37.020556px;}
.h14_c00113{height:39.108240px;}
.h4_c00113{height:39.108509px;}
.he_c00113{height:44.107038px;}
.hb_c00113{height:44.107039px;}
.hf_c00113{height:44.107040px;}
.hc_c00113{height:44.107042px;}
.hd_c00113{height:44.107043px;}
.h16_c00113{height:44.139900px;}
.h7_c00113{height:50.480386px;}
.ha_c00113{height:51.916398px;}
.h13_c00113{height:56.295398px;}
.h9_c00113{height:57.017399px;}
.h6_c00113{height:67.042966px;}
.h3_c00113{height:68.367700px;}
.h8_c00113{height:89.376654px;}
.h2_c00113{height:1304.999946px;}
.h0_c00113{height:1304.999953px;}
.h1_c00113{height:1305.000000px;}
.w2_c00113{width:934.874961px;}
.w0_c00113{width:934.875000px;}
.w1_c00113{width:935.250000px;}
.x0_c00113{left:0.000000px;}
.x5_c00113{left:89.487450px;}
.x6_c00113{left:90.844844px;}
.x1_c00113{left:107.230262px;}
.x2_c00113{left:108.827167px;}
.x41_c00113{left:113.759556px;}
.x2c_c00113{left:134.974838px;}
.x2b_c00113{left:136.648279px;}
.x2d_c00113{left:140.021272px;}
.x2e_c00113{left:144.871714px;}
.x2f_c00113{left:150.237526px;}
.x30_c00113{left:152.990336px;}
.x31_c00113{left:156.000220px;}
.x32_c00113{left:159.847713px;}
.x3c_c00113{left:161.443962px;}
.x33_c00113{left:163.301377px;}
.x34_c00113{left:171.586339px;}
.x35_c00113{left:179.855997px;}
.x36_c00113{left:188.287487px;}
.x37_c00113{left:196.673970px;}
.x38_c00113{left:200.841336px;}
.x39_c00113{left:205.399483px;}
.x3a_c00113{left:209.208896px;}
.x3b_c00113{left:211.795693px;}
.x9_c00113{left:230.398389px;}
.x8_c00113{left:232.534609px;}
.xa_c00113{left:235.623324px;}
.xb_c00113{left:240.462566px;}
.xc_c00113{left:245.820252px;}
.xd_c00113{left:248.569815px;}
.xe_c00113{left:251.576732px;}
.xf_c00113{left:255.421336px;}
.x10_c00113{left:258.708042px;}
.x11_c00113{left:263.145298px;}
.x12_c00113{left:271.763354px;}
.x13_c00113{left:283.603990px;}
.x14_c00113{left:291.041304px;}
.x3_c00113{left:295.177092px;}
.x15_c00113{left:299.775542px;}
.x16_c00113{left:303.165014px;}
.x17_c00113{left:307.176807px;}
.x18_c00113{left:325.572760px;}
.x19_c00113{left:326.790062px;}
.x1a_c00113{left:328.211075px;}
.x1b_c00113{left:331.608300px;}
.x1c_c00113{left:334.832839px;}
.x1d_c00113{left:340.715086px;}
.x1e_c00113{left:346.902068px;}
.x1f_c00113{left:352.595072px;}
.x20_c00113{left:356.005071px;}
.x21_c00113{left:363.912198px;}
.x22_c00113{left:371.901113px;}
.x23_c00113{left:378.660822px;}
.x24_c00113{left:381.681036px;}
.x25_c00113{left:384.685260px;}
.x26_c00113{left:388.083238px;}
.x27_c00113{left:390.700316px;}
.x28_c00113{left:394.014858px;}
.x29_c00113{left:399.190176px;}
.x2a_c00113{left:401.994929px;}
.x4_c00113{left:452.786554px;}
.x3e_c00113{left:464.896169px;}
.x7_c00113{left:648.571797px;}
.x40_c00113{left:699.140609px;}
.x3f_c00113{left:733.540639px;}
.x3d_c00113{left:757.088990px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls0_c00113{letter-spacing:0.000000pt;}
.ws0_c00113{word-spacing:-13.485567pt;}
.ws2_c00113{word-spacing:0.000000pt;}
.ws1_c00113{word-spacing:241.581494pt;}
._2_c00113{width:3.897277pt;}
._0_c00113{width:4.820801pt;}
._1_c00113{width:17.744749pt;}
.fs2_c00113{font-size:35.340254pt;}
.fse_c00113{font-size:37.333182pt;}
.fs1_c00113{font-size:37.333438pt;}
.fsb_c00113{font-size:42.105093pt;}
.fs8_c00113{font-size:42.105094pt;}
.fsc_c00113{font-size:42.105095pt;}
.fs9_c00113{font-size:42.105096pt;}
.fsa_c00113{font-size:42.105098pt;}
.fsf_c00113{font-size:44.993408pt;}
.fs7_c00113{font-size:49.559999pt;}
.fs10_c00113{font-size:54.874778pt;}
.fs4_c00113{font-size:61.883325pt;}
.fs3_c00113{font-size:63.999997pt;}
.fs6_c00113{font-size:66.154880pt;}
.fsd_c00113{font-size:68.454656pt;}
.fs0_c00113{font-size:79.986889pt;}
.fs5_c00113{font-size:85.319996pt;}
.y0_c00113{bottom:0.000000pt;}
.y1_c00113{bottom:0.000007pt;}
.y52_c00113{bottom:26.134367pt;}
.y6_c00113{bottom:26.976047pt;}
.yb_c00113{bottom:183.329048pt;}
.ya_c00113{bottom:210.329047pt;}
.y9_c00113{bottom:237.329046pt;}
.y8_c00113{bottom:264.329045pt;}
.yc_c00113{bottom:300.843533pt;}
.y51_c00113{bottom:357.763084pt;}
.y4d_c00113{bottom:434.356670pt;}
.y1b_c00113{bottom:440.080830pt;}
.y43_c00113{bottom:440.094634pt;}
.y1a_c00113{bottom:440.547634pt;}
.y44_c00113{bottom:440.565156pt;}
.y2d_c00113{bottom:440.870911pt;}
.y42_c00113{bottom:441.200765pt;}
.y19_c00113{bottom:441.495480pt;}
.y2e_c00113{bottom:441.611549pt;}
.y2c_c00113{bottom:441.629563pt;}
.y41_c00113{bottom:442.313398pt;}
.y18_c00113{bottom:442.449232pt;}
.y2b_c00113{bottom:442.549441pt;}
.y45_c00113{bottom:442.713540pt;}
.y1c_c00113{bottom:442.769967pt;}
.y2f_c00113{bottom:443.550431pt;}
.y40_c00113{bottom:443.775218pt;}
.y17_c00113{bottom:443.917606pt;}
.y2a_c00113{bottom:444.507353pt;}
.y30_c00113{bottom:444.787171pt;}
.y3f_c00113{bottom:445.275925pt;}
.y16_c00113{bottom:445.422943pt;}
.y31_c00113{bottom:446.296450pt;}
.y1d_c00113{bottom:446.571939pt;}
.y3e_c00113{bottom:446.933946pt;}
.y15_c00113{bottom:447.085031pt;}
.y46_c00113{bottom:447.247345pt;}
.y29_c00113{bottom:447.877613pt;}
.y32_c00113{bottom:448.467477pt;}
.y1e_c00113{bottom:448.811219pt;}
.y47_c00113{bottom:450.472411pt;}
.y33_c00113{bottom:450.475283pt;}
.y3d_c00113{bottom:451.071310pt;}
.y14_c00113{bottom:451.231066pt;}
.y28_c00113{bottom:452.739206pt;}
.y34_c00113{bottom:453.381205pt;}
.y1f_c00113{bottom:454.102208pt;}
.y48_c00113{bottom:455.480391pt;}
.y27_c00113{bottom:456.709349pt;}
.y3c_c00113{bottom:456.761032pt;}
.y13_c00113{bottom:456.928347pt;}
.y20_c00113{bottom:458.323080pt;}
.y35_c00113{bottom:460.845208pt;}
.y49_c00113{bottom:461.398207pt;}
.y26_c00113{bottom:462.419864pt;}
.y3b_c00113{bottom:463.256430pt;}
.y12_c00113{bottom:463.336737pt;}
.y11_c00113{bottom:466.410980pt;}
.y25_c00113{bottom:466.481975pt;}
.y36_c00113{bottom:468.000011pt;}
.y21_c00113{bottom:468.797958pt;}
.y3a_c00113{bottom:469.622215pt;}
.y10_c00113{bottom:471.753645pt;}
.y4a_c00113{bottom:472.032101pt;}
.y24_c00113{bottom:473.390788pt;}
.y39_c00113{bottom:473.861432pt;}
.y50_c00113{bottom:475.524454pt;}
.y4c_c00113{bottom:475.583206pt;}
.y23_c00113{bottom:476.852049pt;}
.yf_c00113{bottom:478.206295pt;}
.y38_c00113{bottom:479.348421pt;}
.y22_c00113{bottom:479.677946pt;}
.y4b_c00113{bottom:480.001392pt;}
.y4e_c00113{bottom:481.544508pt;}
.y37_c00113{bottom:485.626586pt;}
.ye_c00113{bottom:486.681652pt;}
.y4f_c00113{bottom:514.844507pt;}
.yd_c00113{bottom:568.082152pt;}
.y53_c00113{bottom:912.712527pt;}
.y5_c00113{bottom:1003.367459pt;}
.y3_c00113{bottom:1007.767476pt;}
.y2_c00113{bottom:1020.211955pt;}
.y7_c00113{bottom:1023.837458pt;}
.y4_c00113{bottom:1040.962393pt;}
.h10_c00113{height:31.990003pt;}
.h11_c00113{height:31.990004pt;}
.h12_c00113{height:31.990006pt;}
.h15_c00113{height:32.624615pt;}
.h5_c00113{height:32.907161pt;}
.h14_c00113{height:34.762880pt;}
.h4_c00113{height:34.763119pt;}
.he_c00113{height:39.206256pt;}
.hb_c00113{height:39.206257pt;}
.hf_c00113{height:39.206258pt;}
.hc_c00113{height:39.206259pt;}
.hd_c00113{height:39.206261pt;}
.h16_c00113{height:39.235466pt;}
.h7_c00113{height:44.871454pt;}
.ha_c00113{height:46.147909pt;}
.h13_c00113{height:50.040354pt;}
.h9_c00113{height:50.682132pt;}
.h6_c00113{height:59.593748pt;}
.h3_c00113{height:60.771289pt;}
.h8_c00113{height:79.445915pt;}
.h2_c00113{height:1159.999952pt;}
.h0_c00113{height:1159.999959pt;}
.h1_c00113{height:1160.000000pt;}
.w2_c00113{width:830.999965pt;}
.w0_c00113{width:831.000000pt;}
.w1_c00113{width:831.333333pt;}
.x0_c00113{left:0.000000pt;}
.x5_c00113{left:79.544400pt;}
.x6_c00113{left:80.750973pt;}
.x1_c00113{left:95.315788pt;}
.x2_c00113{left:96.735260pt;}
.x41_c00113{left:101.119605pt;}
.x2c_c00113{left:119.977634pt;}
.x2b_c00113{left:121.465137pt;}
.x2d_c00113{left:124.463353pt;}
.x2e_c00113{left:128.774857pt;}
.x2f_c00113{left:133.544468pt;}
.x30_c00113{left:135.991410pt;}
.x31_c00113{left:138.666862pt;}
.x32_c00113{left:142.086856pt;}
.x3c_c00113{left:143.505744pt;}
.x33_c00113{left:145.156780pt;}
.x34_c00113{left:152.521190pt;}
.x35_c00113{left:159.871997pt;}
.x36_c00113{left:167.366655pt;}
.x37_c00113{left:174.821307pt;}
.x38_c00113{left:178.525632pt;}
.x39_c00113{left:182.577318pt;}
.x3a_c00113{left:185.963463pt;}
.x3b_c00113{left:188.262839pt;}
.x9_c00113{left:204.798568pt;}
.x8_c00113{left:206.697430pt;}
.xa_c00113{left:209.442955pt;}
.xb_c00113{left:213.744503pt;}
.xc_c00113{left:218.506891pt;}
.xd_c00113{left:220.950947pt;}
.xe_c00113{left:223.623762pt;}
.xf_c00113{left:227.041187pt;}
.x10_c00113{left:229.962704pt;}
.x11_c00113{left:233.906932pt;}
.x12_c00113{left:241.567426pt;}
.x13_c00113{left:252.092435pt;}
.x14_c00113{left:258.703382pt;}
.x3_c00113{left:262.379637pt;}
.x15_c00113{left:266.467148pt;}
.x16_c00113{left:269.480012pt;}
.x17_c00113{left:273.046051pt;}
.x18_c00113{left:289.398009pt;}
.x19_c00113{left:290.480055pt;}
.x1a_c00113{left:291.743178pt;}
.x1b_c00113{left:294.762933pt;}
.x1c_c00113{left:297.629190pt;}
.x1d_c00113{left:302.857854pt;}
.x1e_c00113{left:308.357394pt;}
.x1f_c00113{left:313.417841pt;}
.x20_c00113{left:316.448952pt;}
.x21_c00113{left:323.477509pt;}
.x22_c00113{left:330.578767pt;}
.x23_c00113{left:336.587398pt;}
.x24_c00113{left:339.272032pt;}
.x25_c00113{left:341.942453pt;}
.x26_c00113{left:344.962878pt;}
.x27_c00113{left:347.289170pt;}
.x28_c00113{left:350.235429pt;}
.x29_c00113{left:354.835712pt;}
.x2a_c00113{left:357.328825pt;}
.x4_c00113{left:402.476937pt;}
.x3e_c00113{left:413.241039pt;}
.x7_c00113{left:576.508264pt;}
.x40_c00113{left:621.458319pt;}
.x3f_c00113{left:652.036124pt;}
.x3d_c00113{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d481bc86199693b425517ec9.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.006348;font-style:normal;font-weight:normal;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_885cb1a389346439f374e718.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.171387;font-style:normal;font-weight:normal;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_4241637db208bb5c3cb526ea.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.000000;font-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_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);}
.v0_c00114{vertical-align:0.000000px;}
.ls0_c00114{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00114{word-spacing:-19.320776px;}
.ws1_c00114{word-spacing:0.000000px;}
._4_c00114{width:1.059697px;}
._6_c00114{width:2.121045px;}
._10_c00114{width:3.215150px;}
._b_c00114{width:5.349175px;}
._5_c00114{width:6.420067px;}
._11_c00114{width:7.822264px;}
._f_c00114{width:9.627315px;}
._e_c00114{width:10.774018px;}
._d_c00114{width:11.976537px;}
._7_c00114{width:13.879646px;}
._a_c00114{width:14.940503px;}
._12_c00114{width:16.270903px;}
._0_c00114{width:17.409206px;}
._2_c00114{width:19.910105px;}
._8_c00114{width:21.303043px;}
._3_c00114{width:23.024596px;}
._9_c00114{width:24.298462px;}
._c_c00114{width:38.742186px;}
._1_c00114{width:41.844723px;}
.fc1_c00114{color:rgb(0,0,0);}
.fc0_c00114{color:rgb(186,118,50);}
.fs1_c00114{font-size:71.999997px;}
.fs0_c00114{font-size:74.377724px;}
.y0_c00114{bottom:0.000000px;}
.y1_c00114{bottom:0.000008px;}
.y24_c00114{bottom:29.401163px;}
.y23_c00114{bottom:145.976466px;}
.y22_c00114{bottom:176.351465px;}
.y21_c00114{bottom:210.724443px;}
.y1f_c00114{bottom:259.340612px;}
.y1e_c00114{bottom:289.715611px;}
.y1d_c00114{bottom:320.090610px;}
.y1c_c00114{bottom:350.465609px;}
.y1b_c00114{bottom:380.840607px;}
.y1a_c00114{bottom:411.215606px;}
.y19_c00114{bottom:441.590605px;}
.y18_c00114{bottom:471.965604px;}
.y17_c00114{bottom:502.340602px;}
.y16_c00114{bottom:532.715601px;}
.y15_c00114{bottom:563.090600px;}
.y14_c00114{bottom:593.465598px;}
.y13_c00114{bottom:623.840597px;}
.y12_c00114{bottom:654.215596px;}
.y11_c00114{bottom:684.590595px;}
.y10_c00114{bottom:714.965593px;}
.yf_c00114{bottom:745.340592px;}
.ye_c00114{bottom:775.715591px;}
.yd_c00114{bottom:806.090590px;}
.yc_c00114{bottom:836.465588px;}
.y20_c00114{bottom:869.540238px;}
.yb_c00114{bottom:922.604376px;}
.ya_c00114{bottom:952.979375px;}
.y9_c00114{bottom:983.354373px;}
.y8_c00114{bottom:1013.729372px;}
.y7_c00114{bottom:1044.104371px;}
.y6_c00114{bottom:1074.479370px;}
.y5_c00114{bottom:1104.854368px;}
.y4_c00114{bottom:1135.229367px;}
.y3_c00114{bottom:1165.604366px;}
.y2_c00114{bottom:1199.188901px;}
.h5_c00114{height:55.160154px;}
.h3_c00114{height:56.981762px;}
.h4_c00114{height:67.042966px;}
.h2_c00114{height:1304.999946px;}
.h0_c00114{height:1304.999953px;}
.h1_c00114{height:1305.000000px;}
.w2_c00114{width:934.874961px;}
.w0_c00114{width:934.875000px;}
.w1_c00114{width:935.250000px;}
.x0_c00114{left:0.000000px;}
.x1_c00114{left:88.794432px;}
.x2_c00114{left:90.722973px;}
.x3_c00114{left:452.271732px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.ws0_c00114{word-spacing:-17.174023pt;}
.ws1_c00114{word-spacing:0.000000pt;}
._4_c00114{width:0.941953pt;}
._6_c00114{width:1.885373pt;}
._10_c00114{width:2.857911pt;}
._b_c00114{width:4.754822pt;}
._5_c00114{width:5.706726pt;}
._11_c00114{width:6.953124pt;}
._f_c00114{width:8.557614pt;}
._e_c00114{width:9.576905pt;}
._d_c00114{width:10.645811pt;}
._7_c00114{width:12.337463pt;}
._a_c00114{width:13.280447pt;}
._12_c00114{width:14.463025pt;}
._0_c00114{width:15.474849pt;}
._2_c00114{width:17.697871pt;}
._8_c00114{width:18.936038pt;}
._3_c00114{width:20.466307pt;}
._9_c00114{width:21.598633pt;}
._c_c00114{width:34.437499pt;}
._1_c00114{width:37.195309pt;}
.fs1_c00114{font-size:63.999997pt;}
.fs0_c00114{font-size:66.113533pt;}
.y0_c00114{bottom:0.000000pt;}
.y1_c00114{bottom:0.000007pt;}
.y24_c00114{bottom:26.134367pt;}
.y23_c00114{bottom:129.756859pt;}
.y22_c00114{bottom:156.756857pt;}
.y21_c00114{bottom:187.310616pt;}
.y1f_c00114{bottom:230.524989pt;}
.y1e_c00114{bottom:257.524988pt;}
.y1d_c00114{bottom:284.524987pt;}
.y1c_c00114{bottom:311.524985pt;}
.y1b_c00114{bottom:338.524984pt;}
.y1a_c00114{bottom:365.524983pt;}
.y19_c00114{bottom:392.524982pt;}
.y18_c00114{bottom:419.524981pt;}
.y17_c00114{bottom:446.524980pt;}
.y16_c00114{bottom:473.524979pt;}
.y15_c00114{bottom:500.524978pt;}
.y14_c00114{bottom:527.524976pt;}
.y13_c00114{bottom:554.524975pt;}
.y12_c00114{bottom:581.524974pt;}
.y11_c00114{bottom:608.524973pt;}
.y10_c00114{bottom:635.524972pt;}
.yf_c00114{bottom:662.524971pt;}
.ye_c00114{bottom:689.524970pt;}
.yd_c00114{bottom:716.524969pt;}
.yc_c00114{bottom:743.524967pt;}
.y20_c00114{bottom:772.924656pt;}
.yb_c00114{bottom:820.092779pt;}
.ya_c00114{bottom:847.092778pt;}
.y9_c00114{bottom:874.092776pt;}
.y8_c00114{bottom:901.092775pt;}
.y7_c00114{bottom:928.092774pt;}
.y6_c00114{bottom:955.092773pt;}
.y5_c00114{bottom:982.092772pt;}
.y4_c00114{bottom:1009.092771pt;}
.y3_c00114{bottom:1036.092770pt;}
.y2_c00114{bottom:1065.945690pt;}
.h5_c00114{height:49.031248pt;}
.h3_c00114{height:50.650455pt;}
.h4_c00114{height:59.593748pt;}
.h2_c00114{height:1159.999952pt;}
.h0_c00114{height:1159.999959pt;}
.h1_c00114{height:1160.000000pt;}
.w2_c00114{width:830.999965pt;}
.w0_c00114{width:831.000000pt;}
.w1_c00114{width:831.333333pt;}
.x0_c00114{left:0.000000pt;}
.x1_c00114{left:78.928384pt;}
.x2_c00114{left:80.642643pt;}
.x3_c00114{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44cab8874ba3e717472a70fd.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:0.775879;font-style:normal;font-weight:normal;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_3768b8fd185ff56f04d5a47c.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.171387;font-style:normal;font-weight:normal;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_b542244703e08fd7ffcf2b23.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.005371;font-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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00115{vertical-align:0.000000px;}
.ls0_c00115{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00115{word-spacing:0.000000px;}
._0_c00115{width:4.767171px;}
.fc1_c00115{color:rgb(0,0,0);}
.fc0_c00115{color:rgb(198,111,25);}
.fs0_c00115{font-size:71.999997px;}
.y0_c00115{bottom:0.000000px;}
.y1_c00115{bottom:0.000008px;}
.y3_c00115{bottom:29.401163px;}
.y5_c00115{bottom:1113.231762px;}
.y4_c00115{bottom:1142.481761px;}
.y2_c00115{bottom:1199.772299px;}
.h3_c00115{height:55.160154px;}
.h4_c00115{height:67.042966px;}
.h2_c00115{height:1304.999946px;}
.h0_c00115{height:1304.999953px;}
.h1_c00115{height:1305.000000px;}
.w2_c00115{width:934.874961px;}
.w0_c00115{width:934.875000px;}
.w1_c00115{width:935.250000px;}
.x0_c00115{left:0.000000px;}
.x1_c00115{left:128.173847px;}
.x2_c00115{left:452.271732px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ws0_c00115{word-spacing:0.000000pt;}
._0_c00115{width:4.237486pt;}
.fs0_c00115{font-size:63.999997pt;}
.y0_c00115{bottom:0.000000pt;}
.y1_c00115{bottom:0.000007pt;}
.y3_c00115{bottom:26.134367pt;}
.y5_c00115{bottom:989.539344pt;}
.y4_c00115{bottom:1015.539343pt;}
.y2_c00115{bottom:1066.464266pt;}
.h3_c00115{height:49.031248pt;}
.h4_c00115{height:59.593748pt;}
.h2_c00115{height:1159.999952pt;}
.h0_c00115{height:1159.999959pt;}
.h1_c00115{height:1160.000000pt;}
.w2_c00115{width:830.999965pt;}
.w0_c00115{width:831.000000pt;}
.w1_c00115{width:831.333333pt;}
.x0_c00115{left:0.000000pt;}
.x1_c00115{left:113.932309pt;}
.x2_c00115{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ab98cd8d416fef5b1258adb.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:0.709961;font-style:normal;font-weight:normal;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_5703d8836245080504b58547.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.151614;font-style:normal;font-weight:normal;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_c97874663a4d3841faf0a7c6.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.000000;font-style:normal;font-weight:normal;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_6373c23fdcd29bd0b08afaf6.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.000000;font-style:normal;font-weight: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_c00116;src:url('chunks/assets/font_563537be57fb252c22838ba3.woff2')format("woff");}.ff5_c00116{font-family:ff5_c00116;line-height:0.737305;font-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_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);}
.v0_c00116{vertical-align:0.000000px;}
.ls0_c00116{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00116{word-spacing:-0.599985px;}
.ws1_c00116{word-spacing:-0.059985px;}
.ws2_c00116{word-spacing:0.000000px;}
._0_c00116{margin-left:-9.605427px;}
.fc0_c00116{color:rgb(255,255,255);}
.fs1_c00116{font-size:59.984997px;}
.fs0_c00116{font-size:599.984984px;}
.y0_c00116{bottom:0.000000px;}
.y1_c00116{bottom:0.000008px;}
.y12_c00116{bottom:61.564929px;}
.y11_c00116{bottom:82.939929px;}
.y10_c00116{bottom:104.314928px;}
.yf_c00116{bottom:125.689927px;}
.ye_c00116{bottom:147.064926px;}
.yd_c00116{bottom:168.439925px;}
.yc_c00116{bottom:189.814924px;}
.yb_c00116{bottom:211.189923px;}
.ya_c00116{bottom:232.564922px;}
.y9_c00116{bottom:253.939921px;}
.y8_c00116{bottom:275.314921px;}
.y7_c00116{bottom:296.689920px;}
.y6_c00116{bottom:318.064919px;}
.y5_c00116{bottom:339.439918px;}
.y4_c00116{bottom:360.814917px;}
.y3_c00116{bottom:382.189916px;}
.y2_c00116{bottom:514.789431px;}
.y14_c00116{bottom:1210.204725px;}
.y13_c00116{bottom:1230.454724px;}
.h5_c00116{height:45.574539px;}
.h4_c00116{height:57.045732px;}
.h3_c00116{height:420.106673px;}
.h2_c00116{height:1304.999946px;}
.h0_c00116{height:1304.999953px;}
.h1_c00116{height:1305.000000px;}
.w2_c00116{width:934.874961px;}
.w0_c00116{width:934.875000px;}
.w1_c00116{width:935.250000px;}
.x0_c00116{left:0.000000px;}
.x3_c00116{left:68.474132px;}
.x2_c00116{left:87.902647px;}
.x1_c00116{left:173.890145px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls0_c00116{letter-spacing:0.000000pt;}
.ws0_c00116{word-spacing:-0.533320pt;}
.ws1_c00116{word-spacing:-0.053320pt;}
.ws2_c00116{word-spacing:0.000000pt;}
._0_c00116{margin-left:-8.538157pt;}
.fs1_c00116{font-size:53.319997pt;}
.fs0_c00116{font-size:533.319986pt;}
.y0_c00116{bottom:0.000000pt;}
.y1_c00116{bottom:0.000007pt;}
.y12_c00116{bottom:54.724382pt;}
.y11_c00116{bottom:73.724381pt;}
.y10_c00116{bottom:92.724380pt;}
.yf_c00116{bottom:111.724379pt;}
.ye_c00116{bottom:130.724379pt;}
.yd_c00116{bottom:149.724378pt;}
.yc_c00116{bottom:168.724377pt;}
.yb_c00116{bottom:187.724376pt;}
.ya_c00116{bottom:206.724375pt;}
.y9_c00116{bottom:225.724375pt;}
.y8_c00116{bottom:244.724374pt;}
.y7_c00116{bottom:263.724373pt;}
.y6_c00116{bottom:282.724372pt;}
.y5_c00116{bottom:301.724371pt;}
.y4_c00116{bottom:320.724371pt;}
.y3_c00116{bottom:339.724370pt;}
.y2_c00116{bottom:457.590605pt;}
.y14_c00116{bottom:1075.737533pt;}
.y13_c00116{bottom:1093.737533pt;}
.h5_c00116{height:40.510701pt;}
.h4_c00116{height:50.707318pt;}
.h3_c00116{height:373.428154pt;}
.h2_c00116{height:1159.999952pt;}
.h0_c00116{height:1159.999959pt;}
.h1_c00116{height:1160.000000pt;}
.w2_c00116{width:830.999965pt;}
.w0_c00116{width:831.000000pt;}
.w1_c00116{width:831.333333pt;}
.x0_c00116{left:0.000000pt;}
.x3_c00116{left:60.865895pt;}
.x2_c00116{left:78.135686pt;}
.x1_c00116{left:154.569018pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00117{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
}
.y0_c00117{bottom:0.000000px;}
.h0_c00117{height:1304.999953px;}
.h1_c00117{height:1305.000000px;}
.w0_c00117{width:934.875000px;}
.w1_c00117{width:935.250000px;}
.x0_c00117{left:0.000000px;}
@media print{
.y0_c00117{bottom:0.000000pt;}
.h0_c00117{height:1159.999959pt;}
.h1_c00117{height:1160.000000pt;}
.w0_c00117{width:831.000000pt;}
.w1_c00117{width:831.333333pt;}
.x0_c00117{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_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_98cbc86febdef45e12512055.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:0.737305;font-style:normal;font-weight:normal;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_da445b39371224280bc5fbb6.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.006348;font-style:normal;font-weight:normal;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_2d7deaa08558454454a2b37f.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:0.713867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00118;src:url('chunks/assets/font_27bf46ba887642291d44e00c.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:1.171387;font-style:normal;font-weight: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_c00118;src:url('chunks/assets/font_2d7deaa08558454454a2b37f.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:0.713867;font-style:normal;font-weight: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_c00118;src:url('chunks/assets/font_ceb98812fe308622507c0746.woff2')format("woff");}.ff6_c00118{font-family:ff6_c00118;line-height:1.005371;font-style:normal;font-weight: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_c00118;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff7_c00118{font-family:ff7_c00118;line-height:0.734863;font-style:normal;font-weight: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_c00118;src:url('chunks/assets/font_aca112a32edcae7a59c852a3.woff2')format("woff");}.ff8_c00118{font-family:ff8_c00118;line-height:0.775879;font-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_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);}
.v0_c00118{vertical-align:0.000000px;}
.ls2_c00118{letter-spacing:0.000000px;}
.ls1_c00118{letter-spacing:13.316373px;}
.ls0_c00118{letter-spacing:13.316396px;}
.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;}
}
.ws1_c00118{word-spacing:-18.703125px;}
.ws0_c00118{word-spacing:-15.582041px;}
.ws3_c00118{word-spacing:0.000000px;}
.ws2_c00118{word-spacing:811.505548px;}
._a_c00118{width:1.265627px;}
._5_c00118{width:2.841752px;}
._6_c00118{width:4.570311px;}
._8_c00118{width:5.800791px;}
._9_c00118{width:7.155580px;}
._3_c00118{width:9.942145px;}
._0_c00118{width:13.242951px;}
._1_c00118{width:14.322353px;}
._4_c00118{width:15.358396px;}
._7_c00118{width:17.411818px;}
._2_c00118{width:19.849751px;}
._b_c00118{width:881.061708px;}
.fc5_c00118{color:transparent;}
.fc2_c00118{color:rgb(67,91,56);}
.fc1_c00118{color:rgb(93,156,116);}
.fc4_c00118{color:rgb(128,128,128);}
.fc3_c00118{color:rgb(0,0,0);}
.fc0_c00118{color:rgb(255,255,255);}
.fs1_c00118{font-size:59.984997px;}
.fs3_c00118{font-size:69.618741px;}
.fs2_c00118{font-size:71.999997px;}
.fs4_c00118{font-size:87.769621px;}
.fs0_c00118{font-size:113.521425px;}
.y0_c00118{bottom:0.000000px;}
.y1_c00118{bottom:0.000008px;}
.y22_c00118{bottom:29.401163px;}
.y18_c00118{bottom:30.348053px;}
.y21_c00118{bottom:76.323165px;}
.y20_c00118{bottom:122.405251px;}
.y1d_c00118{bottom:191.038348px;}
.y1c_c00118{bottom:209.038347px;}
.y1f_c00118{bottom:223.009443px;}
.y1b_c00118{bottom:226.275709px;}
.y1e_c00118{bottom:305.224799px;}
.y6_c00118{bottom:333.630706px;}
.y5_c00118{bottom:353.880705px;}
.y4_c00118{bottom:374.130704px;}
.y3_c00118{bottom:500.946309px;}
.y1a_c00118{bottom:580.381854px;}
.y17_c00118{bottom:644.888644px;}
.y16_c00118{bottom:675.263643px;}
.y15_c00118{bottom:705.638642px;}
.y14_c00118{bottom:736.013641px;}
.y2_c00118{bottom:740.360026px;}
.y13_c00118{bottom:766.388639px;}
.y12_c00118{bottom:796.763638px;}
.y11_c00118{bottom:827.138637px;}
.y10_c00118{bottom:857.513635px;}
.yf_c00118{bottom:887.888634px;}
.ye_c00118{bottom:918.263633px;}
.yd_c00118{bottom:948.638632px;}
.yc_c00118{bottom:979.013630px;}
.yb_c00118{bottom:1009.388629px;}
.ya_c00118{bottom:1039.763628px;}
.y9_c00118{bottom:1070.138627px;}
.y8_c00118{bottom:1100.513625px;}
.y7_c00118{bottom:1130.888624px;}
.y19_c00118{bottom:1200.600303px;}
.h7_c00118{height:45.955303px;}
.h6_c00118{height:50.480386px;}
.h4_c00118{height:55.855171px;}
.h8_c00118{height:63.555834px;}
.h5_c00118{height:67.042966px;}
.h3_c00118{height:82.203258px;}
.h2_c00118{height:1304.999946px;}
.h0_c00118{height:1304.999953px;}
.h1_c00118{height:1305.000000px;}
.w2_c00118{width:934.874961px;}
.w0_c00118{width:934.875000px;}
.w1_c00118{width:935.250000px;}
.x0_c00118{left:0.000000px;}
.x4_c00118{left:89.864283px;}
.x3_c00118{left:150.879259px;}
.x9_c00118{left:197.808324px;}
.x7_c00118{left:277.341976px;}
.xc_c00118{left:296.747653px;}
.x1_c00118{left:427.470977px;}
.xa_c00118{left:432.048586px;}
.x5_c00118{left:452.786554px;}
.x8_c00118{left:507.000874px;}
.xb_c00118{left:519.411247px;}
.x2_c00118{left:593.690073px;}
.x6_c00118{left:739.744382px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls2_c00118{letter-spacing:0.000000pt;}
.ls1_c00118{letter-spacing:11.836776pt;}
.ls0_c00118{letter-spacing:11.836796pt;}
.ws1_c00118{word-spacing:-16.625000pt;}
.ws0_c00118{word-spacing:-13.850703pt;}
.ws3_c00118{word-spacing:0.000000pt;}
.ws2_c00118{word-spacing:721.338265pt;}
._a_c00118{width:1.125001pt;}
._5_c00118{width:2.526001pt;}
._6_c00118{width:4.062499pt;}
._8_c00118{width:5.156259pt;}
._9_c00118{width:6.360515pt;}
._3_c00118{width:8.837462pt;}
._0_c00118{width:11.771512pt;}
._1_c00118{width:12.730980pt;}
._4_c00118{width:13.651907pt;}
._7_c00118{width:15.477171pt;}
._2_c00118{width:17.644223pt;}
._b_c00118{width:783.165963pt;}
.fs1_c00118{font-size:53.319997pt;}
.fs3_c00118{font-size:61.883325pt;}
.fs2_c00118{font-size:63.999997pt;}
.fs4_c00118{font-size:78.017441pt;}
.fs0_c00118{font-size:100.907933pt;}
.y0_c00118{bottom:0.000000pt;}
.y1_c00118{bottom:0.000007pt;}
.y22_c00118{bottom:26.134367pt;}
.y18_c00118{bottom:26.976047pt;}
.y21_c00118{bottom:67.842813pt;}
.y20_c00118{bottom:108.804667pt;}
.y1d_c00118{bottom:169.811865pt;}
.y1c_c00118{bottom:185.811864pt;}
.y1f_c00118{bottom:198.230616pt;}
.y1b_c00118{bottom:201.133964pt;}
.y1e_c00118{bottom:271.310933pt;}
.y6_c00118{bottom:296.560628pt;}
.y5_c00118{bottom:314.560627pt;}
.y4_c00118{bottom:332.560626pt;}
.y3_c00118{bottom:445.285608pt;}
.y1a_c00118{bottom:515.894981pt;}
.y17_c00118{bottom:573.234351pt;}
.y16_c00118{bottom:600.234349pt;}
.y15_c00118{bottom:627.234348pt;}
.y14_c00118{bottom:654.234347pt;}
.y2_c00118{bottom:658.097801pt;}
.y13_c00118{bottom:681.234346pt;}
.y12_c00118{bottom:708.234345pt;}
.y11_c00118{bottom:735.234344pt;}
.y10_c00118{bottom:762.234343pt;}
.yf_c00118{bottom:789.234342pt;}
.ye_c00118{bottom:816.234340pt;}
.yd_c00118{bottom:843.234339pt;}
.yc_c00118{bottom:870.234338pt;}
.yb_c00118{bottom:897.234337pt;}
.ya_c00118{bottom:924.234336pt;}
.y9_c00118{bottom:951.234335pt;}
.y8_c00118{bottom:978.234334pt;}
.y7_c00118{bottom:1005.234333pt;}
.y19_c00118{bottom:1067.200269pt;}
.h7_c00118{height:40.849158pt;}
.h6_c00118{height:44.871454pt;}
.h4_c00118{height:49.649041pt;}
.h8_c00118{height:56.494075pt;}
.h5_c00118{height:59.593748pt;}
.h3_c00118{height:73.069563pt;}
.h2_c00118{height:1159.999952pt;}
.h0_c00118{height:1159.999959pt;}
.h1_c00118{height:1160.000000pt;}
.w2_c00118{width:830.999965pt;}
.w0_c00118{width:831.000000pt;}
.w1_c00118{width:831.333333pt;}
.x0_c00118{left:0.000000pt;}
.x4_c00118{left:79.879363pt;}
.x3_c00118{left:134.114897pt;}
.x9_c00118{left:175.829621pt;}
.x7_c00118{left:246.526201pt;}
.xc_c00118{left:263.775691pt;}
.x1_c00118{left:379.974202pt;}
.xa_c00118{left:384.043187pt;}
.x5_c00118{left:402.476937pt;}
.x8_c00118{left:450.667444pt;}
.xb_c00118{left:461.698886pt;}
.x2_c00118{left:527.724509pt;}
.x6_c00118{left:657.550562pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c1d1798fedc7e3a00207613.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:0.733887;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:0.734863;font-style:normal;font-weight:normal;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_22cf8871d5e18fc5e0ccfabf.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.006348;font-style:normal;font-weight:normal;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_2d7deaa08558454454a2b37f.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:0.713867;font-style:normal;font-weight: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_c00119;src:url('chunks/assets/font_1bb8fc3f5e692c26d8b7b4dc.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:1.171387;font-style:normal;font-weight: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_c00119;src:url('chunks/assets/font_4d486c8ad92d39147c32cc7b.woff2')format("woff");}.ff6_c00119{font-family:ff6_c00119;line-height:1.005371;font-style:normal;font-weight: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_c00119;src:url('chunks/assets/font_aca112a32edcae7a59c852a3.woff2')format("woff");}.ff7_c00119{font-family:ff7_c00119;line-height:0.775879;font-style:normal;font-weight: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_c00119;src:url('chunks/assets/font_98cbc86febdef45e12512055.woff2')format("woff");}.ff8_c00119{font-family:ff8_c00119;line-height:0.737305;font-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_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);}
.v0_c00119{vertical-align:0.000000px;}
.ls2_c00119{letter-spacing:0.000000px;}
.ls1_c00119{letter-spacing:2.769521px;}
.ls0_c00119{letter-spacing:24.988270px;}
.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;}
}
.ws2_c00119{word-spacing:-18.703125px;}
.ws1_c00119{word-spacing:-15.582041px;}
.ws4_c00119{word-spacing:0.000000px;}
.ws0_c00119{word-spacing:36.789742px;}
.ws3_c00119{word-spacing:983.078325px;}
._5_c00119{width:1.856207px;}
._6_c00119{width:3.132543px;}
._3_c00119{width:11.320311px;}
._1_c00119{width:12.809524px;}
._2_c00119{width:13.979538px;}
._4_c00119{width:15.325130px;}
._0_c00119{width:24.924576px;}
._7_c00119{width:985.242958px;}
.fc6_c00119{color:transparent;}
.fc3_c00119{color:rgb(67,91,56);}
.fc2_c00119{color:rgb(93,156,116);}
.fc5_c00119{color:rgb(255,255,255);}
.fc4_c00119{color:rgb(0,0,0);}
.fc1_c00119{color:rgb(128,128,128);}
.fc0_c00119{color:rgb(255,49,49);}
.fs0_c00119{font-size:59.984993px;}
.fs2_c00119{font-size:59.984997px;}
.fs1_c00119{font-size:69.618741px;}
.fs3_c00119{font-size:71.999997px;}
.fs4_c00119{font-size:113.521425px;}
.y0_c00119{bottom:0.000000px;}
.y1_c00119{bottom:0.000008px;}
.y14_c00119{bottom:29.401163px;}
.y4_c00119{bottom:30.348053px;}
.y7_c00119{bottom:130.985851px;}
.y6_c00119{bottom:151.235850px;}
.y5_c00119{bottom:171.485849px;}
.y2_c00119{bottom:276.311941px;}
.y3_c00119{bottom:319.787556px;}
.y12_c00119{bottom:556.406689px;}
.y11_c00119{bottom:576.656688px;}
.y10_c00119{bottom:596.906687px;}
.y13_c00119{bottom:842.055802px;}
.ye_c00119{bottom:948.320118px;}
.yd_c00119{bottom:978.695117px;}
.yc_c00119{bottom:1009.070116px;}
.yb_c00119{bottom:1039.445114px;}
.ya_c00119{bottom:1069.820113px;}
.y9_c00119{bottom:1100.195112px;}
.y8_c00119{bottom:1130.570110px;}
.yf_c00119{bottom:1200.600303px;}
.h3_c00119{height:43.436399px;}
.h7_c00119{height:45.955303px;}
.h4_c00119{height:50.480386px;}
.h5_c00119{height:55.855171px;}
.h6_c00119{height:67.042966px;}
.h8_c00119{height:82.203258px;}
.h2_c00119{height:1304.999946px;}
.h0_c00119{height:1304.999953px;}
.h1_c00119{height:1305.000000px;}
.w2_c00119{width:934.874961px;}
.w0_c00119{width:934.875000px;}
.w1_c00119{width:935.250000px;}
.x0_c00119{left:0.000000px;}
.x6_c00119{left:90.722973px;}
.x5_c00119{left:186.768975px;}
.x8_c00119{left:282.568830px;}
.x1_c00119{left:289.906292px;}
.x2_c00119{left:309.194328px;}
.x3_c00119{left:327.961218px;}
.x4_c00119{left:452.786554px;}
.x7_c00119{left:739.744382px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls2_c00119{letter-spacing:0.000000pt;}
.ls1_c00119{letter-spacing:2.461797pt;}
.ls0_c00119{letter-spacing:22.211796pt;}
.ws2_c00119{word-spacing:-16.625000pt;}
.ws1_c00119{word-spacing:-13.850703pt;}
.ws4_c00119{word-spacing:0.000000pt;}
.ws0_c00119{word-spacing:32.701993pt;}
.ws3_c00119{word-spacing:873.847400pt;}
._5_c00119{width:1.649962pt;}
._6_c00119{width:2.784482pt;}
._3_c00119{width:10.062499pt;}
._1_c00119{width:11.386244pt;}
._2_c00119{width:12.426256pt;}
._4_c00119{width:13.622338pt;}
._0_c00119{width:22.155178pt;}
._7_c00119{width:875.771518pt;}
.fs0_c00119{font-size:53.319994pt;}
.fs2_c00119{font-size:53.319997pt;}
.fs1_c00119{font-size:61.883325pt;}
.fs3_c00119{font-size:63.999997pt;}
.fs4_c00119{font-size:100.907933pt;}
.y0_c00119{bottom:0.000000pt;}
.y1_c00119{bottom:0.000007pt;}
.y14_c00119{bottom:26.134367pt;}
.y4_c00119{bottom:26.976047pt;}
.y7_c00119{bottom:116.431867pt;}
.y6_c00119{bottom:134.431866pt;}
.y5_c00119{bottom:152.431866pt;}
.y2_c00119{bottom:245.610615pt;}
.y3_c00119{bottom:284.255605pt;}
.y12_c00119{bottom:494.583723pt;}
.y11_c00119{bottom:512.583723pt;}
.y10_c00119{bottom:530.583722pt;}
.y13_c00119{bottom:748.494047pt;}
.ye_c00119{bottom:842.951216pt;}
.yd_c00119{bottom:869.951215pt;}
.yc_c00119{bottom:896.951214pt;}
.yb_c00119{bottom:923.951213pt;}
.ya_c00119{bottom:950.951212pt;}
.y9_c00119{bottom:977.951210pt;}
.y8_c00119{bottom:1004.951209pt;}
.yf_c00119{bottom:1067.200269pt;}
.h3_c00119{height:38.610132pt;}
.h7_c00119{height:40.849158pt;}
.h4_c00119{height:44.871454pt;}
.h5_c00119{height:49.649041pt;}
.h6_c00119{height:59.593748pt;}
.h8_c00119{height:73.069563pt;}
.h2_c00119{height:1159.999952pt;}
.h0_c00119{height:1159.999959pt;}
.h1_c00119{height:1160.000000pt;}
.w2_c00119{width:830.999965pt;}
.w0_c00119{width:831.000000pt;}
.w1_c00119{width:831.333333pt;}
.x0_c00119{left:0.000000pt;}
.x6_c00119{left:80.642643pt;}
.x5_c00119{left:166.016867pt;}
.x8_c00119{left:251.172294pt;}
.x1_c00119{left:257.694482pt;}
.x2_c00119{left:274.839403pt;}
.x3_c00119{left:291.521082pt;}
.x4_c00119{left:402.476937pt;}
.x7_c00119{left:657.550562pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fbfbffe4fc88e598b4a8afb.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.005371;font-style:normal;font-weight:normal;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_b0d6f52869731fc4f8a69d2d.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.171387;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_f12b0e5a83d27ec55a2d7641.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:1.006348;font-style:normal;font-weight: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_c00120;src:url('chunks/assets/font_c81bdd2b5f4f4d90f117a14c.woff2')format("woff");}.ff5_c00120{font-family:ff5_c00120;line-height:1.000000;font-style:normal;font-weight: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_c00120;src:url('chunks/assets/font_3081dc79a9a24ebeca514903.woff2')format("woff");}.ff6_c00120{font-family:ff6_c00120;line-height:1.006348;font-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_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);}
.v0_c00120{vertical-align:0.000000px;}
.ls0_c00120{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00120{word-spacing:-31.164081px;}
.ws1_c00120{word-spacing:-15.582041px;}
.ws4_c00120{word-spacing:0.000000px;}
.ws2_c00120{word-spacing:983.078411px;}
.ws0_c00120{word-spacing:1949.802009px;}
._3_c00120{width:1.676653px;}
._4_c00120{width:2.811538px;}
._7_c00120{width:4.150771px;}
._2_c00120{width:6.112104px;}
._13_c00120{width:7.194534px;}
._0_c00120{width:8.546125px;}
._8_c00120{width:9.990471px;}
._d_c00120{width:12.035177px;}
._6_c00120{width:13.769509px;}
._12_c00120{width:16.342572px;}
._b_c00120{width:17.484327px;}
._1_c00120{width:20.538249px;}
._15_c00120{width:25.190170px;}
._c_c00120{width:29.792381px;}
._14_c00120{width:38.699954px;}
._5_c00120{width:40.033355px;}
._11_c00120{width:42.275389px;}
._f_c00120{width:58.724943px;}
._e_c00120{width:62.683591px;}
._16_c00120{width:67.538487px;}
._a_c00120{width:74.420697px;}
._10_c00120{width:139.429680px;}
._9_c00120{width:985.242713px;}
.fc5_c00120{color:transparent;}
.fc4_c00120{color:rgb(8,1,0);}
.fc3_c00120{color:rgb(93,156,116);}
.fc2_c00120{color:rgb(128,128,128);}
.fc1_c00120{color:rgb(0,0,0);}
.fc0_c00120{color:rgb(255,255,255);}
.fs3_c00120{font-size:59.984997px;}
.fs2_c00120{font-size:69.618741px;}
.fs1_c00120{font-size:71.999997px;}
.fs0_c00120{font-size:113.521425px;}
.fs4_c00120{font-size:119.969995px;}
.y0_c00120{bottom:0.000000px;}
.y1_c00120{bottom:0.000008px;}
.y28_c00120{bottom:29.401163px;}
.ye_c00120{bottom:30.348053px;}
.y23_c00120{bottom:71.204325px;}
.y22_c00120{bottom:94.829324px;}
.y27_c00120{bottom:97.090124px;}
.y26_c00120{bottom:117.340123px;}
.y21_c00120{bottom:118.454323px;}
.y25_c00120{bottom:137.590122px;}
.y20_c00120{bottom:142.079322px;}
.y24_c00120{bottom:157.840121px;}
.y1f_c00120{bottom:165.704321px;}
.y1e_c00120{bottom:189.329320px;}
.y1d_c00120{bottom:212.954319px;}
.y1c_c00120{bottom:236.579318px;}
.y1b_c00120{bottom:260.204317px;}
.y1a_c00120{bottom:283.829316px;}
.y19_c00120{bottom:307.454315px;}
.y18_c00120{bottom:331.079314px;}
.y17_c00120{bottom:354.704313px;}
.y16_c00120{bottom:378.329312px;}
.y13_c00120{bottom:422.715402px;}
.y12_c00120{bottom:442.965402px;}
.y11_c00120{bottom:463.215401px;}
.y10_c00120{bottom:483.465400px;}
.yf_c00120{bottom:503.715399px;}
.y15_c00120{bottom:739.639104px;}
.yd_c00120{bottom:812.361631px;}
.yc_c00120{bottom:842.736630px;}
.yb_c00120{bottom:873.111628px;}
.ya_c00120{bottom:903.486627px;}
.y9_c00120{bottom:933.861626px;}
.y8_c00120{bottom:964.236625px;}
.y7_c00120{bottom:994.611623px;}
.y6_c00120{bottom:1024.986622px;}
.y5_c00120{bottom:1055.361621px;}
.y4_c00120{bottom:1085.736620px;}
.y29_c00120{bottom:1125.889362px;}
.y3_c00120{bottom:1177.269544px;}
.y2_c00120{bottom:1177.279321px;}
.y14_c00120{bottom:1200.600033px;}
.h7_c00120{height:45.955303px;}
.h5_c00120{height:50.480386px;}
.h6_c00120{height:55.855171px;}
.h4_c00120{height:67.042966px;}
.h3_c00120{height:86.859410px;}
.h8_c00120{height:91.910607px;}
.h2_c00120{height:1304.999946px;}
.h0_c00120{height:1304.999953px;}
.h1_c00120{height:1305.000000px;}
.w2_c00120{width:934.874961px;}
.w0_c00120{width:934.875000px;}
.w1_c00120{width:935.250000px;}
.x0_c00120{left:0.000000px;}
.x8_c00120{left:87.338362px;}
.x5_c00120{left:89.312814px;}
.x3_c00120{left:90.722973px;}
.xa_c00120{left:93.543307px;}
.x2_c00120{left:108.127173px;}
.x7_c00120{left:283.480894px;}
.x1_c00120{left:361.656986px;}
.x4_c00120{left:452.786554px;}
.x9_c00120{left:567.774426px;}
.x6_c00120{left:739.744382px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws3_c00120{word-spacing:-27.701406pt;}
.ws1_c00120{word-spacing:-13.850703pt;}
.ws4_c00120{word-spacing:0.000000pt;}
.ws2_c00120{word-spacing:873.847477pt;}
.ws0_c00120{word-spacing:1733.157342pt;}
._3_c00120{width:1.490359pt;}
._4_c00120{width:2.499145pt;}
._7_c00120{width:3.689574pt;}
._2_c00120{width:5.432982pt;}
._13_c00120{width:6.395141pt;}
._0_c00120{width:7.596556pt;}
._8_c00120{width:8.880419pt;}
._d_c00120{width:10.697935pt;}
._6_c00120{width:12.239563pt;}
._12_c00120{width:14.526731pt;}
._b_c00120{width:15.541624pt;}
._1_c00120{width:18.256222pt;}
._15_c00120{width:22.391262pt;}
._c_c00120{width:26.482117pt;}
._14_c00120{width:34.399960pt;}
._5_c00120{width:35.585204pt;}
._11_c00120{width:37.578124pt;}
._f_c00120{width:52.199950pt;}
._e_c00120{width:55.718748pt;}
._16_c00120{width:60.034211pt;}
._a_c00120{width:66.151731pt;}
._10_c00120{width:123.937494pt;}
._9_c00120{width:875.771301pt;}
.fs3_c00120{font-size:53.319997pt;}
.fs2_c00120{font-size:61.883325pt;}
.fs1_c00120{font-size:63.999997pt;}
.fs0_c00120{font-size:100.907933pt;}
.fs4_c00120{font-size:106.639996pt;}
.y0_c00120{bottom:0.000000pt;}
.y1_c00120{bottom:0.000007pt;}
.y28_c00120{bottom:26.134367pt;}
.ye_c00120{bottom:26.976047pt;}
.y23_c00120{bottom:63.292733pt;}
.y22_c00120{bottom:84.292732pt;}
.y27_c00120{bottom:86.302332pt;}
.y26_c00120{bottom:104.302332pt;}
.y21_c00120{bottom:105.292732pt;}
.y25_c00120{bottom:122.302331pt;}
.y20_c00120{bottom:126.292731pt;}
.y24_c00120{bottom:140.302330pt;}
.y1f_c00120{bottom:147.292730pt;}
.y1e_c00120{bottom:168.292729pt;}
.y1d_c00120{bottom:189.292728pt;}
.y1c_c00120{bottom:210.292727pt;}
.y1b_c00120{bottom:231.292726pt;}
.y1a_c00120{bottom:252.292725pt;}
.y19_c00120{bottom:273.292725pt;}
.y18_c00120{bottom:294.292724pt;}
.y17_c00120{bottom:315.292723pt;}
.y16_c00120{bottom:336.292722pt;}
.y13_c00120{bottom:375.747024pt;}
.y12_c00120{bottom:393.747024pt;}
.y11_c00120{bottom:411.747023pt;}
.y10_c00120{bottom:429.747022pt;}
.yf_c00120{bottom:447.747021pt;}
.y15_c00120{bottom:657.456982pt;}
.yd_c00120{bottom:722.099228pt;}
.yc_c00120{bottom:749.099226pt;}
.yb_c00120{bottom:776.099225pt;}
.ya_c00120{bottom:803.099224pt;}
.y9_c00120{bottom:830.099223pt;}
.y8_c00120{bottom:857.099222pt;}
.y7_c00120{bottom:884.099221pt;}
.y6_c00120{bottom:911.099220pt;}
.y5_c00120{bottom:938.099219pt;}
.y4_c00120{bottom:965.099217pt;}
.y29_c00120{bottom:1000.790544pt;}
.y3_c00120{bottom:1046.461817pt;}
.y2_c00120{bottom:1046.470508pt;}
.y14_c00120{bottom:1067.200029pt;}
.h7_c00120{height:40.849158pt;}
.h5_c00120{height:44.871454pt;}
.h6_c00120{height:49.649041pt;}
.h4_c00120{height:59.593748pt;}
.h3_c00120{height:77.208365pt;}
.h8_c00120{height:81.698317pt;}
.h2_c00120{height:1159.999952pt;}
.h0_c00120{height:1159.999959pt;}
.h1_c00120{height:1160.000000pt;}
.w2_c00120{width:830.999965pt;}
.w0_c00120{width:831.000000pt;}
.w1_c00120{width:831.333333pt;}
.x0_c00120{left:0.000000pt;}
.x8_c00120{left:77.634099pt;}
.x5_c00120{left:79.389168pt;}
.x3_c00120{left:80.642643pt;}
.xa_c00120{left:83.149606pt;}
.x2_c00120{left:96.113042pt;}
.x7_c00120{left:251.983017pt;}
.x1_c00120{left:321.472876pt;}
.x4_c00120{left:402.476937pt;}
.x9_c00120{left:504.688379pt;}
.x6_c00120{left:657.550562pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ec3b20cfb6cb2a833632621.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.005371;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00121;src:url('chunks/assets/font_b8af256e8009a7e478b79f4d.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00121;src:url('chunks/assets/font_40ebf79f1cf6e6ce6f565076.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.006348;font-style:normal;font-weight: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_c00121;src:url('chunks/assets/font_f09e976e0823950b2170b4c1.woff2')format("woff");}.ff5_c00121{font-family:ff5_c00121;line-height:1.171387;font-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_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);}
.v0_c00121{vertical-align:0.000000px;}
.ls0_c00121{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00121{word-spacing:-59.984998px;}
.ws1_c00121{word-spacing:-0.059985px;}
.ws2_c00121{word-spacing:0.000000px;}
._7_c00121{width:1.392172px;}
._5_c00121{width:3.986115px;}
._2_c00121{width:5.324522px;}
._3_c00121{width:14.076505px;}
._6_c00121{width:16.133970px;}
._4_c00121{width:17.139976px;}
._0_c00121{width:34.045257px;}
._1_c00121{width:43.391598px;}
.fc4_c00121{color:transparent;}
.fc3_c00121{color:rgb(93,156,116);}
.fc2_c00121{color:rgb(0,0,0);}
.fc1_c00121{color:rgb(128,128,128);}
.fc0_c00121{color:rgb(255,255,255);}
.fs4_c00121{font-size:59.984997px;}
.fs1_c00121{font-size:69.618741px;}
.fs2_c00121{font-size:71.999997px;}
.fs0_c00121{font-size:113.521425px;}
.fs3_c00121{font-size:119.969995px;}
.y0_c00121{bottom:0.000000px;}
.y1_c00121{bottom:0.000008px;}
.y10_c00121{bottom:29.400983px;}
.y3_c00121{bottom:30.347873px;}
.ye_c00121{bottom:213.259383px;}
.yd_c00121{bottom:243.634382px;}
.yc_c00121{bottom:274.009381px;}
.yb_c00121{bottom:304.384379px;}
.ya_c00121{bottom:334.759378px;}
.y9_c00121{bottom:365.134377px;}
.y8_c00121{bottom:395.509376px;}
.y7_c00121{bottom:425.884374px;}
.y6_c00121{bottom:456.259373px;}
.y5_c00121{bottom:486.634372px;}
.y4_c00121{bottom:517.009370px;}
.yf_c00121{bottom:556.966921px;}
.y2_c00121{bottom:685.350516px;}
.y11_c00121{bottom:1253.098336px;}
.h4_c00121{height:50.480386px;}
.h7_c00121{height:55.855171px;}
.h5_c00121{height:67.042966px;}
.h3_c00121{height:86.859410px;}
.h6_c00121{height:91.910607px;}
.h2_c00121{height:1304.999946px;}
.h0_c00121{height:1304.999953px;}
.h1_c00121{height:1305.000000px;}
.w2_c00121{width:934.874961px;}
.w0_c00121{width:934.875000px;}
.w1_c00121{width:935.250000px;}
.x0_c00121{left:0.000000px;}
.x5_c00121{left:87.902647px;}
.x3_c00121{left:89.312814px;}
.x4_c00121{left:90.722973px;}
.x1_c00121{left:108.127173px;}
.x2_c00121{left:452.786554px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls0_c00121{letter-spacing:0.000000pt;}
.ws0_c00121{word-spacing:-53.319998pt;}
.ws1_c00121{word-spacing:-0.053320pt;}
.ws2_c00121{word-spacing:0.000000pt;}
._7_c00121{width:1.237486pt;}
._5_c00121{width:3.543213pt;}
._2_c00121{width:4.732909pt;}
._3_c00121{width:12.512449pt;}
._6_c00121{width:14.341307pt;}
._4_c00121{width:15.235534pt;}
._0_c00121{width:30.262450pt;}
._1_c00121{width:38.570309pt;}
.fs4_c00121{font-size:53.319997pt;}
.fs1_c00121{font-size:61.883325pt;}
.fs2_c00121{font-size:63.999997pt;}
.fs0_c00121{font-size:100.907933pt;}
.fs3_c00121{font-size:106.639996pt;}
.y0_c00121{bottom:0.000000pt;}
.y1_c00121{bottom:0.000007pt;}
.y10_c00121{bottom:26.134207pt;}
.y3_c00121{bottom:26.975887pt;}
.ye_c00121{bottom:189.563896pt;}
.yd_c00121{bottom:216.563895pt;}
.yc_c00121{bottom:243.563894pt;}
.yb_c00121{bottom:270.563893pt;}
.ya_c00121{bottom:297.563892pt;}
.y9_c00121{bottom:324.563890pt;}
.y8_c00121{bottom:351.563889pt;}
.y7_c00121{bottom:378.563888pt;}
.y6_c00121{bottom:405.563887pt;}
.y5_c00121{bottom:432.563886pt;}
.y4_c00121{bottom:459.563885pt;}
.yf_c00121{bottom:495.081707pt;}
.y2_c00121{bottom:609.200459pt;}
.y11_c00121{bottom:1113.865188pt;}
.h4_c00121{height:44.871454pt;}
.h7_c00121{height:49.649041pt;}
.h5_c00121{height:59.593748pt;}
.h3_c00121{height:77.208365pt;}
.h6_c00121{height:81.698317pt;}
.h2_c00121{height:1159.999952pt;}
.h0_c00121{height:1159.999959pt;}
.h1_c00121{height:1160.000000pt;}
.w2_c00121{width:830.999965pt;}
.w0_c00121{width:831.000000pt;}
.w1_c00121{width:831.333333pt;}
.x0_c00121{left:0.000000pt;}
.x5_c00121{left:78.135686pt;}
.x3_c00121{left:79.389168pt;}
.x4_c00121{left:80.642643pt;}
.x1_c00121{left:96.113042pt;}
.x2_c00121{left:402.476937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:0.734863;font-style:normal;font-weight:normal;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_5436579ee63939495c81d0aa.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.171387;font-style:normal;font-weight:normal;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_4ff51702964c8eb45750e98b.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_ca1e7783a5cfcf9c253af8e4.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:1.006348;font-style:normal;font-weight: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_c00122;src:url('chunks/assets/font_f641a4174a5d3125b592fbc3.woff2')format("woff");}.ff5_c00122{font-family:ff5_c00122;line-height:1.006348;font-style:normal;font-weight: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_c00122;src:url('chunks/assets/font_8f3907d6207b7b8079159b32.woff2')format("woff");}.ff6_c00122{font-family:ff6_c00122;line-height:1.000000;font-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_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);}
.v0_c00122{vertical-align:0.000000px;}
.v1_c00122{vertical-align:7.828560px;}
.ls2_c00122{letter-spacing:0.000000px;}
.ls1_c00122{letter-spacing:19.292958px;}
.ls0_c00122{letter-spacing:945.074279px;}
.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;}
}
.ws1_c00122{word-spacing:-15.582041px;}
.ws2_c00122{word-spacing:0.000000px;}
.ws0_c00122{word-spacing:939.636608px;}
._6_c00122{width:1.005938px;}
._9_c00122{width:2.039062px;}
._5_c00122{width:3.325767px;}
._4_c00122{width:5.162061px;}
._8_c00122{width:6.354488px;}
._d_c00122{width:7.983250px;}
._2_c00122{width:9.862493px;}
._c_c00122{width:18.642267px;}
._3_c00122{width:19.742296px;}
._1_c00122{width:20.820258px;}
._0_c00122{width:40.696859px;}
._7_c00122{width:42.945279px;}
._a_c00122{width:49.620879px;}
._b_c00122{width:66.632787px;}
.fc4_c00122{color:transparent;}
.fc3_c00122{color:rgb(93,156,116);}
.fc2_c00122{color:rgb(255,255,255);}
.fc1_c00122{color:rgb(0,0,0);}
.fc0_c00122{color:rgb(128,128,128);}
.fs3_c00122{font-size:59.984997px;}
.fs0_c00122{font-size:69.618741px;}
.fs1_c00122{font-size:71.999997px;}
.fs2_c00122{font-size:101.195376px;}
.fs4_c00122{font-size:119.969995px;}
.y0_c00122{bottom:0.000000px;}
.y1_c00122{bottom:0.000008px;}
.y3_c00122{bottom:29.401163px;}
.y2_c00122{bottom:30.348053px;}
.y19_c00122{bottom:83.007069px;}
.y18_c00122{bottom:103.257068px;}
.y17_c00122{bottom:123.507067px;}
.y16_c00122{bottom:143.757066px;}
.y15_c00122{bottom:164.007065px;}
.y14_c00122{bottom:184.257064px;}
.y5_c00122{bottom:418.692627px;}
.y4_c00122{bottom:667.726144px;}
.y11_c00122{bottom:740.536493px;}
.y10_c00122{bottom:770.911492px;}
.yf_c00122{bottom:801.286491px;}
.ye_c00122{bottom:831.661489px;}
.yd_c00122{bottom:862.036488px;}
.yc_c00122{bottom:892.411487px;}
.yb_c00122{bottom:922.786486px;}
.ya_c00122{bottom:953.161484px;}
.y9_c00122{bottom:983.536483px;}
.y8_c00122{bottom:1013.911482px;}
.y7_c00122{bottom:1044.286480px;}
.y6_c00122{bottom:1074.661479px;}
.y13_c00122{bottom:1122.736241px;}
.y12_c00122{bottom:1200.600126px;}
.h7_c00122{height:45.955303px;}
.h3_c00122{height:50.480386px;}
.h9_c00122{height:55.855171px;}
.h4_c00122{height:67.042966px;}
.h5_c00122{height:77.428298px;}
.h6_c00122{height:85.256858px;}
.h8_c00122{height:91.910607px;}
.h2_c00122{height:1304.999946px;}
.h0_c00122{height:1304.999953px;}
.h1_c00122{height:1305.000000px;}
.w2_c00122{width:934.874961px;}
.w0_c00122{width:934.875000px;}
.w1_c00122{width:935.250000px;}
.x0_c00122{left:0.000000px;}
.x3_c00122{left:89.864283px;}
.x5_c00122{left:217.606325px;}
.x2_c00122{left:235.245356px;}
.x1_c00122{left:452.786554px;}
.x4_c00122{left:561.441512px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.v1_c00122{vertical-align:6.958720pt;}
.ls2_c00122{letter-spacing:0.000000pt;}
.ls1_c00122{letter-spacing:17.149296pt;}
.ls0_c00122{letter-spacing:840.066026pt;}
.ws1_c00122{word-spacing:-13.850703pt;}
.ws2_c00122{word-spacing:0.000000pt;}
.ws0_c00122{word-spacing:835.232541pt;}
._6_c00122{width:0.894167pt;}
._9_c00122{width:1.812499pt;}
._5_c00122{width:2.956238pt;}
._4_c00122{width:4.588499pt;}
._8_c00122{width:5.648434pt;}
._d_c00122{width:7.096222pt;}
._2_c00122{width:8.766661pt;}
._c_c00122{width:16.570904pt;}
._3_c00122{width:17.548708pt;}
._1_c00122{width:18.506896pt;}
._0_c00122{width:36.174986pt;}
._7_c00122{width:38.173581pt;}
._a_c00122{width:44.107448pt;}
._b_c00122{width:59.229144pt;}
.fs3_c00122{font-size:53.319997pt;}
.fs0_c00122{font-size:61.883325pt;}
.fs1_c00122{font-size:63.999997pt;}
.fs2_c00122{font-size:89.951446pt;}
.fs4_c00122{font-size:106.639996pt;}
.y0_c00122{bottom:0.000000pt;}
.y1_c00122{bottom:0.000007pt;}
.y3_c00122{bottom:26.134367pt;}
.y2_c00122{bottom:26.976047pt;}
.y19_c00122{bottom:73.784061pt;}
.y18_c00122{bottom:91.784060pt;}
.y17_c00122{bottom:109.784059pt;}
.y16_c00122{bottom:127.784059pt;}
.y15_c00122{bottom:145.784058pt;}
.y14_c00122{bottom:163.784057pt;}
.y5_c00122{bottom:372.171224pt;}
.y4_c00122{bottom:593.534351pt;}
.y11_c00122{bottom:658.254661pt;}
.y10_c00122{bottom:685.254659pt;}
.yf_c00122{bottom:712.254658pt;}
.ye_c00122{bottom:739.254657pt;}
.yd_c00122{bottom:766.254656pt;}
.yc_c00122{bottom:793.254655pt;}
.yb_c00122{bottom:820.254654pt;}
.ya_c00122{bottom:847.254653pt;}
.y9_c00122{bottom:874.254652pt;}
.y8_c00122{bottom:901.254650pt;}
.y7_c00122{bottom:928.254649pt;}
.y6_c00122{bottom:955.254648pt;}
.y13_c00122{bottom:997.987770pt;}
.y12_c00122{bottom:1067.200112pt;}
.h7_c00122{height:40.849158pt;}
.h3_c00122{height:44.871454pt;}
.h9_c00122{height:49.649041pt;}
.h4_c00122{height:59.593748pt;}
.h5_c00122{height:68.825154pt;}
.h6_c00122{height:75.783874pt;}
.h8_c00122{height:81.698317pt;}
.h2_c00122{height:1159.999952pt;}
.h0_c00122{height:1159.999959pt;}
.h1_c00122{height:1160.000000pt;}
.w2_c00122{width:830.999965pt;}
.w0_c00122{width:831.000000pt;}
.w1_c00122{width:831.333333pt;}
.x0_c00122{left:0.000000pt;}
.x3_c00122{left:79.879363pt;}
.x5_c00122{left:193.427845pt;}
.x2_c00122{left:209.106983pt;}
.x1_c00122{left:402.476937pt;}
.x4_c00122{left:499.059121pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:0.734863;font-style:normal;font-weight:normal;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_975623c905a4026b2e714e04.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.171387;font-style:normal;font-weight:normal;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_4eec204ef399cb8c57e1aeaf.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00123;src:url('chunks/assets/font_e8972599c860fe4001afa4e8.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;line-height:1.171387;font-style:normal;font-weight: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_c00123;src:url('chunks/assets/font_6d19523b881d47759e1b7f75.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:0.775879;font-style:normal;font-weight: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_c00123;src:url('chunks/assets/font_41fd486bbc24473c2275f285.woff2')format("woff");}.ff6_c00123{font-family:ff6_c00123;line-height:1.000000;font-style:normal;font-weight: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_c00123;src:url('chunks/assets/font_c3761669434d2e82ea192267.woff2')format("woff");}.ff7_c00123{font-family:ff7_c00123;line-height:1.006348;font-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_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;}
.ls0_c00123{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00123{word-spacing:-0.072000px;}
.ws1_c00123{word-spacing:0.000000px;}
._1f_c00123{margin-left:-2454.498501px;}
._9_c00123{width:1.255531px;}
._1b_c00123{width:3.214257px;}
._3_c00123{width:4.828079px;}
._a_c00123{width:7.874999px;}
._e_c00123{width:8.953031px;}
._1c_c00123{width:10.064164px;}
._0_c00123{width:11.074218px;}
._14_c00123{width:12.691407px;}
._2_c00123{width:13.833983px;}
._17_c00123{width:14.870947px;}
._1d_c00123{width:15.881167px;}
._5_c00123{width:17.136061px;}
._20_c00123{width:19.160206px;}
._12_c00123{width:20.232422px;}
._13_c00123{width:22.957030px;}
._8_c00123{width:24.855467px;}
._10_c00123{width:26.268722px;}
._11_c00123{width:28.124998px;}
._18_c00123{width:29.601563px;}
._16_c00123{width:32.167969px;}
._4_c00123{width:33.482756px;}
._d_c00123{width:34.544581px;}
._1e_c00123{width:35.707007px;}
._15_c00123{width:36.966792px;}
._1a_c00123{width:51.351537px;}
._f_c00123{width:62.882788px;}
._b_c00123{width:66.603511px;}
._19_c00123{width:71.029628px;}
._7_c00123{width:74.249996px;}
._6_c00123{width:106.757784px;}
._1_c00123{width:164.765596px;}
._c_c00123{width:196.136710px;}
.fc5_c00123{color:transparent;}
.fc4_c00123{color:rgb(93,156,116);}
.fc3_c00123{color:rgb(67,91,56);}
.fc2_c00123{color:rgb(255,255,255);}
.fc1_c00123{color:rgb(0,0,0);}
.fc0_c00123{color:rgb(128,128,128);}
.fs7_c00123{font-size:45.000120px;}
.fs5_c00123{font-size:59.984997px;}
.fs0_c00123{font-size:69.618741px;}
.fs1_c00123{font-size:71.999997px;}
.fs3_c00123{font-size:94.513631px;}
.fs2_c00123{font-size:113.521425px;}
.fs6_c00123{font-size:119.969995px;}
.fs4_c00123{font-size:284.421830px;}
.y0_c00123{bottom:0.000000px;}
.y1_c00123{bottom:0.000008px;}
.y3_c00123{bottom:29.401163px;}
.y2_c00123{bottom:30.348053px;}
.y30_c00123{bottom:131.667871px;}
.y2f_c00123{bottom:162.042869px;}
.y36_c00123{bottom:183.881029px;}
.y2e_c00123{bottom:192.417868px;}
.y35_c00123{bottom:198.881069px;}
.y34_c00123{bottom:213.881109px;}
.y2d_c00123{bottom:222.792867px;}
.y24_c00123{bottom:249.385068px;}
.y2c_c00123{bottom:253.167865px;}
.y23_c00123{bottom:279.760067px;}
.y2b_c00123{bottom:283.542864px;}
.y22_c00123{bottom:310.135066px;}
.y2a_c00123{bottom:313.917863px;}
.y21_c00123{bottom:340.510065px;}
.y29_c00123{bottom:344.292862px;}
.y20_c00123{bottom:370.885063px;}
.y28_c00123{bottom:374.667860px;}
.y1f_c00123{bottom:401.260062px;}
.y27_c00123{bottom:405.042859px;}
.y1e_c00123{bottom:431.635061px;}
.y26_c00123{bottom:435.417858px;}
.y1d_c00123{bottom:462.010060px;}
.y25_c00123{bottom:465.792857px;}
.y1c_c00123{bottom:492.385058px;}
.y31_c00123{bottom:504.401451px;}
.y1b_c00123{bottom:522.760057px;}
.y10_c00123{bottom:553.135056px;}
.yf_c00123{bottom:583.510054px;}
.ye_c00123{bottom:613.885053px;}
.yd_c00123{bottom:644.260052px;}
.yc_c00123{bottom:674.635051px;}
.y4_c00123{bottom:693.854637px;}
.yb_c00123{bottom:705.010049px;}
.ya_c00123{bottom:735.385048px;}
.y9_c00123{bottom:765.760047px;}
.y8_c00123{bottom:796.135046px;}
.y7_c00123{bottom:826.510044px;}
.y6_c00123{bottom:856.885043px;}
.y5_c00123{bottom:887.260042px;}
.y32_c00123{bottom:922.540742px;}
.y33_c00123{bottom:988.817473px;}
.y17_c00123{bottom:989.960582px;}
.y16_c00123{bottom:1012.460581px;}
.y19_c00123{bottom:1028.357380px;}
.y15_c00123{bottom:1034.960580px;}
.y14_c00123{bottom:1057.460579px;}
.y13_c00123{bottom:1079.960578px;}
.y12_c00123{bottom:1102.460577px;}
.y18_c00123{bottom:1104.155986px;}
.y11_c00123{bottom:1124.960576px;}
.y1a_c00123{bottom:1200.600303px;}
.ha_c00123{height:41.901967px;}
.h8_c00123{height:45.955303px;}
.h3_c00123{height:50.480386px;}
.h4_c00123{height:67.042966px;}
.h5_c00123{height:86.859410px;}
.h6_c00123{height:88.006589px;}
.h9_c00123{height:91.910607px;}
.h7_c00123{height:217.621586px;}
.h2_c00123{height:1304.999946px;}
.h0_c00123{height:1304.999953px;}
.h1_c00123{height:1305.000000px;}
.w2_c00123{width:934.874961px;}
.w0_c00123{width:934.875000px;}
.w1_c00123{width:935.250000px;}
.x0_c00123{left:0.000000px;}
.x2_c00123{left:87.902647px;}
.x3_c00123{left:101.555909px;}
.x1_c00123{left:452.786554px;}
.x7_c00123{left:482.646468px;}
.x5_c00123{left:490.783163px;}
.x4_c00123{left:497.192674px;}
.x6_c00123{left:633.300398px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ws0_c00123{word-spacing:-0.064000pt;}
.ws1_c00123{word-spacing:0.000000pt;}
._1f_c00123{margin-left:-2181.776445pt;}
._9_c00123{width:1.116028pt;}
._1b_c00123{width:2.857117pt;}
._3_c00123{width:4.291626pt;}
._a_c00123{width:6.999999pt;}
._e_c00123{width:7.958250pt;}
._1c_c00123{width:8.945923pt;}
._0_c00123{width:9.843750pt;}
._14_c00123{width:11.281250pt;}
._2_c00123{width:12.296874pt;}
._17_c00123{width:13.218620pt;}
._1d_c00123{width:14.116593pt;}
._5_c00123{width:15.232054pt;}
._20_c00123{width:17.031294pt;}
._12_c00123{width:17.984375pt;}
._13_c00123{width:20.406249pt;}
._8_c00123{width:22.093749pt;}
._10_c00123{width:23.349975pt;}
._11_c00123{width:24.999998pt;}
._18_c00123{width:26.312501pt;}
._16_c00123{width:28.593750pt;}
._4_c00123{width:29.762450pt;}
._d_c00123{width:30.706294pt;}
._1e_c00123{width:31.739561pt;}
._15_c00123{width:32.859371pt;}
._1a_c00123{width:45.645811pt;}
._f_c00123{width:55.895812pt;}
._b_c00123{width:59.203121pt;}
._19_c00123{width:63.137447pt;}
._7_c00123{width:65.999996pt;}
._6_c00123{width:94.895808pt;}
._1_c00123{width:146.458307pt;}
._c_c00123{width:174.343742pt;}
.fs7_c00123{font-size:40.000106pt;}
.fs5_c00123{font-size:53.319997pt;}
.fs0_c00123{font-size:61.883325pt;}
.fs1_c00123{font-size:63.999997pt;}
.fs3_c00123{font-size:84.012117pt;}
.fs2_c00123{font-size:100.907933pt;}
.fs6_c00123{font-size:106.639996pt;}
.fs4_c00123{font-size:252.819405pt;}
.y0_c00123{bottom:0.000000pt;}
.y1_c00123{bottom:0.000007pt;}
.y3_c00123{bottom:26.134367pt;}
.y2_c00123{bottom:26.976047pt;}
.y30_c00123{bottom:117.038107pt;}
.y2f_c00123{bottom:144.038106pt;}
.y36_c00123{bottom:163.449803pt;}
.y2e_c00123{bottom:171.038105pt;}
.y35_c00123{bottom:176.783172pt;}
.y34_c00123{bottom:190.116541pt;}
.y2d_c00123{bottom:198.038104pt;}
.y24_c00123{bottom:221.675616pt;}
.y2c_c00123{bottom:225.038103pt;}
.y23_c00123{bottom:248.675615pt;}
.y2b_c00123{bottom:252.038101pt;}
.y22_c00123{bottom:275.675614pt;}
.y2a_c00123{bottom:279.038100pt;}
.y21_c00123{bottom:302.675613pt;}
.y29_c00123{bottom:306.038099pt;}
.y20_c00123{bottom:329.675612pt;}
.y28_c00123{bottom:333.038098pt;}
.y1f_c00123{bottom:356.675611pt;}
.y27_c00123{bottom:360.038097pt;}
.y1e_c00123{bottom:383.675610pt;}
.y26_c00123{bottom:387.038096pt;}
.y1d_c00123{bottom:410.675608pt;}
.y25_c00123{bottom:414.038095pt;}
.y1c_c00123{bottom:437.675607pt;}
.y31_c00123{bottom:448.356845pt;}
.y1b_c00123{bottom:464.675606pt;}
.y10_c00123{bottom:491.675605pt;}
.yf_c00123{bottom:518.675604pt;}
.ye_c00123{bottom:545.675603pt;}
.yd_c00123{bottom:572.675602pt;}
.yc_c00123{bottom:599.675601pt;}
.y4_c00123{bottom:616.759678pt;}
.yb_c00123{bottom:626.675599pt;}
.ya_c00123{bottom:653.675598pt;}
.y9_c00123{bottom:680.675597pt;}
.y8_c00123{bottom:707.675596pt;}
.y7_c00123{bottom:734.675595pt;}
.y6_c00123{bottom:761.675594pt;}
.y5_c00123{bottom:788.675593pt;}
.y32_c00123{bottom:820.036215pt;}
.y33_c00123{bottom:878.948865pt;}
.y17_c00123{bottom:879.964962pt;}
.y16_c00123{bottom:899.964961pt;}
.y19_c00123{bottom:914.095449pt;}
.y15_c00123{bottom:919.964960pt;}
.y14_c00123{bottom:939.964959pt;}
.y13_c00123{bottom:959.964958pt;}
.y12_c00123{bottom:979.964958pt;}
.y18_c00123{bottom:981.471987pt;}
.y11_c00123{bottom:999.964957pt;}
.y1a_c00123{bottom:1067.200269pt;}
.ha_c00123{height:37.246193pt;}
.h8_c00123{height:40.849158pt;}
.h3_c00123{height:44.871454pt;}
.h4_c00123{height:59.593748pt;}
.h5_c00123{height:77.208365pt;}
.h6_c00123{height:78.228079pt;}
.h9_c00123{height:81.698317pt;}
.h7_c00123{height:193.441410pt;}
.h2_c00123{height:1159.999952pt;}
.h0_c00123{height:1159.999959pt;}
.h1_c00123{height:1160.000000pt;}
.w2_c00123{width:830.999965pt;}
.w0_c00123{width:831.000000pt;}
.w1_c00123{width:831.333333pt;}
.x0_c00123{left:0.000000pt;}
.x2_c00123{left:78.135686pt;}
.x3_c00123{left:90.271919pt;}
.x1_c00123{left:402.476937pt;}
.x7_c00123{left:429.019083pt;}
.x5_c00123{left:436.251700pt;}
.x4_c00123{left:441.949044pt;}
.x6_c00123{left:562.933687pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:0.734863;font-style:normal;font-weight:normal;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_9824808a22e9281b866a9749.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.171387;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:0.734863;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:0.769531;font-style:normal;font-weight: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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:0.743000;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff6_c00124{font-family:ff6_c00124;line-height:1.006348;font-style:normal;font-weight: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_c00124;src:url('chunks/assets/font_ce52a03e090016f6fe8a8c12.woff2')format("woff");}.ff7_c00124{font-family:ff7_c00124;line-height:1.005371;font-style:normal;font-weight: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_c00124;src:url('chunks/assets/font_e8d73134ec45daedf0fa85d2.woff2')format("woff");}.ff8_c00124{font-family:ff8_c00124;line-height:1.171387;font-style:normal;font-weight: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_c00124;src:url('chunks/assets/font_149ea93c28eec7fd7b67d44d.woff2')format("woff");}.ff9_c00124{font-family:ff9_c00124;line-height:1.005371;font-style:normal;font-weight: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_c00124;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ffa_c00124{font-family:ffa_c00124;line-height:0.894000;font-style:normal;font-weight: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_c00124;src:url('chunks/assets/font_4fb6c80ed135b7d7a484078a.woff2')format("woff");}.ffb_c00124{font-family:ffb_c00124;line-height:0.940000;font-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_c00124{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00124{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00124{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00124{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00124{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00124{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00124{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00124{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00124{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00124{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00124{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00124{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00124{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00124{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00124{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00124{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00124{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00124{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00124{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00124{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00124{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00124{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00124{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00124{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00124{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00124{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00124{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00124{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00124{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00124{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00124{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00124{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00124{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00124{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00124{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00124{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00124{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00124{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00124{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00124{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00124{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00124{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00124{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00124{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00124{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00124{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00124{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00124{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00124{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00124{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00124{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00124{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00124{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00124{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00124{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00124{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00124{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00124{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00124{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00124{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00124{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00124{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00124{vertical-align:0.000000px;}
.v1_c00124{vertical-align:1.279728px;}
.ls0_c00124{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00124{word-spacing:-16.915769px;}
.ws2_c00124{word-spacing:-15.582041px;}
.ws0_c00124{word-spacing:-15.171263px;}
.ws4_c00124{word-spacing:0.000000px;}
.ws1_c00124{word-spacing:288.058683px;}
._0_c00124{margin-left:-464.073244px;}
._2_c00124{width:1.495718px;}
._4_c00124{width:4.049970px;}
._6_c00124{width:5.674995px;}
._3_c00124{width:6.708937px;}
._5_c00124{width:13.148435px;}
._1_c00124{width:14.489728px;}
.fc5_c00124{color:transparent;}
.fc4_c00124{color:rgb(67,91,56);}
.fc2_c00124{color:rgb(9,71,81);}
.fc3_c00124{color:rgb(255,255,255);}
.fc1_c00124{color:rgb(0,0,0);}
.fc0_c00124{color:rgb(128,128,128);}
.fsc_c00124{font-size:39.757786px;}
.fs9_c00124{font-size:41.999830px;}
.fsb_c00124{font-size:42.000118px;}
.fs6_c00124{font-size:47.368230px;}
.fs3_c00124{font-size:47.368231px;}
.fs7_c00124{font-size:47.368232px;}
.fs4_c00124{font-size:47.368233px;}
.fs5_c00124{font-size:47.368235px;}
.fs2_c00124{font-size:51.661596px;}
.fsf_c00124{font-size:56.421836px;}
.fse_c00124{font-size:59.984997px;}
.fs0_c00124{font-size:69.618741px;}
.fs1_c00124{font-size:71.999997px;}
.fs8_c00124{font-size:77.011488px;}
.fsa_c00124{font-size:89.985250px;}
.fsd_c00124{font-size:95.984996px;}
.y0_c00124{bottom:0.000000px;}
.y1_c00124{bottom:0.000008px;}
.y3_c00124{bottom:29.401163px;}
.y2_c00124{bottom:30.348053px;}
.y4f_c00124{bottom:91.149620px;}
.y4e_c00124{bottom:121.524619px;}
.y4d_c00124{bottom:151.899618px;}
.y4c_c00124{bottom:182.274616px;}
.y4b_c00124{bottom:212.649615px;}
.y4a_c00124{bottom:243.024614px;}
.y49_c00124{bottom:273.399613px;}
.y48_c00124{bottom:303.774611px;}
.y50_c00124{bottom:340.936870px;}
.y4_c00124{bottom:401.525233px;}
.y30_c00124{bottom:486.888550px;}
.y12_c00124{bottom:493.328193px;}
.y26_c00124{bottom:493.343399px;}
.y11_c00124{bottom:493.853349px;}
.y27_c00124{bottom:493.873061px;}
.y3e_c00124{bottom:493.958987px;}
.y25_c00124{bottom:494.588444px;}
.y3f_c00124{bottom:494.792564px;}
.y3d_c00124{bottom:494.812470px;}
.y10_c00124{bottom:494.919675px;}
.y24_c00124{bottom:495.839509px;}
.y3c_c00124{bottom:495.847333px;}
.yf_c00124{bottom:495.993006px;}
.y28_c00124{bottom:496.289992px;}
.y13_c00124{bottom:496.353113px;}
.y40_c00124{bottom:496.973447px;}
.y23_c00124{bottom:497.484020px;}
.ye_c00124{bottom:497.644926px;}
.y3b_c00124{bottom:498.050705px;}
.y41_c00124{bottom:498.365140px;}
.y22_c00124{bottom:499.172711px;}
.yd_c00124{bottom:499.338107px;}
.y42_c00124{bottom:500.063439px;}
.y14_c00124{bottom:500.630691px;}
.y21_c00124{bottom:501.037949px;}
.yc_c00124{bottom:501.208280px;}
.y29_c00124{bottom:501.390523px;}
.y3a_c00124{bottom:501.842247px;}
.y43_c00124{bottom:502.505484px;}
.y15_c00124{bottom:503.149881px;}
.y44_c00124{bottom:504.764265px;}
.y2a_c00124{bottom:505.018723px;}
.y20_c00124{bottom:505.692124px;}
.yb_c00124{bottom:505.872210px;}
.y39_c00124{bottom:507.310818px;}
.y45_c00124{bottom:508.033427px;}
.y16_c00124{bottom:509.102244px;}
.y2b_c00124{bottom:510.653024px;}
.y38_c00124{bottom:511.777229px;}
.y1f_c00124{bottom:512.093421px;}
.ya_c00124{bottom:512.281650px;}
.y17_c00124{bottom:513.850725px;}
.y46_c00124{bottom:516.430791px;}
.y2c_c00124{bottom:517.310602px;}
.y37_c00124{bottom:518.202280px;}
.y1e_c00124{bottom:519.400384px;}
.y9_c00124{bottom:519.490765px;}
.y36_c00124{bottom:522.772118px;}
.y8_c00124{bottom:522.949612px;}
.y47_c00124{bottom:524.479945px;}
.y18_c00124{bottom:525.634963px;}
.y1d_c00124{bottom:526.562252px;}
.y7_c00124{bottom:528.960471px;}
.y2d_c00124{bottom:529.273050px;}
.y35_c00124{bottom:530.544173px;}
.y1c_c00124{bottom:531.331047px;}
.y2f_c00124{bottom:533.268367px;}
.y33_c00124{bottom:533.961655px;}
.y34_c00124{bottom:534.438127px;}
.y6_c00124{bottom:536.219702px;}
.y1b_c00124{bottom:537.503874px;}
.y19_c00124{bottom:537.875309px;}
.y2e_c00124{bottom:538.238502px;}
.y31_c00124{bottom:539.975192px;}
.y1a_c00124{bottom:544.566810px;}
.y5_c00124{bottom:545.753758px;}
.y32_c00124{bottom:577.436970px;}
.y56_c00124{bottom:638.072541px;}
.y58_c00124{bottom:968.511758px;}
.y57_c00124{bottom:1025.000528px;}
.y54_c00124{bottom:1128.788039px;}
.y52_c00124{bottom:1133.738410px;}
.y51_c00124{bottom:1147.738449px;}
.y55_c00124{bottom:1155.640733px;}
.y53_c00124{bottom:1171.082693px;}
.hb_c00124{height:35.988753px;}
.hc_c00124{height:35.988755px;}
.hd_c00124{height:35.988756px;}
.h14_c00124{height:37.020556px;}
.h5_c00124{height:37.459702px;}
.hf_c00124{height:39.108240px;}
.h13_c00124{height:39.108509px;}
.h17_c00124{height:42.880595px;}
.h9_c00124{height:44.107038px;}
.h6_c00124{height:44.107039px;}
.ha_c00124{height:44.107040px;}
.h7_c00124{height:44.107042px;}
.h8_c00124{height:44.107043px;}
.h18_c00124{height:45.588598px;}
.h3_c00124{height:50.480386px;}
.h11_c00124{height:55.160154px;}
.h16_c00124{height:55.855171px;}
.he_c00124{height:56.295398px;}
.h10_c00124{height:57.575126px;}
.h4_c00124{height:67.042966px;}
.h12_c00124{height:68.851019px;}
.h15_c00124{height:89.376654px;}
.h2_c00124{height:1304.999946px;}
.h0_c00124{height:1304.999953px;}
.h1_c00124{height:1305.000000px;}
.w2_c00124{width:934.874961px;}
.w0_c00124{width:934.875000px;}
.w1_c00124{width:935.250000px;}
.x0_c00124{left:0.000000px;}
.x3d_c00124{left:87.902647px;}
.x3e_c00124{left:89.260034px;}
.x3f_c00124{left:107.230262px;}
.x40_c00124{left:108.827167px;}
.x43_c00124{left:130.690629px;}
.x15_c00124{left:134.974838px;}
.x14_c00124{left:136.648279px;}
.x16_c00124{left:140.021272px;}
.x17_c00124{left:144.871714px;}
.x18_c00124{left:150.237526px;}
.x19_c00124{left:152.990336px;}
.x1a_c00124{left:156.000220px;}
.x1b_c00124{left:159.847713px;}
.x25_c00124{left:161.443962px;}
.x1c_c00124{left:163.301377px;}
.x1d_c00124{left:171.586339px;}
.x1e_c00124{left:179.855997px;}
.x1f_c00124{left:188.287487px;}
.x20_c00124{left:196.673970px;}
.x21_c00124{left:200.841336px;}
.x22_c00124{left:205.399483px;}
.x23_c00124{left:209.208896px;}
.x24_c00124{left:211.795693px;}
.x4_c00124{left:230.398389px;}
.x3_c00124{left:232.534609px;}
.x5_c00124{left:235.623324px;}
.x6_c00124{left:240.462566px;}
.x7_c00124{left:245.820252px;}
.x8_c00124{left:248.569815px;}
.x9_c00124{left:251.576732px;}
.xa_c00124{left:255.421336px;}
.xb_c00124{left:258.708042px;}
.xc_c00124{left:263.145298px;}
.xd_c00124{left:271.763354px;}
.xe_c00124{left:283.603990px;}
.xf_c00124{left:291.041304px;}
.x10_c00124{left:294.435991px;}
.x41_c00124{left:295.615161px;}
.x11_c00124{left:299.775542px;}
.x12_c00124{left:303.165014px;}
.x13_c00124{left:307.176807px;}
.x2a_c00124{left:327.047435px;}
.x2b_c00124{left:328.264734px;}
.x2c_c00124{left:329.685747px;}
.x2d_c00124{left:333.082971px;}
.x2e_c00124{left:336.307511px;}
.x2f_c00124{left:342.189757px;}
.x30_c00124{left:348.376740px;}
.x29_c00124{left:351.731739px;}
.x31_c00124{left:354.069743px;}
.x32_c00124{left:357.479743px;}
.x33_c00124{left:365.386869px;}
.x34_c00124{left:373.375785px;}
.x35_c00124{left:380.135498px;}
.x36_c00124{left:383.155707px;}
.x37_c00124{left:386.159935px;}
.x38_c00124{left:389.557910px;}
.x39_c00124{left:392.174988px;}
.x3a_c00124{left:395.489533px;}
.x3b_c00124{left:400.664851px;}
.x3c_c00124{left:403.469600px;}
.x1_c00124{left:452.786554px;}
.x27_c00124{left:464.896169px;}
.x42_c00124{left:661.571972px;}
.x2_c00124{left:697.320842px;}
.x28_c00124{left:733.540639px;}
.x26_c00124{left:757.088990px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.v1_c00124{vertical-align:1.137536pt;}
.ls0_c00124{letter-spacing:0.000000pt;}
.ws3_c00124{word-spacing:-15.036239pt;}
.ws2_c00124{word-spacing:-13.850703pt;}
.ws0_c00124{word-spacing:-13.485567pt;}
.ws4_c00124{word-spacing:0.000000pt;}
.ws1_c00124{word-spacing:256.052163pt;}
._0_c00124{margin-left:-412.509550pt;}
._2_c00124{width:1.329527pt;}
._4_c00124{width:3.599973pt;}
._6_c00124{width:5.044440pt;}
._3_c00124{width:5.963499pt;}
._5_c00124{width:11.687498pt;}
._1_c00124{width:12.879759pt;}
.fsc_c00124{font-size:35.340254pt;}
.fs9_c00124{font-size:37.333182pt;}
.fsb_c00124{font-size:37.333438pt;}
.fs6_c00124{font-size:42.105093pt;}
.fs3_c00124{font-size:42.105094pt;}
.fs7_c00124{font-size:42.105095pt;}
.fs4_c00124{font-size:42.105096pt;}
.fs5_c00124{font-size:42.105098pt;}
.fs2_c00124{font-size:45.921418pt;}
.fsf_c00124{font-size:50.152743pt;}
.fse_c00124{font-size:53.319997pt;}
.fs0_c00124{font-size:61.883325pt;}
.fs1_c00124{font-size:63.999997pt;}
.fs8_c00124{font-size:68.454656pt;}
.fsa_c00124{font-size:79.986889pt;}
.fsd_c00124{font-size:85.319996pt;}
.y0_c00124{bottom:0.000000pt;}
.y1_c00124{bottom:0.000007pt;}
.y3_c00124{bottom:26.134367pt;}
.y2_c00124{bottom:26.976047pt;}
.y4f_c00124{bottom:81.021885pt;}
.y4e_c00124{bottom:108.021883pt;}
.y4d_c00124{bottom:135.021882pt;}
.y4c_c00124{bottom:162.021881pt;}
.y4b_c00124{bottom:189.021880pt;}
.y4a_c00124{bottom:216.021879pt;}
.y49_c00124{bottom:243.021878pt;}
.y48_c00124{bottom:270.021877pt;}
.y50_c00124{bottom:303.054995pt;}
.y4_c00124{bottom:356.911319pt;}
.y30_c00124{bottom:432.789822pt;}
.y12_c00124{bottom:438.513950pt;}
.y26_c00124{bottom:438.527466pt;}
.y11_c00124{bottom:438.980754pt;}
.y27_c00124{bottom:438.998276pt;}
.y3e_c00124{bottom:439.074655pt;}
.y25_c00124{bottom:439.634173pt;}
.y3f_c00124{bottom:439.815613pt;}
.y3d_c00124{bottom:439.833307pt;}
.y10_c00124{bottom:439.928600pt;}
.y24_c00124{bottom:440.746230pt;}
.y3c_c00124{bottom:440.753185pt;}
.yf_c00124{bottom:440.882672pt;}
.y28_c00124{bottom:441.146660pt;}
.y13_c00124{bottom:441.202767pt;}
.y40_c00124{bottom:441.754175pt;}
.y23_c00124{bottom:442.208018pt;}
.ye_c00124{bottom:442.351046pt;}
.y3b_c00124{bottom:442.711737pt;}
.y41_c00124{bottom:442.991236pt;}
.y22_c00124{bottom:443.709077pt;}
.yd_c00124{bottom:443.856095pt;}
.y42_c00124{bottom:444.500834pt;}
.y14_c00124{bottom:445.005059pt;}
.y21_c00124{bottom:445.367066pt;}
.yc_c00124{bottom:445.518471pt;}
.y29_c00124{bottom:445.680465pt;}
.y3a_c00124{bottom:446.081997pt;}
.y43_c00124{bottom:446.671541pt;}
.y15_c00124{bottom:447.244339pt;}
.y44_c00124{bottom:448.679347pt;}
.y2a_c00124{bottom:448.905531pt;}
.y20_c00124{bottom:449.504110pt;}
.yb_c00124{bottom:449.664187pt;}
.y39_c00124{bottom:450.942950pt;}
.y45_c00124{bottom:451.585269pt;}
.y16_c00124{bottom:452.535328pt;}
.y2b_c00124{bottom:453.913799pt;}
.y38_c00124{bottom:454.913093pt;}
.y1f_c00124{bottom:455.194152pt;}
.ya_c00124{bottom:455.361467pt;}
.y17_c00124{bottom:456.756200pt;}
.y46_c00124{bottom:459.049592pt;}
.y2c_c00124{bottom:459.831647pt;}
.y37_c00124{bottom:460.624248pt;}
.y1e_c00124{bottom:461.689230pt;}
.y9_c00124{bottom:461.769569pt;}
.y36_c00124{bottom:464.686327pt;}
.y8_c00124{bottom:464.844100pt;}
.y47_c00124{bottom:466.204395pt;}
.y18_c00124{bottom:467.231078pt;}
.y1d_c00124{bottom:468.055335pt;}
.y7_c00124{bottom:470.187085pt;}
.y2d_c00124{bottom:470.464933pt;}
.y35_c00124{bottom:471.594820pt;}
.y1c_c00124{bottom:472.294264pt;}
.y2f_c00124{bottom:474.016326pt;}
.y33_c00124{bottom:474.632582pt;}
.y34_c00124{bottom:475.056113pt;}
.y6_c00124{bottom:476.639735pt;}
.y1b_c00124{bottom:477.781221pt;}
.y19_c00124{bottom:478.111386pt;}
.y2e_c00124{bottom:478.434224pt;}
.y31_c00124{bottom:479.977948pt;}
.y1a_c00124{bottom:484.059387pt;}
.y5_c00124{bottom:485.114452pt;}
.y32_c00124{bottom:513.277307pt;}
.y56_c00124{bottom:567.175592pt;}
.y58_c00124{bottom:860.899340pt;}
.y57_c00124{bottom:911.111580pt;}
.y54_c00124{bottom:1003.367145pt;}
.y52_c00124{bottom:1007.767476pt;}
.y51_c00124{bottom:1020.211955pt;}
.y55_c00124{bottom:1027.236207pt;}
.y53_c00124{bottom:1040.962393pt;}
.hb_c00124{height:31.990003pt;}
.hc_c00124{height:31.990004pt;}
.hd_c00124{height:31.990006pt;}
.h14_c00124{height:32.907161pt;}
.h5_c00124{height:33.297513pt;}
.hf_c00124{height:34.762880pt;}
.h13_c00124{height:34.763119pt;}
.h17_c00124{height:38.116085pt;}
.h9_c00124{height:39.206256pt;}
.h6_c00124{height:39.206257pt;}
.ha_c00124{height:39.206258pt;}
.h7_c00124{height:39.206259pt;}
.h8_c00124{height:39.206261pt;}
.h18_c00124{height:40.523198pt;}
.h3_c00124{height:44.871454pt;}
.h11_c00124{height:49.031248pt;}
.h16_c00124{height:49.649041pt;}
.he_c00124{height:50.040354pt;}
.h10_c00124{height:51.177889pt;}
.h4_c00124{height:59.593748pt;}
.h12_c00124{height:61.200906pt;}
.h15_c00124{height:79.445915pt;}
.h2_c00124{height:1159.999952pt;}
.h0_c00124{height:1159.999959pt;}
.h1_c00124{height:1160.000000pt;}
.w2_c00124{width:830.999965pt;}
.w0_c00124{width:831.000000pt;}
.w1_c00124{width:831.333333pt;}
.x0_c00124{left:0.000000pt;}
.x3d_c00124{left:78.135686pt;}
.x3e_c00124{left:79.342253pt;}
.x3f_c00124{left:95.315788pt;}
.x40_c00124{left:96.735260pt;}
.x43_c00124{left:116.169448pt;}
.x15_c00124{left:119.977634pt;}
.x14_c00124{left:121.465137pt;}
.x16_c00124{left:124.463353pt;}
.x17_c00124{left:128.774857pt;}
.x18_c00124{left:133.544468pt;}
.x19_c00124{left:135.991410pt;}
.x1a_c00124{left:138.666862pt;}
.x1b_c00124{left:142.086856pt;}
.x25_c00124{left:143.505744pt;}
.x1c_c00124{left:145.156780pt;}
.x1d_c00124{left:152.521190pt;}
.x1e_c00124{left:159.871997pt;}
.x1f_c00124{left:167.366655pt;}
.x20_c00124{left:174.821307pt;}
.x21_c00124{left:178.525632pt;}
.x22_c00124{left:182.577318pt;}
.x23_c00124{left:185.963463pt;}
.x24_c00124{left:188.262839pt;}
.x4_c00124{left:204.798568pt;}
.x3_c00124{left:206.697430pt;}
.x5_c00124{left:209.442955pt;}
.x6_c00124{left:213.744503pt;}
.x7_c00124{left:218.506891pt;}
.x8_c00124{left:220.950947pt;}
.x9_c00124{left:223.623762pt;}
.xa_c00124{left:227.041187pt;}
.xb_c00124{left:229.962704pt;}
.xc_c00124{left:233.906932pt;}
.xd_c00124{left:241.567426pt;}
.xe_c00124{left:252.092435pt;}
.xf_c00124{left:258.703382pt;}
.x10_c00124{left:261.720880pt;}
.x41_c00124{left:262.769032pt;}
.x11_c00124{left:266.467148pt;}
.x12_c00124{left:269.480012pt;}
.x13_c00124{left:273.046051pt;}
.x2a_c00124{left:290.708831pt;}
.x2b_c00124{left:291.790874pt;}
.x2c_c00124{left:293.053997pt;}
.x2d_c00124{left:296.073752pt;}
.x2e_c00124{left:298.940009pt;}
.x2f_c00124{left:304.168673pt;}
.x30_c00124{left:309.668213pt;}
.x29_c00124{left:312.650435pt;}
.x31_c00124{left:314.728661pt;}
.x32_c00124{left:317.759772pt;}
.x33_c00124{left:324.788328pt;}
.x34_c00124{left:331.889587pt;}
.x35_c00124{left:337.898220pt;}
.x36_c00124{left:340.582851pt;}
.x37_c00124{left:343.253275pt;}
.x38_c00124{left:346.273697pt;}
.x39_c00124{left:348.599989pt;}
.x3a_c00124{left:351.546252pt;}
.x3b_c00124{left:356.146534pt;}
.x3c_c00124{left:358.639645pt;}
.x1_c00124{left:402.476937pt;}
.x27_c00124{left:413.241039pt;}
.x42_c00124{left:588.063975pt;}
.x2_c00124{left:619.840748pt;}
.x28_c00124{left:652.036124pt;}
.x26_c00124{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c39e2e9dff13e3cc9f26429.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.171387;font-style:normal;font-weight:normal;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_bbd88025c1d85aa2de86c787.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.006348;font-style:normal;font-weight:normal;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_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:0.734863;font-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_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);}
.v0_c00125{vertical-align:0.000000px;}
.ls0_c00125{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00125{word-spacing:-19.320776px;}
.ws0_c00125{word-spacing:-18.703125px;}
.ws2_c00125{word-spacing:0.000000px;}
._3_c00125{width:1.746069px;}
._7_c00125{width:3.111807px;}
._1_c00125{width:4.913703px;}
._c_c00125{width:6.877099px;}
._b_c00125{width:8.423352px;}
._0_c00125{width:9.773438px;}
._8_c00125{width:10.928514px;}
._2_c00125{width:12.164061px;}
._e_c00125{width:13.355669px;}
._6_c00125{width:14.548232px;}
._d_c00125{width:15.594058px;}
._5_c00125{width:16.966943px;}
._4_c00125{width:22.586516px;}
._a_c00125{width:23.960355px;}
._9_c00125{width:51.732420px;}
.fc3_c00125{color:transparent;}
.fc1_c00125{color:rgb(67,91,56);}
.fc2_c00125{color:rgb(128,128,128);}
.fc0_c00125{color:rgb(0,0,0);}
.fs1_c00125{font-size:69.618741px;}
.fs0_c00125{font-size:71.999997px;}
.fs2_c00125{font-size:74.377724px;}
.y0_c00125{bottom:0.000000px;}
.y1_c00125{bottom:0.000008px;}
.y24_c00125{bottom:29.401163px;}
.y1e_c00125{bottom:30.348053px;}
.y1c_c00125{bottom:105.962208px;}
.y1b_c00125{bottom:137.462207px;}
.y1a_c00125{bottom:168.962206px;}
.y19_c00125{bottom:200.462204px;}
.y18_c00125{bottom:231.962203px;}
.y17_c00125{bottom:263.462202px;}
.y16_c00125{bottom:294.962201px;}
.y15_c00125{bottom:326.462199px;}
.y14_c00125{bottom:357.962198px;}
.y13_c00125{bottom:389.462197px;}
.y12_c00125{bottom:420.962195px;}
.y11_c00125{bottom:452.462194px;}
.y10_c00125{bottom:483.962193px;}
.yf_c00125{bottom:515.462191px;}
.ye_c00125{bottom:546.962190px;}
.yd_c00125{bottom:578.462189px;}
.yc_c00125{bottom:609.962187px;}
.yb_c00125{bottom:641.462186px;}
.ya_c00125{bottom:672.962185px;}
.y9_c00125{bottom:704.462183px;}
.y8_c00125{bottom:735.962182px;}
.y7_c00125{bottom:767.462181px;}
.y6_c00125{bottom:798.962180px;}
.y5_c00125{bottom:830.462178px;}
.y4_c00125{bottom:861.962177px;}
.y3_c00125{bottom:893.462176px;}
.y2_c00125{bottom:924.962174px;}
.y1d_c00125{bottom:974.462172px;}
.y23_c00125{bottom:1055.124262px;}
.y22_c00125{bottom:1086.624261px;}
.y21_c00125{bottom:1118.124259px;}
.y20_c00125{bottom:1149.624258px;}
.y1f_c00125{bottom:1199.188955px;}
.h5_c00125{height:50.480386px;}
.h4_c00125{height:55.160154px;}
.h6_c00125{height:56.981762px;}
.h3_c00125{height:67.042966px;}
.h2_c00125{height:1304.999946px;}
.h0_c00125{height:1304.999953px;}
.h1_c00125{height:1305.000000px;}
.w2_c00125{width:934.874961px;}
.w0_c00125{width:934.875000px;}
.w1_c00125{width:935.250000px;}
.x0_c00125{left:0.000000px;}
.x1_c00125{left:89.260034px;}
.x2_c00125{left:452.782029px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls0_c00125{letter-spacing:0.000000pt;}
.ws1_c00125{word-spacing:-17.174023pt;}
.ws0_c00125{word-spacing:-16.625000pt;}
.ws2_c00125{word-spacing:0.000000pt;}
._3_c00125{width:1.552061pt;}
._7_c00125{width:2.766051pt;}
._1_c00125{width:4.367736pt;}
._c_c00125{width:6.112977pt;}
._b_c00125{width:7.487424pt;}
._0_c00125{width:8.687500pt;}
._8_c00125{width:9.714234pt;}
._2_c00125{width:10.812499pt;}
._e_c00125{width:11.871706pt;}
._6_c00125{width:12.931761pt;}
._d_c00125{width:13.861385pt;}
._5_c00125{width:15.081727pt;}
._4_c00125{width:20.076903pt;}
._a_c00125{width:21.298094pt;}
._9_c00125{width:45.984373pt;}
.fs1_c00125{font-size:61.883325pt;}
.fs0_c00125{font-size:63.999997pt;}
.fs2_c00125{font-size:66.113533pt;}
.y0_c00125{bottom:0.000000pt;}
.y1_c00125{bottom:0.000007pt;}
.y24_c00125{bottom:26.134367pt;}
.y1e_c00125{bottom:26.976047pt;}
.y1c_c00125{bottom:94.188630pt;}
.y1b_c00125{bottom:122.188629pt;}
.y1a_c00125{bottom:150.188627pt;}
.y19_c00125{bottom:178.188626pt;}
.y18_c00125{bottom:206.188625pt;}
.y17_c00125{bottom:234.188624pt;}
.y16_c00125{bottom:262.188623pt;}
.y15_c00125{bottom:290.188622pt;}
.y14_c00125{bottom:318.188620pt;}
.y13_c00125{bottom:346.188619pt;}
.y12_c00125{bottom:374.188618pt;}
.y11_c00125{bottom:402.188617pt;}
.y10_c00125{bottom:430.188616pt;}
.yf_c00125{bottom:458.188615pt;}
.ye_c00125{bottom:486.188613pt;}
.yd_c00125{bottom:514.188612pt;}
.yc_c00125{bottom:542.188611pt;}
.yb_c00125{bottom:570.188610pt;}
.ya_c00125{bottom:598.188609pt;}
.y9_c00125{bottom:626.188608pt;}
.y8_c00125{bottom:654.188606pt;}
.y7_c00125{bottom:682.188605pt;}
.y6_c00125{bottom:710.188604pt;}
.y5_c00125{bottom:738.188603pt;}
.y4_c00125{bottom:766.188602pt;}
.y3_c00125{bottom:794.188601pt;}
.y2_c00125{bottom:822.188599pt;}
.y1d_c00125{bottom:866.188598pt;}
.y23_c00125{bottom:937.888233pt;}
.y22_c00125{bottom:965.888232pt;}
.y21_c00125{bottom:993.888231pt;}
.y20_c00125{bottom:1021.888229pt;}
.y1f_c00125{bottom:1065.945738pt;}
.h5_c00125{height:44.871454pt;}
.h4_c00125{height:49.031248pt;}
.h6_c00125{height:50.650455pt;}
.h3_c00125{height:59.593748pt;}
.h2_c00125{height:1159.999952pt;}
.h0_c00125{height:1159.999959pt;}
.h1_c00125{height:1160.000000pt;}
.w2_c00125{width:830.999965pt;}
.w0_c00125{width:831.000000pt;}
.w1_c00125{width:831.333333pt;}
.x0_c00125{left:0.000000pt;}
.x1_c00125{left:79.342253pt;}
.x2_c00125{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:0.734863;font-style:normal;font-weight:normal;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_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.006348;font-style:normal;font-weight:normal;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_c201a4cb3147565c952fb7a2.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00126;src:url('chunks/assets/font_ae560f3cb8189c80fe8da81a.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:1.006348;font-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_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);}
.v0_c00126{vertical-align:0.000000px;}
.ls3_c00126{letter-spacing:0.000000px;}
.ls2_c00126{letter-spacing:9.281249px;}
.ls0_c00126{letter-spacing:9.632834px;}
.ls1_c00126{letter-spacing:16.734374px;}
.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;}
}
.ws0_c00126{word-spacing:-18.703125px;}
.ws1_c00126{word-spacing:0.000000px;}
._0_c00126{width:1.032988px;}
._8_c00126{width:2.047301px;}
._c_c00126{width:3.840133px;}
._1_c00126{width:5.397788px;}
._a_c00126{width:8.460983px;}
._6_c00126{width:9.626905px;}
._e_c00126{width:14.639007px;}
._7_c00126{width:16.211567px;}
._5_c00126{width:17.484328px;}
._d_c00126{width:22.244293px;}
._2_c00126{width:24.360053px;}
._9_c00126{width:25.728467px;}
._b_c00126{width:31.883488px;}
._3_c00126{width:34.178875px;}
._4_c00126{width:40.765590px;}
.fc3_c00126{color:transparent;}
.fc1_c00126{color:rgb(67,91,56);}
.fc2_c00126{color:rgb(0,0,0);}
.fc0_c00126{color:rgb(128,128,128);}
.fs0_c00126{font-size:69.618741px;}
.fs1_c00126{font-size:71.999997px;}
.y0_c00126{bottom:0.000000px;}
.y1_c00126{bottom:0.000008px;}
.y1d_c00126{bottom:29.400983px;}
.y2_c00126{bottom:30.347873px;}
.y8_c00126{bottom:326.854858px;}
.y7_c00126{bottom:357.229857px;}
.y6_c00126{bottom:387.604856px;}
.y5_c00126{bottom:417.979855px;}
.y4_c00126{bottom:448.354853px;}
.y3_c00126{bottom:491.161264px;}
.y15_c00126{bottom:564.736440px;}
.y14_c00126{bottom:595.111439px;}
.y13_c00126{bottom:625.486438px;}
.y12_c00126{bottom:655.861437px;}
.y11_c00126{bottom:686.236435px;}
.y10_c00126{bottom:716.611434px;}
.yf_c00126{bottom:746.986433px;}
.ye_c00126{bottom:777.361432px;}
.yd_c00126{bottom:807.736430px;}
.yc_c00126{bottom:838.111429px;}
.yb_c00126{bottom:868.486428px;}
.ya_c00126{bottom:898.861427px;}
.y9_c00126{bottom:944.670899px;}
.y1c_c00126{bottom:1017.972202px;}
.y1b_c00126{bottom:1048.347201px;}
.y1a_c00126{bottom:1078.722200px;}
.y19_c00126{bottom:1109.097199px;}
.y18_c00126{bottom:1139.472197px;}
.y17_c00126{bottom:1169.847196px;}
.y16_c00126{bottom:1200.222195px;}
.h3_c00126{height:50.480386px;}
.h4_c00126{height:55.160154px;}
.h5_c00126{height:67.042966px;}
.h2_c00126{height:1304.999946px;}
.h0_c00126{height:1304.999953px;}
.h1_c00126{height:1305.000000px;}
.w2_c00126{width:934.874961px;}
.w0_c00126{width:934.875000px;}
.w1_c00126{width:935.250000px;}
.x0_c00126{left:0.000000px;}
.x2_c00126{left:87.902647px;}
.x1_c00126{left:452.782029px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls3_c00126{letter-spacing:0.000000pt;}
.ls2_c00126{letter-spacing:8.249999pt;}
.ls0_c00126{letter-spacing:8.562519pt;}
.ls1_c00126{letter-spacing:14.874999pt;}
.ws0_c00126{word-spacing:-16.625000pt;}
.ws1_c00126{word-spacing:0.000000pt;}
._0_c00126{width:0.918212pt;}
._8_c00126{width:1.819823pt;}
._c_c00126{width:3.413452pt;}
._1_c00126{width:4.798034pt;}
._a_c00126{width:7.520874pt;}
._6_c00126{width:8.557249pt;}
._e_c00126{width:13.012451pt;}
._7_c00126{width:14.410282pt;}
._5_c00126{width:15.541625pt;}
._d_c00126{width:19.772705pt;}
._2_c00126{width:21.653380pt;}
._9_c00126{width:22.869749pt;}
._b_c00126{width:28.340879pt;}
._3_c00126{width:30.381222pt;}
._4_c00126{width:36.236080pt;}
.fs0_c00126{font-size:61.883325pt;}
.fs1_c00126{font-size:63.999997pt;}
.y0_c00126{bottom:0.000000pt;}
.y1_c00126{bottom:0.000007pt;}
.y1d_c00126{bottom:26.134207pt;}
.y2_c00126{bottom:26.975887pt;}
.y8_c00126{bottom:290.537652pt;}
.y7_c00126{bottom:317.537651pt;}
.y6_c00126{bottom:344.537650pt;}
.y5_c00126{bottom:371.537649pt;}
.y4_c00126{bottom:398.537647pt;}
.y3_c00126{bottom:436.587790pt;}
.y15_c00126{bottom:501.987947pt;}
.y14_c00126{bottom:528.987946pt;}
.y13_c00126{bottom:555.987945pt;}
.y12_c00126{bottom:582.987944pt;}
.y11_c00126{bottom:609.987943pt;}
.y10_c00126{bottom:636.987941pt;}
.yf_c00126{bottom:663.987940pt;}
.ye_c00126{bottom:690.987939pt;}
.yd_c00126{bottom:717.987938pt;}
.yc_c00126{bottom:744.987937pt;}
.yb_c00126{bottom:771.987936pt;}
.ya_c00126{bottom:798.987935pt;}
.y9_c00126{bottom:839.707466pt;}
.y1c_c00126{bottom:904.864180pt;}
.y1b_c00126{bottom:931.864179pt;}
.y1a_c00126{bottom:958.864178pt;}
.y19_c00126{bottom:985.864177pt;}
.y18_c00126{bottom:1012.864175pt;}
.y17_c00126{bottom:1039.864174pt;}
.y16_c00126{bottom:1066.864173pt;}
.h3_c00126{height:44.871454pt;}
.h4_c00126{height:49.031248pt;}
.h5_c00126{height:59.593748pt;}
.h2_c00126{height:1159.999952pt;}
.h0_c00126{height:1159.999959pt;}
.h1_c00126{height:1160.000000pt;}
.w2_c00126{width:830.999965pt;}
.w0_c00126{width:831.000000pt;}
.w1_c00126{width:831.333333pt;}
.x0_c00126{left:0.000000pt;}
.x2_c00126{left:78.135686pt;}
.x1_c00126{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71966998e02927986437bab0.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:0.774902;font-style:normal;font-weight:normal;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_5eba25a2e5b0f3f8c8b600ea.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.171387;font-style:normal;font-weight:normal;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_78c2f99e79547e7cc9c5b1b4.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.171387;font-style:normal;font-weight:normal;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_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.006348;font-style:normal;font-weight: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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff5_c00127{font-family:ff5_c00127;line-height:0.734863;font-style:normal;font-weight: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_c00127;src:url('chunks/assets/font_41c0951f28a94d1caee36477.woff2')format("woff");}.ff6_c00127{font-family:ff6_c00127;line-height:1.000000;font-style:normal;font-weight: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_c00127;src:url('chunks/assets/font_87f7741db0f068c0e28d247e.woff2')format("woff");}.ff7_c00127{font-family:ff7_c00127;line-height:0.713867;font-style:normal;font-weight: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_c00127;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00127{font-family:ff8_c00127;line-height:0.734863;font-style:normal;font-weight: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_c00127;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff9_c00127{font-family:ff9_c00127;line-height:0.769531;font-style:normal;font-weight: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_c00127;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ffa_c00127{font-family:ffa_c00127;line-height:0.743000;font-style:normal;font-weight: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_c00127;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ffb_c00127{font-family:ffb_c00127;line-height:0.894000;font-style:normal;font-weight: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_c00127;src:url('chunks/assets/font_4fb6c80ed135b7d7a484078a.woff2')format("woff");}.ffc_c00127{font-family:ffc_c00127;line-height:0.940000;font-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_c00127{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00127{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00127{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00127{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00127{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00127{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00127{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00127{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00127{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00127{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00127{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00127{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00127{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00127{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00127{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00127{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00127{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00127{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00127{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00127{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00127{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00127{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00127{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00127{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00127{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00127{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00127{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00127{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00127{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00127{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00127{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00127{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00127{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00127{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00127{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00127{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00127{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00127{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00127{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00127{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00127{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00127{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00127{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00127{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00127{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00127{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00127{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00127{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00127{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00127{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00127{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00127{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00127{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00127{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00127{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00127{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00127{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00127{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00127{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00127{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00127{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00127{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00127{vertical-align:0.000000px;}
.ls1_c00127{letter-spacing:0.000000px;}
.ls0_c00127{letter-spacing:0.027356px;}
.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:-16.915769px;}
.ws1_c00127{word-spacing:-15.171263px;}
.ws0_c00127{word-spacing:-14.483232px;}
.ws4_c00127{word-spacing:0.000000px;}
.ws2_c00127{word-spacing:281.638789px;}
._1_c00127{width:5.791168px;}
._7_c00127{width:7.779072px;}
._6_c00127{width:9.796850px;}
._4_c00127{width:10.998002px;}
._0_c00127{width:13.349967px;}
._2_c00127{width:14.796868px;}
._5_c00127{width:24.527318px;}
._3_c00127{width:33.257813px;}
.fc5_c00127{color:transparent;}
.fc4_c00127{color:rgb(9,71,81);}
.fc2_c00127{color:rgb(67,91,56);}
.fc3_c00127{color:rgb(128,128,128);}
.fc1_c00127{color:rgb(0,0,0);}
.fc0_c00127{color:rgb(255,255,255);}
.fs5_c00127{font-size:39.757786px;}
.fsf_c00127{font-size:41.999830px;}
.fs4_c00127{font-size:42.000118px;}
.fsc_c00127{font-size:47.368230px;}
.fs9_c00127{font-size:47.368231px;}
.fsd_c00127{font-size:47.368232px;}
.fsa_c00127{font-size:47.368233px;}
.fsb_c00127{font-size:47.368235px;}
.fs8_c00127{font-size:51.661596px;}
.fs0_c00127{font-size:55.754999px;}
.fs10_c00127{font-size:56.421836px;}
.fs11_c00127{font-size:59.984997px;}
.fs6_c00127{font-size:69.618741px;}
.fs1_c00127{font-size:71.999997px;}
.fs2_c00127{font-size:74.424240px;}
.fse_c00127{font-size:77.011488px;}
.fs3_c00127{font-size:89.985250px;}
.fs7_c00127{font-size:95.984996px;}
.y0_c00127{bottom:0.000000px;}
.y1_c00127{bottom:0.000008px;}
.y13_c00127{bottom:29.401163px;}
.y11_c00127{bottom:30.348053px;}
.yb_c00127{bottom:78.890973px;}
.ya_c00127{bottom:109.265971px;}
.y9_c00127{bottom:139.640970px;}
.y8_c00127{bottom:170.015969px;}
.y7_c00127{bottom:200.390968px;}
.y6_c00127{bottom:230.765966px;}
.y5_c00127{bottom:261.140965px;}
.y4_c00127{bottom:291.515964px;}
.y3_c00127{bottom:321.890963px;}
.yc_c00127{bottom:352.710806px;}
.y14_c00127{bottom:401.525233px;}
.y40_c00127{bottom:486.888550px;}
.y22_c00127{bottom:493.328193px;}
.y36_c00127{bottom:493.343399px;}
.y21_c00127{bottom:493.853709px;}
.y37_c00127{bottom:493.873421px;}
.y4e_c00127{bottom:493.959311px;}
.y35_c00127{bottom:494.588120px;}
.y4f_c00127{bottom:494.792564px;}
.y4d_c00127{bottom:494.812830px;}
.y20_c00127{bottom:494.919675px;}
.y34_c00127{bottom:495.839509px;}
.y4c_c00127{bottom:495.847693px;}
.y1f_c00127{bottom:495.993006px;}
.y38_c00127{bottom:496.289992px;}
.y23_c00127{bottom:496.353473px;}
.y50_c00127{bottom:496.974167px;}
.y33_c00127{bottom:497.484380px;}
.y1e_c00127{bottom:497.644566px;}
.y4b_c00127{bottom:498.050345px;}
.y51_c00127{bottom:498.364816px;}
.y32_c00127{bottom:499.172711px;}
.y1d_c00127{bottom:499.338107px;}
.y52_c00127{bottom:500.063439px;}
.y24_c00127{bottom:500.630691px;}
.y31_c00127{bottom:501.037625px;}
.y1c_c00127{bottom:501.208280px;}
.y39_c00127{bottom:501.390523px;}
.y4a_c00127{bottom:501.841887px;}
.y53_c00127{bottom:502.505484px;}
.y25_c00127{bottom:503.149521px;}
.y54_c00127{bottom:504.764625px;}
.y3a_c00127{bottom:505.019047px;}
.y30_c00127{bottom:505.692124px;}
.y1b_c00127{bottom:505.871886px;}
.y49_c00127{bottom:507.310818px;}
.y55_c00127{bottom:508.033427px;}
.y26_c00127{bottom:509.101920px;}
.y3b_c00127{bottom:510.652700px;}
.y48_c00127{bottom:511.777229px;}
.y2f_c00127{bottom:512.093421px;}
.y1a_c00127{bottom:512.281650px;}
.y27_c00127{bottom:513.850725px;}
.y56_c00127{bottom:516.430791px;}
.y3c_c00127{bottom:517.310242px;}
.y47_c00127{bottom:518.201920px;}
.y2e_c00127{bottom:519.400744px;}
.y19_c00127{bottom:519.490765px;}
.y46_c00127{bottom:522.772118px;}
.y18_c00127{bottom:522.949612px;}
.y57_c00127{bottom:524.479585px;}
.y28_c00127{bottom:525.634639px;}
.y2d_c00127{bottom:526.562252px;}
.y17_c00127{bottom:528.959751px;}
.y3d_c00127{bottom:529.273374px;}
.y45_c00127{bottom:530.544173px;}
.y2c_c00127{bottom:531.331731px;}
.y3f_c00127{bottom:533.268367px;}
.y43_c00127{bottom:533.962015px;}
.y58_c00127{bottom:534.281911px;}
.y44_c00127{bottom:534.438127px;}
.y16_c00127{bottom:536.219342px;}
.y2b_c00127{bottom:537.503874px;}
.y29_c00127{bottom:537.875309px;}
.y3e_c00127{bottom:538.238862px;}
.y41_c00127{bottom:539.974832px;}
.y2a_c00127{bottom:544.567530px;}
.y15_c00127{bottom:545.754118px;}
.y42_c00127{bottom:577.436970px;}
.y2_c00127{bottom:639.092421px;}
.y5a_c00127{bottom:968.525117px;}
.y59_c00127{bottom:1025.000528px;}
.y10_c00127{bottom:1128.788391px;}
.ye_c00127{bottom:1133.738586px;}
.yd_c00127{bottom:1147.738626px;}
.y12_c00127{bottom:1151.816964px;}
.yf_c00127{bottom:1171.082869px;}
.h11_c00127{height:35.988753px;}
.h12_c00127{height:35.988755px;}
.h13_c00127{height:35.988756px;}
.h8_c00127{height:37.020556px;}
.hb_c00127{height:37.459702px;}
.h15_c00127{height:39.108240px;}
.h7_c00127{height:39.108509px;}
.h16_c00127{height:42.880595px;}
.hf_c00127{height:44.107038px;}
.hc_c00127{height:44.107039px;}
.h10_c00127{height:44.107040px;}
.hd_c00127{height:44.107042px;}
.he_c00127{height:44.107043px;}
.h17_c00127{height:45.588598px;}
.h9_c00127{height:50.480386px;}
.h3_c00127{height:51.916398px;}
.h14_c00127{height:56.295398px;}
.h5_c00127{height:57.017399px;}
.h4_c00127{height:67.042966px;}
.h6_c00127{height:68.851019px;}
.ha_c00127{height:89.376654px;}
.h2_c00127{height:1304.999946px;}
.h0_c00127{height:1304.999953px;}
.h1_c00127{height:1305.000000px;}
.w2_c00127{width:934.874961px;}
.w0_c00127{width:934.875000px;}
.w1_c00127{width:935.250000px;}
.x0_c00127{left:0.000000px;}
.x2_c00127{left:91.035468px;}
.x3_c00127{left:107.230262px;}
.x4_c00127{left:108.827167px;}
.x41_c00127{left:128.775275px;}
.x19_c00127{left:134.974838px;}
.x18_c00127{left:136.648279px;}
.x1a_c00127{left:140.021272px;}
.x1b_c00127{left:144.871714px;}
.x1c_c00127{left:150.237526px;}
.x1d_c00127{left:152.990336px;}
.x1e_c00127{left:156.000220px;}
.x1f_c00127{left:159.847713px;}
.x29_c00127{left:161.443962px;}
.x20_c00127{left:163.301377px;}
.x21_c00127{left:171.586339px;}
.x22_c00127{left:179.855997px;}
.x23_c00127{left:188.287487px;}
.x24_c00127{left:196.673970px;}
.x25_c00127{left:200.841336px;}
.x26_c00127{left:205.399483px;}
.x27_c00127{left:209.208896px;}
.x28_c00127{left:211.795693px;}
.x9_c00127{left:230.398389px;}
.x8_c00127{left:232.534609px;}
.xa_c00127{left:235.623324px;}
.xb_c00127{left:240.462566px;}
.xc_c00127{left:245.820252px;}
.xd_c00127{left:248.569815px;}
.xe_c00127{left:251.576732px;}
.xf_c00127{left:255.421336px;}
.x2d_c00127{left:256.622047px;}
.x10_c00127{left:258.708042px;}
.x11_c00127{left:263.145298px;}
.x12_c00127{left:271.763354px;}
.x13_c00127{left:283.603990px;}
.x14_c00127{left:291.041304px;}
.x5_c00127{left:295.177092px;}
.x15_c00127{left:299.775542px;}
.x16_c00127{left:303.165014px;}
.x17_c00127{left:307.176807px;}
.x2e_c00127{left:327.047435px;}
.x2f_c00127{left:328.264734px;}
.x30_c00127{left:329.685747px;}
.x31_c00127{left:333.082971px;}
.x32_c00127{left:336.307511px;}
.x33_c00127{left:342.189757px;}
.x34_c00127{left:348.376740px;}
.x35_c00127{left:354.069743px;}
.x36_c00127{left:357.479743px;}
.x37_c00127{left:365.386869px;}
.x38_c00127{left:373.375785px;}
.x39_c00127{left:380.135498px;}
.x3a_c00127{left:383.155707px;}
.x3b_c00127{left:386.159935px;}
.x3c_c00127{left:389.557910px;}
.x3d_c00127{left:392.174988px;}
.x3e_c00127{left:395.489533px;}
.x3f_c00127{left:400.664851px;}
.x40_c00127{left:403.469600px;}
.x6_c00127{left:452.786554px;}
.x2b_c00127{left:464.896169px;}
.x1_c00127{left:659.135961px;}
.x7_c00127{left:697.320842px;}
.x2c_c00127{left:733.540639px;}
.x2a_c00127{left:757.088990px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls1_c00127{letter-spacing:0.000000pt;}
.ls0_c00127{letter-spacing:0.024316pt;}
.ws3_c00127{word-spacing:-15.036239pt;}
.ws1_c00127{word-spacing:-13.485567pt;}
.ws0_c00127{word-spacing:-12.873984pt;}
.ws4_c00127{word-spacing:0.000000pt;}
.ws2_c00127{word-spacing:250.345590pt;}
._1_c00127{width:5.147705pt;}
._7_c00127{width:6.914730pt;}
._6_c00127{width:8.708311pt;}
._4_c00127{width:9.776002pt;}
._0_c00127{width:11.866637pt;}
._2_c00127{width:13.152771pt;}
._5_c00127{width:21.802061pt;}
._3_c00127{width:29.562500pt;}
.fs5_c00127{font-size:35.340254pt;}
.fsf_c00127{font-size:37.333182pt;}
.fs4_c00127{font-size:37.333438pt;}
.fsc_c00127{font-size:42.105093pt;}
.fs9_c00127{font-size:42.105094pt;}
.fsd_c00127{font-size:42.105095pt;}
.fsa_c00127{font-size:42.105096pt;}
.fsb_c00127{font-size:42.105098pt;}
.fs8_c00127{font-size:45.921418pt;}
.fs0_c00127{font-size:49.559999pt;}
.fs10_c00127{font-size:50.152743pt;}
.fs11_c00127{font-size:53.319997pt;}
.fs6_c00127{font-size:61.883325pt;}
.fs1_c00127{font-size:63.999997pt;}
.fs2_c00127{font-size:66.154880pt;}
.fse_c00127{font-size:68.454656pt;}
.fs3_c00127{font-size:79.986889pt;}
.fs7_c00127{font-size:85.319996pt;}
.y0_c00127{bottom:0.000000pt;}
.y1_c00127{bottom:0.000007pt;}
.y13_c00127{bottom:26.134367pt;}
.y11_c00127{bottom:26.976047pt;}
.yb_c00127{bottom:70.125309pt;}
.ya_c00127{bottom:97.125308pt;}
.y9_c00127{bottom:124.125307pt;}
.y8_c00127{bottom:151.125306pt;}
.y7_c00127{bottom:178.125305pt;}
.y6_c00127{bottom:205.125303pt;}
.y5_c00127{bottom:232.125302pt;}
.y4_c00127{bottom:259.125301pt;}
.y3_c00127{bottom:286.125300pt;}
.yc_c00127{bottom:313.520716pt;}
.y14_c00127{bottom:356.911319pt;}
.y40_c00127{bottom:432.789822pt;}
.y22_c00127{bottom:438.513950pt;}
.y36_c00127{bottom:438.527466pt;}
.y21_c00127{bottom:438.981074pt;}
.y37_c00127{bottom:438.998596pt;}
.y4e_c00127{bottom:439.074943pt;}
.y35_c00127{bottom:439.633885pt;}
.y4f_c00127{bottom:439.815613pt;}
.y4d_c00127{bottom:439.833627pt;}
.y20_c00127{bottom:439.928600pt;}
.y34_c00127{bottom:440.746230pt;}
.y4c_c00127{bottom:440.753505pt;}
.y1f_c00127{bottom:440.882672pt;}
.y38_c00127{bottom:441.146660pt;}
.y23_c00127{bottom:441.203087pt;}
.y50_c00127{bottom:441.754815pt;}
.y33_c00127{bottom:442.208338pt;}
.y1e_c00127{bottom:442.350726pt;}
.y4b_c00127{bottom:442.711417pt;}
.y51_c00127{bottom:442.990948pt;}
.y32_c00127{bottom:443.709077pt;}
.y1d_c00127{bottom:443.856095pt;}
.y52_c00127{bottom:444.500834pt;}
.y24_c00127{bottom:445.005059pt;}
.y31_c00127{bottom:445.366778pt;}
.y1c_c00127{bottom:445.518471pt;}
.y39_c00127{bottom:445.680465pt;}
.y4a_c00127{bottom:446.081677pt;}
.y53_c00127{bottom:446.671541pt;}
.y25_c00127{bottom:447.244019pt;}
.y54_c00127{bottom:448.679667pt;}
.y3a_c00127{bottom:448.905819pt;}
.y30_c00127{bottom:449.504110pt;}
.y1b_c00127{bottom:449.663899pt;}
.y49_c00127{bottom:450.942950pt;}
.y55_c00127{bottom:451.585269pt;}
.y26_c00127{bottom:452.535040pt;}
.y3b_c00127{bottom:453.913511pt;}
.y48_c00127{bottom:454.913093pt;}
.y2f_c00127{bottom:455.194152pt;}
.y1a_c00127{bottom:455.361467pt;}
.y27_c00127{bottom:456.756200pt;}
.y56_c00127{bottom:459.049592pt;}
.y3c_c00127{bottom:459.831327pt;}
.y47_c00127{bottom:460.623928pt;}
.y2e_c00127{bottom:461.689550pt;}
.y19_c00127{bottom:461.769569pt;}
.y46_c00127{bottom:464.686327pt;}
.y18_c00127{bottom:464.844100pt;}
.y57_c00127{bottom:466.204075pt;}
.y28_c00127{bottom:467.230790pt;}
.y2d_c00127{bottom:468.055335pt;}
.y17_c00127{bottom:470.186445pt;}
.y3d_c00127{bottom:470.465221pt;}
.y45_c00127{bottom:471.594820pt;}
.y2c_c00127{bottom:472.294872pt;}
.y3f_c00127{bottom:474.016326pt;}
.y43_c00127{bottom:474.632902pt;}
.y58_c00127{bottom:474.917254pt;}
.y44_c00127{bottom:475.056113pt;}
.y16_c00127{bottom:476.639415pt;}
.y2b_c00127{bottom:477.781221pt;}
.y29_c00127{bottom:478.111386pt;}
.y3e_c00127{bottom:478.434544pt;}
.y41_c00127{bottom:479.977628pt;}
.y2a_c00127{bottom:484.060027pt;}
.y15_c00127{bottom:485.114772pt;}
.y42_c00127{bottom:513.277307pt;}
.y2_c00127{bottom:568.082152pt;}
.y5a_c00127{bottom:860.911215pt;}
.y59_c00127{bottom:911.111580pt;}
.y10_c00127{bottom:1003.367459pt;}
.ye_c00127{bottom:1007.767632pt;}
.yd_c00127{bottom:1020.212112pt;}
.y12_c00127{bottom:1023.837301pt;}
.yf_c00127{bottom:1040.962550pt;}
.h11_c00127{height:31.990003pt;}
.h12_c00127{height:31.990004pt;}
.h13_c00127{height:31.990006pt;}
.h8_c00127{height:32.907161pt;}
.hb_c00127{height:33.297513pt;}
.h15_c00127{height:34.762880pt;}
.h7_c00127{height:34.763119pt;}
.h16_c00127{height:38.116085pt;}
.hf_c00127{height:39.206256pt;}
.hc_c00127{height:39.206257pt;}
.h10_c00127{height:39.206258pt;}
.hd_c00127{height:39.206259pt;}
.he_c00127{height:39.206261pt;}
.h17_c00127{height:40.523198pt;}
.h9_c00127{height:44.871454pt;}
.h3_c00127{height:46.147909pt;}
.h14_c00127{height:50.040354pt;}
.h5_c00127{height:50.682132pt;}
.h4_c00127{height:59.593748pt;}
.h6_c00127{height:61.200906pt;}
.ha_c00127{height:79.445915pt;}
.h2_c00127{height:1159.999952pt;}
.h0_c00127{height:1159.999959pt;}
.h1_c00127{height:1160.000000pt;}
.w2_c00127{width:830.999965pt;}
.w0_c00127{width:831.000000pt;}
.w1_c00127{width:831.333333pt;}
.x0_c00127{left:0.000000pt;}
.x2_c00127{left:80.920416pt;}
.x3_c00127{left:95.315788pt;}
.x4_c00127{left:96.735260pt;}
.x41_c00127{left:114.466911pt;}
.x19_c00127{left:119.977634pt;}
.x18_c00127{left:121.465137pt;}
.x1a_c00127{left:124.463353pt;}
.x1b_c00127{left:128.774857pt;}
.x1c_c00127{left:133.544468pt;}
.x1d_c00127{left:135.991410pt;}
.x1e_c00127{left:138.666862pt;}
.x1f_c00127{left:142.086856pt;}
.x29_c00127{left:143.505744pt;}
.x20_c00127{left:145.156780pt;}
.x21_c00127{left:152.521190pt;}
.x22_c00127{left:159.871997pt;}
.x23_c00127{left:167.366655pt;}
.x24_c00127{left:174.821307pt;}
.x25_c00127{left:178.525632pt;}
.x26_c00127{left:182.577318pt;}
.x27_c00127{left:185.963463pt;}
.x28_c00127{left:188.262839pt;}
.x9_c00127{left:204.798568pt;}
.x8_c00127{left:206.697430pt;}
.xa_c00127{left:209.442955pt;}
.xb_c00127{left:213.744503pt;}
.xc_c00127{left:218.506891pt;}
.xd_c00127{left:220.950947pt;}
.xe_c00127{left:223.623762pt;}
.xf_c00127{left:227.041187pt;}
.x2d_c00127{left:228.108486pt;}
.x10_c00127{left:229.962704pt;}
.x11_c00127{left:233.906932pt;}
.x12_c00127{left:241.567426pt;}
.x13_c00127{left:252.092435pt;}
.x14_c00127{left:258.703382pt;}
.x5_c00127{left:262.379637pt;}
.x15_c00127{left:266.467148pt;}
.x16_c00127{left:269.480012pt;}
.x17_c00127{left:273.046051pt;}
.x2e_c00127{left:290.708831pt;}
.x2f_c00127{left:291.790874pt;}
.x30_c00127{left:293.053997pt;}
.x31_c00127{left:296.073752pt;}
.x32_c00127{left:298.940009pt;}
.x33_c00127{left:304.168673pt;}
.x34_c00127{left:309.668213pt;}
.x35_c00127{left:314.728661pt;}
.x36_c00127{left:317.759772pt;}
.x37_c00127{left:324.788328pt;}
.x38_c00127{left:331.889587pt;}
.x39_c00127{left:337.898220pt;}
.x3a_c00127{left:340.582851pt;}
.x3b_c00127{left:343.253275pt;}
.x3c_c00127{left:346.273697pt;}
.x3d_c00127{left:348.599989pt;}
.x3e_c00127{left:351.546252pt;}
.x3f_c00127{left:356.146534pt;}
.x40_c00127{left:358.639645pt;}
.x6_c00127{left:402.476937pt;}
.x2b_c00127{left:413.241039pt;}
.x1_c00127{left:585.898632pt;}
.x7_c00127{left:619.840748pt;}
.x2c_c00127{left:652.036124pt;}
.x2a_c00127{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2b62fb8ea7052fcc9c20248.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.171387;font-style:normal;font-weight:normal;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_c7175a36b53c6bdb0db1b654.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.006348;font-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_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;}
.ls0_c00128{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00128{word-spacing:-19.320776px;}
.ws0_c00128{word-spacing:-18.703125px;}
.ws2_c00128{word-spacing:0.000000px;}
._e_c00128{width:1.066077px;}
._c_c00128{width:2.838867px;}
._d_c00128{width:4.037194px;}
._2_c00128{width:5.407608px;}
._1_c00128{width:6.807472px;}
._f_c00128{width:7.857420px;}
._3_c00128{width:9.046826px;}
._b_c00128{width:10.272011px;}
._4_c00128{width:11.818336px;}
._8_c00128{width:12.970455px;}
._a_c00128{width:14.472979px;}
._6_c00128{width:17.289800px;}
._0_c00128{width:23.153889px;}
._9_c00128{width:25.072653px;}
._5_c00128{width:27.006385px;}
._7_c00128{width:28.028656px;}
.fc3_c00128{color:transparent;}
.fc2_c00128{color:rgb(67,91,56);}
.fc1_c00128{color:rgb(128,128,128);}
.fc0_c00128{color:rgb(0,0,0);}
.fs1_c00128{font-size:69.618741px;}
.fs0_c00128{font-size:71.999997px;}
.fs2_c00128{font-size:74.377724px;}
.y0_c00128{bottom:0.000000px;}
.y1_c00128{bottom:0.000008px;}
.y26_c00128{bottom:29.401163px;}
.y1c_c00128{bottom:30.348053px;}
.y1b_c00128{bottom:112.228941px;}
.y1a_c00128{bottom:142.603939px;}
.y19_c00128{bottom:172.978938px;}
.y18_c00128{bottom:203.353937px;}
.y17_c00128{bottom:233.728935px;}
.y16_c00128{bottom:264.103934px;}
.y15_c00128{bottom:294.478933px;}
.y14_c00128{bottom:324.853932px;}
.y13_c00128{bottom:355.228930px;}
.y12_c00128{bottom:385.603929px;}
.y11_c00128{bottom:415.978928px;}
.y10_c00128{bottom:446.353927px;}
.yf_c00128{bottom:476.728925px;}
.ye_c00128{bottom:507.103924px;}
.yd_c00128{bottom:537.478923px;}
.yc_c00128{bottom:567.853922px;}
.yb_c00128{bottom:598.228920px;}
.ya_c00128{bottom:628.603919px;}
.y9_c00128{bottom:658.978918px;}
.y8_c00128{bottom:689.353916px;}
.y7_c00128{bottom:719.728915px;}
.y6_c00128{bottom:750.103914px;}
.y5_c00128{bottom:780.478913px;}
.y4_c00128{bottom:810.853911px;}
.y3_c00128{bottom:841.228910px;}
.y2_c00128{bottom:871.603909px;}
.y1d_c00128{bottom:900.178908px;}
.y25_c00128{bottom:1000.474763px;}
.y24_c00128{bottom:1030.849762px;}
.y23_c00128{bottom:1061.224761px;}
.y22_c00128{bottom:1091.599759px;}
.y21_c00128{bottom:1121.974758px;}
.y20_c00128{bottom:1152.349757px;}
.y1f_c00128{bottom:1182.724756px;}
.y1e_c00128{bottom:1211.428547px;}
.h4_c00128{height:50.480386px;}
.h5_c00128{height:55.160154px;}
.h6_c00128{height:56.981762px;}
.h3_c00128{height:67.042966px;}
.h2_c00128{height:1304.999946px;}
.h0_c00128{height:1304.999953px;}
.h1_c00128{height:1305.000000px;}
.w2_c00128{width:934.874961px;}
.w0_c00128{width:934.875000px;}
.w1_c00128{width:935.250000px;}
.x0_c00128{left:0.000000px;}
.x1_c00128{left:87.902647px;}
.x3_c00128{left:89.260034px;}
.x2_c00128{left:452.782029px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls0_c00128{letter-spacing:0.000000pt;}
.ws1_c00128{word-spacing:-17.174023pt;}
.ws0_c00128{word-spacing:-16.625000pt;}
.ws2_c00128{word-spacing:0.000000pt;}
._e_c00128{width:0.947624pt;}
._c_c00128{width:2.523437pt;}
._d_c00128{width:3.588617pt;}
._2_c00128{width:4.806763pt;}
._1_c00128{width:6.051086pt;}
._f_c00128{width:6.984373pt;}
._3_c00128{width:8.041623pt;}
._b_c00128{width:9.130677pt;}
._4_c00128{width:10.505187pt;}
._8_c00128{width:11.529294pt;}
._a_c00128{width:12.864871pt;}
._6_c00128{width:15.368711pt;}
._0_c00128{width:20.581235pt;}
._9_c00128{width:22.286803pt;}
._5_c00128{width:24.005676pt;}
._7_c00128{width:24.914361pt;}
.fs1_c00128{font-size:61.883325pt;}
.fs0_c00128{font-size:63.999997pt;}
.fs2_c00128{font-size:66.113533pt;}
.y0_c00128{bottom:0.000000pt;}
.y1_c00128{bottom:0.000007pt;}
.y26_c00128{bottom:26.134367pt;}
.y1c_c00128{bottom:26.976047pt;}
.y1b_c00128{bottom:99.759058pt;}
.y1a_c00128{bottom:126.759057pt;}
.y19_c00128{bottom:153.759056pt;}
.y18_c00128{bottom:180.759055pt;}
.y17_c00128{bottom:207.759054pt;}
.y16_c00128{bottom:234.759053pt;}
.y15_c00128{bottom:261.759051pt;}
.y14_c00128{bottom:288.759050pt;}
.y13_c00128{bottom:315.759049pt;}
.y12_c00128{bottom:342.759048pt;}
.y11_c00128{bottom:369.759047pt;}
.y10_c00128{bottom:396.759046pt;}
.yf_c00128{bottom:423.759045pt;}
.ye_c00128{bottom:450.759044pt;}
.yd_c00128{bottom:477.759042pt;}
.yc_c00128{bottom:504.759041pt;}
.yb_c00128{bottom:531.759040pt;}
.ya_c00128{bottom:558.759039pt;}
.y9_c00128{bottom:585.759038pt;}
.y8_c00128{bottom:612.759037pt;}
.y7_c00128{bottom:639.759036pt;}
.y6_c00128{bottom:666.759035pt;}
.y5_c00128{bottom:693.759033pt;}
.y4_c00128{bottom:720.759032pt;}
.y3_c00128{bottom:747.759031pt;}
.y2_c00128{bottom:774.759030pt;}
.y1d_c00128{bottom:800.159029pt;}
.y25_c00128{bottom:889.310901pt;}
.y24_c00128{bottom:916.310899pt;}
.y23_c00128{bottom:943.310898pt;}
.y22_c00128{bottom:970.310897pt;}
.y21_c00128{bottom:997.310896pt;}
.y20_c00128{bottom:1024.310895pt;}
.y1f_c00128{bottom:1051.310894pt;}
.y1e_c00128{bottom:1076.825376pt;}
.h4_c00128{height:44.871454pt;}
.h5_c00128{height:49.031248pt;}
.h6_c00128{height:50.650455pt;}
.h3_c00128{height:59.593748pt;}
.h2_c00128{height:1159.999952pt;}
.h0_c00128{height:1159.999959pt;}
.h1_c00128{height:1160.000000pt;}
.w2_c00128{width:830.999965pt;}
.w0_c00128{width:831.000000pt;}
.w1_c00128{width:831.333333pt;}
.x0_c00128{left:0.000000pt;}
.x1_c00128{left:78.135686pt;}
.x3_c00128{left:79.342253pt;}
.x2_c00128{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:0.734863;font-style:normal;font-weight:normal;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_cc6a094f95a0cbb3703ea812.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.171387;font-style:normal;font-weight:normal;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_de6456d2218675496e9b1f4a.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.006348;font-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_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);}
.v0_c00129{vertical-align:0.000000px;}
.ls0_c00129{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00129{word-spacing:-18.703125px;}
.ws1_c00129{word-spacing:0.000000px;}
._7_c00129{width:1.323098px;}
._1_c00129{width:2.335349px;}
._3_c00129{width:4.173979px;}
._5_c00129{width:5.681236px;}
._a_c00129{width:6.939237px;}
._6_c00129{width:8.097607px;}
._4_c00129{width:9.984374px;}
._0_c00129{width:12.861282px;}
._c_c00129{width:14.701493px;}
._8_c00129{width:16.198861px;}
._e_c00129{width:17.231436px;}
._d_c00129{width:19.884290px;}
._2_c00129{width:22.148436px;}
._b_c00129{width:23.273441px;}
._9_c00129{width:26.126102px;}
._f_c00129{width:28.398421px;}
._10_c00129{width:35.492156px;}
.fc2_c00129{color:transparent;}
.fc1_c00129{color:rgb(0,0,0);}
.fc0_c00129{color:rgb(128,128,128);}
.fs0_c00129{font-size:69.618741px;}
.fs1_c00129{font-size:71.999997px;}
.y0_c00129{bottom:0.000000px;}
.y1_c00129{bottom:0.000008px;}
.y24_c00129{bottom:29.401163px;}
.y2_c00129{bottom:30.348053px;}
.y23_c00129{bottom:197.847413px;}
.y22_c00129{bottom:228.222412px;}
.y21_c00129{bottom:258.597410px;}
.y20_c00129{bottom:288.972409px;}
.y1f_c00129{bottom:319.347408px;}
.y1e_c00129{bottom:349.722407px;}
.y1d_c00129{bottom:380.097405px;}
.y1c_c00129{bottom:410.472404px;}
.y1b_c00129{bottom:440.847403px;}
.y1a_c00129{bottom:471.222402px;}
.y19_c00129{bottom:501.597400px;}
.y18_c00129{bottom:531.972399px;}
.y17_c00129{bottom:562.347398px;}
.y16_c00129{bottom:592.722397px;}
.y15_c00129{bottom:623.097395px;}
.y14_c00129{bottom:653.472394px;}
.y13_c00129{bottom:683.847393px;}
.y12_c00129{bottom:714.222391px;}
.y11_c00129{bottom:744.597390px;}
.y10_c00129{bottom:774.972389px;}
.yf_c00129{bottom:805.347388px;}
.ye_c00129{bottom:835.722386px;}
.yd_c00129{bottom:866.097385px;}
.yc_c00129{bottom:926.847383px;}
.yb_c00129{bottom:957.222381px;}
.ya_c00129{bottom:987.597380px;}
.y9_c00129{bottom:1017.972379px;}
.y8_c00129{bottom:1048.347378px;}
.y7_c00129{bottom:1078.722376px;}
.y6_c00129{bottom:1109.097375px;}
.y5_c00129{bottom:1139.472374px;}
.y4_c00129{bottom:1169.847372px;}
.y3_c00129{bottom:1200.222371px;}
.h3_c00129{height:50.480386px;}
.h4_c00129{height:67.042966px;}
.h2_c00129{height:1304.999946px;}
.h0_c00129{height:1304.999953px;}
.h1_c00129{height:1305.000000px;}
.w2_c00129{width:934.874961px;}
.w0_c00129{width:934.875000px;}
.w1_c00129{width:935.250000px;}
.x0_c00129{left:0.000000px;}
.x2_c00129{left:89.487450px;}
.x1_c00129{left:452.782029px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.ws0_c00129{word-spacing:-16.625000pt;}
.ws1_c00129{word-spacing:0.000000pt;}
._7_c00129{width:1.176087pt;}
._1_c00129{width:2.075866pt;}
._3_c00129{width:3.710203pt;}
._5_c00129{width:5.049987pt;}
._a_c00129{width:6.168211pt;}
._6_c00129{width:7.197873pt;}
._4_c00129{width:8.874999pt;}
._0_c00129{width:11.432250pt;}
._c_c00129{width:13.067994pt;}
._8_c00129{width:14.398987pt;}
._e_c00129{width:15.316832pt;}
._d_c00129{width:17.674925pt;}
._2_c00129{width:19.687499pt;}
._b_c00129{width:20.687503pt;}
._9_c00129{width:23.223201pt;}
._f_c00129{width:25.243041pt;}
._10_c00129{width:31.548583pt;}
.fs0_c00129{font-size:61.883325pt;}
.fs1_c00129{font-size:63.999997pt;}
.y0_c00129{bottom:0.000000pt;}
.y1_c00129{bottom:0.000007pt;}
.y24_c00129{bottom:26.134367pt;}
.y2_c00129{bottom:26.976047pt;}
.y23_c00129{bottom:175.864367pt;}
.y22_c00129{bottom:202.864366pt;}
.y21_c00129{bottom:229.864365pt;}
.y20_c00129{bottom:256.864364pt;}
.y1f_c00129{bottom:283.864363pt;}
.y1e_c00129{bottom:310.864361pt;}
.y1d_c00129{bottom:337.864360pt;}
.y1c_c00129{bottom:364.864359pt;}
.y1b_c00129{bottom:391.864358pt;}
.y1a_c00129{bottom:418.864357pt;}
.y19_c00129{bottom:445.864356pt;}
.y18_c00129{bottom:472.864355pt;}
.y17_c00129{bottom:499.864354pt;}
.y16_c00129{bottom:526.864352pt;}
.y15_c00129{bottom:553.864351pt;}
.y14_c00129{bottom:580.864350pt;}
.y13_c00129{bottom:607.864349pt;}
.y12_c00129{bottom:634.864348pt;}
.y11_c00129{bottom:661.864347pt;}
.y10_c00129{bottom:688.864346pt;}
.yf_c00129{bottom:715.864345pt;}
.ye_c00129{bottom:742.864343pt;}
.yd_c00129{bottom:769.864342pt;}
.yc_c00129{bottom:823.864340pt;}
.yb_c00129{bottom:850.864339pt;}
.ya_c00129{bottom:877.864338pt;}
.y9_c00129{bottom:904.864337pt;}
.y8_c00129{bottom:931.864336pt;}
.y7_c00129{bottom:958.864334pt;}
.y6_c00129{bottom:985.864333pt;}
.y5_c00129{bottom:1012.864332pt;}
.y4_c00129{bottom:1039.864331pt;}
.y3_c00129{bottom:1066.864330pt;}
.h3_c00129{height:44.871454pt;}
.h4_c00129{height:59.593748pt;}
.h2_c00129{height:1159.999952pt;}
.h0_c00129{height:1159.999959pt;}
.h1_c00129{height:1160.000000pt;}
.w2_c00129{width:830.999965pt;}
.w0_c00129{width:831.000000pt;}
.w1_c00129{width:831.333333pt;}
.x0_c00129{left:0.000000pt;}
.x2_c00129{left:79.544400pt;}
.x1_c00129{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:0.734863;font-style:normal;font-weight:normal;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_4a2bf00103edcfb3ef11af62.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00130;src:url('chunks/assets/font_06c2674071d18e08c491e7e8.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.005371;font-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_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);}
.v0_c00130{vertical-align:0.000000px;}
.ls0_c00130{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00130{word-spacing:0.000000px;}
._3_c00130{width:1.888270px;}
._b_c00130{width:3.115585px;}
._5_c00130{width:4.511670px;}
._12_c00130{width:5.738571px;}
._8_c00130{width:7.155600px;}
._9_c00130{width:8.306488px;}
._0_c00130{width:9.332336px;}
._2_c00130{width:11.296141px;}
._7_c00130{width:12.578107px;}
._4_c00130{width:13.675780px;}
._d_c00130{width:15.161821px;}
._e_c00130{width:17.146086px;}
._f_c00130{width:22.042969px;}
._a_c00130{width:24.820312px;}
._11_c00130{width:25.889003px;}
._10_c00130{width:31.634719px;}
._c_c00130{width:33.674263px;}
._13_c00130{width:35.386342px;}
._6_c00130{width:36.892910px;}
._1_c00130{width:38.678261px;}
.fc2_c00130{color:transparent;}
.fc1_c00130{color:rgb(0,0,0);}
.fc0_c00130{color:rgb(128,128,128);}
.fs0_c00130{font-size:69.618741px;}
.fs1_c00130{font-size:71.999997px;}
.y0_c00130{bottom:0.000000px;}
.y1_c00130{bottom:0.000008px;}
.y27_c00130{bottom:29.401163px;}
.y2_c00130{bottom:30.348053px;}
.y26_c00130{bottom:102.174321px;}
.y25_c00130{bottom:132.549320px;}
.y24_c00130{bottom:162.924318px;}
.y23_c00130{bottom:193.299317px;}
.y22_c00130{bottom:223.674316px;}
.y21_c00130{bottom:254.049315px;}
.y20_c00130{bottom:284.424313px;}
.y1f_c00130{bottom:314.799312px;}
.y1e_c00130{bottom:345.174311px;}
.y1d_c00130{bottom:375.549310px;}
.y1c_c00130{bottom:405.924308px;}
.y1b_c00130{bottom:436.299307px;}
.y1a_c00130{bottom:466.674306px;}
.y19_c00130{bottom:497.049304px;}
.y18_c00130{bottom:527.424303px;}
.y17_c00130{bottom:557.799302px;}
.y16_c00130{bottom:588.174301px;}
.y15_c00130{bottom:618.549299px;}
.y14_c00130{bottom:648.924298px;}
.y13_c00130{bottom:679.299297px;}
.y12_c00130{bottom:709.674296px;}
.y11_c00130{bottom:740.049294px;}
.y10_c00130{bottom:770.424293px;}
.yf_c00130{bottom:800.799292px;}
.ye_c00130{bottom:831.174291px;}
.yd_c00130{bottom:861.549289px;}
.yc_c00130{bottom:891.924288px;}
.yb_c00130{bottom:922.299287px;}
.ya_c00130{bottom:952.674286px;}
.y9_c00130{bottom:983.049284px;}
.y8_c00130{bottom:1013.424283px;}
.y7_c00130{bottom:1043.799282px;}
.y6_c00130{bottom:1074.174280px;}
.y5_c00130{bottom:1104.549279px;}
.y4_c00130{bottom:1134.924278px;}
.y3_c00130{bottom:1165.299277px;}
.h3_c00130{height:50.480386px;}
.h4_c00130{height:55.160154px;}
.h2_c00130{height:1304.999946px;}
.h0_c00130{height:1304.999953px;}
.h1_c00130{height:1305.000000px;}
.w2_c00130{width:934.874961px;}
.w0_c00130{width:934.875000px;}
.w1_c00130{width:935.250000px;}
.x0_c00130{left:0.000000px;}
.x2_c00130{left:90.092678px;}
.x1_c00130{left:452.782029px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:0.000000pt;}
._3_c00130{width:1.678462pt;}
._b_c00130{width:2.769409pt;}
._5_c00130{width:4.010373pt;}
._12_c00130{width:5.100952pt;}
._8_c00130{width:6.360533pt;}
._9_c00130{width:7.383545pt;}
._0_c00130{width:8.295409pt;}
._2_c00130{width:10.041014pt;}
._7_c00130{width:11.180539pt;}
._4_c00130{width:12.156249pt;}
._d_c00130{width:13.477174pt;}
._e_c00130{width:15.240965pt;}
._f_c00130{width:19.593751pt;}
._a_c00130{width:22.062500pt;}
._11_c00130{width:23.012447pt;}
._10_c00130{width:28.119750pt;}
._c_c00130{width:29.932678pt;}
._13_c00130{width:31.454526pt;}
._6_c00130{width:32.793698pt;}
._1_c00130{width:34.380677pt;}
.fs0_c00130{font-size:61.883325pt;}
.fs1_c00130{font-size:63.999997pt;}
.y0_c00130{bottom:0.000000pt;}
.y1_c00130{bottom:0.000007pt;}
.y27_c00130{bottom:26.134367pt;}
.y2_c00130{bottom:26.976047pt;}
.y26_c00130{bottom:90.821619pt;}
.y25_c00130{bottom:117.821617pt;}
.y24_c00130{bottom:144.821616pt;}
.y23_c00130{bottom:171.821615pt;}
.y22_c00130{bottom:198.821614pt;}
.y21_c00130{bottom:225.821613pt;}
.y20_c00130{bottom:252.821612pt;}
.y1f_c00130{bottom:279.821611pt;}
.y1e_c00130{bottom:306.821610pt;}
.y1d_c00130{bottom:333.821608pt;}
.y1c_c00130{bottom:360.821607pt;}
.y1b_c00130{bottom:387.821606pt;}
.y1a_c00130{bottom:414.821605pt;}
.y19_c00130{bottom:441.821604pt;}
.y18_c00130{bottom:468.821603pt;}
.y17_c00130{bottom:495.821602pt;}
.y16_c00130{bottom:522.821601pt;}
.y15_c00130{bottom:549.821599pt;}
.y14_c00130{bottom:576.821598pt;}
.y13_c00130{bottom:603.821597pt;}
.y12_c00130{bottom:630.821596pt;}
.y11_c00130{bottom:657.821595pt;}
.y10_c00130{bottom:684.821594pt;}
.yf_c00130{bottom:711.821593pt;}
.ye_c00130{bottom:738.821592pt;}
.yd_c00130{bottom:765.821590pt;}
.yc_c00130{bottom:792.821589pt;}
.yb_c00130{bottom:819.821588pt;}
.ya_c00130{bottom:846.821587pt;}
.y9_c00130{bottom:873.821586pt;}
.y8_c00130{bottom:900.821585pt;}
.y7_c00130{bottom:927.821584pt;}
.y6_c00130{bottom:954.821583pt;}
.y5_c00130{bottom:981.821581pt;}
.y4_c00130{bottom:1008.821580pt;}
.y3_c00130{bottom:1035.821579pt;}
.h3_c00130{height:44.871454pt;}
.h4_c00130{height:49.031248pt;}
.h2_c00130{height:1159.999952pt;}
.h0_c00130{height:1159.999959pt;}
.h1_c00130{height:1160.000000pt;}
.w2_c00130{width:830.999965pt;}
.w0_c00130{width:831.000000pt;}
.w1_c00130{width:831.333333pt;}
.x0_c00130{left:0.000000pt;}
.x2_c00130{left:80.082381pt;}
.x1_c00130{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:0.734863;font-style:normal;font-weight:normal;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_cdd353edb7817251692bcfff.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.006348;font-style:normal;font-weight:normal;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_d27bca2156322e3dc8ace955.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00131;src:url('chunks/assets/font_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.006348;font-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_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);}
.v0_c00131{vertical-align:0.000000px;}
.ls0_c00131{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00131{word-spacing:-18.703125px;}
.ws1_c00131{word-spacing:0.000000px;}
._1_c00131{width:1.574958px;}
._2_c00131{width:2.743355px;}
._5_c00131{width:4.732564px;}
._c_c00131{width:6.087042px;}
._9_c00131{width:7.600135px;}
._8_c00131{width:8.658460px;}
._e_c00131{width:9.680064px;}
._b_c00131{width:10.804639px;}
._0_c00131{width:17.537063px;}
._10_c00131{width:21.550781px;}
._3_c00131{width:24.046873px;}
._6_c00131{width:28.029075px;}
._a_c00131{width:29.519022px;}
._f_c00131{width:35.810138px;}
._4_c00131{width:39.272685px;}
._7_c00131{width:46.168943px;}
._d_c00131{width:49.851562px;}
.fc3_c00131{color:transparent;}
.fc2_c00131{color:rgb(67,91,56);}
.fc1_c00131{color:rgb(0,0,0);}
.fc0_c00131{color:rgb(128,128,128);}
.fs0_c00131{font-size:69.618741px;}
.fs1_c00131{font-size:71.999997px;}
.y0_c00131{bottom:0.000000px;}
.y1_c00131{bottom:0.000008px;}
.y10_c00131{bottom:29.400983px;}
.y2_c00131{bottom:30.347873px;}
.y27_c00131{bottom:100.466708px;}
.y26_c00131{bottom:130.841707px;}
.y25_c00131{bottom:161.216705px;}
.y24_c00131{bottom:191.591704px;}
.y23_c00131{bottom:221.966703px;}
.y22_c00131{bottom:252.341701px;}
.y21_c00131{bottom:282.716700px;}
.y20_c00131{bottom:313.091699px;}
.y1f_c00131{bottom:343.466698px;}
.y1e_c00131{bottom:373.841696px;}
.y1d_c00131{bottom:404.216695px;}
.y1c_c00131{bottom:434.591694px;}
.y1b_c00131{bottom:464.966693px;}
.y1a_c00131{bottom:492.754731px;}
.y19_c00131{bottom:544.205544px;}
.y18_c00131{bottom:574.580543px;}
.y17_c00131{bottom:604.955542px;}
.y16_c00131{bottom:635.330540px;}
.y15_c00131{bottom:665.705539px;}
.y14_c00131{bottom:696.080538px;}
.y13_c00131{bottom:726.455537px;}
.y12_c00131{bottom:756.830535px;}
.y11_c00131{bottom:784.271570px;}
.yf_c00131{bottom:835.722210px;}
.ye_c00131{bottom:866.097209px;}
.yd_c00131{bottom:896.472207px;}
.yc_c00131{bottom:926.847206px;}
.yb_c00131{bottom:957.222205px;}
.ya_c00131{bottom:987.597204px;}
.y9_c00131{bottom:1017.972202px;}
.y8_c00131{bottom:1048.347201px;}
.y7_c00131{bottom:1078.722200px;}
.y6_c00131{bottom:1109.097199px;}
.y5_c00131{bottom:1139.472197px;}
.y4_c00131{bottom:1169.847196px;}
.y3_c00131{bottom:1200.222195px;}
.h3_c00131{height:50.480386px;}
.h4_c00131{height:55.160154px;}
.h2_c00131{height:1304.999946px;}
.h0_c00131{height:1304.999953px;}
.h1_c00131{height:1305.000000px;}
.w2_c00131{width:934.874961px;}
.w0_c00131{width:934.875000px;}
.w1_c00131{width:935.250000px;}
.x0_c00131{left:0.000000px;}
.x3_c00131{left:87.902647px;}
.x2_c00131{left:90.092678px;}
.x1_c00131{left:452.782029px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws0_c00131{word-spacing:-16.625000pt;}
.ws1_c00131{word-spacing:0.000000pt;}
._1_c00131{width:1.399963pt;}
._2_c00131{width:2.438538pt;}
._5_c00131{width:4.206724pt;}
._c_c00131{width:5.410704pt;}
._9_c00131{width:6.755676pt;}
._8_c00131{width:7.696409pt;}
._e_c00131{width:8.604501pt;}
._b_c00131{width:9.604123pt;}
._0_c00131{width:15.588500pt;}
._10_c00131{width:19.156250pt;}
._3_c00131{width:21.374998pt;}
._6_c00131{width:24.914733pt;}
._a_c00131{width:26.239130pt;}
._f_c00131{width:31.831234pt;}
._4_c00131{width:34.909054pt;}
._7_c00131{width:41.039060pt;}
._d_c00131{width:44.312499pt;}
.fs0_c00131{font-size:61.883325pt;}
.fs1_c00131{font-size:63.999997pt;}
.y0_c00131{bottom:0.000000pt;}
.y1_c00131{bottom:0.000007pt;}
.y10_c00131{bottom:26.134207pt;}
.y2_c00131{bottom:26.975887pt;}
.y27_c00131{bottom:89.303740pt;}
.y26_c00131{bottom:116.303739pt;}
.y25_c00131{bottom:143.303738pt;}
.y24_c00131{bottom:170.303737pt;}
.y23_c00131{bottom:197.303736pt;}
.y22_c00131{bottom:224.303735pt;}
.y21_c00131{bottom:251.303734pt;}
.y20_c00131{bottom:278.303732pt;}
.y1f_c00131{bottom:305.303731pt;}
.y1e_c00131{bottom:332.303730pt;}
.y1d_c00131{bottom:359.303729pt;}
.y1c_c00131{bottom:386.303728pt;}
.y1b_c00131{bottom:413.303727pt;}
.y1a_c00131{bottom:438.004206pt;}
.y19_c00131{bottom:483.738261pt;}
.y18_c00131{bottom:510.738260pt;}
.y17_c00131{bottom:537.738259pt;}
.y16_c00131{bottom:564.738258pt;}
.y15_c00131{bottom:591.738257pt;}
.y14_c00131{bottom:618.738256pt;}
.y13_c00131{bottom:645.738255pt;}
.y12_c00131{bottom:672.738254pt;}
.y11_c00131{bottom:697.130285pt;}
.yf_c00131{bottom:742.864187pt;}
.ye_c00131{bottom:769.864186pt;}
.yd_c00131{bottom:796.864184pt;}
.yc_c00131{bottom:823.864183pt;}
.yb_c00131{bottom:850.864182pt;}
.ya_c00131{bottom:877.864181pt;}
.y9_c00131{bottom:904.864180pt;}
.y8_c00131{bottom:931.864179pt;}
.y7_c00131{bottom:958.864178pt;}
.y6_c00131{bottom:985.864177pt;}
.y5_c00131{bottom:1012.864175pt;}
.y4_c00131{bottom:1039.864174pt;}
.y3_c00131{bottom:1066.864173pt;}
.h3_c00131{height:44.871454pt;}
.h4_c00131{height:49.031248pt;}
.h2_c00131{height:1159.999952pt;}
.h0_c00131{height:1159.999959pt;}
.h1_c00131{height:1160.000000pt;}
.w2_c00131{width:830.999965pt;}
.w0_c00131{width:831.000000pt;}
.w1_c00131{width:831.333333pt;}
.x0_c00131{left:0.000000pt;}
.x3_c00131{left:78.135686pt;}
.x2_c00131{left:80.082381pt;}
.x1_c00131{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_71966998e02927986437bab0.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:0.774902;font-style:normal;font-weight:normal;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_42915818efccc45ac09bba32.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.171387;font-style:normal;font-weight:normal;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_9773c124ca11bdded9edc0c1.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00132;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.006348;font-style:normal;font-weight: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_c00132;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:0.734863;font-style:normal;font-weight: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_c00132;src:url('chunks/assets/font_e83b4986c00cfe8e63078caf.woff2')format("woff");}.ff6_c00132{font-family:ff6_c00132;line-height:1.000000;font-style:normal;font-weight: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_c00132;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff7_c00132{font-family:ff7_c00132;line-height:0.734863;font-style:normal;font-weight: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_c00132;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff8_c00132{font-family:ff8_c00132;line-height:0.769531;font-style:normal;font-weight: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_c00132;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff9_c00132{font-family:ff9_c00132;line-height:0.743000;font-style:normal;font-weight: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_c00132;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ffa_c00132{font-family:ffa_c00132;line-height:0.894000;font-style:normal;font-weight: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_c00132;src:url('chunks/assets/font_4fb6c80ed135b7d7a484078a.woff2')format("woff");}.ffb_c00132{font-family:ffb_c00132;line-height:0.940000;font-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_c00132{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00132{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00132{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00132{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00132{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00132{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00132{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00132{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00132{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00132{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00132{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00132{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00132{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00132{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00132{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00132{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00132{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00132{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00132{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00132{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00132{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00132{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00132{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00132{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00132{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00132{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00132{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00132{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00132{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00132{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00132{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00132{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00132{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00132{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00132{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00132{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00132{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00132{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00132{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00132{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00132{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00132{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00132{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00132{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00132{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00132{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00132{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00132{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00132{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00132{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00132{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00132{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00132{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00132{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00132{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00132{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00132{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00132{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00132{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00132{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00132{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00132{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00132{vertical-align:0.000000px;}
.ls0_c00132{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00132{word-spacing:-16.915769px;}
.ws1_c00132{word-spacing:-15.171263px;}
.ws0_c00132{word-spacing:-14.483232px;}
.ws4_c00132{word-spacing:0.000000px;}
.ws2_c00132{word-spacing:281.638789px;}
._4_c00132{width:3.662637px;}
._0_c00132{width:5.933235px;}
._2_c00132{width:7.461291px;}
._3_c00132{width:10.209317px;}
._7_c00132{width:12.907208px;}
._6_c00132{width:13.992190px;}
._5_c00132{width:20.023404px;}
._1_c00132{width:37.272627px;}
.fc5_c00132{color:transparent;}
.fc4_c00132{color:rgb(9,71,81);}
.fc2_c00132{color:rgb(67,91,56);}
.fc3_c00132{color:rgb(128,128,128);}
.fc1_c00132{color:rgb(0,0,0);}
.fc0_c00132{color:rgb(255,255,255);}
.fs5_c00132{font-size:39.757786px;}
.fsf_c00132{font-size:41.999830px;}
.fs4_c00132{font-size:42.000118px;}
.fsc_c00132{font-size:47.368230px;}
.fs9_c00132{font-size:47.368231px;}
.fsd_c00132{font-size:47.368232px;}
.fsa_c00132{font-size:47.368233px;}
.fsb_c00132{font-size:47.368235px;}
.fs8_c00132{font-size:51.661596px;}
.fs0_c00132{font-size:55.754999px;}
.fs10_c00132{font-size:56.421836px;}
.fs11_c00132{font-size:59.984997px;}
.fs6_c00132{font-size:69.618741px;}
.fs1_c00132{font-size:71.999997px;}
.fs2_c00132{font-size:74.424240px;}
.fse_c00132{font-size:77.011488px;}
.fs3_c00132{font-size:89.985250px;}
.fs7_c00132{font-size:95.984996px;}
.y0_c00132{bottom:0.000000px;}
.y1_c00132{bottom:0.000008px;}
.y13_c00132{bottom:29.401163px;}
.y11_c00132{bottom:30.348053px;}
.yb_c00132{bottom:58.870546px;}
.ya_c00132{bottom:89.245544px;}
.y9_c00132{bottom:119.620543px;}
.y8_c00132{bottom:149.995542px;}
.y7_c00132{bottom:180.370540px;}
.y6_c00132{bottom:210.745539px;}
.y5_c00132{bottom:241.120538px;}
.y4_c00132{bottom:271.495537px;}
.y3_c00132{bottom:301.870535px;}
.yc_c00132{bottom:338.449334px;}
.y14_c00132{bottom:401.525233px;}
.y40_c00132{bottom:486.888550px;}
.y22_c00132{bottom:493.328193px;}
.y36_c00132{bottom:493.343399px;}
.y21_c00132{bottom:493.853709px;}
.y37_c00132{bottom:493.873421px;}
.y4e_c00132{bottom:493.959311px;}
.y35_c00132{bottom:494.588120px;}
.y4f_c00132{bottom:494.792564px;}
.y4d_c00132{bottom:494.812830px;}
.y20_c00132{bottom:494.919675px;}
.y34_c00132{bottom:495.839509px;}
.y4c_c00132{bottom:495.847693px;}
.y1f_c00132{bottom:495.993006px;}
.y38_c00132{bottom:496.289992px;}
.y23_c00132{bottom:496.353473px;}
.y50_c00132{bottom:496.974167px;}
.y33_c00132{bottom:497.484380px;}
.y1e_c00132{bottom:497.644566px;}
.y4b_c00132{bottom:498.050345px;}
.y51_c00132{bottom:498.364816px;}
.y32_c00132{bottom:499.172711px;}
.y1d_c00132{bottom:499.338107px;}
.y52_c00132{bottom:500.063439px;}
.y24_c00132{bottom:500.630691px;}
.y31_c00132{bottom:501.037625px;}
.y1c_c00132{bottom:501.208280px;}
.y39_c00132{bottom:501.390523px;}
.y4a_c00132{bottom:501.841887px;}
.y53_c00132{bottom:502.505484px;}
.y25_c00132{bottom:503.149521px;}
.y54_c00132{bottom:504.764625px;}
.y3a_c00132{bottom:505.019047px;}
.y30_c00132{bottom:505.692124px;}
.y1b_c00132{bottom:505.871886px;}
.y49_c00132{bottom:507.310818px;}
.y55_c00132{bottom:508.033427px;}
.y26_c00132{bottom:509.101920px;}
.y3b_c00132{bottom:510.652700px;}
.y48_c00132{bottom:511.777229px;}
.y2f_c00132{bottom:512.093421px;}
.y1a_c00132{bottom:512.281650px;}
.y27_c00132{bottom:513.850725px;}
.y56_c00132{bottom:516.430791px;}
.y3c_c00132{bottom:517.310242px;}
.y47_c00132{bottom:518.201920px;}
.y2e_c00132{bottom:519.400744px;}
.y19_c00132{bottom:519.490765px;}
.y46_c00132{bottom:522.772118px;}
.y18_c00132{bottom:522.949612px;}
.y57_c00132{bottom:524.479585px;}
.y28_c00132{bottom:525.634639px;}
.y2d_c00132{bottom:526.562252px;}
.y17_c00132{bottom:528.959751px;}
.y3d_c00132{bottom:529.273374px;}
.y45_c00132{bottom:530.544173px;}
.y2c_c00132{bottom:531.331731px;}
.y3f_c00132{bottom:533.268367px;}
.y43_c00132{bottom:533.962015px;}
.y58_c00132{bottom:534.281911px;}
.y44_c00132{bottom:534.438127px;}
.y16_c00132{bottom:536.219342px;}
.y2b_c00132{bottom:537.503874px;}
.y29_c00132{bottom:537.875309px;}
.y3e_c00132{bottom:538.238862px;}
.y41_c00132{bottom:539.974832px;}
.y2a_c00132{bottom:544.567530px;}
.y15_c00132{bottom:545.754118px;}
.y42_c00132{bottom:577.436970px;}
.y2_c00132{bottom:639.092421px;}
.y5a_c00132{bottom:968.511758px;}
.y59_c00132{bottom:1025.000528px;}
.y10_c00132{bottom:1128.788391px;}
.ye_c00132{bottom:1133.738586px;}
.yd_c00132{bottom:1147.738626px;}
.y12_c00132{bottom:1153.262238px;}
.yf_c00132{bottom:1171.082869px;}
.h15_c00132{height:32.176627px;}
.h11_c00132{height:35.988753px;}
.h12_c00132{height:35.988755px;}
.h13_c00132{height:35.988756px;}
.h10_c00132{height:36.289430px;}
.hd_c00132{height:36.289431px;}
.he_c00132{height:36.289433px;}
.hf_c00132{height:36.289434px;}
.h8_c00132{height:37.020556px;}
.hc_c00132{height:37.459702px;}
.h7_c00132{height:39.108509px;}
.h16_c00132{height:42.880595px;}
.h17_c00132{height:45.588598px;}
.ha_c00132{height:50.480386px;}
.h3_c00132{height:51.916398px;}
.h4_c00132{height:55.160154px;}
.h14_c00132{height:56.295398px;}
.h5_c00132{height:57.017399px;}
.h9_c00132{height:67.042966px;}
.h6_c00132{height:68.851019px;}
.hb_c00132{height:89.376654px;}
.h2_c00132{height:1304.999946px;}
.h0_c00132{height:1304.999953px;}
.h1_c00132{height:1305.000000px;}
.w2_c00132{width:934.874961px;}
.w0_c00132{width:934.875000px;}
.w1_c00132{width:935.250000px;}
.x0_c00132{left:0.000000px;}
.x3_c00132{left:87.902647px;}
.x2_c00132{left:89.487450px;}
.x4_c00132{left:107.230262px;}
.x5_c00132{left:108.827167px;}
.x42_c00132{left:128.775275px;}
.x1a_c00132{left:134.974838px;}
.x19_c00132{left:136.648279px;}
.x1b_c00132{left:140.021272px;}
.x1c_c00132{left:144.871714px;}
.x1d_c00132{left:150.237526px;}
.x1e_c00132{left:152.990336px;}
.x1f_c00132{left:156.000220px;}
.x20_c00132{left:159.847713px;}
.x2a_c00132{left:161.443962px;}
.x21_c00132{left:163.301377px;}
.x22_c00132{left:171.586339px;}
.x23_c00132{left:179.855997px;}
.x24_c00132{left:188.287487px;}
.x25_c00132{left:196.673970px;}
.x26_c00132{left:200.841336px;}
.x27_c00132{left:205.399483px;}
.x28_c00132{left:209.208896px;}
.x29_c00132{left:211.795693px;}
.xa_c00132{left:230.398389px;}
.x9_c00132{left:232.534609px;}
.xb_c00132{left:235.623324px;}
.xc_c00132{left:240.462566px;}
.xd_c00132{left:245.820252px;}
.xe_c00132{left:248.569815px;}
.xf_c00132{left:251.576732px;}
.x10_c00132{left:255.421336px;}
.x2e_c00132{left:256.622047px;}
.x11_c00132{left:258.708042px;}
.x12_c00132{left:263.145298px;}
.x13_c00132{left:271.763354px;}
.x14_c00132{left:283.603990px;}
.x15_c00132{left:291.041304px;}
.x6_c00132{left:295.177092px;}
.x16_c00132{left:299.775542px;}
.x17_c00132{left:303.165014px;}
.x18_c00132{left:307.176807px;}
.x2f_c00132{left:327.047435px;}
.x30_c00132{left:328.264734px;}
.x31_c00132{left:329.685747px;}
.x32_c00132{left:333.082971px;}
.x33_c00132{left:336.307511px;}
.x34_c00132{left:342.189757px;}
.x35_c00132{left:348.376740px;}
.x36_c00132{left:354.069743px;}
.x37_c00132{left:357.479743px;}
.x38_c00132{left:365.386869px;}
.x39_c00132{left:373.375785px;}
.x3a_c00132{left:380.135498px;}
.x3b_c00132{left:383.155707px;}
.x3c_c00132{left:386.159935px;}
.x3d_c00132{left:389.557910px;}
.x3e_c00132{left:392.174988px;}
.x3f_c00132{left:395.489533px;}
.x40_c00132{left:400.664851px;}
.x41_c00132{left:403.469600px;}
.x7_c00132{left:452.786554px;}
.x2c_c00132{left:464.896169px;}
.x1_c00132{left:676.878164px;}
.x8_c00132{left:697.320842px;}
.x2d_c00132{left:733.540639px;}
.x2b_c00132{left:757.088990px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls0_c00132{letter-spacing:0.000000pt;}
.ws3_c00132{word-spacing:-15.036239pt;}
.ws1_c00132{word-spacing:-13.485567pt;}
.ws0_c00132{word-spacing:-12.873984pt;}
.ws4_c00132{word-spacing:0.000000pt;}
.ws2_c00132{word-spacing:250.345590pt;}
._4_c00132{width:3.255677pt;}
._0_c00132{width:5.273987pt;}
._2_c00132{width:6.632259pt;}
._3_c00132{width:9.074949pt;}
._7_c00132{width:11.473074pt;}
._6_c00132{width:12.437502pt;}
._5_c00132{width:17.798581pt;}
._1_c00132{width:33.131224pt;}
.fs5_c00132{font-size:35.340254pt;}
.fsf_c00132{font-size:37.333182pt;}
.fs4_c00132{font-size:37.333438pt;}
.fsc_c00132{font-size:42.105093pt;}
.fs9_c00132{font-size:42.105094pt;}
.fsd_c00132{font-size:42.105095pt;}
.fsa_c00132{font-size:42.105096pt;}
.fsb_c00132{font-size:42.105098pt;}
.fs8_c00132{font-size:45.921418pt;}
.fs0_c00132{font-size:49.559999pt;}
.fs10_c00132{font-size:50.152743pt;}
.fs11_c00132{font-size:53.319997pt;}
.fs6_c00132{font-size:61.883325pt;}
.fs1_c00132{font-size:63.999997pt;}
.fs2_c00132{font-size:66.154880pt;}
.fse_c00132{font-size:68.454656pt;}
.fs3_c00132{font-size:79.986889pt;}
.fs7_c00132{font-size:85.319996pt;}
.y0_c00132{bottom:0.000000pt;}
.y1_c00132{bottom:0.000007pt;}
.y13_c00132{bottom:26.134367pt;}
.y11_c00132{bottom:26.976047pt;}
.yb_c00132{bottom:52.329374pt;}
.ya_c00132{bottom:79.329373pt;}
.y9_c00132{bottom:106.329372pt;}
.y8_c00132{bottom:133.329370pt;}
.y7_c00132{bottom:160.329369pt;}
.y6_c00132{bottom:187.329368pt;}
.y5_c00132{bottom:214.329367pt;}
.y4_c00132{bottom:241.329366pt;}
.y3_c00132{bottom:268.329365pt;}
.yc_c00132{bottom:300.843853pt;}
.y14_c00132{bottom:356.911319pt;}
.y40_c00132{bottom:432.789822pt;}
.y22_c00132{bottom:438.513950pt;}
.y36_c00132{bottom:438.527466pt;}
.y21_c00132{bottom:438.981074pt;}
.y37_c00132{bottom:438.998596pt;}
.y4e_c00132{bottom:439.074943pt;}
.y35_c00132{bottom:439.633885pt;}
.y4f_c00132{bottom:439.815613pt;}
.y4d_c00132{bottom:439.833627pt;}
.y20_c00132{bottom:439.928600pt;}
.y34_c00132{bottom:440.746230pt;}
.y4c_c00132{bottom:440.753505pt;}
.y1f_c00132{bottom:440.882672pt;}
.y38_c00132{bottom:441.146660pt;}
.y23_c00132{bottom:441.203087pt;}
.y50_c00132{bottom:441.754815pt;}
.y33_c00132{bottom:442.208338pt;}
.y1e_c00132{bottom:442.350726pt;}
.y4b_c00132{bottom:442.711417pt;}
.y51_c00132{bottom:442.990948pt;}
.y32_c00132{bottom:443.709077pt;}
.y1d_c00132{bottom:443.856095pt;}
.y52_c00132{bottom:444.500834pt;}
.y24_c00132{bottom:445.005059pt;}
.y31_c00132{bottom:445.366778pt;}
.y1c_c00132{bottom:445.518471pt;}
.y39_c00132{bottom:445.680465pt;}
.y4a_c00132{bottom:446.081677pt;}
.y53_c00132{bottom:446.671541pt;}
.y25_c00132{bottom:447.244019pt;}
.y54_c00132{bottom:448.679667pt;}
.y3a_c00132{bottom:448.905819pt;}
.y30_c00132{bottom:449.504110pt;}
.y1b_c00132{bottom:449.663899pt;}
.y49_c00132{bottom:450.942950pt;}
.y55_c00132{bottom:451.585269pt;}
.y26_c00132{bottom:452.535040pt;}
.y3b_c00132{bottom:453.913511pt;}
.y48_c00132{bottom:454.913093pt;}
.y2f_c00132{bottom:455.194152pt;}
.y1a_c00132{bottom:455.361467pt;}
.y27_c00132{bottom:456.756200pt;}
.y56_c00132{bottom:459.049592pt;}
.y3c_c00132{bottom:459.831327pt;}
.y47_c00132{bottom:460.623928pt;}
.y2e_c00132{bottom:461.689550pt;}
.y19_c00132{bottom:461.769569pt;}
.y46_c00132{bottom:464.686327pt;}
.y18_c00132{bottom:464.844100pt;}
.y57_c00132{bottom:466.204075pt;}
.y28_c00132{bottom:467.230790pt;}
.y2d_c00132{bottom:468.055335pt;}
.y17_c00132{bottom:470.186445pt;}
.y3d_c00132{bottom:470.465221pt;}
.y45_c00132{bottom:471.594820pt;}
.y2c_c00132{bottom:472.294872pt;}
.y3f_c00132{bottom:474.016326pt;}
.y43_c00132{bottom:474.632902pt;}
.y58_c00132{bottom:474.917254pt;}
.y44_c00132{bottom:475.056113pt;}
.y16_c00132{bottom:476.639415pt;}
.y2b_c00132{bottom:477.781221pt;}
.y29_c00132{bottom:478.111386pt;}
.y3e_c00132{bottom:478.434544pt;}
.y41_c00132{bottom:479.977628pt;}
.y2a_c00132{bottom:484.060027pt;}
.y15_c00132{bottom:485.114772pt;}
.y42_c00132{bottom:513.277307pt;}
.y2_c00132{bottom:568.082152pt;}
.y5a_c00132{bottom:860.899340pt;}
.y59_c00132{bottom:911.111580pt;}
.y10_c00132{bottom:1003.367459pt;}
.ye_c00132{bottom:1007.767632pt;}
.yd_c00132{bottom:1020.212112pt;}
.y12_c00132{bottom:1025.121989pt;}
.yf_c00132{bottom:1040.962550pt;}
.h15_c00132{height:28.601447pt;}
.h11_c00132{height:31.990003pt;}
.h12_c00132{height:31.990004pt;}
.h13_c00132{height:31.990006pt;}
.h10_c00132{height:32.257271pt;}
.hd_c00132{height:32.257272pt;}
.he_c00132{height:32.257274pt;}
.hf_c00132{height:32.257275pt;}
.h8_c00132{height:32.907161pt;}
.hc_c00132{height:33.297513pt;}
.h7_c00132{height:34.763119pt;}
.h16_c00132{height:38.116085pt;}
.h17_c00132{height:40.523198pt;}
.ha_c00132{height:44.871454pt;}
.h3_c00132{height:46.147909pt;}
.h4_c00132{height:49.031248pt;}
.h14_c00132{height:50.040354pt;}
.h5_c00132{height:50.682132pt;}
.h9_c00132{height:59.593748pt;}
.h6_c00132{height:61.200906pt;}
.hb_c00132{height:79.445915pt;}
.h2_c00132{height:1159.999952pt;}
.h0_c00132{height:1159.999959pt;}
.h1_c00132{height:1160.000000pt;}
.w2_c00132{width:830.999965pt;}
.w0_c00132{width:831.000000pt;}
.w1_c00132{width:831.333333pt;}
.x0_c00132{left:0.000000pt;}
.x3_c00132{left:78.135686pt;}
.x2_c00132{left:79.544400pt;}
.x4_c00132{left:95.315788pt;}
.x5_c00132{left:96.735260pt;}
.x42_c00132{left:114.466911pt;}
.x1a_c00132{left:119.977634pt;}
.x19_c00132{left:121.465137pt;}
.x1b_c00132{left:124.463353pt;}
.x1c_c00132{left:128.774857pt;}
.x1d_c00132{left:133.544468pt;}
.x1e_c00132{left:135.991410pt;}
.x1f_c00132{left:138.666862pt;}
.x20_c00132{left:142.086856pt;}
.x2a_c00132{left:143.505744pt;}
.x21_c00132{left:145.156780pt;}
.x22_c00132{left:152.521190pt;}
.x23_c00132{left:159.871997pt;}
.x24_c00132{left:167.366655pt;}
.x25_c00132{left:174.821307pt;}
.x26_c00132{left:178.525632pt;}
.x27_c00132{left:182.577318pt;}
.x28_c00132{left:185.963463pt;}
.x29_c00132{left:188.262839pt;}
.xa_c00132{left:204.798568pt;}
.x9_c00132{left:206.697430pt;}
.xb_c00132{left:209.442955pt;}
.xc_c00132{left:213.744503pt;}
.xd_c00132{left:218.506891pt;}
.xe_c00132{left:220.950947pt;}
.xf_c00132{left:223.623762pt;}
.x10_c00132{left:227.041187pt;}
.x2e_c00132{left:228.108486pt;}
.x11_c00132{left:229.962704pt;}
.x12_c00132{left:233.906932pt;}
.x13_c00132{left:241.567426pt;}
.x14_c00132{left:252.092435pt;}
.x15_c00132{left:258.703382pt;}
.x6_c00132{left:262.379637pt;}
.x16_c00132{left:266.467148pt;}
.x17_c00132{left:269.480012pt;}
.x18_c00132{left:273.046051pt;}
.x2f_c00132{left:290.708831pt;}
.x30_c00132{left:291.790874pt;}
.x31_c00132{left:293.053997pt;}
.x32_c00132{left:296.073752pt;}
.x33_c00132{left:298.940009pt;}
.x34_c00132{left:304.168673pt;}
.x35_c00132{left:309.668213pt;}
.x36_c00132{left:314.728661pt;}
.x37_c00132{left:317.759772pt;}
.x38_c00132{left:324.788328pt;}
.x39_c00132{left:331.889587pt;}
.x3a_c00132{left:337.898220pt;}
.x3b_c00132{left:340.582851pt;}
.x3c_c00132{left:343.253275pt;}
.x3d_c00132{left:346.273697pt;}
.x3e_c00132{left:348.599989pt;}
.x3f_c00132{left:351.546252pt;}
.x40_c00132{left:356.146534pt;}
.x41_c00132{left:358.639645pt;}
.x7_c00132{left:402.476937pt;}
.x2c_c00132{left:413.241039pt;}
.x1_c00132{left:601.669479pt;}
.x8_c00132{left:619.840748pt;}
.x2d_c00132{left:652.036124pt;}
.x2b_c00132{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0779200d161285b22ead1f1.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.006348;font-style:normal;font-weight:normal;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_2c614b4ffc0709eb586013d1.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.005371;font-style:normal;font-weight:normal;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_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00133;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:0.734863;font-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_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);}
.v0_c00133{vertical-align:0.000000px;}
.ls0_c00133{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00133{word-spacing:-19.320776px;}
.ws1_c00133{word-spacing:0.000000px;}
._8_c00133{width:1.233623px;}
._b_c00133{width:2.879657px;}
._c_c00133{width:4.248824px;}
._1_c00133{width:6.205077px;}
._5_c00133{width:7.447217px;}
._7_c00133{width:8.835888px;}
._a_c00133{width:10.715656px;}
._4_c00133{width:12.206218px;}
._d_c00133{width:14.165086px;}
._11_c00133{width:15.265899px;}
._9_c00133{width:16.359328px;}
._0_c00133{width:19.773457px;}
._3_c00133{width:23.048419px;}
._e_c00133{width:24.391363px;}
._2_c00133{width:28.406247px;}
._6_c00133{width:31.556236px;}
._10_c00133{width:33.004645px;}
._f_c00133{width:65.770266px;}
.fc3_c00133{color:transparent;}
.fc1_c00133{color:rgb(67,91,56);}
.fc2_c00133{color:rgb(128,128,128);}
.fc0_c00133{color:rgb(0,0,0);}
.fs1_c00133{font-size:69.618741px;}
.fs0_c00133{font-size:71.999997px;}
.fs2_c00133{font-size:74.377724px;}
.y0_c00133{bottom:0.000000px;}
.y1_c00133{bottom:0.000008px;}
.y25_c00133{bottom:29.401163px;}
.y1e_c00133{bottom:30.348053px;}
.y1c_c00133{bottom:110.480619px;}
.y1b_c00133{bottom:140.855617px;}
.y1a_c00133{bottom:171.230616px;}
.y19_c00133{bottom:201.605615px;}
.y18_c00133{bottom:231.980614px;}
.y17_c00133{bottom:262.355612px;}
.y16_c00133{bottom:292.730611px;}
.y15_c00133{bottom:323.105610px;}
.y14_c00133{bottom:353.480608px;}
.y13_c00133{bottom:383.855607px;}
.y12_c00133{bottom:414.230606px;}
.y11_c00133{bottom:444.605605px;}
.y10_c00133{bottom:474.980603px;}
.yf_c00133{bottom:505.355602px;}
.ye_c00133{bottom:535.730601px;}
.yd_c00133{bottom:566.105600px;}
.yc_c00133{bottom:596.480598px;}
.yb_c00133{bottom:626.855597px;}
.ya_c00133{bottom:657.230596px;}
.y9_c00133{bottom:687.605595px;}
.y8_c00133{bottom:717.980593px;}
.y7_c00133{bottom:748.355592px;}
.y6_c00133{bottom:778.730591px;}
.y5_c00133{bottom:809.105589px;}
.y4_c00133{bottom:839.480588px;}
.y3_c00133{bottom:869.855587px;}
.y2_c00133{bottom:900.230586px;}
.y1d_c00133{bottom:949.360388px;}
.y24_c00133{bottom:1034.541169px;}
.y23_c00133{bottom:1064.916168px;}
.y22_c00133{bottom:1095.291167px;}
.y21_c00133{bottom:1125.666165px;}
.y20_c00133{bottom:1156.041164px;}
.y1f_c00133{bottom:1199.188901px;}
.h4_c00133{height:50.480386px;}
.h3_c00133{height:55.160154px;}
.h5_c00133{height:56.981762px;}
.h2_c00133{height:1304.999946px;}
.h0_c00133{height:1304.999953px;}
.h1_c00133{height:1305.000000px;}
.w2_c00133{width:934.874961px;}
.w0_c00133{width:934.875000px;}
.w1_c00133{width:935.250000px;}
.x0_c00133{left:0.000000px;}
.x1_c00133{left:87.902647px;}
.x3_c00133{left:89.260034px;}
.x2_c00133{left:452.782029px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ws0_c00133{word-spacing:-17.174023pt;}
.ws1_c00133{word-spacing:0.000000pt;}
._8_c00133{width:1.096554pt;}
._b_c00133{width:2.559695pt;}
._c_c00133{width:3.776733pt;}
._1_c00133{width:5.515624pt;}
._5_c00133{width:6.619749pt;}
._7_c00133{width:7.854123pt;}
._a_c00133{width:9.525027pt;}
._4_c00133{width:10.849972pt;}
._d_c00133{width:12.591187pt;}
._11_c00133{width:13.569688pt;}
._9_c00133{width:14.541625pt;}
._0_c00133{width:17.576407pt;}
._3_c00133{width:20.487484pt;}
._e_c00133{width:21.681211pt;}
._2_c00133{width:25.249998pt;}
._6_c00133{width:28.049987pt;}
._10_c00133{width:29.337462pt;}
._f_c00133{width:58.462459pt;}
.fs1_c00133{font-size:61.883325pt;}
.fs0_c00133{font-size:63.999997pt;}
.fs2_c00133{font-size:66.113533pt;}
.y0_c00133{bottom:0.000000pt;}
.y1_c00133{bottom:0.000007pt;}
.y25_c00133{bottom:26.134367pt;}
.y1e_c00133{bottom:26.976047pt;}
.y1c_c00133{bottom:98.204994pt;}
.y1b_c00133{bottom:125.204993pt;}
.y1a_c00133{bottom:152.204992pt;}
.y19_c00133{bottom:179.204991pt;}
.y18_c00133{bottom:206.204990pt;}
.y17_c00133{bottom:233.204989pt;}
.y16_c00133{bottom:260.204988pt;}
.y15_c00133{bottom:287.204986pt;}
.y14_c00133{bottom:314.204985pt;}
.y13_c00133{bottom:341.204984pt;}
.y12_c00133{bottom:368.204983pt;}
.y11_c00133{bottom:395.204982pt;}
.y10_c00133{bottom:422.204981pt;}
.yf_c00133{bottom:449.204980pt;}
.ye_c00133{bottom:476.204979pt;}
.yd_c00133{bottom:503.204977pt;}
.yc_c00133{bottom:530.204976pt;}
.yb_c00133{bottom:557.204975pt;}
.ya_c00133{bottom:584.204974pt;}
.y9_c00133{bottom:611.204973pt;}
.y8_c00133{bottom:638.204972pt;}
.y7_c00133{bottom:665.204971pt;}
.y6_c00133{bottom:692.204970pt;}
.y5_c00133{bottom:719.204968pt;}
.y4_c00133{bottom:746.204967pt;}
.y3_c00133{bottom:773.204966pt;}
.y2_c00133{bottom:800.204965pt;}
.y1d_c00133{bottom:843.875901pt;}
.y24_c00133{bottom:919.592150pt;}
.y23_c00133{bottom:946.592149pt;}
.y22_c00133{bottom:973.592148pt;}
.y21_c00133{bottom:1000.592147pt;}
.y20_c00133{bottom:1027.592146pt;}
.y1f_c00133{bottom:1065.945690pt;}
.h4_c00133{height:44.871454pt;}
.h3_c00133{height:49.031248pt;}
.h5_c00133{height:50.650455pt;}
.h2_c00133{height:1159.999952pt;}
.h0_c00133{height:1159.999959pt;}
.h1_c00133{height:1160.000000pt;}
.w2_c00133{width:830.999965pt;}
.w0_c00133{width:831.000000pt;}
.w1_c00133{width:831.333333pt;}
.x0_c00133{left:0.000000pt;}
.x1_c00133{left:78.135686pt;}
.x3_c00133{left:79.342253pt;}
.x2_c00133{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.006348;font-style:normal;font-weight:normal;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_3daba8daf577f1dccb203428.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.006348;font-style:normal;font-weight:normal;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_29b12a42a424863008ba7106.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.005371;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:0.734863;font-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_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);}
.v0_c00134{vertical-align:0.000000px;}
.ls6_c00134{letter-spacing:0.000000px;}
.ls2_c00134{letter-spacing:0.035133px;}
.ls3_c00134{letter-spacing:8.648437px;}
.ls0_c00134{letter-spacing:9.632834px;}
.ls5_c00134{letter-spacing:12.234374px;}
.ls1_c00134{letter-spacing:16.031249px;}
.ls4_c00134{letter-spacing:19.406249px;}
.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;}
}
.ws0_c00134{word-spacing:-18.703125px;}
.ws1_c00134{word-spacing:0.000000px;}
._d_c00134{width:1.013651px;}
._3_c00134{width:4.615010px;}
._a_c00134{width:5.789664px;}
._1_c00134{width:8.537064px;}
._6_c00134{width:9.626905px;}
._9_c00134{width:11.185592px;}
._c_c00134{width:12.234373px;}
._8_c00134{width:15.037072px;}
._7_c00134{width:16.296226px;}
._5_c00134{width:17.484328px;}
._b_c00134{width:20.039061px;}
._0_c00134{width:27.568335px;}
._2_c00134{width:32.062500px;}
._4_c00134{width:40.765590px;}
.fc3_c00134{color:transparent;}
.fc2_c00134{color:rgb(128,128,128);}
.fc1_c00134{color:rgb(0,0,0);}
.fc0_c00134{color:rgb(67,91,56);}
.fs1_c00134{font-size:69.618741px;}
.fs0_c00134{font-size:71.999997px;}
.y0_c00134{bottom:0.000000px;}
.y1_c00134{bottom:0.000008px;}
.y1a_c00134{bottom:29.401163px;}
.y8_c00134{bottom:30.348053px;}
.y7_c00134{bottom:397.668511px;}
.y6_c00134{bottom:428.043510px;}
.y5_c00134{bottom:458.418509px;}
.y4_c00134{bottom:488.793508px;}
.y3_c00134{bottom:519.168506px;}
.y2_c00134{bottom:574.743504px;}
.y15_c00134{bottom:648.319192px;}
.y14_c00134{bottom:678.694191px;}
.y13_c00134{bottom:709.069190px;}
.y12_c00134{bottom:739.444188px;}
.y11_c00134{bottom:769.819187px;}
.y10_c00134{bottom:800.194186px;}
.yf_c00134{bottom:830.569185px;}
.ye_c00134{bottom:860.944183px;}
.yd_c00134{bottom:891.319182px;}
.yc_c00134{bottom:921.694181px;}
.yb_c00134{bottom:952.069180px;}
.ya_c00134{bottom:982.444178px;}
.y9_c00134{bottom:1035.760036px;}
.y19_c00134{bottom:1109.097375px;}
.y18_c00134{bottom:1139.472374px;}
.y17_c00134{bottom:1169.847372px;}
.y16_c00134{bottom:1200.222371px;}
.h4_c00134{height:50.480386px;}
.h3_c00134{height:55.160154px;}
.h2_c00134{height:1304.999946px;}
.h0_c00134{height:1304.999953px;}
.h1_c00134{height:1305.000000px;}
.w2_c00134{width:934.874961px;}
.w0_c00134{width:934.875000px;}
.w1_c00134{width:935.250000px;}
.x0_c00134{left:0.000000px;}
.x1_c00134{left:87.902647px;}
.x2_c00134{left:452.782029px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls6_c00134{letter-spacing:0.000000pt;}
.ls2_c00134{letter-spacing:0.031230pt;}
.ls3_c00134{letter-spacing:7.687499pt;}
.ls0_c00134{letter-spacing:8.562519pt;}
.ls5_c00134{letter-spacing:10.874999pt;}
.ls1_c00134{letter-spacing:14.249999pt;}
.ls4_c00134{letter-spacing:17.249999pt;}
.ws0_c00134{word-spacing:-16.625000pt;}
.ws1_c00134{word-spacing:0.000000pt;}
._d_c00134{width:0.901023pt;}
._3_c00134{width:4.102231pt;}
._a_c00134{width:5.146368pt;}
._1_c00134{width:7.588501pt;}
._6_c00134{width:8.557249pt;}
._9_c00134{width:9.942748pt;}
._c_c00134{width:10.874998pt;}
._8_c00134{width:13.366286pt;}
._7_c00134{width:14.485534pt;}
._5_c00134{width:15.541625pt;}
._b_c00134{width:17.812498pt;}
._0_c00134{width:24.505187pt;}
._2_c00134{width:28.500000pt;}
._4_c00134{width:36.236080pt;}
.fs1_c00134{font-size:61.883325pt;}
.fs0_c00134{font-size:63.999997pt;}
.y0_c00134{bottom:0.000000pt;}
.y1_c00134{bottom:0.000007pt;}
.y1a_c00134{bottom:26.134367pt;}
.y8_c00134{bottom:26.976047pt;}
.y7_c00134{bottom:353.483121pt;}
.y6_c00134{bottom:380.483120pt;}
.y5_c00134{bottom:407.483119pt;}
.y4_c00134{bottom:434.483118pt;}
.y3_c00134{bottom:461.483117pt;}
.y2_c00134{bottom:510.883115pt;}
.y15_c00134{bottom:576.283726pt;}
.y14_c00134{bottom:603.283725pt;}
.y13_c00134{bottom:630.283724pt;}
.y12_c00134{bottom:657.283723pt;}
.y11_c00134{bottom:684.283722pt;}
.y10_c00134{bottom:711.283721pt;}
.yf_c00134{bottom:738.283720pt;}
.ye_c00134{bottom:765.283719pt;}
.yd_c00134{bottom:792.283717pt;}
.yc_c00134{bottom:819.283716pt;}
.yb_c00134{bottom:846.283715pt;}
.ya_c00134{bottom:873.283714pt;}
.y9_c00134{bottom:920.675587pt;}
.y19_c00134{bottom:985.864333pt;}
.y18_c00134{bottom:1012.864332pt;}
.y17_c00134{bottom:1039.864331pt;}
.y16_c00134{bottom:1066.864330pt;}
.h4_c00134{height:44.871454pt;}
.h3_c00134{height:49.031248pt;}
.h2_c00134{height:1159.999952pt;}
.h0_c00134{height:1159.999959pt;}
.h1_c00134{height:1160.000000pt;}
.w2_c00134{width:830.999965pt;}
.w0_c00134{width:831.000000pt;}
.w1_c00134{width:831.333333pt;}
.x0_c00134{left:0.000000pt;}
.x1_c00134{left:78.135686pt;}
.x2_c00134{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:0.734863;font-style:normal;font-weight:normal;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_c8057d89cdf527e1c2f06c20.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:0.743000;font-style:normal;font-weight: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_c00135;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.006348;font-style:normal;font-weight: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_c00135;src:url('chunks/assets/font_cad24e4286acb623badd517a.woff2')format("woff");}.ff6_c00135{font-family:ff6_c00135;line-height:1.000000;font-style:normal;font-weight: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_c00135;src:url('chunks/assets/font_6fbab63ede1818a4169c241d.woff2')format("woff");}.ff7_c00135{font-family:ff7_c00135;line-height:1.171387;font-style:normal;font-weight: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_c00135;src:url('chunks/assets/font_6b2806344ac282dd4990eb31.woff2')format("woff");}.ff8_c00135{font-family:ff8_c00135;line-height:1.000000;font-style:normal;font-weight: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_c00135;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00135{font-family:ff9_c00135;line-height:0.940000;font-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_c00135{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00135{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00135{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00135{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00135{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00135{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00135{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00135{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00135{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00135{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00135{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00135{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00135{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00135{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00135{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00135{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00135{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00135{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00135{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00135{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00135{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00135{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00135{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00135{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00135{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00135{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00135{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00135{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00135{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00135{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00135{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00135{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00135{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00135{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00135{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00135{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00135{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00135{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00135{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00135{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00135{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00135{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00135{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00135{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00135{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00135{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00135{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00135{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00135{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00135{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00135{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00135{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00135{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00135{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00135{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00135{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00135{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00135{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00135{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00135{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00135{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00135{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.v1_c00135{vertical-align:1.280304px;}
.ls0_c00135{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00135{word-spacing:-41.689573px;}
.ws0_c00135{word-spacing:-15.171263px;}
.ws2_c00135{word-spacing:-0.055755px;}
.ws4_c00135{word-spacing:0.000000px;}
.ws1_c00135{word-spacing:288.058683px;}
._0_c00135{width:2.194725px;}
._2_c00135{width:4.904296px;}
._1_c00135{width:10.139005px;}
._3_c00135{width:17.414013px;}
.fc4_c00135{color:transparent;}
.fc3_c00135{color:rgb(67,91,56);}
.fc2_c00135{color:rgb(255,255,255);}
.fc1_c00135{color:rgb(0,0,0);}
.fc0_c00135{color:rgb(9,71,81);}
.fsb_c00135{font-size:36.000001px;}
.fsc_c00135{font-size:39.757786px;}
.fs7_c00135{font-size:41.999830px;}
.fs4_c00135{font-size:47.368230px;}
.fs1_c00135{font-size:47.368231px;}
.fs5_c00135{font-size:47.368232px;}
.fs2_c00135{font-size:47.368233px;}
.fs3_c00135{font-size:47.368235px;}
.fs0_c00135{font-size:51.661596px;}
.fse_c00135{font-size:55.754999px;}
.fsf_c00135{font-size:59.984997px;}
.fs8_c00135{font-size:71.999997px;}
.fs9_c00135{font-size:74.424240px;}
.fs6_c00135{font-size:77.011488px;}
.fsa_c00135{font-size:78.000003px;}
.fsd_c00135{font-size:95.984996px;}
.y0_c00135{bottom:0.000000px;}
.y1_c00135{bottom:0.000008px;}
.y53_c00135{bottom:29.401163px;}
.y4b_c00135{bottom:147.084438px;}
.y4a_c00135{bottom:177.459437px;}
.y49_c00135{bottom:207.834435px;}
.y48_c00135{bottom:238.209434px;}
.y47_c00135{bottom:268.584433px;}
.y46_c00135{bottom:298.959432px;}
.y4c_c00135{bottom:337.324226px;}
.y2_c00135{bottom:401.525233px;}
.y2e_c00135{bottom:486.888370px;}
.y10_c00135{bottom:493.328373px;}
.y24_c00135{bottom:493.343471px;}
.yf_c00135{bottom:493.853637px;}
.y25_c00135{bottom:493.873313px;}
.y3c_c00135{bottom:493.959419px;}
.y23_c00135{bottom:494.588120px;}
.y3d_c00135{bottom:494.792744px;}
.y3b_c00135{bottom:494.812830px;}
.ye_c00135{bottom:494.919783px;}
.y22_c00135{bottom:495.839401px;}
.y3a_c00135{bottom:495.847621px;}
.yd_c00135{bottom:495.993006px;}
.y26_c00135{bottom:496.289812px;}
.y11_c00135{bottom:496.353473px;}
.y3e_c00135{bottom:496.973987px;}
.y21_c00135{bottom:497.484272px;}
.yc_c00135{bottom:497.644566px;}
.y39_c00135{bottom:498.050345px;}
.y3f_c00135{bottom:498.364888px;}
.y20_c00135{bottom:499.172531px;}
.yb_c00135{bottom:499.338107px;}
.y40_c00135{bottom:500.063187px;}
.y12_c00135{bottom:500.630691px;}
.y1f_c00135{bottom:501.037769px;}
.ya_c00135{bottom:501.208172px;}
.y27_c00135{bottom:501.390631px;}
.y38_c00135{bottom:501.842067px;}
.y41_c00135{bottom:502.505484px;}
.y13_c00135{bottom:503.149449px;}
.y42_c00135{bottom:504.764445px;}
.y28_c00135{bottom:505.018795px;}
.y1e_c00135{bottom:505.692124px;}
.y9_c00135{bottom:505.871886px;}
.y37_c00135{bottom:507.310818px;}
.y43_c00135{bottom:508.033427px;}
.y14_c00135{bottom:509.101992px;}
.y29_c00135{bottom:510.652700px;}
.y36_c00135{bottom:511.777409px;}
.y1d_c00135{bottom:512.093493px;}
.y8_c00135{bottom:512.281758px;}
.y15_c00135{bottom:513.850725px;}
.y44_c00135{bottom:516.430683px;}
.y2a_c00135{bottom:517.310350px;}
.y35_c00135{bottom:518.202172px;}
.y1c_c00135{bottom:519.400636px;}
.y7_c00135{bottom:519.490837px;}
.y34_c00135{bottom:522.772046px;}
.y6_c00135{bottom:522.949612px;}
.y45_c00135{bottom:524.479585px;}
.y16_c00135{bottom:525.634639px;}
.y1b_c00135{bottom:526.562252px;}
.y5_c00135{bottom:528.959931px;}
.y2b_c00135{bottom:529.273374px;}
.y33_c00135{bottom:530.544173px;}
.y1a_c00135{bottom:531.331479px;}
.y2d_c00135{bottom:533.268115px;}
.y31_c00135{bottom:533.961835px;}
.y32_c00135{bottom:534.437983px;}
.y4_c00135{bottom:536.219342px;}
.y19_c00135{bottom:537.503802px;}
.y17_c00135{bottom:537.875201px;}
.y2c_c00135{bottom:538.238934px;}
.y2f_c00135{bottom:539.974724px;}
.y18_c00135{bottom:544.567278px;}
.y3_c00135{bottom:545.754118px;}
.y30_c00135{bottom:577.437042px;}
.y52_c00135{bottom:639.092601px;}
.y54_c00135{bottom:1021.439863px;}
.y50_c00135{bottom:1128.788247px;}
.y4e_c00135{bottom:1137.983565px;}
.y4d_c00135{bottom:1149.983565px;}
.y51_c00135{bottom:1153.262281px;}
.y4f_c00135{bottom:1171.082779px;}
.h11_c00135{height:33.521486px;}
.h9_c00135{height:35.988753px;}
.ha_c00135{height:35.988755px;}
.hb_c00135{height:35.988756px;}
.h12_c00135{height:37.020556px;}
.h3_c00135{height:37.459702px;}
.hd_c00135{height:39.108240px;}
.h7_c00135{height:44.107038px;}
.h4_c00135{height:44.107039px;}
.h8_c00135{height:44.107040px;}
.h5_c00135{height:44.107042px;}
.h6_c00135{height:44.107043px;}
.h16_c00135{height:45.588598px;}
.h15_c00135{height:51.916398px;}
.hc_c00135{height:56.295398px;}
.hf_c00135{height:57.017399px;}
.h14_c00135{height:57.575702px;}
.h10_c00135{height:59.261721px;}
.he_c00135{height:67.042966px;}
.h13_c00135{height:89.376654px;}
.h2_c00135{height:1304.999946px;}
.h0_c00135{height:1304.999953px;}
.h1_c00135{height:1305.000000px;}
.w2_c00135{width:934.874961px;}
.w0_c00135{width:934.875000px;}
.w1_c00135{width:935.250000px;}
.x0_c00135{left:0.000000px;}
.x3c_c00135{left:89.487450px;}
.x3d_c00135{left:90.844844px;}
.x3e_c00135{left:107.230262px;}
.x3f_c00135{left:108.827167px;}
.x44_c00135{left:130.690629px;}
.x14_c00135{left:134.974838px;}
.x13_c00135{left:136.648279px;}
.x15_c00135{left:140.021272px;}
.x16_c00135{left:144.871714px;}
.x17_c00135{left:150.237526px;}
.x18_c00135{left:152.990336px;}
.x19_c00135{left:156.000220px;}
.x1a_c00135{left:159.847713px;}
.x24_c00135{left:161.443962px;}
.x1b_c00135{left:163.301377px;}
.x1c_c00135{left:171.586339px;}
.x1d_c00135{left:179.855997px;}
.x1e_c00135{left:188.287487px;}
.x1f_c00135{left:196.673970px;}
.x20_c00135{left:200.841336px;}
.x21_c00135{left:205.399483px;}
.x22_c00135{left:209.208896px;}
.x23_c00135{left:211.795693px;}
.x3_c00135{left:230.398389px;}
.x2_c00135{left:232.534609px;}
.x4_c00135{left:235.623324px;}
.x5_c00135{left:240.462566px;}
.x6_c00135{left:245.820252px;}
.x7_c00135{left:248.569815px;}
.x8_c00135{left:251.576732px;}
.x9_c00135{left:255.421336px;}
.x41_c00135{left:256.622047px;}
.xa_c00135{left:258.708042px;}
.xb_c00135{left:263.145298px;}
.xc_c00135{left:271.763354px;}
.xd_c00135{left:283.603990px;}
.xe_c00135{left:291.041304px;}
.xf_c00135{left:294.435991px;}
.x40_c00135{left:295.615161px;}
.x10_c00135{left:299.775542px;}
.x11_c00135{left:303.165014px;}
.x12_c00135{left:307.176807px;}
.x29_c00135{left:327.047435px;}
.x2a_c00135{left:328.264734px;}
.x2b_c00135{left:329.685747px;}
.x2c_c00135{left:333.082971px;}
.x2d_c00135{left:336.307511px;}
.x2e_c00135{left:342.189757px;}
.x2f_c00135{left:348.376740px;}
.x28_c00135{left:351.731739px;}
.x30_c00135{left:354.069743px;}
.x31_c00135{left:357.479743px;}
.x32_c00135{left:365.386869px;}
.x33_c00135{left:373.375785px;}
.x34_c00135{left:380.135498px;}
.x35_c00135{left:383.155707px;}
.x36_c00135{left:386.159935px;}
.x37_c00135{left:389.557910px;}
.x38_c00135{left:392.174988px;}
.x39_c00135{left:395.489533px;}
.x3a_c00135{left:400.664851px;}
.x3b_c00135{left:403.469600px;}
.x43_c00135{left:452.271732px;}
.x26_c00135{left:464.896169px;}
.x42_c00135{left:664.443440px;}
.x1_c00135{left:697.320842px;}
.x27_c00135{left:733.540639px;}
.x25_c00135{left:757.088990px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.v1_c00135{vertical-align:1.138048pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ws3_c00135{word-spacing:-37.057398pt;}
.ws0_c00135{word-spacing:-13.485567pt;}
.ws2_c00135{word-spacing:-0.049560pt;}
.ws4_c00135{word-spacing:0.000000pt;}
.ws1_c00135{word-spacing:256.052163pt;}
._0_c00135{width:1.950867pt;}
._2_c00135{width:4.359374pt;}
._1_c00135{width:9.012449pt;}
._3_c00135{width:15.479122pt;}
.fsb_c00135{font-size:32.000001pt;}
.fsc_c00135{font-size:35.340254pt;}
.fs7_c00135{font-size:37.333182pt;}
.fs4_c00135{font-size:42.105093pt;}
.fs1_c00135{font-size:42.105094pt;}
.fs5_c00135{font-size:42.105095pt;}
.fs2_c00135{font-size:42.105096pt;}
.fs3_c00135{font-size:42.105098pt;}
.fs0_c00135{font-size:45.921418pt;}
.fse_c00135{font-size:49.559999pt;}
.fsf_c00135{font-size:53.319997pt;}
.fs8_c00135{font-size:63.999997pt;}
.fs9_c00135{font-size:66.154880pt;}
.fs6_c00135{font-size:68.454656pt;}
.fsa_c00135{font-size:69.333336pt;}
.fsd_c00135{font-size:85.319996pt;}
.y0_c00135{bottom:0.000000pt;}
.y1_c00135{bottom:0.000007pt;}
.y53_c00135{bottom:26.134367pt;}
.y4b_c00135{bottom:130.741723pt;}
.y4a_c00135{bottom:157.741721pt;}
.y49_c00135{bottom:184.741720pt;}
.y48_c00135{bottom:211.741719pt;}
.y47_c00135{bottom:238.741718pt;}
.y46_c00135{bottom:265.741717pt;}
.y4c_c00135{bottom:299.843757pt;}
.y2_c00135{bottom:356.911319pt;}
.y2e_c00135{bottom:432.789662pt;}
.y10_c00135{bottom:438.514110pt;}
.y24_c00135{bottom:438.527530pt;}
.yf_c00135{bottom:438.981010pt;}
.y25_c00135{bottom:438.998500pt;}
.y3c_c00135{bottom:439.075039pt;}
.y23_c00135{bottom:439.633885pt;}
.y3d_c00135{bottom:439.815773pt;}
.y3b_c00135{bottom:439.833627pt;}
.ye_c00135{bottom:439.928696pt;}
.y22_c00135{bottom:440.746134pt;}
.y3a_c00135{bottom:440.753441pt;}
.yd_c00135{bottom:440.882672pt;}
.y26_c00135{bottom:441.146500pt;}
.y11_c00135{bottom:441.203087pt;}
.y3e_c00135{bottom:441.754655pt;}
.y21_c00135{bottom:442.208242pt;}
.yc_c00135{bottom:442.350726pt;}
.y39_c00135{bottom:442.711417pt;}
.y3f_c00135{bottom:442.991012pt;}
.y20_c00135{bottom:443.708917pt;}
.yb_c00135{bottom:443.856095pt;}
.y40_c00135{bottom:444.500610pt;}
.y12_c00135{bottom:445.005059pt;}
.y1f_c00135{bottom:445.366906pt;}
.ya_c00135{bottom:445.518375pt;}
.y27_c00135{bottom:445.680561pt;}
.y38_c00135{bottom:446.081837pt;}
.y41_c00135{bottom:446.671541pt;}
.y13_c00135{bottom:447.243955pt;}
.y42_c00135{bottom:448.679507pt;}
.y28_c00135{bottom:448.905595pt;}
.y1e_c00135{bottom:449.504110pt;}
.y9_c00135{bottom:449.663899pt;}
.y37_c00135{bottom:450.942950pt;}
.y43_c00135{bottom:451.585269pt;}
.y14_c00135{bottom:452.535104pt;}
.y29_c00135{bottom:453.913511pt;}
.y36_c00135{bottom:454.913253pt;}
.y1d_c00135{bottom:455.194216pt;}
.y8_c00135{bottom:455.361563pt;}
.y15_c00135{bottom:456.756200pt;}
.y44_c00135{bottom:459.049496pt;}
.y2a_c00135{bottom:459.831423pt;}
.y35_c00135{bottom:460.624152pt;}
.y1c_c00135{bottom:461.689454pt;}
.y7_c00135{bottom:461.769633pt;}
.y34_c00135{bottom:464.686263pt;}
.y6_c00135{bottom:464.844100pt;}
.y45_c00135{bottom:466.204075pt;}
.y16_c00135{bottom:467.230790pt;}
.y1b_c00135{bottom:468.055335pt;}
.y5_c00135{bottom:470.186605pt;}
.y2b_c00135{bottom:470.465221pt;}
.y33_c00135{bottom:471.594820pt;}
.y1a_c00135{bottom:472.294648pt;}
.y2d_c00135{bottom:474.016102pt;}
.y31_c00135{bottom:474.632742pt;}
.y32_c00135{bottom:475.055985pt;}
.y4_c00135{bottom:476.639415pt;}
.y19_c00135{bottom:477.781157pt;}
.y17_c00135{bottom:478.111290pt;}
.y2c_c00135{bottom:478.434608pt;}
.y2f_c00135{bottom:479.977532pt;}
.y18_c00135{bottom:484.059803pt;}
.y3_c00135{bottom:485.114772pt;}
.y30_c00135{bottom:513.277371pt;}
.y52_c00135{bottom:568.082312pt;}
.y54_c00135{bottom:907.946545pt;}
.y50_c00135{bottom:1003.367331pt;}
.y4e_c00135{bottom:1011.540947pt;}
.y4d_c00135{bottom:1022.207614pt;}
.y51_c00135{bottom:1025.122028pt;}
.y4f_c00135{bottom:1040.962470pt;}
.h11_c00135{height:29.796876pt;}
.h9_c00135{height:31.990003pt;}
.ha_c00135{height:31.990004pt;}
.hb_c00135{height:31.990006pt;}
.h12_c00135{height:32.907161pt;}
.h3_c00135{height:33.297513pt;}
.hd_c00135{height:34.762880pt;}
.h7_c00135{height:39.206256pt;}
.h4_c00135{height:39.206257pt;}
.h8_c00135{height:39.206258pt;}
.h5_c00135{height:39.206259pt;}
.h6_c00135{height:39.206261pt;}
.h16_c00135{height:40.523198pt;}
.h15_c00135{height:46.147909pt;}
.hc_c00135{height:50.040354pt;}
.hf_c00135{height:50.682132pt;}
.h14_c00135{height:51.178401pt;}
.h10_c00135{height:52.677085pt;}
.he_c00135{height:59.593748pt;}
.h13_c00135{height:79.445915pt;}
.h2_c00135{height:1159.999952pt;}
.h0_c00135{height:1159.999959pt;}
.h1_c00135{height:1160.000000pt;}
.w2_c00135{width:830.999965pt;}
.w0_c00135{width:831.000000pt;}
.w1_c00135{width:831.333333pt;}
.x0_c00135{left:0.000000pt;}
.x3c_c00135{left:79.544400pt;}
.x3d_c00135{left:80.750973pt;}
.x3e_c00135{left:95.315788pt;}
.x3f_c00135{left:96.735260pt;}
.x44_c00135{left:116.169448pt;}
.x14_c00135{left:119.977634pt;}
.x13_c00135{left:121.465137pt;}
.x15_c00135{left:124.463353pt;}
.x16_c00135{left:128.774857pt;}
.x17_c00135{left:133.544468pt;}
.x18_c00135{left:135.991410pt;}
.x19_c00135{left:138.666862pt;}
.x1a_c00135{left:142.086856pt;}
.x24_c00135{left:143.505744pt;}
.x1b_c00135{left:145.156780pt;}
.x1c_c00135{left:152.521190pt;}
.x1d_c00135{left:159.871997pt;}
.x1e_c00135{left:167.366655pt;}
.x1f_c00135{left:174.821307pt;}
.x20_c00135{left:178.525632pt;}
.x21_c00135{left:182.577318pt;}
.x22_c00135{left:185.963463pt;}
.x23_c00135{left:188.262839pt;}
.x3_c00135{left:204.798568pt;}
.x2_c00135{left:206.697430pt;}
.x4_c00135{left:209.442955pt;}
.x5_c00135{left:213.744503pt;}
.x6_c00135{left:218.506891pt;}
.x7_c00135{left:220.950947pt;}
.x8_c00135{left:223.623762pt;}
.x9_c00135{left:227.041187pt;}
.x41_c00135{left:228.108486pt;}
.xa_c00135{left:229.962704pt;}
.xb_c00135{left:233.906932pt;}
.xc_c00135{left:241.567426pt;}
.xd_c00135{left:252.092435pt;}
.xe_c00135{left:258.703382pt;}
.xf_c00135{left:261.720880pt;}
.x40_c00135{left:262.769032pt;}
.x10_c00135{left:266.467148pt;}
.x11_c00135{left:269.480012pt;}
.x12_c00135{left:273.046051pt;}
.x29_c00135{left:290.708831pt;}
.x2a_c00135{left:291.790874pt;}
.x2b_c00135{left:293.053997pt;}
.x2c_c00135{left:296.073752pt;}
.x2d_c00135{left:298.940009pt;}
.x2e_c00135{left:304.168673pt;}
.x2f_c00135{left:309.668213pt;}
.x28_c00135{left:312.650435pt;}
.x30_c00135{left:314.728661pt;}
.x31_c00135{left:317.759772pt;}
.x32_c00135{left:324.788328pt;}
.x33_c00135{left:331.889587pt;}
.x34_c00135{left:337.898220pt;}
.x35_c00135{left:340.582851pt;}
.x36_c00135{left:343.253275pt;}
.x37_c00135{left:346.273697pt;}
.x38_c00135{left:348.599989pt;}
.x39_c00135{left:351.546252pt;}
.x3a_c00135{left:356.146534pt;}
.x3b_c00135{left:358.639645pt;}
.x43_c00135{left:402.019318pt;}
.x26_c00135{left:413.241039pt;}
.x42_c00135{left:590.616391pt;}
.x1_c00135{left:619.840748pt;}
.x27_c00135{left:652.036124pt;}
.x25_c00135{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d32ca79f2fe689bde447c205.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.171387;font-style:normal;font-weight:normal;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_c7841719d496a09b726c2ea9.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.005371;font-style:normal;font-weight:normal;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_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.006348;font-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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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;}
.ls1_c00136{letter-spacing:0.000000px;}
.ls0_c00136{letter-spacing:0.000022px;}
.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;}
}
.ws1_c00136{word-spacing:-19.320776px;}
.ws0_c00136{word-spacing:-18.703125px;}
.ws2_c00136{word-spacing:0.000000px;}
._5_c00136{width:1.216941px;}
._3_c00136{width:3.134739px;}
._2_c00136{width:4.544699px;}
._6_c00136{width:6.479396px;}
._4_c00136{width:7.652320px;}
._7_c00136{width:9.287083px;}
._9_c00136{width:10.992991px;}
._1_c00136{width:12.468726px;}
._8_c00136{width:15.306425px;}
._b_c00136{width:17.693549px;}
._c_c00136{width:21.781216px;}
._e_c00136{width:23.045479px;}
._d_c00136{width:24.951734px;}
._a_c00136{width:26.116011px;}
._f_c00136{width:36.341467px;}
._0_c00136{width:46.209317px;}
.fc1_c00136{color:rgb(67,91,56);}
.fc0_c00136{color:rgb(0,0,0);}
.fs0_c00136{font-size:71.999997px;}
.fs1_c00136{font-size:74.377724px;}
.y0_c00136{bottom:0.000000px;}
.y1_c00136{bottom:0.000008px;}
.y27_c00136{bottom:29.400983px;}
.y20_c00136{bottom:74.271971px;}
.y1f_c00136{bottom:104.646970px;}
.y1e_c00136{bottom:135.021969px;}
.y1d_c00136{bottom:165.396968px;}
.y1c_c00136{bottom:195.771966px;}
.y1b_c00136{bottom:226.146965px;}
.y1a_c00136{bottom:256.521964px;}
.y19_c00136{bottom:286.896962px;}
.y18_c00136{bottom:317.271961px;}
.y17_c00136{bottom:347.646960px;}
.y16_c00136{bottom:378.021959px;}
.y15_c00136{bottom:408.396957px;}
.y14_c00136{bottom:438.771956px;}
.y13_c00136{bottom:469.146955px;}
.y12_c00136{bottom:499.521954px;}
.y11_c00136{bottom:529.896952px;}
.y10_c00136{bottom:560.271951px;}
.yf_c00136{bottom:590.646950px;}
.ye_c00136{bottom:621.021949px;}
.yd_c00136{bottom:651.396947px;}
.yc_c00136{bottom:681.771946px;}
.yb_c00136{bottom:712.146945px;}
.ya_c00136{bottom:742.521943px;}
.y9_c00136{bottom:772.896942px;}
.y8_c00136{bottom:803.271941px;}
.y7_c00136{bottom:833.646940px;}
.y6_c00136{bottom:864.021938px;}
.y5_c00136{bottom:894.396937px;}
.y4_c00136{bottom:924.771936px;}
.y3_c00136{bottom:955.146935px;}
.y2_c00136{bottom:985.521933px;}
.y21_c00136{bottom:1024.591072px;}
.y26_c00136{bottom:1073.562932px;}
.y25_c00136{bottom:1103.937931px;}
.y24_c00136{bottom:1134.312930px;}
.y23_c00136{bottom:1164.687928px;}
.y22_c00136{bottom:1199.188987px;}
.h4_c00136{height:55.160154px;}
.h5_c00136{height:56.981762px;}
.h3_c00136{height:67.042966px;}
.h2_c00136{height:1304.999946px;}
.h0_c00136{height:1304.999953px;}
.h1_c00136{height:1305.000000px;}
.w2_c00136{width:934.874961px;}
.w0_c00136{width:934.875000px;}
.w1_c00136{width:935.250000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:89.487450px;}
.x2_c00136{left:452.271732px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls1_c00136{letter-spacing:0.000000pt;}
.ls0_c00136{letter-spacing:0.000020pt;}
.ws1_c00136{word-spacing:-17.174023pt;}
.ws0_c00136{word-spacing:-16.625000pt;}
.ws2_c00136{word-spacing:0.000000pt;}
._5_c00136{width:1.081725pt;}
._3_c00136{width:2.786435pt;}
._2_c00136{width:4.039732pt;}
._6_c00136{width:5.759463pt;}
._4_c00136{width:6.802062pt;}
._7_c00136{width:8.255185pt;}
._9_c00136{width:9.771547pt;}
._1_c00136{width:11.083312pt;}
._8_c00136{width:13.605711pt;}
._b_c00136{width:15.727600pt;}
._c_c00136{width:19.361081pt;}
._e_c00136{width:20.484870pt;}
._d_c00136{width:22.179319pt;}
._a_c00136{width:23.214232pt;}
._f_c00136{width:32.303526pt;}
._0_c00136{width:41.074948pt;}
.fs0_c00136{font-size:63.999997pt;}
.fs1_c00136{font-size:66.113533pt;}
.y0_c00136{bottom:0.000000pt;}
.y1_c00136{bottom:0.000007pt;}
.y27_c00136{bottom:26.134207pt;}
.y20_c00136{bottom:66.019530pt;}
.y1f_c00136{bottom:93.019529pt;}
.y1e_c00136{bottom:120.019528pt;}
.y1d_c00136{bottom:147.019527pt;}
.y1c_c00136{bottom:174.019526pt;}
.y1b_c00136{bottom:201.019524pt;}
.y1a_c00136{bottom:228.019523pt;}
.y19_c00136{bottom:255.019522pt;}
.y18_c00136{bottom:282.019521pt;}
.y17_c00136{bottom:309.019520pt;}
.y16_c00136{bottom:336.019519pt;}
.y15_c00136{bottom:363.019518pt;}
.y14_c00136{bottom:390.019517pt;}
.y13_c00136{bottom:417.019515pt;}
.y12_c00136{bottom:444.019514pt;}
.y11_c00136{bottom:471.019513pt;}
.y10_c00136{bottom:498.019512pt;}
.yf_c00136{bottom:525.019511pt;}
.ye_c00136{bottom:552.019510pt;}
.yd_c00136{bottom:579.019509pt;}
.yc_c00136{bottom:606.019508pt;}
.yb_c00136{bottom:633.019506pt;}
.ya_c00136{bottom:660.019505pt;}
.y9_c00136{bottom:687.019504pt;}
.y8_c00136{bottom:714.019503pt;}
.y7_c00136{bottom:741.019502pt;}
.y6_c00136{bottom:768.019501pt;}
.y5_c00136{bottom:795.019500pt;}
.y4_c00136{bottom:822.019499pt;}
.y3_c00136{bottom:849.019497pt;}
.y2_c00136{bottom:876.019496pt;}
.y21_c00136{bottom:910.747620pt;}
.y26_c00136{bottom:954.278162pt;}
.y25_c00136{bottom:981.278161pt;}
.y24_c00136{bottom:1008.278160pt;}
.y23_c00136{bottom:1035.278158pt;}
.y22_c00136{bottom:1065.945766pt;}
.h4_c00136{height:49.031248pt;}
.h5_c00136{height:50.650455pt;}
.h3_c00136{height:59.593748pt;}
.h2_c00136{height:1159.999952pt;}
.h0_c00136{height:1159.999959pt;}
.h1_c00136{height:1160.000000pt;}
.w2_c00136{width:830.999965pt;}
.w0_c00136{width:831.000000pt;}
.w1_c00136{width:831.333333pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:79.544400pt;}
.x2_c00136{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.006348;font-style:normal;font-weight:normal;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_da1502e623d5ab3c7b0db574.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.171387;font-style:normal;font-weight:normal;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_519166249ee90b4b18954604.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.005371;font-style:normal;font-weight:normal;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_fa990697cb26bdbce0dc2a5d.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.000000;font-style:normal;font-weight: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_0e6a335523f46b9c30ed0353.woff2')format("woff");}.ff5_c00137{font-family:ff5_c00137;line-height:1.171387;font-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_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);}
.v0_c00137{vertical-align:0.000000px;}
.ls1_c00137{letter-spacing:0.000000px;}
.ls0_c00137{letter-spacing:9.562499px;}
.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;}
}
.ws0_c00137{word-spacing:-18.703125px;}
.ws1_c00137{word-spacing:-0.055755px;}
.ws2_c00137{word-spacing:0.000000px;}
._2_c00137{width:1.113045px;}
._6_c00137{width:4.960189px;}
._9_c00137{width:7.334928px;}
._8_c00137{width:8.657867px;}
._1_c00137{width:10.417920px;}
._4_c00137{width:13.324217px;}
._5_c00137{width:16.192951px;}
._3_c00137{width:20.339470px;}
._0_c00137{width:25.359326px;}
._7_c00137{width:39.151219px;}
.fc2_c00137{color:rgb(255,255,255);}
.fc1_c00137{color:rgb(0,0,0);}
.fc0_c00137{color:rgb(67,91,56);}
.fs1_c00137{font-size:55.754999px;}
.fs0_c00137{font-size:71.999997px;}
.y0_c00137{bottom:0.000000px;}
.y1_c00137{bottom:0.000008px;}
.y11_c00137{bottom:29.401163px;}
.y12_c00137{bottom:550.538761px;}
.ya_c00137{bottom:730.414305px;}
.y9_c00137{bottom:760.789304px;}
.y8_c00137{bottom:791.164303px;}
.y7_c00137{bottom:821.539301px;}
.y6_c00137{bottom:851.914300px;}
.y5_c00137{bottom:882.289299px;}
.y4_c00137{bottom:912.664298px;}
.y3_c00137{bottom:943.039296px;}
.y2_c00137{bottom:985.991093px;}
.y10_c00137{bottom:1049.357944px;}
.yf_c00137{bottom:1079.732943px;}
.ye_c00137{bottom:1110.107942px;}
.yd_c00137{bottom:1140.482940px;}
.yc_c00137{bottom:1170.857939px;}
.yb_c00137{bottom:1203.879852px;}
.h5_c00137{height:51.916398px;}
.h3_c00137{height:55.160154px;}
.h4_c00137{height:67.042966px;}
.h2_c00137{height:1304.999946px;}
.h0_c00137{height:1304.999953px;}
.h1_c00137{height:1305.000000px;}
.w2_c00137{width:934.874961px;}
.w0_c00137{width:934.875000px;}
.w1_c00137{width:935.250000px;}
.x0_c00137{left:0.000000px;}
.x2_c00137{left:86.334458px;}
.x1_c00137{left:89.487450px;}
.x3_c00137{left:452.271732px;}
.x4_c00137{left:745.768193px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls1_c00137{letter-spacing:0.000000pt;}
.ls0_c00137{letter-spacing:8.499999pt;}
.ws0_c00137{word-spacing:-16.625000pt;}
.ws1_c00137{word-spacing:-0.049560pt;}
.ws2_c00137{word-spacing:0.000000pt;}
._2_c00137{width:0.989373pt;}
._6_c00137{width:4.409057pt;}
._9_c00137{width:6.519936pt;}
._8_c00137{width:7.695882pt;}
._1_c00137{width:9.260373pt;}
._4_c00137{width:11.843748pt;}
._5_c00137{width:14.393734pt;}
._3_c00137{width:18.079529pt;}
._0_c00137{width:22.541623pt;}
._7_c00137{width:34.801084pt;}
.fs1_c00137{font-size:49.559999pt;}
.fs0_c00137{font-size:63.999997pt;}
.y0_c00137{bottom:0.000000pt;}
.y1_c00137{bottom:0.000007pt;}
.y11_c00137{bottom:26.134367pt;}
.y12_c00137{bottom:489.367788pt;}
.ya_c00137{bottom:649.257160pt;}
.y9_c00137{bottom:676.257159pt;}
.y8_c00137{bottom:703.257158pt;}
.y7_c00137{bottom:730.257157pt;}
.y6_c00137{bottom:757.257156pt;}
.y5_c00137{bottom:784.257155pt;}
.y4_c00137{bottom:811.257153pt;}
.y3_c00137{bottom:838.257152pt;}
.y2_c00137{bottom:876.436527pt;}
.y10_c00137{bottom:932.762617pt;}
.yf_c00137{bottom:959.762616pt;}
.ye_c00137{bottom:986.762615pt;}
.yd_c00137{bottom:1013.762614pt;}
.yc_c00137{bottom:1040.762613pt;}
.yb_c00137{bottom:1070.115424pt;}
.h5_c00137{height:46.147909pt;}
.h3_c00137{height:49.031248pt;}
.h4_c00137{height:59.593748pt;}
.h2_c00137{height:1159.999952pt;}
.h0_c00137{height:1159.999959pt;}
.h1_c00137{height:1160.000000pt;}
.w2_c00137{width:830.999965pt;}
.w0_c00137{width:831.000000pt;}
.w1_c00137{width:831.333333pt;}
.x0_c00137{left:0.000000pt;}
.x2_c00137{left:76.741741pt;}
.x1_c00137{left:79.544400pt;}
.x3_c00137{left:402.019318pt;}
.x4_c00137{left:662.905060pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:0.734863;font-style:normal;font-weight:normal;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_17ed7b34136cb37999f859b5.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:0.743000;font-style:normal;font-weight: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_c00138;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff5_c00138{font-family:ff5_c00138;line-height:1.006348;font-style:normal;font-weight: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_c00138;src:url('chunks/assets/font_859c34dc0315a9a7c1c3481a.woff2')format("woff");}.ff6_c00138{font-family:ff6_c00138;line-height:1.171387;font-style:normal;font-weight: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_c00138;src:url('chunks/assets/font_549cfb1f30f46ba22ae0c54a.woff2')format("woff");}.ff7_c00138{font-family:ff7_c00138;line-height:1.000000;font-style:normal;font-weight: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_c00138;src:url('chunks/assets/font_cad24e4286acb623badd517a.woff2')format("woff");}.ff8_c00138{font-family:ff8_c00138;line-height:1.000000;font-style:normal;font-weight: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_c00138;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00138{font-family:ff9_c00138;line-height:0.940000;font-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_c00138{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00138{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00138{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00138{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00138{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00138{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00138{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00138{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00138{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00138{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00138{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00138{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00138{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00138{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00138{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00138{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00138{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00138{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00138{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00138{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00138{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00138{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00138{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00138{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00138{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00138{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00138{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00138{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00138{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00138{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00138{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00138{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00138{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00138{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00138{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00138{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00138{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00138{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00138{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00138{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00138{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00138{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00138{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00138{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00138{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00138{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00138{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00138{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00138{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00138{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00138{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00138{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00138{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00138{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00138{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00138{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00138{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00138{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00138{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00138{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00138{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00138{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00138{vertical-align:0.000000px;}
.v1_c00138{vertical-align:1.278288px;}
.ls0_c00138{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00138{word-spacing:-41.689573px;}
.ws0_c00138{word-spacing:-15.171263px;}
.ws2_c00138{word-spacing:-0.055755px;}
.ws4_c00138{word-spacing:0.000000px;}
.ws1_c00138{word-spacing:288.058683px;}
._2_c00138{width:1.349943px;}
._1_c00138{width:16.182333px;}
._0_c00138{width:17.231915px;}
.fc4_c00138{color:transparent;}
.fc3_c00138{color:rgb(67,91,56);}
.fc2_c00138{color:rgb(255,255,255);}
.fc1_c00138{color:rgb(0,0,0);}
.fc0_c00138{color:rgb(9,71,81);}
.fsf_c00138{font-size:36.000001px;}
.fsa_c00138{font-size:39.757786px;}
.fs7_c00138{font-size:41.999830px;}
.fs4_c00138{font-size:47.368230px;}
.fs1_c00138{font-size:47.368231px;}
.fs5_c00138{font-size:47.368232px;}
.fs2_c00138{font-size:47.368233px;}
.fs3_c00138{font-size:47.368235px;}
.fs0_c00138{font-size:51.661596px;}
.fsc_c00138{font-size:55.754999px;}
.fsd_c00138{font-size:59.984997px;}
.fs8_c00138{font-size:71.999997px;}
.fs9_c00138{font-size:74.424240px;}
.fs6_c00138{font-size:77.011488px;}
.fse_c00138{font-size:78.000003px;}
.fsb_c00138{font-size:95.984996px;}
.y0_c00138{bottom:0.000000px;}
.y1_c00138{bottom:0.000008px;}
.y4f_c00138{bottom:29.401163px;}
.y49_c00138{bottom:212.649615px;}
.y48_c00138{bottom:243.024614px;}
.y47_c00138{bottom:273.399613px;}
.y46_c00138{bottom:303.774611px;}
.y4a_c00138{bottom:340.353374px;}
.y2_c00138{bottom:401.525233px;}
.y2e_c00138{bottom:486.888550px;}
.y10_c00138{bottom:493.328193px;}
.y24_c00138{bottom:493.343723px;}
.yf_c00138{bottom:493.853349px;}
.y25_c00138{bottom:493.873061px;}
.y3c_c00138{bottom:493.959311px;}
.y23_c00138{bottom:494.588120px;}
.y3d_c00138{bottom:494.792564px;}
.y3b_c00138{bottom:494.812830px;}
.ye_c00138{bottom:494.919675px;}
.y22_c00138{bottom:495.839509px;}
.y3a_c00138{bottom:495.847693px;}
.yd_c00138{bottom:495.992682px;}
.y26_c00138{bottom:496.289992px;}
.y11_c00138{bottom:496.353473px;}
.y3e_c00138{bottom:496.973807px;}
.y21_c00138{bottom:497.484380px;}
.yc_c00138{bottom:497.644566px;}
.y39_c00138{bottom:498.050705px;}
.y3f_c00138{bottom:498.365140px;}
.y20_c00138{bottom:499.172711px;}
.yb_c00138{bottom:499.338107px;}
.y40_c00138{bottom:500.063439px;}
.y12_c00138{bottom:500.630691px;}
.y1f_c00138{bottom:501.037949px;}
.ya_c00138{bottom:501.207920px;}
.y27_c00138{bottom:501.390163px;}
.y38_c00138{bottom:501.841887px;}
.y41_c00138{bottom:502.505484px;}
.y13_c00138{bottom:503.149881px;}
.y42_c00138{bottom:504.764625px;}
.y28_c00138{bottom:505.018723px;}
.y1e_c00138{bottom:505.692484px;}
.y9_c00138{bottom:505.872210px;}
.y37_c00138{bottom:507.311178px;}
.y43_c00138{bottom:508.033427px;}
.y14_c00138{bottom:509.101920px;}
.y29_c00138{bottom:510.652700px;}
.y36_c00138{bottom:511.777589px;}
.y1d_c00138{bottom:512.093421px;}
.y8_c00138{bottom:512.281650px;}
.y15_c00138{bottom:513.850725px;}
.y44_c00138{bottom:516.430791px;}
.y2a_c00138{bottom:517.310242px;}
.y35_c00138{bottom:518.201920px;}
.y1c_c00138{bottom:519.400744px;}
.y7_c00138{bottom:519.491089px;}
.y34_c00138{bottom:522.772118px;}
.y6_c00138{bottom:522.949612px;}
.y45_c00138{bottom:524.479585px;}
.y16_c00138{bottom:525.634963px;}
.y1b_c00138{bottom:526.562252px;}
.y5_c00138{bottom:528.960111px;}
.y2b_c00138{bottom:529.273374px;}
.y33_c00138{bottom:530.544173px;}
.y1a_c00138{bottom:531.331371px;}
.y2d_c00138{bottom:533.268367px;}
.y31_c00138{bottom:533.962015px;}
.y32_c00138{bottom:534.438127px;}
.y4_c00138{bottom:536.219342px;}
.y19_c00138{bottom:537.504234px;}
.y17_c00138{bottom:537.874949px;}
.y2c_c00138{bottom:538.238862px;}
.y2f_c00138{bottom:539.974832px;}
.y18_c00138{bottom:544.567170px;}
.y3_c00138{bottom:545.754118px;}
.y30_c00138{bottom:577.437330px;}
.y4e_c00138{bottom:639.092421px;}
.y50_c00138{bottom:1021.439841px;}
.y4c_c00138{bottom:1128.788391px;}
.y52_c00138{bottom:1137.983738px;}
.y51_c00138{bottom:1149.983738px;}
.y4d_c00138{bottom:1153.262414px;}
.y4b_c00138{bottom:1171.082693px;}
.h16_c00138{height:33.521486px;}
.h9_c00138{height:35.988753px;}
.ha_c00138{height:35.988755px;}
.hb_c00138{height:35.988756px;}
.h10_c00138{height:37.020556px;}
.h3_c00138{height:37.459702px;}
.hd_c00138{height:39.108240px;}
.h7_c00138{height:44.107038px;}
.h4_c00138{height:44.107039px;}
.h8_c00138{height:44.107040px;}
.h5_c00138{height:44.107042px;}
.h6_c00138{height:44.107043px;}
.h14_c00138{height:45.588598px;}
.h13_c00138{height:51.916398px;}
.hc_c00138{height:56.295398px;}
.hf_c00138{height:57.017399px;}
.h12_c00138{height:57.573686px;}
.h15_c00138{height:59.261721px;}
.he_c00138{height:67.042966px;}
.h11_c00138{height:89.376654px;}
.h2_c00138{height:1304.999946px;}
.h0_c00138{height:1304.999953px;}
.h1_c00138{height:1305.000000px;}
.w2_c00138{width:934.874961px;}
.w0_c00138{width:934.875000px;}
.w1_c00138{width:935.250000px;}
.x0_c00138{left:0.000000px;}
.x3c_c00138{left:89.487450px;}
.x3d_c00138{left:90.844844px;}
.x44_c00138{left:107.230262px;}
.x3e_c00138{left:108.827167px;}
.x43_c00138{left:130.690629px;}
.x14_c00138{left:134.974838px;}
.x13_c00138{left:136.648279px;}
.x15_c00138{left:140.021272px;}
.x16_c00138{left:144.871714px;}
.x17_c00138{left:150.237526px;}
.x18_c00138{left:152.990336px;}
.x19_c00138{left:156.000220px;}
.x1a_c00138{left:159.847713px;}
.x24_c00138{left:161.443962px;}
.x1b_c00138{left:163.301377px;}
.x1c_c00138{left:171.586339px;}
.x1d_c00138{left:179.855997px;}
.x1e_c00138{left:188.287487px;}
.x1f_c00138{left:196.673970px;}
.x20_c00138{left:200.841336px;}
.x21_c00138{left:205.399483px;}
.x22_c00138{left:209.208896px;}
.x23_c00138{left:211.795693px;}
.x3_c00138{left:230.398389px;}
.x2_c00138{left:232.534609px;}
.x4_c00138{left:235.623324px;}
.x5_c00138{left:240.462566px;}
.x6_c00138{left:245.820252px;}
.x7_c00138{left:248.569815px;}
.x8_c00138{left:251.576732px;}
.x9_c00138{left:255.421336px;}
.x40_c00138{left:256.622047px;}
.xa_c00138{left:258.708042px;}
.xb_c00138{left:263.145298px;}
.xc_c00138{left:271.763354px;}
.xd_c00138{left:283.603990px;}
.xe_c00138{left:291.041304px;}
.xf_c00138{left:294.435991px;}
.x3f_c00138{left:295.615161px;}
.x10_c00138{left:299.775542px;}
.x11_c00138{left:303.165014px;}
.x12_c00138{left:307.176807px;}
.x29_c00138{left:327.047435px;}
.x2a_c00138{left:328.264734px;}
.x2b_c00138{left:329.685747px;}
.x2c_c00138{left:333.082971px;}
.x2d_c00138{left:336.307511px;}
.x2e_c00138{left:342.189757px;}
.x2f_c00138{left:348.376740px;}
.x28_c00138{left:351.731739px;}
.x30_c00138{left:354.069743px;}
.x31_c00138{left:357.479743px;}
.x32_c00138{left:365.386869px;}
.x33_c00138{left:373.375785px;}
.x34_c00138{left:380.135498px;}
.x35_c00138{left:383.155707px;}
.x36_c00138{left:386.159935px;}
.x37_c00138{left:389.557910px;}
.x38_c00138{left:392.174988px;}
.x39_c00138{left:395.489533px;}
.x3a_c00138{left:400.664851px;}
.x3b_c00138{left:403.469600px;}
.x42_c00138{left:452.271732px;}
.x26_c00138{left:464.896169px;}
.x41_c00138{left:664.443440px;}
.x1_c00138{left:697.320842px;}
.x27_c00138{left:733.540639px;}
.x25_c00138{left:757.088990px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.v1_c00138{vertical-align:1.136256pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ws3_c00138{word-spacing:-37.057398pt;}
.ws0_c00138{word-spacing:-13.485567pt;}
.ws2_c00138{word-spacing:-0.049560pt;}
.ws4_c00138{word-spacing:0.000000pt;}
.ws1_c00138{word-spacing:256.052163pt;}
._2_c00138{width:1.199949pt;}
._1_c00138{width:14.384296pt;}
._0_c00138{width:15.317257pt;}
.fsf_c00138{font-size:32.000001pt;}
.fsa_c00138{font-size:35.340254pt;}
.fs7_c00138{font-size:37.333182pt;}
.fs4_c00138{font-size:42.105093pt;}
.fs1_c00138{font-size:42.105094pt;}
.fs5_c00138{font-size:42.105095pt;}
.fs2_c00138{font-size:42.105096pt;}
.fs3_c00138{font-size:42.105098pt;}
.fs0_c00138{font-size:45.921418pt;}
.fsc_c00138{font-size:49.559999pt;}
.fsd_c00138{font-size:53.319997pt;}
.fs8_c00138{font-size:63.999997pt;}
.fs9_c00138{font-size:66.154880pt;}
.fs6_c00138{font-size:68.454656pt;}
.fse_c00138{font-size:69.333336pt;}
.fsb_c00138{font-size:85.319996pt;}
.y0_c00138{bottom:0.000000pt;}
.y1_c00138{bottom:0.000007pt;}
.y4f_c00138{bottom:26.134367pt;}
.y49_c00138{bottom:189.021880pt;}
.y48_c00138{bottom:216.021879pt;}
.y47_c00138{bottom:243.021878pt;}
.y46_c00138{bottom:270.021877pt;}
.y4a_c00138{bottom:302.536333pt;}
.y2_c00138{bottom:356.911319pt;}
.y2e_c00138{bottom:432.789822pt;}
.y10_c00138{bottom:438.513950pt;}
.y24_c00138{bottom:438.527754pt;}
.yf_c00138{bottom:438.980754pt;}
.y25_c00138{bottom:438.998276pt;}
.y3c_c00138{bottom:439.074943pt;}
.y23_c00138{bottom:439.633885pt;}
.y3d_c00138{bottom:439.815613pt;}
.y3b_c00138{bottom:439.833627pt;}
.ye_c00138{bottom:439.928600pt;}
.y22_c00138{bottom:440.746230pt;}
.y3a_c00138{bottom:440.753505pt;}
.yd_c00138{bottom:440.882384pt;}
.y26_c00138{bottom:441.146660pt;}
.y11_c00138{bottom:441.203087pt;}
.y3e_c00138{bottom:441.754495pt;}
.y21_c00138{bottom:442.208338pt;}
.yc_c00138{bottom:442.350726pt;}
.y39_c00138{bottom:442.711737pt;}
.y3f_c00138{bottom:442.991236pt;}
.y20_c00138{bottom:443.709077pt;}
.yb_c00138{bottom:443.856095pt;}
.y40_c00138{bottom:444.500834pt;}
.y12_c00138{bottom:445.005059pt;}
.y1f_c00138{bottom:445.367066pt;}
.ya_c00138{bottom:445.518151pt;}
.y27_c00138{bottom:445.680145pt;}
.y38_c00138{bottom:446.081677pt;}
.y41_c00138{bottom:446.671541pt;}
.y13_c00138{bottom:447.244339pt;}
.y42_c00138{bottom:448.679667pt;}
.y28_c00138{bottom:448.905531pt;}
.y1e_c00138{bottom:449.504430pt;}
.y9_c00138{bottom:449.664187pt;}
.y37_c00138{bottom:450.943270pt;}
.y43_c00138{bottom:451.585269pt;}
.y14_c00138{bottom:452.535040pt;}
.y29_c00138{bottom:453.913511pt;}
.y36_c00138{bottom:454.913413pt;}
.y1d_c00138{bottom:455.194152pt;}
.y8_c00138{bottom:455.361467pt;}
.y15_c00138{bottom:456.756200pt;}
.y44_c00138{bottom:459.049592pt;}
.y2a_c00138{bottom:459.831327pt;}
.y35_c00138{bottom:460.623928pt;}
.y1c_c00138{bottom:461.689550pt;}
.y7_c00138{bottom:461.769857pt;}
.y34_c00138{bottom:464.686327pt;}
.y6_c00138{bottom:464.844100pt;}
.y45_c00138{bottom:466.204075pt;}
.y16_c00138{bottom:467.231078pt;}
.y1b_c00138{bottom:468.055335pt;}
.y5_c00138{bottom:470.186765pt;}
.y2b_c00138{bottom:470.465221pt;}
.y33_c00138{bottom:471.594820pt;}
.y1a_c00138{bottom:472.294552pt;}
.y2d_c00138{bottom:474.016326pt;}
.y31_c00138{bottom:474.632902pt;}
.y32_c00138{bottom:475.056113pt;}
.y4_c00138{bottom:476.639415pt;}
.y19_c00138{bottom:477.781541pt;}
.y17_c00138{bottom:478.111066pt;}
.y2c_c00138{bottom:478.434544pt;}
.y2f_c00138{bottom:479.977628pt;}
.y18_c00138{bottom:484.059707pt;}
.y3_c00138{bottom:485.114772pt;}
.y30_c00138{bottom:513.277627pt;}
.y4e_c00138{bottom:568.082152pt;}
.y50_c00138{bottom:907.946525pt;}
.y4c_c00138{bottom:1003.367459pt;}
.y52_c00138{bottom:1011.541100pt;}
.y51_c00138{bottom:1022.207767pt;}
.y4d_c00138{bottom:1025.122146pt;}
.y4b_c00138{bottom:1040.962393pt;}
.h16_c00138{height:29.796876pt;}
.h9_c00138{height:31.990003pt;}
.ha_c00138{height:31.990004pt;}
.hb_c00138{height:31.990006pt;}
.h10_c00138{height:32.907161pt;}
.h3_c00138{height:33.297513pt;}
.hd_c00138{height:34.762880pt;}
.h7_c00138{height:39.206256pt;}
.h4_c00138{height:39.206257pt;}
.h8_c00138{height:39.206258pt;}
.h5_c00138{height:39.206259pt;}
.h6_c00138{height:39.206261pt;}
.h14_c00138{height:40.523198pt;}
.h13_c00138{height:46.147909pt;}
.hc_c00138{height:50.040354pt;}
.hf_c00138{height:50.682132pt;}
.h12_c00138{height:51.176609pt;}
.h15_c00138{height:52.677085pt;}
.he_c00138{height:59.593748pt;}
.h11_c00138{height:79.445915pt;}
.h2_c00138{height:1159.999952pt;}
.h0_c00138{height:1159.999959pt;}
.h1_c00138{height:1160.000000pt;}
.w2_c00138{width:830.999965pt;}
.w0_c00138{width:831.000000pt;}
.w1_c00138{width:831.333333pt;}
.x0_c00138{left:0.000000pt;}
.x3c_c00138{left:79.544400pt;}
.x3d_c00138{left:80.750973pt;}
.x44_c00138{left:95.315788pt;}
.x3e_c00138{left:96.735260pt;}
.x43_c00138{left:116.169448pt;}
.x14_c00138{left:119.977634pt;}
.x13_c00138{left:121.465137pt;}
.x15_c00138{left:124.463353pt;}
.x16_c00138{left:128.774857pt;}
.x17_c00138{left:133.544468pt;}
.x18_c00138{left:135.991410pt;}
.x19_c00138{left:138.666862pt;}
.x1a_c00138{left:142.086856pt;}
.x24_c00138{left:143.505744pt;}
.x1b_c00138{left:145.156780pt;}
.x1c_c00138{left:152.521190pt;}
.x1d_c00138{left:159.871997pt;}
.x1e_c00138{left:167.366655pt;}
.x1f_c00138{left:174.821307pt;}
.x20_c00138{left:178.525632pt;}
.x21_c00138{left:182.577318pt;}
.x22_c00138{left:185.963463pt;}
.x23_c00138{left:188.262839pt;}
.x3_c00138{left:204.798568pt;}
.x2_c00138{left:206.697430pt;}
.x4_c00138{left:209.442955pt;}
.x5_c00138{left:213.744503pt;}
.x6_c00138{left:218.506891pt;}
.x7_c00138{left:220.950947pt;}
.x8_c00138{left:223.623762pt;}
.x9_c00138{left:227.041187pt;}
.x40_c00138{left:228.108486pt;}
.xa_c00138{left:229.962704pt;}
.xb_c00138{left:233.906932pt;}
.xc_c00138{left:241.567426pt;}
.xd_c00138{left:252.092435pt;}
.xe_c00138{left:258.703382pt;}
.xf_c00138{left:261.720880pt;}
.x3f_c00138{left:262.769032pt;}
.x10_c00138{left:266.467148pt;}
.x11_c00138{left:269.480012pt;}
.x12_c00138{left:273.046051pt;}
.x29_c00138{left:290.708831pt;}
.x2a_c00138{left:291.790874pt;}
.x2b_c00138{left:293.053997pt;}
.x2c_c00138{left:296.073752pt;}
.x2d_c00138{left:298.940009pt;}
.x2e_c00138{left:304.168673pt;}
.x2f_c00138{left:309.668213pt;}
.x28_c00138{left:312.650435pt;}
.x30_c00138{left:314.728661pt;}
.x31_c00138{left:317.759772pt;}
.x32_c00138{left:324.788328pt;}
.x33_c00138{left:331.889587pt;}
.x34_c00138{left:337.898220pt;}
.x35_c00138{left:340.582851pt;}
.x36_c00138{left:343.253275pt;}
.x37_c00138{left:346.273697pt;}
.x38_c00138{left:348.599989pt;}
.x39_c00138{left:351.546252pt;}
.x3a_c00138{left:356.146534pt;}
.x3b_c00138{left:358.639645pt;}
.x42_c00138{left:402.019318pt;}
.x26_c00138{left:413.241039pt;}
.x41_c00138{left:590.616391pt;}
.x1_c00138{left:619.840748pt;}
.x27_c00138{left:652.036124pt;}
.x25_c00138{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c291e419f8eef1abb85b4fff.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.171387;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.006348;font-style:normal;font-weight:normal;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_fe8bba98a244f47abd3abac7.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.005371;font-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_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);}
.v0_c00139{vertical-align:0.000000px;}
.ls0_c00139{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00139{word-spacing:-19.320776px;}
.ws1_c00139{word-spacing:0.000000px;}
._0_c00139{width:3.385023px;}
._3_c00139{width:5.167968px;}
._5_c00139{width:9.363234px;}
._1_c00139{width:21.492141px;}
._2_c00139{width:27.785109px;}
._4_c00139{width:32.062500px;}
.fc1_c00139{color:rgb(67,91,56);}
.fc0_c00139{color:rgb(0,0,0);}
.fs0_c00139{font-size:71.999997px;}
.fs1_c00139{font-size:74.377724px;}
.y0_c00139{bottom:0.000000px;}
.y1_c00139{bottom:0.000008px;}
.y12_c00139{bottom:29.401163px;}
.yd_c00139{bottom:585.556849px;}
.yc_c00139{bottom:615.931848px;}
.yb_c00139{bottom:646.306846px;}
.ya_c00139{bottom:676.681845px;}
.y9_c00139{bottom:707.056844px;}
.y8_c00139{bottom:745.756842px;}
.y7_c00139{bottom:833.435472px;}
.y6_c00139{bottom:866.457738px;}
.y4_c00139{bottom:937.534180px;}
.y3_c00139{bottom:967.909179px;}
.y2_c00139{bottom:998.284178px;}
.y5_c00139{bottom:1037.353316px;}
.y11_c00139{bottom:1103.938197px;}
.y10_c00139{bottom:1134.313196px;}
.yf_c00139{bottom:1164.688195px;}
.ye_c00139{bottom:1199.188901px;}
.h4_c00139{height:55.160154px;}
.h5_c00139{height:56.981762px;}
.h3_c00139{height:67.042966px;}
.h2_c00139{height:1304.999946px;}
.h0_c00139{height:1304.999953px;}
.h1_c00139{height:1305.000000px;}
.w2_c00139{width:934.874961px;}
.w0_c00139{width:934.875000px;}
.w1_c00139{width:935.250000px;}
.x0_c00139{left:0.000000px;}
.x1_c00139{left:90.277077px;}
.x2_c00139{left:91.861887px;}
.x3_c00139{left:452.271732px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws0_c00139{word-spacing:-17.174023pt;}
.ws1_c00139{word-spacing:0.000000pt;}
._0_c00139{width:3.008909pt;}
._3_c00139{width:4.593749pt;}
._5_c00139{width:8.322874pt;}
._1_c00139{width:19.104125pt;}
._2_c00139{width:24.697875pt;}
._4_c00139{width:28.500000pt;}
.fs0_c00139{font-size:63.999997pt;}
.fs1_c00139{font-size:66.113533pt;}
.y0_c00139{bottom:0.000000pt;}
.y1_c00139{bottom:0.000007pt;}
.y12_c00139{bottom:26.134367pt;}
.yd_c00139{bottom:520.494977pt;}
.yc_c00139{bottom:547.494976pt;}
.yb_c00139{bottom:574.494974pt;}
.ya_c00139{bottom:601.494973pt;}
.y9_c00139{bottom:628.494972pt;}
.y8_c00139{bottom:662.894971pt;}
.y7_c00139{bottom:740.831531pt;}
.y6_c00139{bottom:770.184656pt;}
.y4_c00139{bottom:833.363716pt;}
.y3_c00139{bottom:860.363715pt;}
.y2_c00139{bottom:887.363713pt;}
.y5_c00139{bottom:922.091837pt;}
.y11_c00139{bottom:981.278398pt;}
.y10_c00139{bottom:1008.278396pt;}
.yf_c00139{bottom:1035.278395pt;}
.ye_c00139{bottom:1065.945690pt;}
.h4_c00139{height:49.031248pt;}
.h5_c00139{height:50.650455pt;}
.h3_c00139{height:59.593748pt;}
.h2_c00139{height:1159.999952pt;}
.h0_c00139{height:1159.999959pt;}
.h1_c00139{height:1160.000000pt;}
.w2_c00139{width:830.999965pt;}
.w0_c00139{width:831.000000pt;}
.w1_c00139{width:831.333333pt;}
.x0_c00139{left:0.000000pt;}
.x1_c00139{left:80.246291pt;}
.x2_c00139{left:81.655011pt;}
.x3_c00139{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.000000;font-style:normal;font-weight:normal;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_cf57d7d04abee0d263878a64.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.171387;font-style:normal;font-weight:normal;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_273add330567a1b18b280850.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.171387;font-style:normal;font-weight:normal;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_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.006348;font-style:normal;font-weight: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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff5_c00140{font-family:ff5_c00140;line-height:0.734863;font-style:normal;font-weight: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_c00140;src:url('chunks/assets/font_512bf4519d681aa1f1d15c76.woff2')format("woff");}.ff6_c00140{font-family:ff6_c00140;line-height:1.000000;font-style:normal;font-weight: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_c00140;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff7_c00140{font-family:ff7_c00140;line-height:0.734863;font-style:normal;font-weight: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_c00140;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff8_c00140{font-family:ff8_c00140;line-height:0.769531;font-style:normal;font-weight: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_c00140;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff9_c00140{font-family:ff9_c00140;line-height:0.743000;font-style:normal;font-weight: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_c00140;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00140{font-family:ffa_c00140;line-height:0.940000;font-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_c00140{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00140{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00140{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00140{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00140{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00140{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00140{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00140{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00140{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00140{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00140{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00140{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00140{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00140{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00140{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00140{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00140{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00140{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00140{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00140{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00140{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00140{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00140{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00140{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00140{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00140{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00140{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00140{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00140{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00140{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00140{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00140{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00140{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00140{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00140{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00140{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00140{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00140{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00140{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00140{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00140{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00140{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00140{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00140{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00140{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00140{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00140{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00140{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00140{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00140{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00140{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00140{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00140{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00140{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00140{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00140{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00140{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00140{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00140{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00140{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00140{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00140{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.ls0_c00140{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00140{word-spacing:-41.689573px;}
.ws2_c00140{word-spacing:-15.171263px;}
.ws1_c00140{word-spacing:-0.089985px;}
.ws0_c00140{word-spacing:-0.055755px;}
.ws5_c00140{word-spacing:0.000000px;}
.ws3_c00140{word-spacing:281.638789px;}
._0_c00140{width:1.799970px;}
._3_c00140{width:3.293837px;}
._2_c00140{width:10.943619px;}
._1_c00140{width:17.676520px;}
._4_c00140{width:22.242165px;}
.fc5_c00140{color:transparent;}
.fc4_c00140{color:rgb(9,71,81);}
.fc2_c00140{color:rgb(67,91,56);}
.fc3_c00140{color:rgb(128,128,128);}
.fc1_c00140{color:rgb(0,0,0);}
.fc0_c00140{color:rgb(255,255,255);}
.fs5_c00140{font-size:39.757786px;}
.fsf_c00140{font-size:41.999830px;}
.fs4_c00140{font-size:42.000118px;}
.fsc_c00140{font-size:47.368230px;}
.fs9_c00140{font-size:47.368231px;}
.fsd_c00140{font-size:47.368232px;}
.fsa_c00140{font-size:47.368233px;}
.fsb_c00140{font-size:47.368235px;}
.fs8_c00140{font-size:51.661596px;}
.fs0_c00140{font-size:55.754999px;}
.fs10_c00140{font-size:59.984997px;}
.fs6_c00140{font-size:69.618741px;}
.fs1_c00140{font-size:71.999997px;}
.fs2_c00140{font-size:74.424240px;}
.fse_c00140{font-size:77.011488px;}
.fs3_c00140{font-size:89.985250px;}
.fs7_c00140{font-size:95.984996px;}
.y0_c00140{bottom:0.000000px;}
.y1_c00140{bottom:0.000008px;}
.y11_c00140{bottom:29.401163px;}
.yf_c00140{bottom:30.348053px;}
.y9_c00140{bottom:114.774619px;}
.y8_c00140{bottom:145.149618px;}
.y7_c00140{bottom:175.524617px;}
.y6_c00140{bottom:205.899615px;}
.y5_c00140{bottom:236.274614px;}
.y4_c00140{bottom:266.649613px;}
.y3_c00140{bottom:297.024612px;}
.ya_c00140{bottom:340.353302px;}
.y12_c00140{bottom:401.525233px;}
.y3e_c00140{bottom:486.888370px;}
.y20_c00140{bottom:493.328373px;}
.y34_c00140{bottom:493.343471px;}
.y1f_c00140{bottom:493.853637px;}
.y35_c00140{bottom:493.873313px;}
.y4c_c00140{bottom:493.959419px;}
.y33_c00140{bottom:494.588120px;}
.y4d_c00140{bottom:494.792744px;}
.y4b_c00140{bottom:494.812830px;}
.y1e_c00140{bottom:494.919783px;}
.y32_c00140{bottom:495.839401px;}
.y4a_c00140{bottom:495.847621px;}
.y1d_c00140{bottom:495.993006px;}
.y36_c00140{bottom:496.289812px;}
.y21_c00140{bottom:496.353473px;}
.y4e_c00140{bottom:496.973987px;}
.y31_c00140{bottom:497.484272px;}
.y1c_c00140{bottom:497.644566px;}
.y49_c00140{bottom:498.050345px;}
.y4f_c00140{bottom:498.364888px;}
.y30_c00140{bottom:499.172531px;}
.y1b_c00140{bottom:499.338107px;}
.y50_c00140{bottom:500.063187px;}
.y22_c00140{bottom:500.630691px;}
.y2f_c00140{bottom:501.037769px;}
.y1a_c00140{bottom:501.208172px;}
.y37_c00140{bottom:501.390631px;}
.y48_c00140{bottom:501.842067px;}
.y51_c00140{bottom:502.505484px;}
.y23_c00140{bottom:503.149449px;}
.y52_c00140{bottom:504.764445px;}
.y38_c00140{bottom:505.018795px;}
.y2e_c00140{bottom:505.692124px;}
.y19_c00140{bottom:505.871886px;}
.y47_c00140{bottom:507.310818px;}
.y53_c00140{bottom:508.033427px;}
.y24_c00140{bottom:509.101992px;}
.y39_c00140{bottom:510.652700px;}
.y46_c00140{bottom:511.777409px;}
.y2d_c00140{bottom:512.093493px;}
.y18_c00140{bottom:512.281758px;}
.y25_c00140{bottom:513.850725px;}
.y54_c00140{bottom:516.430683px;}
.y3a_c00140{bottom:517.310350px;}
.y45_c00140{bottom:518.202172px;}
.y2c_c00140{bottom:519.400636px;}
.y17_c00140{bottom:519.490837px;}
.y44_c00140{bottom:522.772046px;}
.y16_c00140{bottom:522.949612px;}
.y55_c00140{bottom:524.479585px;}
.y26_c00140{bottom:525.634639px;}
.y2b_c00140{bottom:526.562252px;}
.y15_c00140{bottom:528.959931px;}
.y3b_c00140{bottom:529.273374px;}
.y43_c00140{bottom:530.544173px;}
.y2a_c00140{bottom:531.331479px;}
.y3d_c00140{bottom:533.268115px;}
.y41_c00140{bottom:533.961835px;}
.y56_c00140{bottom:534.281911px;}
.y42_c00140{bottom:534.437983px;}
.y14_c00140{bottom:536.219342px;}
.y29_c00140{bottom:537.503802px;}
.y27_c00140{bottom:537.875201px;}
.y3c_c00140{bottom:538.238934px;}
.y3f_c00140{bottom:539.974724px;}
.y28_c00140{bottom:544.567278px;}
.y13_c00140{bottom:545.754118px;}
.y40_c00140{bottom:577.437042px;}
.y2_c00140{bottom:639.092601px;}
.y57_c00140{bottom:1021.439863px;}
.ye_c00140{bottom:1128.788247px;}
.yc_c00140{bottom:1133.738464px;}
.yb_c00140{bottom:1147.738503px;}
.y10_c00140{bottom:1153.262281px;}
.yd_c00140{bottom:1171.082779px;}
.h11_c00140{height:35.988753px;}
.h12_c00140{height:35.988755px;}
.h13_c00140{height:35.988756px;}
.h8_c00140{height:37.020556px;}
.hb_c00140{height:37.459702px;}
.h15_c00140{height:39.108240px;}
.h7_c00140{height:39.108509px;}
.hf_c00140{height:44.107038px;}
.hc_c00140{height:44.107039px;}
.h10_c00140{height:44.107040px;}
.hd_c00140{height:44.107042px;}
.he_c00140{height:44.107043px;}
.h16_c00140{height:45.588598px;}
.h9_c00140{height:50.480386px;}
.h3_c00140{height:51.916398px;}
.h14_c00140{height:56.295398px;}
.h5_c00140{height:57.017399px;}
.h4_c00140{height:67.042966px;}
.h6_c00140{height:68.367700px;}
.ha_c00140{height:89.376654px;}
.h2_c00140{height:1304.999946px;}
.h0_c00140{height:1304.999953px;}
.h1_c00140{height:1305.000000px;}
.w2_c00140{width:934.874961px;}
.w0_c00140{width:934.875000px;}
.w1_c00140{width:935.250000px;}
.x0_c00140{left:0.000000px;}
.x3_c00140{left:90.844844px;}
.x2_c00140{left:93.543307px;}
.x4_c00140{left:107.230262px;}
.x5_c00140{left:108.827167px;}
.x42_c00140{left:130.690629px;}
.x1a_c00140{left:134.974838px;}
.x19_c00140{left:136.648279px;}
.x1b_c00140{left:140.021272px;}
.x1c_c00140{left:144.871714px;}
.x1d_c00140{left:150.237526px;}
.x1e_c00140{left:152.990336px;}
.x1f_c00140{left:156.000220px;}
.x20_c00140{left:159.847713px;}
.x2a_c00140{left:161.443962px;}
.x21_c00140{left:163.301377px;}
.x22_c00140{left:171.586339px;}
.x23_c00140{left:179.855997px;}
.x24_c00140{left:188.287487px;}
.x25_c00140{left:196.673970px;}
.x26_c00140{left:200.841336px;}
.x27_c00140{left:205.399483px;}
.x28_c00140{left:209.208896px;}
.x29_c00140{left:211.795693px;}
.xa_c00140{left:230.398389px;}
.x9_c00140{left:232.534609px;}
.xb_c00140{left:235.623324px;}
.xc_c00140{left:240.462566px;}
.xd_c00140{left:245.820252px;}
.xe_c00140{left:248.569815px;}
.xf_c00140{left:251.576732px;}
.x10_c00140{left:255.421336px;}
.x2e_c00140{left:256.622047px;}
.x11_c00140{left:258.708042px;}
.x12_c00140{left:263.145298px;}
.x13_c00140{left:271.763354px;}
.x14_c00140{left:283.603990px;}
.x15_c00140{left:291.041304px;}
.x6_c00140{left:295.177092px;}
.x16_c00140{left:299.775542px;}
.x17_c00140{left:303.165014px;}
.x18_c00140{left:307.176807px;}
.x2f_c00140{left:327.047435px;}
.x30_c00140{left:328.264734px;}
.x31_c00140{left:329.685747px;}
.x32_c00140{left:333.082971px;}
.x33_c00140{left:336.307511px;}
.x34_c00140{left:342.189757px;}
.x35_c00140{left:348.376740px;}
.x36_c00140{left:354.069743px;}
.x37_c00140{left:357.479743px;}
.x38_c00140{left:365.386869px;}
.x39_c00140{left:373.375785px;}
.x3a_c00140{left:380.135498px;}
.x3b_c00140{left:383.155707px;}
.x3c_c00140{left:386.159935px;}
.x3d_c00140{left:389.557910px;}
.x3e_c00140{left:392.174988px;}
.x3f_c00140{left:395.489533px;}
.x40_c00140{left:400.664851px;}
.x41_c00140{left:403.469600px;}
.x7_c00140{left:452.786554px;}
.x2c_c00140{left:464.896169px;}
.x1_c00140{left:676.878164px;}
.x8_c00140{left:697.320842px;}
.x2d_c00140{left:733.540639px;}
.x2b_c00140{left:757.088990px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws4_c00140{word-spacing:-37.057398pt;}
.ws2_c00140{word-spacing:-13.485567pt;}
.ws1_c00140{word-spacing:-0.079987pt;}
.ws0_c00140{word-spacing:-0.049560pt;}
.ws5_c00140{word-spacing:0.000000pt;}
.ws3_c00140{word-spacing:250.345590pt;}
._0_c00140{width:1.599973pt;}
._3_c00140{width:2.927855pt;}
._2_c00140{width:9.727661pt;}
._1_c00140{width:15.712463pt;}
._4_c00140{width:19.770813pt;}
.fs5_c00140{font-size:35.340254pt;}
.fsf_c00140{font-size:37.333182pt;}
.fs4_c00140{font-size:37.333438pt;}
.fsc_c00140{font-size:42.105093pt;}
.fs9_c00140{font-size:42.105094pt;}
.fsd_c00140{font-size:42.105095pt;}
.fsa_c00140{font-size:42.105096pt;}
.fsb_c00140{font-size:42.105098pt;}
.fs8_c00140{font-size:45.921418pt;}
.fs0_c00140{font-size:49.559999pt;}
.fs10_c00140{font-size:53.319997pt;}
.fs6_c00140{font-size:61.883325pt;}
.fs1_c00140{font-size:63.999997pt;}
.fs2_c00140{font-size:66.154880pt;}
.fse_c00140{font-size:68.454656pt;}
.fs3_c00140{font-size:79.986889pt;}
.fs7_c00140{font-size:85.319996pt;}
.y0_c00140{bottom:0.000000pt;}
.y1_c00140{bottom:0.000007pt;}
.y11_c00140{bottom:26.134367pt;}
.yf_c00140{bottom:26.976047pt;}
.y9_c00140{bottom:102.021884pt;}
.y8_c00140{bottom:129.021883pt;}
.y7_c00140{bottom:156.021881pt;}
.y6_c00140{bottom:183.021880pt;}
.y5_c00140{bottom:210.021879pt;}
.y4_c00140{bottom:237.021878pt;}
.y3_c00140{bottom:264.021877pt;}
.ya_c00140{bottom:302.536269pt;}
.y12_c00140{bottom:356.911319pt;}
.y3e_c00140{bottom:432.789662pt;}
.y20_c00140{bottom:438.514110pt;}
.y34_c00140{bottom:438.527530pt;}
.y1f_c00140{bottom:438.981010pt;}
.y35_c00140{bottom:438.998500pt;}
.y4c_c00140{bottom:439.075039pt;}
.y33_c00140{bottom:439.633885pt;}
.y4d_c00140{bottom:439.815773pt;}
.y4b_c00140{bottom:439.833627pt;}
.y1e_c00140{bottom:439.928696pt;}
.y32_c00140{bottom:440.746134pt;}
.y4a_c00140{bottom:440.753441pt;}
.y1d_c00140{bottom:440.882672pt;}
.y36_c00140{bottom:441.146500pt;}
.y21_c00140{bottom:441.203087pt;}
.y4e_c00140{bottom:441.754655pt;}
.y31_c00140{bottom:442.208242pt;}
.y1c_c00140{bottom:442.350726pt;}
.y49_c00140{bottom:442.711417pt;}
.y4f_c00140{bottom:442.991012pt;}
.y30_c00140{bottom:443.708917pt;}
.y1b_c00140{bottom:443.856095pt;}
.y50_c00140{bottom:444.500610pt;}
.y22_c00140{bottom:445.005059pt;}
.y2f_c00140{bottom:445.366906pt;}
.y1a_c00140{bottom:445.518375pt;}
.y37_c00140{bottom:445.680561pt;}
.y48_c00140{bottom:446.081837pt;}
.y51_c00140{bottom:446.671541pt;}
.y23_c00140{bottom:447.243955pt;}
.y52_c00140{bottom:448.679507pt;}
.y38_c00140{bottom:448.905595pt;}
.y2e_c00140{bottom:449.504110pt;}
.y19_c00140{bottom:449.663899pt;}
.y47_c00140{bottom:450.942950pt;}
.y53_c00140{bottom:451.585269pt;}
.y24_c00140{bottom:452.535104pt;}
.y39_c00140{bottom:453.913511pt;}
.y46_c00140{bottom:454.913253pt;}
.y2d_c00140{bottom:455.194216pt;}
.y18_c00140{bottom:455.361563pt;}
.y25_c00140{bottom:456.756200pt;}
.y54_c00140{bottom:459.049496pt;}
.y3a_c00140{bottom:459.831423pt;}
.y45_c00140{bottom:460.624152pt;}
.y2c_c00140{bottom:461.689454pt;}
.y17_c00140{bottom:461.769633pt;}
.y44_c00140{bottom:464.686263pt;}
.y16_c00140{bottom:464.844100pt;}
.y55_c00140{bottom:466.204075pt;}
.y26_c00140{bottom:467.230790pt;}
.y2b_c00140{bottom:468.055335pt;}
.y15_c00140{bottom:470.186605pt;}
.y3b_c00140{bottom:470.465221pt;}
.y43_c00140{bottom:471.594820pt;}
.y2a_c00140{bottom:472.294648pt;}
.y3d_c00140{bottom:474.016102pt;}
.y41_c00140{bottom:474.632742pt;}
.y56_c00140{bottom:474.917254pt;}
.y42_c00140{bottom:475.055985pt;}
.y14_c00140{bottom:476.639415pt;}
.y29_c00140{bottom:477.781157pt;}
.y27_c00140{bottom:478.111290pt;}
.y3c_c00140{bottom:478.434608pt;}
.y3f_c00140{bottom:479.977532pt;}
.y28_c00140{bottom:484.059803pt;}
.y13_c00140{bottom:485.114772pt;}
.y40_c00140{bottom:513.277371pt;}
.y2_c00140{bottom:568.082312pt;}
.y57_c00140{bottom:907.946545pt;}
.ye_c00140{bottom:1003.367331pt;}
.yc_c00140{bottom:1007.767524pt;}
.yb_c00140{bottom:1020.212003pt;}
.y10_c00140{bottom:1025.122028pt;}
.yd_c00140{bottom:1040.962470pt;}
.h11_c00140{height:31.990003pt;}
.h12_c00140{height:31.990004pt;}
.h13_c00140{height:31.990006pt;}
.h8_c00140{height:32.907161pt;}
.hb_c00140{height:33.297513pt;}
.h15_c00140{height:34.762880pt;}
.h7_c00140{height:34.763119pt;}
.hf_c00140{height:39.206256pt;}
.hc_c00140{height:39.206257pt;}
.h10_c00140{height:39.206258pt;}
.hd_c00140{height:39.206259pt;}
.he_c00140{height:39.206261pt;}
.h16_c00140{height:40.523198pt;}
.h9_c00140{height:44.871454pt;}
.h3_c00140{height:46.147909pt;}
.h14_c00140{height:50.040354pt;}
.h5_c00140{height:50.682132pt;}
.h4_c00140{height:59.593748pt;}
.h6_c00140{height:60.771289pt;}
.ha_c00140{height:79.445915pt;}
.h2_c00140{height:1159.999952pt;}
.h0_c00140{height:1159.999959pt;}
.h1_c00140{height:1160.000000pt;}
.w2_c00140{width:830.999965pt;}
.w0_c00140{width:831.000000pt;}
.w1_c00140{width:831.333333pt;}
.x0_c00140{left:0.000000pt;}
.x3_c00140{left:80.750973pt;}
.x2_c00140{left:83.149606pt;}
.x4_c00140{left:95.315788pt;}
.x5_c00140{left:96.735260pt;}
.x42_c00140{left:116.169448pt;}
.x1a_c00140{left:119.977634pt;}
.x19_c00140{left:121.465137pt;}
.x1b_c00140{left:124.463353pt;}
.x1c_c00140{left:128.774857pt;}
.x1d_c00140{left:133.544468pt;}
.x1e_c00140{left:135.991410pt;}
.x1f_c00140{left:138.666862pt;}
.x20_c00140{left:142.086856pt;}
.x2a_c00140{left:143.505744pt;}
.x21_c00140{left:145.156780pt;}
.x22_c00140{left:152.521190pt;}
.x23_c00140{left:159.871997pt;}
.x24_c00140{left:167.366655pt;}
.x25_c00140{left:174.821307pt;}
.x26_c00140{left:178.525632pt;}
.x27_c00140{left:182.577318pt;}
.x28_c00140{left:185.963463pt;}
.x29_c00140{left:188.262839pt;}
.xa_c00140{left:204.798568pt;}
.x9_c00140{left:206.697430pt;}
.xb_c00140{left:209.442955pt;}
.xc_c00140{left:213.744503pt;}
.xd_c00140{left:218.506891pt;}
.xe_c00140{left:220.950947pt;}
.xf_c00140{left:223.623762pt;}
.x10_c00140{left:227.041187pt;}
.x2e_c00140{left:228.108486pt;}
.x11_c00140{left:229.962704pt;}
.x12_c00140{left:233.906932pt;}
.x13_c00140{left:241.567426pt;}
.x14_c00140{left:252.092435pt;}
.x15_c00140{left:258.703382pt;}
.x6_c00140{left:262.379637pt;}
.x16_c00140{left:266.467148pt;}
.x17_c00140{left:269.480012pt;}
.x18_c00140{left:273.046051pt;}
.x2f_c00140{left:290.708831pt;}
.x30_c00140{left:291.790874pt;}
.x31_c00140{left:293.053997pt;}
.x32_c00140{left:296.073752pt;}
.x33_c00140{left:298.940009pt;}
.x34_c00140{left:304.168673pt;}
.x35_c00140{left:309.668213pt;}
.x36_c00140{left:314.728661pt;}
.x37_c00140{left:317.759772pt;}
.x38_c00140{left:324.788328pt;}
.x39_c00140{left:331.889587pt;}
.x3a_c00140{left:337.898220pt;}
.x3b_c00140{left:340.582851pt;}
.x3c_c00140{left:343.253275pt;}
.x3d_c00140{left:346.273697pt;}
.x3e_c00140{left:348.599989pt;}
.x3f_c00140{left:351.546252pt;}
.x40_c00140{left:356.146534pt;}
.x41_c00140{left:358.639645pt;}
.x7_c00140{left:402.476937pt;}
.x2c_c00140{left:413.241039pt;}
.x1_c00140{left:601.669479pt;}
.x8_c00140{left:619.840748pt;}
.x2d_c00140{left:652.036124pt;}
.x2b_c00140{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.006348;font-style:normal;font-weight:normal;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_e7d7fb2c9a53de8e04968a9c.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.171387;font-style:normal;font-weight:normal;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_1d6eb44a98ad7b9bbfb84e4e.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.000000;font-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_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);}
.v0_c00141{vertical-align:0.000000px;}
.ls0_c00141{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00141{word-spacing:-19.320776px;}
.ws1_c00141{word-spacing:0.000000px;}
._4_c00141{width:1.007788px;}
._2_c00141{width:2.493691px;}
._b_c00141{width:4.353949px;}
._3_c00141{width:5.362494px;}
._9_c00141{width:6.393698px;}
._7_c00141{width:7.508059px;}
._0_c00141{width:8.556976px;}
._d_c00141{width:9.897790px;}
._f_c00141{width:11.114796px;}
._1_c00141{width:15.359368px;}
._c_c00141{width:16.411638px;}
._e_c00141{width:17.486417px;}
._12_c00141{width:21.290537px;}
._5_c00141{width:22.324220px;}
._11_c00141{width:23.378896px;}
._10_c00141{width:26.126102px;}
._6_c00141{width:29.243545px;}
._a_c00141{width:30.972653px;}
._8_c00141{width:35.444502px;}
.fc1_c00141{color:rgb(0,0,0);}
.fc0_c00141{color:rgb(67,91,56);}
.fs1_c00141{font-size:71.999997px;}
.fs0_c00141{font-size:74.377724px;}
.y0_c00141{bottom:0.000000px;}
.y1_c00141{bottom:0.000008px;}
.y29_c00141{bottom:29.400983px;}
.y28_c00141{bottom:59.507746px;}
.y27_c00141{bottom:89.882744px;}
.y26_c00141{bottom:120.257743px;}
.y25_c00141{bottom:150.632742px;}
.y24_c00141{bottom:181.007740px;}
.y23_c00141{bottom:211.382739px;}
.y22_c00141{bottom:241.757738px;}
.y21_c00141{bottom:272.132737px;}
.y20_c00141{bottom:302.507735px;}
.y1f_c00141{bottom:332.882734px;}
.y1e_c00141{bottom:370.913187px;}
.y1d_c00141{bottom:401.288185px;}
.y1c_c00141{bottom:431.663184px;}
.y1b_c00141{bottom:462.038183px;}
.y1a_c00141{bottom:492.413181px;}
.y19_c00141{bottom:522.788180px;}
.y18_c00141{bottom:553.163179px;}
.y17_c00141{bottom:583.538178px;}
.y16_c00141{bottom:613.913176px;}
.y15_c00141{bottom:644.288175px;}
.y14_c00141{bottom:674.663174px;}
.y13_c00141{bottom:705.038173px;}
.y12_c00141{bottom:735.413171px;}
.y11_c00141{bottom:765.788170px;}
.y10_c00141{bottom:796.163169px;}
.yf_c00141{bottom:826.538168px;}
.ye_c00141{bottom:856.913166px;}
.yd_c00141{bottom:887.288165px;}
.yc_c00141{bottom:917.663164px;}
.yb_c00141{bottom:948.038162px;}
.ya_c00141{bottom:978.413161px;}
.y9_c00141{bottom:1008.788160px;}
.y8_c00141{bottom:1040.738335px;}
.y7_c00141{bottom:1079.218784px;}
.y6_c00141{bottom:1109.593783px;}
.y5_c00141{bottom:1139.968781px;}
.y4_c00141{bottom:1170.343780px;}
.y3_c00141{bottom:1200.718779px;}
.y2_c00141{bottom:1232.691400px;}
.h5_c00141{height:55.160154px;}
.h3_c00141{height:56.981762px;}
.h4_c00141{height:67.042966px;}
.h2_c00141{height:1304.999946px;}
.h0_c00141{height:1304.999953px;}
.h1_c00141{height:1305.000000px;}
.w2_c00141{width:934.874961px;}
.w0_c00141{width:934.875000px;}
.w1_c00141{width:935.250000px;}
.x0_c00141{left:0.000000px;}
.x1_c00141{left:87.669846px;}
.x2_c00141{left:452.271732px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws0_c00141{word-spacing:-17.174023pt;}
.ws1_c00141{word-spacing:0.000000pt;}
._4_c00141{width:0.895811pt;}
._2_c00141{width:2.216614pt;}
._b_c00141{width:3.870177pt;}
._3_c00141{width:4.766661pt;}
._9_c00141{width:5.683287pt;}
._7_c00141{width:6.673830pt;}
._0_c00141{width:7.606201pt;}
._d_c00141{width:8.798036pt;}
._f_c00141{width:9.879818pt;}
._1_c00141{width:13.652772pt;}
._c_c00141{width:14.588123pt;}
._e_c00141{width:15.543482pt;}
._12_c00141{width:18.924921pt;}
._5_c00141{width:19.843751pt;}
._11_c00141{width:20.781241pt;}
._10_c00141{width:23.223201pt;}
._6_c00141{width:25.994262pt;}
._a_c00141{width:27.531247pt;}
._8_c00141{width:31.506224pt;}
.fs1_c00141{font-size:63.999997pt;}
.fs0_c00141{font-size:66.113533pt;}
.y0_c00141{bottom:0.000000pt;}
.y1_c00141{bottom:0.000007pt;}
.y29_c00141{bottom:26.134207pt;}
.y28_c00141{bottom:52.895774pt;}
.y27_c00141{bottom:79.895773pt;}
.y26_c00141{bottom:106.895772pt;}
.y25_c00141{bottom:133.895770pt;}
.y24_c00141{bottom:160.895769pt;}
.y23_c00141{bottom:187.895768pt;}
.y22_c00141{bottom:214.895767pt;}
.y21_c00141{bottom:241.895766pt;}
.y20_c00141{bottom:268.895765pt;}
.y1f_c00141{bottom:295.895764pt;}
.y1e_c00141{bottom:329.700610pt;}
.y1d_c00141{bottom:356.700609pt;}
.y1c_c00141{bottom:383.700608pt;}
.y1b_c00141{bottom:410.700607pt;}
.y1a_c00141{bottom:437.700606pt;}
.y19_c00141{bottom:464.700605pt;}
.y18_c00141{bottom:491.700604pt;}
.y17_c00141{bottom:518.700602pt;}
.y16_c00141{bottom:545.700601pt;}
.y15_c00141{bottom:572.700600pt;}
.y14_c00141{bottom:599.700599pt;}
.y13_c00141{bottom:626.700598pt;}
.y12_c00141{bottom:653.700597pt;}
.y11_c00141{bottom:680.700596pt;}
.y10_c00141{bottom:707.700595pt;}
.yf_c00141{bottom:734.700593pt;}
.ye_c00141{bottom:761.700592pt;}
.yd_c00141{bottom:788.700591pt;}
.yc_c00141{bottom:815.700590pt;}
.yb_c00141{bottom:842.700589pt;}
.ya_c00141{bottom:869.700588pt;}
.y9_c00141{bottom:896.700587pt;}
.y8_c00141{bottom:925.100742pt;}
.y7_c00141{bottom:959.305586pt;}
.y6_c00141{bottom:986.305585pt;}
.y5_c00141{bottom:1013.305583pt;}
.y4_c00141{bottom:1040.305582pt;}
.y3_c00141{bottom:1067.305581pt;}
.y2_c00141{bottom:1095.725689pt;}
.h5_c00141{height:49.031248pt;}
.h3_c00141{height:50.650455pt;}
.h4_c00141{height:59.593748pt;}
.h2_c00141{height:1159.999952pt;}
.h0_c00141{height:1159.999959pt;}
.h1_c00141{height:1160.000000pt;}
.w2_c00141{width:830.999965pt;}
.w0_c00141{width:831.000000pt;}
.w1_c00141{width:831.333333pt;}
.x0_c00141{left:0.000000pt;}
.x1_c00141{left:77.928752pt;}
.x2_c00141{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d6eb44a98ad7b9bbfb84e4e.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.000000;font-style:normal;font-weight:normal;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_e151d6713bbc6d3e9a01ed80.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.171387;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:0.734863;font-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_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);}
.v0_c00142{vertical-align:0.000000px;}
.ls0_c00142{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00142{word-spacing:0.000000px;}
._6_c00142{margin-left:-1.009233px;}
._11_c00142{width:1.004581px;}
._1_c00142{width:2.039062px;}
._10_c00142{width:3.044715px;}
._5_c00142{width:4.397210px;}
._0_c00142{width:6.131194px;}
._8_c00142{width:8.217748px;}
._2_c00142{width:9.602667px;}
._a_c00142{width:10.787925px;}
._d_c00142{width:12.083982px;}
._9_c00142{width:13.640421px;}
._3_c00142{width:15.468750px;}
._b_c00142{width:17.018800px;}
._4_c00142{width:21.560803px;}
._7_c00142{width:22.862877px;}
._c_c00142{width:27.478203px;}
._e_c00142{width:37.724693px;}
._f_c00142{width:70.049932px;}
.fc2_c00142{color:transparent;}
.fc1_c00142{color:rgb(128,128,128);}
.fc0_c00142{color:rgb(0,0,0);}
.fs3_c00142{font-size:48.000598px;}
.fs1_c00142{font-size:69.618741px;}
.fs2_c00142{font-size:71.960897px;}
.fs0_c00142{font-size:71.999997px;}
.y0_c00142{bottom:0.000000px;}
.y1_c00142{bottom:0.000008px;}
.ya_c00142{bottom:29.401163px;}
.y9_c00142{bottom:30.348053px;}
.y28_c00142{bottom:72.698241px;}
.y27_c00142{bottom:102.698615px;}
.y26_c00142{bottom:132.698989px;}
.y25_c00142{bottom:162.699363px;}
.y24_c00142{bottom:192.699736px;}
.y23_c00142{bottom:222.700110px;}
.y22_c00142{bottom:249.700446px;}
.y21_c00142{bottom:272.700733px;}
.y20_c00142{bottom:302.701107px;}
.y1f_c00142{bottom:332.701480px;}
.y1e_c00142{bottom:362.701854px;}
.y1d_c00142{bottom:392.702228px;}
.y1c_c00142{bottom:422.702602px;}
.y1b_c00142{bottom:452.702975px;}
.y1a_c00142{bottom:482.703349px;}
.y19_c00142{bottom:512.703723px;}
.y18_c00142{bottom:542.704097px;}
.y17_c00142{bottom:572.704470px;}
.y16_c00142{bottom:602.704844px;}
.y15_c00142{bottom:632.705218px;}
.y14_c00142{bottom:662.705592px;}
.y13_c00142{bottom:692.705965px;}
.y12_c00142{bottom:722.706339px;}
.y11_c00142{bottom:752.706713px;}
.y10_c00142{bottom:782.707087px;}
.yf_c00142{bottom:812.707460px;}
.ye_c00142{bottom:842.707834px;}
.yd_c00142{bottom:872.708208px;}
.yc_c00142{bottom:902.708582px;}
.yb_c00142{bottom:932.708955px;}
.y8_c00142{bottom:978.453240px;}
.y7_c00142{bottom:1008.828239px;}
.y6_c00142{bottom:1039.203237px;}
.y5_c00142{bottom:1069.578236px;}
.y4_c00142{bottom:1099.953235px;}
.y3_c00142{bottom:1130.328234px;}
.y2_c00142{bottom:1160.703232px;}
.h6_c00142{height:44.695869px;}
.h4_c00142{height:50.480386px;}
.h5_c00142{height:67.006557px;}
.h3_c00142{height:67.042966px;}
.h2_c00142{height:1304.999946px;}
.h0_c00142{height:1304.999953px;}
.h1_c00142{height:1305.000000px;}
.w2_c00142{width:934.874961px;}
.w0_c00142{width:934.875000px;}
.w1_c00142{width:935.250000px;}
.x0_c00142{left:0.000000px;}
.x1_c00142{left:87.902647px;}
.x3_c00142{left:89.487450px;}
.x2_c00142{left:452.782029px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws0_c00142{word-spacing:0.000000pt;}
._6_c00142{margin-left:-0.897096pt;}
._11_c00142{width:0.892961pt;}
._1_c00142{width:1.812500pt;}
._10_c00142{width:2.706413pt;}
._5_c00142{width:3.908631pt;}
._0_c00142{width:5.449951pt;}
._8_c00142{width:7.304665pt;}
._2_c00142{width:8.535704pt;}
._a_c00142{width:9.589267pt;}
._d_c00142{width:10.741317pt;}
._9_c00142{width:12.124819pt;}
._3_c00142{width:13.750000pt;}
._b_c00142{width:15.127822pt;}
._4_c00142{width:19.165158pt;}
._7_c00142{width:20.322558pt;}
._c_c00142{width:24.425069pt;}
._e_c00142{width:33.533060pt;}
._f_c00142{width:62.266606pt;}
.fs3_c00142{font-size:42.667198pt;}
.fs1_c00142{font-size:61.883325pt;}
.fs2_c00142{font-size:63.965241pt;}
.fs0_c00142{font-size:63.999997pt;}
.y0_c00142{bottom:0.000000pt;}
.y1_c00142{bottom:0.000007pt;}
.ya_c00142{bottom:26.134367pt;}
.y9_c00142{bottom:26.976047pt;}
.y28_c00142{bottom:64.620659pt;}
.y27_c00142{bottom:91.287658pt;}
.y26_c00142{bottom:117.954657pt;}
.y25_c00142{bottom:144.621656pt;}
.y24_c00142{bottom:171.288654pt;}
.y23_c00142{bottom:197.955653pt;}
.y22_c00142{bottom:221.955952pt;}
.y21_c00142{bottom:242.400651pt;}
.y20_c00142{bottom:269.067650pt;}
.y1f_c00142{bottom:295.734649pt;}
.y1e_c00142{bottom:322.401648pt;}
.y1d_c00142{bottom:349.068647pt;}
.y1c_c00142{bottom:375.735646pt;}
.y1b_c00142{bottom:402.402645pt;}
.y1a_c00142{bottom:429.069644pt;}
.y19_c00142{bottom:455.736643pt;}
.y18_c00142{bottom:482.403641pt;}
.y17_c00142{bottom:509.070640pt;}
.y16_c00142{bottom:535.737639pt;}
.y15_c00142{bottom:562.404638pt;}
.y14_c00142{bottom:589.071637pt;}
.y13_c00142{bottom:615.738636pt;}
.y12_c00142{bottom:642.405635pt;}
.y11_c00142{bottom:669.072634pt;}
.y10_c00142{bottom:695.739633pt;}
.yf_c00142{bottom:722.406631pt;}
.ye_c00142{bottom:749.073630pt;}
.yd_c00142{bottom:775.740629pt;}
.yc_c00142{bottom:802.407628pt;}
.yb_c00142{bottom:829.074627pt;}
.y8_c00142{bottom:869.736213pt;}
.y7_c00142{bottom:896.736212pt;}
.y6_c00142{bottom:923.736211pt;}
.y5_c00142{bottom:950.736210pt;}
.y4_c00142{bottom:977.736209pt;}
.y3_c00142{bottom:1004.736208pt;}
.y2_c00142{bottom:1031.736207pt;}
.h6_c00142{height:39.729662pt;}
.h4_c00142{height:44.871454pt;}
.h5_c00142{height:59.561384pt;}
.h3_c00142{height:59.593748pt;}
.h2_c00142{height:1159.999952pt;}
.h0_c00142{height:1159.999959pt;}
.h1_c00142{height:1160.000000pt;}
.w2_c00142{width:830.999965pt;}
.w0_c00142{width:831.000000pt;}
.w1_c00142{width:831.333333pt;}
.x0_c00142{left:0.000000pt;}
.x1_c00142{left:78.135686pt;}
.x3_c00142{left:79.544400pt;}
.x2_c00142{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:0.734863;font-style:normal;font-weight:normal;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_2f134d625b4986050791376f.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.171387;font-style:normal;font-weight:normal;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_4b5b6e7fbb20164bd9119f98.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.000000;font-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_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);}
.v0_c00143{vertical-align:0.000000px;}
.ls0_c00143{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00143{word-spacing:-18.702052px;}
.ws1_c00143{word-spacing:0.000000px;}
._d_c00143{margin-left:-1.008924px;}
._9_c00143{width:1.985105px;}
._8_c00143{width:3.712819px;}
._5_c00143{width:4.984768px;}
._13_c00143{width:6.113408px;}
._10_c00143{width:7.141851px;}
._3_c00143{width:8.146435px;}
._e_c00143{width:9.222850px;}
._12_c00143{width:10.239500px;}
._6_c00143{width:11.547755px;}
._7_c00143{width:12.962809px;}
._a_c00143{width:14.191707px;}
._f_c00143{width:16.381439px;}
._0_c00143{width:17.642781px;}
._b_c00143{width:21.404081px;}
._4_c00143{width:22.473349px;}
._2_c00143{width:25.428175px;}
._1_c00143{width:26.598038px;}
._11_c00143{width:27.822363px;}
._c_c00143{width:51.335596px;}
.fc2_c00143{color:transparent;}
.fc1_c00143{color:rgb(0,0,0);}
.fc0_c00143{color:rgb(128,128,128);}
.fs3_c00143{font-size:42.000505px;}
.fs0_c00143{font-size:69.618741px;}
.fs2_c00143{font-size:71.995866px;}
.fs1_c00143{font-size:71.999997px;}
.y0_c00143{bottom:0.000000px;}
.y1_c00143{bottom:0.000008px;}
.y3_c00143{bottom:29.401163px;}
.y2_c00143{bottom:30.348053px;}
.y2a_c00143{bottom:76.692845px;}
.y29_c00143{bottom:106.443203px;}
.y28_c00143{bottom:136.193561px;}
.y27_c00143{bottom:165.943919px;}
.y26_c00143{bottom:195.694277px;}
.y25_c00143{bottom:225.444635px;}
.y24_c00143{bottom:255.194993px;}
.y23_c00143{bottom:281.445309px;}
.y22_c00143{bottom:302.445561px;}
.y21_c00143{bottom:332.195919px;}
.y20_c00143{bottom:361.946277px;}
.y1f_c00143{bottom:391.696635px;}
.y1e_c00143{bottom:421.446993px;}
.y1d_c00143{bottom:451.197351px;}
.y1c_c00143{bottom:480.947709px;}
.y1b_c00143{bottom:510.698067px;}
.y1a_c00143{bottom:540.448425px;}
.y19_c00143{bottom:570.198783px;}
.y18_c00143{bottom:599.949141px;}
.y17_c00143{bottom:629.699499px;}
.y16_c00143{bottom:659.449857px;}
.y15_c00143{bottom:689.200215px;}
.y14_c00143{bottom:718.950572px;}
.y13_c00143{bottom:748.700930px;}
.y12_c00143{bottom:778.451288px;}
.y11_c00143{bottom:808.201646px;}
.y10_c00143{bottom:837.952004px;}
.yf_c00143{bottom:867.702362px;}
.ye_c00143{bottom:897.452720px;}
.yd_c00143{bottom:927.203078px;}
.yc_c00143{bottom:956.953436px;}
.yb_c00143{bottom:986.703794px;}
.ya_c00143{bottom:1016.454152px;}
.y9_c00143{bottom:1046.204510px;}
.y8_c00143{bottom:1075.954868px;}
.y7_c00143{bottom:1105.705226px;}
.y6_c00143{bottom:1135.455584px;}
.y5_c00143{bottom:1165.205942px;}
.y4_c00143{bottom:1194.956299px;}
.h6_c00143{height:39.108869px;}
.h3_c00143{height:50.480386px;}
.h5_c00143{height:67.039120px;}
.h4_c00143{height:67.042966px;}
.h2_c00143{height:1304.999946px;}
.h0_c00143{height:1304.999953px;}
.h1_c00143{height:1305.000000px;}
.w2_c00143{width:934.874961px;}
.w0_c00143{width:934.875000px;}
.w1_c00143{width:935.250000px;}
.x0_c00143{left:0.000000px;}
.x2_c00143{left:87.902647px;}
.x1_c00143{left:452.782029px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws0_c00143{word-spacing:-16.624046pt;}
.ws1_c00143{word-spacing:0.000000pt;}
._d_c00143{margin-left:-0.896821pt;}
._9_c00143{width:1.764538pt;}
._8_c00143{width:3.300284pt;}
._5_c00143{width:4.430905pt;}
._13_c00143{width:5.434140pt;}
._10_c00143{width:6.348312pt;}
._3_c00143{width:7.241276pt;}
._e_c00143{width:8.198089pt;}
._12_c00143{width:9.101778pt;}
._6_c00143{width:10.264671pt;}
._7_c00143{width:11.522497pt;}
._a_c00143{width:12.614850pt;}
._f_c00143{width:14.561279pt;}
._0_c00143{width:15.682472pt;}
._b_c00143{width:19.025849pt;}
._4_c00143{width:19.976310pt;}
._2_c00143{width:22.602822pt;}
._1_c00143{width:23.642700pt;}
._11_c00143{width:24.730989pt;}
._c_c00143{width:45.631641pt;}
.fs3_c00143{font-size:37.333783pt;}
.fs0_c00143{font-size:61.883325pt;}
.fs2_c00143{font-size:63.996326pt;}
.fs1_c00143{font-size:63.999997pt;}
.y0_c00143{bottom:0.000000pt;}
.y1_c00143{bottom:0.000007pt;}
.y3_c00143{bottom:26.134367pt;}
.y2_c00143{bottom:26.976047pt;}
.y2a_c00143{bottom:68.171418pt;}
.y29_c00143{bottom:94.616181pt;}
.y28_c00143{bottom:121.060943pt;}
.y27_c00143{bottom:147.505706pt;}
.y26_c00143{bottom:173.950468pt;}
.y25_c00143{bottom:200.395231pt;}
.y24_c00143{bottom:226.839994pt;}
.y23_c00143{bottom:250.173608pt;}
.y22_c00143{bottom:268.840499pt;}
.y21_c00143{bottom:295.285262pt;}
.y20_c00143{bottom:321.730024pt;}
.y1f_c00143{bottom:348.174787pt;}
.y1e_c00143{bottom:374.619549pt;}
.y1d_c00143{bottom:401.064312pt;}
.y1c_c00143{bottom:427.509075pt;}
.y1b_c00143{bottom:453.953837pt;}
.y1a_c00143{bottom:480.398600pt;}
.y19_c00143{bottom:506.843362pt;}
.y18_c00143{bottom:533.288125pt;}
.y17_c00143{bottom:559.732888pt;}
.y16_c00143{bottom:586.177650pt;}
.y15_c00143{bottom:612.622413pt;}
.y14_c00143{bottom:639.067176pt;}
.y13_c00143{bottom:665.511938pt;}
.y12_c00143{bottom:691.956701pt;}
.y11_c00143{bottom:718.401463pt;}
.y10_c00143{bottom:744.846226pt;}
.yf_c00143{bottom:771.290989pt;}
.ye_c00143{bottom:797.735751pt;}
.yd_c00143{bottom:824.180514pt;}
.yc_c00143{bottom:850.625276pt;}
.yb_c00143{bottom:877.070039pt;}
.ya_c00143{bottom:903.514802pt;}
.y9_c00143{bottom:929.959564pt;}
.y8_c00143{bottom:956.404327pt;}
.y7_c00143{bottom:982.849089pt;}
.y6_c00143{bottom:1009.293852pt;}
.y5_c00143{bottom:1035.738615pt;}
.y4_c00143{bottom:1062.183377pt;}
.h6_c00143{height:34.763439pt;}
.h3_c00143{height:44.871454pt;}
.h5_c00143{height:59.590328pt;}
.h4_c00143{height:59.593748pt;}
.h2_c00143{height:1159.999952pt;}
.h0_c00143{height:1159.999959pt;}
.h1_c00143{height:1160.000000pt;}
.w2_c00143{width:830.999965pt;}
.w0_c00143{width:831.000000pt;}
.w1_c00143{width:831.333333pt;}
.x0_c00143{left:0.000000pt;}
.x2_c00143{left:78.135686pt;}
.x1_c00143{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7cacba8d932b406fcb53fb92.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.171387;font-style:normal;font-weight:normal;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_a5f762f369016fbe5c393139.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.000000;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:0.734863;font-style:normal;font-weight:normal;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_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:1.006348;font-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_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);}
.v0_c00144{vertical-align:0.000000px;}
.ls1_c00144{letter-spacing:0.000000px;}
.ls0_c00144{letter-spacing:3.585959px;}
.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;}
}
.ws0_c00144{word-spacing:-18.703125px;}
.ws1_c00144{word-spacing:0.000000px;}
._0_c00144{width:1.054685px;}
._d_c00144{width:2.903436px;}
._9_c00144{width:4.198126px;}
._5_c00144{width:5.292528px;}
._3_c00144{width:6.775542px;}
._a_c00144{width:8.091774px;}
._1_c00144{width:9.311325px;}
._c_c00144{width:11.898399px;}
._2_c00144{width:14.984320px;}
._8_c00144{width:15.984699px;}
._6_c00144{width:17.130637px;}
._4_c00144{width:20.307471px;}
._7_c00144{width:22.155438px;}
._b_c00144{width:27.662060px;}
._e_c00144{width:30.808546px;}
._f_c00144{width:32.062500px;}
.fc3_c00144{color:transparent;}
.fc2_c00144{color:rgb(67,91,56);}
.fc1_c00144{color:rgb(128,128,128);}
.fc0_c00144{color:rgb(0,0,0);}
.fs1_c00144{font-size:69.618741px;}
.fs0_c00144{font-size:71.999997px;}
.y0_c00144{bottom:0.000000px;}
.y1_c00144{bottom:0.000008px;}
.y12_c00144{bottom:29.401163px;}
.y11_c00144{bottom:30.348053px;}
.y1d_c00144{bottom:341.839678px;}
.y1c_c00144{bottom:372.214676px;}
.y1b_c00144{bottom:402.589675px;}
.y1a_c00144{bottom:432.964674px;}
.y19_c00144{bottom:463.339673px;}
.y18_c00144{bottom:500.287479px;}
.y17_c00144{bottom:573.208212px;}
.y16_c00144{bottom:603.583211px;}
.y15_c00144{bottom:633.958210px;}
.y14_c00144{bottom:664.333208px;}
.y13_c00144{bottom:703.029344px;}
.y10_c00144{bottom:774.972389px;}
.yf_c00144{bottom:805.347388px;}
.ye_c00144{bottom:835.722386px;}
.yd_c00144{bottom:866.097385px;}
.yc_c00144{bottom:896.472384px;}
.yb_c00144{bottom:926.847383px;}
.ya_c00144{bottom:957.222381px;}
.y9_c00144{bottom:987.597380px;}
.y8_c00144{bottom:1017.972379px;}
.y7_c00144{bottom:1048.347378px;}
.y6_c00144{bottom:1078.722376px;}
.y5_c00144{bottom:1109.097375px;}
.y4_c00144{bottom:1139.472374px;}
.y3_c00144{bottom:1169.847372px;}
.y2_c00144{bottom:1200.222371px;}
.h4_c00144{height:50.480386px;}
.h5_c00144{height:55.160154px;}
.h3_c00144{height:67.042966px;}
.h2_c00144{height:1304.999946px;}
.h0_c00144{height:1304.999953px;}
.h1_c00144{height:1305.000000px;}
.w2_c00144{width:934.874961px;}
.w0_c00144{width:934.875000px;}
.w1_c00144{width:935.250000px;}
.x0_c00144{left:0.000000px;}
.x3_c00144{left:87.902647px;}
.x1_c00144{left:89.487450px;}
.x2_c00144{left:452.782029px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls1_c00144{letter-spacing:0.000000pt;}
.ls0_c00144{letter-spacing:3.187520pt;}
.ws0_c00144{word-spacing:-16.625000pt;}
.ws1_c00144{word-spacing:0.000000pt;}
._0_c00144{width:0.937498pt;}
._d_c00144{width:2.580832pt;}
._9_c00144{width:3.731668pt;}
._5_c00144{width:4.704469pt;}
._3_c00144{width:6.022704pt;}
._a_c00144{width:7.192688pt;}
._1_c00144{width:8.276733pt;}
._c_c00144{width:10.576355pt;}
._2_c00144{width:13.319395pt;}
._8_c00144{width:14.208622pt;}
._6_c00144{width:15.227233pt;}
._4_c00144{width:18.051085pt;}
._7_c00144{width:19.693722pt;}
._b_c00144{width:24.588498pt;}
._e_c00144{width:27.385375pt;}
._f_c00144{width:28.500000pt;}
.fs1_c00144{font-size:61.883325pt;}
.fs0_c00144{font-size:63.999997pt;}
.y0_c00144{bottom:0.000000pt;}
.y1_c00144{bottom:0.000007pt;}
.y12_c00144{bottom:26.134367pt;}
.y11_c00144{bottom:26.976047pt;}
.y1d_c00144{bottom:303.857491pt;}
.y1c_c00144{bottom:330.857490pt;}
.y1b_c00144{bottom:357.857489pt;}
.y1a_c00144{bottom:384.857488pt;}
.y19_c00144{bottom:411.857487pt;}
.y18_c00144{bottom:444.699981pt;}
.y17_c00144{bottom:509.518411pt;}
.y16_c00144{bottom:536.518410pt;}
.y15_c00144{bottom:563.518409pt;}
.y14_c00144{bottom:590.518407pt;}
.y13_c00144{bottom:624.914972pt;}
.y10_c00144{bottom:688.864346pt;}
.yf_c00144{bottom:715.864345pt;}
.ye_c00144{bottom:742.864343pt;}
.yd_c00144{bottom:769.864342pt;}
.yc_c00144{bottom:796.864341pt;}
.yb_c00144{bottom:823.864340pt;}
.ya_c00144{bottom:850.864339pt;}
.y9_c00144{bottom:877.864338pt;}
.y8_c00144{bottom:904.864337pt;}
.y7_c00144{bottom:931.864336pt;}
.y6_c00144{bottom:958.864334pt;}
.y5_c00144{bottom:985.864333pt;}
.y4_c00144{bottom:1012.864332pt;}
.y3_c00144{bottom:1039.864331pt;}
.y2_c00144{bottom:1066.864330pt;}
.h4_c00144{height:44.871454pt;}
.h5_c00144{height:49.031248pt;}
.h3_c00144{height:59.593748pt;}
.h2_c00144{height:1159.999952pt;}
.h0_c00144{height:1159.999959pt;}
.h1_c00144{height:1160.000000pt;}
.w2_c00144{width:830.999965pt;}
.w0_c00144{width:831.000000pt;}
.w1_c00144{width:831.333333pt;}
.x0_c00144{left:0.000000pt;}
.x3_c00144{left:78.135686pt;}
.x1_c00144{left:79.544400pt;}
.x2_c00144{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:0.734863;font-style:normal;font-weight:normal;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_5612dbb822440ac645bb8283.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.171387;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:0.734863;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:0.769531;font-style:normal;font-weight: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_c00145;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff5_c00145{font-family:ff5_c00145;line-height:0.743000;font-style:normal;font-weight: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_c00145;src:url('chunks/assets/font_de5a206f4bf58469fc60fe99.woff2')format("woff");}.ff6_c00145{font-family:ff6_c00145;line-height:1.000000;font-style:normal;font-weight: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_c00145;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff7_c00145{font-family:ff7_c00145;line-height:1.006348;font-style:normal;font-weight: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_c00145;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff8_c00145{font-family:ff8_c00145;line-height:1.000000;font-style:normal;font-weight: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_c00145;src:url('chunks/assets/font_c2d664c5c20e0e57ac6c0875.woff2')format("woff");}.ff9_c00145{font-family:ff9_c00145;line-height:1.171387;font-style:normal;font-weight: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_c00145;src:url('chunks/assets/font_cf543a747965855178811c3c.woff2')format("woff");}.ffa_c00145{font-family:ffa_c00145;line-height:1.005371;font-style:normal;font-weight: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_c00145;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffb_c00145{font-family:ffb_c00145;line-height:0.940000;font-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_c00145{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00145{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00145{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00145{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00145{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00145{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00145{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00145{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00145{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00145{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00145{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00145{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00145{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00145{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00145{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00145{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00145{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00145{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00145{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00145{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00145{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00145{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00145{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00145{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00145{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00145{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00145{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00145{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00145{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00145{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00145{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00145{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00145{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00145{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00145{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00145{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00145{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00145{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00145{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00145{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00145{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00145{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00145{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00145{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00145{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00145{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00145{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00145{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00145{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00145{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00145{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00145{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00145{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00145{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00145{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00145{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00145{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00145{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00145{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00145{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00145{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00145{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.v1_c00145{vertical-align:1.280304px;}
.ls0_c00145{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00145{word-spacing:-41.689573px;}
.ws0_c00145{word-spacing:-15.171263px;}
.ws1_c00145{word-spacing:-0.089985px;}
.ws3_c00145{word-spacing:-0.055755px;}
.ws5_c00145{word-spacing:0.000000px;}
.ws2_c00145{word-spacing:288.058683px;}
._0_c00145{width:1.074738px;}
._2_c00145{width:3.158159px;}
._1_c00145{width:14.369292px;}
._3_c00145{width:15.521759px;}
.fc5_c00145{color:transparent;}
.fc4_c00145{color:rgb(67,91,56);}
.fc2_c00145{color:rgb(9,71,81);}
.fc3_c00145{color:rgb(255,255,255);}
.fc1_c00145{color:rgb(0,0,0);}
.fc0_c00145{color:rgb(128,128,128);}
.fsd_c00145{font-size:39.757786px;}
.fs9_c00145{font-size:41.999830px;}
.fsc_c00145{font-size:42.000118px;}
.fs6_c00145{font-size:47.368230px;}
.fs3_c00145{font-size:47.368231px;}
.fs7_c00145{font-size:47.368232px;}
.fs4_c00145{font-size:47.368233px;}
.fs5_c00145{font-size:47.368235px;}
.fs2_c00145{font-size:51.661596px;}
.fsf_c00145{font-size:55.754999px;}
.fs10_c00145{font-size:59.984997px;}
.fs0_c00145{font-size:69.618741px;}
.fs1_c00145{font-size:71.999997px;}
.fsa_c00145{font-size:74.424240px;}
.fs8_c00145{font-size:77.011488px;}
.fsb_c00145{font-size:89.985250px;}
.fse_c00145{font-size:95.984996px;}
.y0_c00145{bottom:0.000000px;}
.y1_c00145{bottom:0.000008px;}
.y3_c00145{bottom:29.401163px;}
.y2_c00145{bottom:30.348053px;}
.y4d_c00145{bottom:147.399618px;}
.y4c_c00145{bottom:177.774617px;}
.y4b_c00145{bottom:208.149615px;}
.y4a_c00145{bottom:238.524614px;}
.y49_c00145{bottom:268.899613px;}
.y48_c00145{bottom:299.274612px;}
.y4e_c00145{bottom:340.353302px;}
.y4_c00145{bottom:401.525233px;}
.y30_c00145{bottom:486.888370px;}
.y12_c00145{bottom:493.328373px;}
.y26_c00145{bottom:493.343471px;}
.y11_c00145{bottom:493.853637px;}
.y27_c00145{bottom:493.873313px;}
.y3e_c00145{bottom:493.959419px;}
.y25_c00145{bottom:494.588120px;}
.y3f_c00145{bottom:494.792744px;}
.y3d_c00145{bottom:494.812830px;}
.y10_c00145{bottom:494.919783px;}
.y24_c00145{bottom:495.839401px;}
.y3c_c00145{bottom:495.847621px;}
.yf_c00145{bottom:495.993006px;}
.y28_c00145{bottom:496.289812px;}
.y13_c00145{bottom:496.353473px;}
.y40_c00145{bottom:496.973987px;}
.y23_c00145{bottom:497.484272px;}
.ye_c00145{bottom:497.644566px;}
.y3b_c00145{bottom:498.050345px;}
.y41_c00145{bottom:498.364888px;}
.y22_c00145{bottom:499.172531px;}
.yd_c00145{bottom:499.338107px;}
.y42_c00145{bottom:500.063187px;}
.y14_c00145{bottom:500.630691px;}
.y21_c00145{bottom:501.037769px;}
.yc_c00145{bottom:501.208172px;}
.y29_c00145{bottom:501.390631px;}
.y3a_c00145{bottom:501.842067px;}
.y43_c00145{bottom:502.505484px;}
.y15_c00145{bottom:503.149449px;}
.y44_c00145{bottom:504.764445px;}
.y2a_c00145{bottom:505.018795px;}
.y20_c00145{bottom:505.692124px;}
.yb_c00145{bottom:505.871886px;}
.y39_c00145{bottom:507.310818px;}
.y45_c00145{bottom:508.033427px;}
.y16_c00145{bottom:509.101992px;}
.y2b_c00145{bottom:510.652700px;}
.y38_c00145{bottom:511.777409px;}
.y1f_c00145{bottom:512.093493px;}
.ya_c00145{bottom:512.281758px;}
.y17_c00145{bottom:513.850725px;}
.y46_c00145{bottom:516.430683px;}
.y2c_c00145{bottom:517.310350px;}
.y37_c00145{bottom:518.202172px;}
.y1e_c00145{bottom:519.400636px;}
.y9_c00145{bottom:519.490837px;}
.y36_c00145{bottom:522.772046px;}
.y8_c00145{bottom:522.949612px;}
.y47_c00145{bottom:524.479585px;}
.y18_c00145{bottom:525.634639px;}
.y1d_c00145{bottom:526.562252px;}
.y7_c00145{bottom:528.959931px;}
.y2d_c00145{bottom:529.273374px;}
.y35_c00145{bottom:530.544173px;}
.y1c_c00145{bottom:531.331479px;}
.y2f_c00145{bottom:533.268115px;}
.y33_c00145{bottom:533.961835px;}
.y34_c00145{bottom:534.437983px;}
.y6_c00145{bottom:536.219342px;}
.y1b_c00145{bottom:537.503802px;}
.y19_c00145{bottom:537.875201px;}
.y2e_c00145{bottom:538.238934px;}
.y31_c00145{bottom:539.974724px;}
.y1a_c00145{bottom:544.567278px;}
.y5_c00145{bottom:545.754118px;}
.y32_c00145{bottom:577.437042px;}
.y54_c00145{bottom:639.092601px;}
.y55_c00145{bottom:1021.439863px;}
.y52_c00145{bottom:1128.788247px;}
.y50_c00145{bottom:1133.738464px;}
.y4f_c00145{bottom:1147.738503px;}
.y53_c00145{bottom:1153.262281px;}
.y51_c00145{bottom:1171.082779px;}
.hb_c00145{height:35.988753px;}
.hc_c00145{height:35.988755px;}
.hd_c00145{height:35.988756px;}
.h13_c00145{height:37.020556px;}
.h5_c00145{height:37.459702px;}
.hf_c00145{height:39.108240px;}
.h12_c00145{height:39.108509px;}
.h9_c00145{height:44.107038px;}
.h6_c00145{height:44.107039px;}
.ha_c00145{height:44.107040px;}
.h7_c00145{height:44.107042px;}
.h8_c00145{height:44.107043px;}
.h17_c00145{height:45.588598px;}
.h3_c00145{height:50.480386px;}
.h16_c00145{height:51.916398px;}
.he_c00145{height:56.295398px;}
.h10_c00145{height:57.017399px;}
.h15_c00145{height:57.575702px;}
.h4_c00145{height:67.042966px;}
.h11_c00145{height:68.367700px;}
.h14_c00145{height:89.376654px;}
.h2_c00145{height:1304.999946px;}
.h0_c00145{height:1304.999953px;}
.h1_c00145{height:1305.000000px;}
.w2_c00145{width:934.874961px;}
.w0_c00145{width:934.875000px;}
.w1_c00145{width:935.250000px;}
.x0_c00145{left:0.000000px;}
.x3d_c00145{left:89.487450px;}
.x3e_c00145{left:90.844844px;}
.x3f_c00145{left:107.230262px;}
.x40_c00145{left:108.827167px;}
.x44_c00145{left:130.690629px;}
.x15_c00145{left:134.974838px;}
.x14_c00145{left:136.648279px;}
.x16_c00145{left:140.021272px;}
.x17_c00145{left:144.871714px;}
.x18_c00145{left:150.237526px;}
.x19_c00145{left:152.990336px;}
.x1a_c00145{left:156.000220px;}
.x1b_c00145{left:159.847713px;}
.x25_c00145{left:161.443962px;}
.x1c_c00145{left:163.301377px;}
.x1d_c00145{left:171.586339px;}
.x1e_c00145{left:179.855997px;}
.x1f_c00145{left:188.287487px;}
.x20_c00145{left:196.673970px;}
.x21_c00145{left:200.841336px;}
.x22_c00145{left:205.399483px;}
.x23_c00145{left:209.208896px;}
.x24_c00145{left:211.795693px;}
.x4_c00145{left:230.398389px;}
.x3_c00145{left:232.534609px;}
.x5_c00145{left:235.623324px;}
.x6_c00145{left:240.462566px;}
.x7_c00145{left:245.820252px;}
.x8_c00145{left:248.569815px;}
.x9_c00145{left:251.576732px;}
.xa_c00145{left:255.421336px;}
.x42_c00145{left:256.622047px;}
.xb_c00145{left:258.708042px;}
.xc_c00145{left:263.145298px;}
.xd_c00145{left:271.763354px;}
.xe_c00145{left:283.603990px;}
.xf_c00145{left:291.041304px;}
.x10_c00145{left:294.435991px;}
.x41_c00145{left:295.615161px;}
.x11_c00145{left:299.775542px;}
.x12_c00145{left:303.165014px;}
.x13_c00145{left:307.176807px;}
.x2a_c00145{left:327.047435px;}
.x2b_c00145{left:328.264734px;}
.x2c_c00145{left:329.685747px;}
.x2d_c00145{left:333.082971px;}
.x2e_c00145{left:336.307511px;}
.x2f_c00145{left:342.189757px;}
.x30_c00145{left:348.376740px;}
.x29_c00145{left:351.731739px;}
.x31_c00145{left:354.069743px;}
.x32_c00145{left:357.479743px;}
.x33_c00145{left:365.386869px;}
.x34_c00145{left:373.375785px;}
.x35_c00145{left:380.135498px;}
.x36_c00145{left:383.155707px;}
.x37_c00145{left:386.159935px;}
.x38_c00145{left:389.557910px;}
.x39_c00145{left:392.174988px;}
.x3a_c00145{left:395.489533px;}
.x3b_c00145{left:400.664851px;}
.x3c_c00145{left:403.469600px;}
.x1_c00145{left:452.786554px;}
.x27_c00145{left:464.896169px;}
.x43_c00145{left:676.878164px;}
.x2_c00145{left:697.320842px;}
.x28_c00145{left:733.540639px;}
.x26_c00145{left:757.088990px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.v1_c00145{vertical-align:1.138048pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ws4_c00145{word-spacing:-37.057398pt;}
.ws0_c00145{word-spacing:-13.485567pt;}
.ws1_c00145{word-spacing:-0.079987pt;}
.ws3_c00145{word-spacing:-0.049560pt;}
.ws5_c00145{word-spacing:0.000000pt;}
.ws2_c00145{word-spacing:256.052163pt;}
._0_c00145{width:0.955322pt;}
._2_c00145{width:2.807252pt;}
._1_c00145{width:12.772704pt;}
._3_c00145{width:13.797119pt;}
.fsd_c00145{font-size:35.340254pt;}
.fs9_c00145{font-size:37.333182pt;}
.fsc_c00145{font-size:37.333438pt;}
.fs6_c00145{font-size:42.105093pt;}
.fs3_c00145{font-size:42.105094pt;}
.fs7_c00145{font-size:42.105095pt;}
.fs4_c00145{font-size:42.105096pt;}
.fs5_c00145{font-size:42.105098pt;}
.fs2_c00145{font-size:45.921418pt;}
.fsf_c00145{font-size:49.559999pt;}
.fs10_c00145{font-size:53.319997pt;}
.fs0_c00145{font-size:61.883325pt;}
.fs1_c00145{font-size:63.999997pt;}
.fsa_c00145{font-size:66.154880pt;}
.fs8_c00145{font-size:68.454656pt;}
.fsb_c00145{font-size:79.986889pt;}
.fse_c00145{font-size:85.319996pt;}
.y0_c00145{bottom:0.000000pt;}
.y1_c00145{bottom:0.000007pt;}
.y3_c00145{bottom:26.134367pt;}
.y2_c00145{bottom:26.976047pt;}
.y4d_c00145{bottom:131.021883pt;}
.y4c_c00145{bottom:158.021881pt;}
.y4b_c00145{bottom:185.021880pt;}
.y4a_c00145{bottom:212.021879pt;}
.y49_c00145{bottom:239.021878pt;}
.y48_c00145{bottom:266.021877pt;}
.y4e_c00145{bottom:302.536269pt;}
.y4_c00145{bottom:356.911319pt;}
.y30_c00145{bottom:432.789662pt;}
.y12_c00145{bottom:438.514110pt;}
.y26_c00145{bottom:438.527530pt;}
.y11_c00145{bottom:438.981010pt;}
.y27_c00145{bottom:438.998500pt;}
.y3e_c00145{bottom:439.075039pt;}
.y25_c00145{bottom:439.633885pt;}
.y3f_c00145{bottom:439.815773pt;}
.y3d_c00145{bottom:439.833627pt;}
.y10_c00145{bottom:439.928696pt;}
.y24_c00145{bottom:440.746134pt;}
.y3c_c00145{bottom:440.753441pt;}
.yf_c00145{bottom:440.882672pt;}
.y28_c00145{bottom:441.146500pt;}
.y13_c00145{bottom:441.203087pt;}
.y40_c00145{bottom:441.754655pt;}
.y23_c00145{bottom:442.208242pt;}
.ye_c00145{bottom:442.350726pt;}
.y3b_c00145{bottom:442.711417pt;}
.y41_c00145{bottom:442.991012pt;}
.y22_c00145{bottom:443.708917pt;}
.yd_c00145{bottom:443.856095pt;}
.y42_c00145{bottom:444.500610pt;}
.y14_c00145{bottom:445.005059pt;}
.y21_c00145{bottom:445.366906pt;}
.yc_c00145{bottom:445.518375pt;}
.y29_c00145{bottom:445.680561pt;}
.y3a_c00145{bottom:446.081837pt;}
.y43_c00145{bottom:446.671541pt;}
.y15_c00145{bottom:447.243955pt;}
.y44_c00145{bottom:448.679507pt;}
.y2a_c00145{bottom:448.905595pt;}
.y20_c00145{bottom:449.504110pt;}
.yb_c00145{bottom:449.663899pt;}
.y39_c00145{bottom:450.942950pt;}
.y45_c00145{bottom:451.585269pt;}
.y16_c00145{bottom:452.535104pt;}
.y2b_c00145{bottom:453.913511pt;}
.y38_c00145{bottom:454.913253pt;}
.y1f_c00145{bottom:455.194216pt;}
.ya_c00145{bottom:455.361563pt;}
.y17_c00145{bottom:456.756200pt;}
.y46_c00145{bottom:459.049496pt;}
.y2c_c00145{bottom:459.831423pt;}
.y37_c00145{bottom:460.624152pt;}
.y1e_c00145{bottom:461.689454pt;}
.y9_c00145{bottom:461.769633pt;}
.y36_c00145{bottom:464.686263pt;}
.y8_c00145{bottom:464.844100pt;}
.y47_c00145{bottom:466.204075pt;}
.y18_c00145{bottom:467.230790pt;}
.y1d_c00145{bottom:468.055335pt;}
.y7_c00145{bottom:470.186605pt;}
.y2d_c00145{bottom:470.465221pt;}
.y35_c00145{bottom:471.594820pt;}
.y1c_c00145{bottom:472.294648pt;}
.y2f_c00145{bottom:474.016102pt;}
.y33_c00145{bottom:474.632742pt;}
.y34_c00145{bottom:475.055985pt;}
.y6_c00145{bottom:476.639415pt;}
.y1b_c00145{bottom:477.781157pt;}
.y19_c00145{bottom:478.111290pt;}
.y2e_c00145{bottom:478.434608pt;}
.y31_c00145{bottom:479.977532pt;}
.y1a_c00145{bottom:484.059803pt;}
.y5_c00145{bottom:485.114772pt;}
.y32_c00145{bottom:513.277371pt;}
.y54_c00145{bottom:568.082312pt;}
.y55_c00145{bottom:907.946545pt;}
.y52_c00145{bottom:1003.367331pt;}
.y50_c00145{bottom:1007.767524pt;}
.y4f_c00145{bottom:1020.212003pt;}
.y53_c00145{bottom:1025.122028pt;}
.y51_c00145{bottom:1040.962470pt;}
.hb_c00145{height:31.990003pt;}
.hc_c00145{height:31.990004pt;}
.hd_c00145{height:31.990006pt;}
.h13_c00145{height:32.907161pt;}
.h5_c00145{height:33.297513pt;}
.hf_c00145{height:34.762880pt;}
.h12_c00145{height:34.763119pt;}
.h9_c00145{height:39.206256pt;}
.h6_c00145{height:39.206257pt;}
.ha_c00145{height:39.206258pt;}
.h7_c00145{height:39.206259pt;}
.h8_c00145{height:39.206261pt;}
.h17_c00145{height:40.523198pt;}
.h3_c00145{height:44.871454pt;}
.h16_c00145{height:46.147909pt;}
.he_c00145{height:50.040354pt;}
.h10_c00145{height:50.682132pt;}
.h15_c00145{height:51.178401pt;}
.h4_c00145{height:59.593748pt;}
.h11_c00145{height:60.771289pt;}
.h14_c00145{height:79.445915pt;}
.h2_c00145{height:1159.999952pt;}
.h0_c00145{height:1159.999959pt;}
.h1_c00145{height:1160.000000pt;}
.w2_c00145{width:830.999965pt;}
.w0_c00145{width:831.000000pt;}
.w1_c00145{width:831.333333pt;}
.x0_c00145{left:0.000000pt;}
.x3d_c00145{left:79.544400pt;}
.x3e_c00145{left:80.750973pt;}
.x3f_c00145{left:95.315788pt;}
.x40_c00145{left:96.735260pt;}
.x44_c00145{left:116.169448pt;}
.x15_c00145{left:119.977634pt;}
.x14_c00145{left:121.465137pt;}
.x16_c00145{left:124.463353pt;}
.x17_c00145{left:128.774857pt;}
.x18_c00145{left:133.544468pt;}
.x19_c00145{left:135.991410pt;}
.x1a_c00145{left:138.666862pt;}
.x1b_c00145{left:142.086856pt;}
.x25_c00145{left:143.505744pt;}
.x1c_c00145{left:145.156780pt;}
.x1d_c00145{left:152.521190pt;}
.x1e_c00145{left:159.871997pt;}
.x1f_c00145{left:167.366655pt;}
.x20_c00145{left:174.821307pt;}
.x21_c00145{left:178.525632pt;}
.x22_c00145{left:182.577318pt;}
.x23_c00145{left:185.963463pt;}
.x24_c00145{left:188.262839pt;}
.x4_c00145{left:204.798568pt;}
.x3_c00145{left:206.697430pt;}
.x5_c00145{left:209.442955pt;}
.x6_c00145{left:213.744503pt;}
.x7_c00145{left:218.506891pt;}
.x8_c00145{left:220.950947pt;}
.x9_c00145{left:223.623762pt;}
.xa_c00145{left:227.041187pt;}
.x42_c00145{left:228.108486pt;}
.xb_c00145{left:229.962704pt;}
.xc_c00145{left:233.906932pt;}
.xd_c00145{left:241.567426pt;}
.xe_c00145{left:252.092435pt;}
.xf_c00145{left:258.703382pt;}
.x10_c00145{left:261.720880pt;}
.x41_c00145{left:262.769032pt;}
.x11_c00145{left:266.467148pt;}
.x12_c00145{left:269.480012pt;}
.x13_c00145{left:273.046051pt;}
.x2a_c00145{left:290.708831pt;}
.x2b_c00145{left:291.790874pt;}
.x2c_c00145{left:293.053997pt;}
.x2d_c00145{left:296.073752pt;}
.x2e_c00145{left:298.940009pt;}
.x2f_c00145{left:304.168673pt;}
.x30_c00145{left:309.668213pt;}
.x29_c00145{left:312.650435pt;}
.x31_c00145{left:314.728661pt;}
.x32_c00145{left:317.759772pt;}
.x33_c00145{left:324.788328pt;}
.x34_c00145{left:331.889587pt;}
.x35_c00145{left:337.898220pt;}
.x36_c00145{left:340.582851pt;}
.x37_c00145{left:343.253275pt;}
.x38_c00145{left:346.273697pt;}
.x39_c00145{left:348.599989pt;}
.x3a_c00145{left:351.546252pt;}
.x3b_c00145{left:356.146534pt;}
.x3c_c00145{left:358.639645pt;}
.x1_c00145{left:402.476937pt;}
.x27_c00145{left:413.241039pt;}
.x43_c00145{left:601.669479pt;}
.x2_c00145{left:619.840748pt;}
.x28_c00145{left:652.036124pt;}
.x26_c00145{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53626aaac29e343b3fd5765a.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.171387;font-style:normal;font-weight:normal;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_1d5503af2d99513a82386e2e.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.000000;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00146;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:0.734863;font-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_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;}
.ls0_c00146{letter-spacing:0.000000px;}
.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:-19.320776px;}
.ws1_c00146{word-spacing:0.000000px;}
._7_c00146{width:1.341294px;}
._b_c00146{width:2.563104px;}
._0_c00146{width:3.650345px;}
._4_c00146{width:4.906903px;}
._3_c00146{width:6.685044px;}
._8_c00146{width:8.000520px;}
._a_c00146{width:9.888929px;}
._6_c00146{width:11.790800px;}
._e_c00146{width:13.331221px;}
._9_c00146{width:15.090132px;}
._5_c00146{width:16.620392px;}
._1_c00146{width:17.680298px;}
._d_c00146{width:20.601568px;}
._2_c00146{width:21.726561px;}
._f_c00146{width:24.360053px;}
._10_c00146{width:34.178875px;}
._c_c00146{width:36.754209px;}
.fc3_c00146{color:transparent;}
.fc1_c00146{color:rgb(67,91,56);}
.fc2_c00146{color:rgb(128,128,128);}
.fc0_c00146{color:rgb(0,0,0);}
.fs1_c00146{font-size:69.618741px;}
.fs0_c00146{font-size:71.999997px;}
.fs2_c00146{font-size:74.377724px;}
.y0_c00146{bottom:0.000000px;}
.y1_c00146{bottom:0.000008px;}
.y1c_c00146{bottom:29.400983px;}
.y16_c00146{bottom:30.347873px;}
.y26_c00146{bottom:92.048360px;}
.y25_c00146{bottom:122.423359px;}
.y24_c00146{bottom:152.798358px;}
.y23_c00146{bottom:183.173356px;}
.y22_c00146{bottom:213.548355px;}
.y21_c00146{bottom:252.248209px;}
.y20_c00146{bottom:299.948352px;}
.y1f_c00146{bottom:330.323350px;}
.y1e_c00146{bottom:360.698349px;}
.y1d_c00146{bottom:399.394315px;}
.y14_c00146{bottom:451.594317px;}
.y13_c00146{bottom:481.969316px;}
.y12_c00146{bottom:512.344314px;}
.y11_c00146{bottom:542.719313px;}
.y10_c00146{bottom:573.094312px;}
.yf_c00146{bottom:603.469310px;}
.ye_c00146{bottom:633.844309px;}
.yd_c00146{bottom:664.219308px;}
.yc_c00146{bottom:694.594307px;}
.yb_c00146{bottom:724.969305px;}
.ya_c00146{bottom:755.344304px;}
.y9_c00146{bottom:785.719303px;}
.y8_c00146{bottom:816.094302px;}
.y7_c00146{bottom:846.469300px;}
.y6_c00146{bottom:876.844299px;}
.y5_c00146{bottom:907.219298px;}
.y4_c00146{bottom:937.594297px;}
.y3_c00146{bottom:967.969295px;}
.y2_c00146{bottom:998.344294px;}
.y15_c00146{bottom:1032.070561px;}
.y1b_c00146{bottom:1078.439895px;}
.y1a_c00146{bottom:1108.814894px;}
.y19_c00146{bottom:1139.189893px;}
.y18_c00146{bottom:1169.564891px;}
.y17_c00146{bottom:1199.188987px;}
.h5_c00146{height:50.480386px;}
.h4_c00146{height:55.160154px;}
.h6_c00146{height:56.981762px;}
.h3_c00146{height:67.042966px;}
.h2_c00146{height:1304.999946px;}
.h0_c00146{height:1304.999953px;}
.h1_c00146{height:1305.000000px;}
.w2_c00146{width:934.874961px;}
.w0_c00146{width:934.875000px;}
.w1_c00146{width:935.250000px;}
.x0_c00146{left:0.000000px;}
.x1_c00146{left:88.368242px;}
.x2_c00146{left:452.782029px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws0_c00146{word-spacing:-17.174023pt;}
.ws1_c00146{word-spacing:0.000000pt;}
._7_c00146{width:1.192261pt;}
._b_c00146{width:2.278315pt;}
._0_c00146{width:3.244751pt;}
._4_c00146{width:4.361692pt;}
._3_c00146{width:5.942261pt;}
._8_c00146{width:7.111573pt;}
._a_c00146{width:8.790159pt;}
._6_c00146{width:10.480711pt;}
._e_c00146{width:11.849974pt;}
._9_c00146{width:13.413450pt;}
._5_c00146{width:14.773682pt;}
._1_c00146{width:15.715820pt;}
._d_c00146{width:18.312505pt;}
._2_c00146{width:19.312499pt;}
._f_c00146{width:21.653380pt;}
._10_c00146{width:30.381222pt;}
._c_c00146{width:32.670408pt;}
.fs1_c00146{font-size:61.883325pt;}
.fs0_c00146{font-size:63.999997pt;}
.fs2_c00146{font-size:66.113533pt;}
.y0_c00146{bottom:0.000000pt;}
.y1_c00146{bottom:0.000007pt;}
.y1c_c00146{bottom:26.134207pt;}
.y16_c00146{bottom:26.975887pt;}
.y26_c00146{bottom:81.820765pt;}
.y25_c00146{bottom:108.820763pt;}
.y24_c00146{bottom:135.820762pt;}
.y23_c00146{bottom:162.820761pt;}
.y22_c00146{bottom:189.820760pt;}
.y21_c00146{bottom:224.220631pt;}
.y20_c00146{bottom:266.620757pt;}
.y1f_c00146{bottom:293.620756pt;}
.y1e_c00146{bottom:320.620755pt;}
.y1d_c00146{bottom:355.017169pt;}
.y14_c00146{bottom:401.417170pt;}
.y13_c00146{bottom:428.417169pt;}
.y12_c00146{bottom:455.417168pt;}
.y11_c00146{bottom:482.417167pt;}
.y10_c00146{bottom:509.417166pt;}
.yf_c00146{bottom:536.417165pt;}
.ye_c00146{bottom:563.417164pt;}
.yd_c00146{bottom:590.417163pt;}
.yc_c00146{bottom:617.417161pt;}
.yb_c00146{bottom:644.417160pt;}
.ya_c00146{bottom:671.417159pt;}
.y9_c00146{bottom:698.417158pt;}
.y8_c00146{bottom:725.417157pt;}
.y7_c00146{bottom:752.417156pt;}
.y6_c00146{bottom:779.417155pt;}
.y5_c00146{bottom:806.417154pt;}
.y4_c00146{bottom:833.417152pt;}
.y3_c00146{bottom:860.417151pt;}
.y2_c00146{bottom:887.417150pt;}
.y15_c00146{bottom:917.396055pt;}
.y1b_c00146{bottom:958.613240pt;}
.y1a_c00146{bottom:985.613239pt;}
.y19_c00146{bottom:1012.613238pt;}
.y18_c00146{bottom:1039.613237pt;}
.y17_c00146{bottom:1065.945766pt;}
.h5_c00146{height:44.871454pt;}
.h4_c00146{height:49.031248pt;}
.h6_c00146{height:50.650455pt;}
.h3_c00146{height:59.593748pt;}
.h2_c00146{height:1159.999952pt;}
.h0_c00146{height:1159.999959pt;}
.h1_c00146{height:1160.000000pt;}
.w2_c00146{width:830.999965pt;}
.w0_c00146{width:831.000000pt;}
.w1_c00146{width:831.333333pt;}
.x0_c00146{left:0.000000pt;}
.x1_c00146{left:78.549549pt;}
.x2_c00146{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:0.734863;font-style:normal;font-weight:normal;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_0df27a8861ab431bc2a92cf3.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.171387;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:0.734863;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff4_c00147{font-family:ff4_c00147;line-height:0.769531;font-style:normal;font-weight: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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff5_c00147{font-family:ff5_c00147;line-height:0.743000;font-style:normal;font-weight: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_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff6_c00147{font-family:ff6_c00147;line-height:1.000000;font-style:normal;font-weight: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_c00147;src:url('chunks/assets/font_30163b8d9554314790d0f811.woff2')format("woff");}.ff7_c00147{font-family:ff7_c00147;line-height:1.171387;font-style:normal;font-weight: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_c00147;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff8_c00147{font-family:ff8_c00147;line-height:1.006348;font-style:normal;font-weight: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_c00147;src:url('chunks/assets/font_7815fa2e04ac082690411ba1.woff2')format("woff");}.ff9_c00147{font-family:ff9_c00147;line-height:1.005371;font-style:normal;font-weight: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_c00147;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00147{font-family:ffa_c00147;line-height:0.940000;font-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_c00147{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00147{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00147{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00147{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00147{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00147{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00147{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00147{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00147{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00147{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00147{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00147{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00147{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00147{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00147{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00147{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00147{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00147{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00147{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00147{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00147{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00147{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00147{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00147{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00147{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00147{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00147{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00147{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00147{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00147{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00147{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00147{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00147{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00147{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00147{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00147{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00147{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00147{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00147{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00147{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00147{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00147{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00147{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00147{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00147{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00147{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00147{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00147{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00147{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00147{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00147{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00147{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00147{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00147{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00147{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00147{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00147{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00147{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00147{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00147{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00147{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00147{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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:1.279584px;}
.ls0_c00147{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00147{word-spacing:-41.689573px;}
.ws0_c00147{word-spacing:-15.171263px;}
.ws2_c00147{word-spacing:-0.089985px;}
.ws1_c00147{word-spacing:-0.055755px;}
.ws5_c00147{word-spacing:0.000000px;}
.ws3_c00147{word-spacing:288.058683px;}
._2_c00147{width:1.785827px;}
._1_c00147{width:2.820257px;}
._6_c00147{width:5.298499px;}
._0_c00147{width:6.726515px;}
._5_c00147{width:17.283965px;}
._4_c00147{width:22.283155px;}
._3_c00147{width:24.155501px;}
.fc5_c00147{color:transparent;}
.fc4_c00147{color:rgb(67,91,56);}
.fc2_c00147{color:rgb(9,71,81);}
.fc3_c00147{color:rgb(255,255,255);}
.fc1_c00147{color:rgb(0,0,0);}
.fc0_c00147{color:rgb(128,128,128);}
.fse_c00147{font-size:39.757786px;}
.fs9_c00147{font-size:41.999830px;}
.fsd_c00147{font-size:42.000118px;}
.fs6_c00147{font-size:47.368230px;}
.fs3_c00147{font-size:47.368231px;}
.fs7_c00147{font-size:47.368232px;}
.fs4_c00147{font-size:47.368233px;}
.fs5_c00147{font-size:47.368235px;}
.fs2_c00147{font-size:51.661596px;}
.fsa_c00147{font-size:55.754999px;}
.fs10_c00147{font-size:59.984997px;}
.fs0_c00147{font-size:69.618741px;}
.fs1_c00147{font-size:71.999997px;}
.fsb_c00147{font-size:74.424240px;}
.fs8_c00147{font-size:77.011488px;}
.fsc_c00147{font-size:89.985250px;}
.fsf_c00147{font-size:95.984996px;}
.y0_c00147{bottom:0.000000px;}
.y1_c00147{bottom:0.000008px;}
.y3_c00147{bottom:29.401163px;}
.y2_c00147{bottom:30.348053px;}
.y51_c00147{bottom:56.274622px;}
.y50_c00147{bottom:86.649620px;}
.y4f_c00147{bottom:117.024619px;}
.y4e_c00147{bottom:147.399618px;}
.y4d_c00147{bottom:177.774617px;}
.y4c_c00147{bottom:208.149615px;}
.y4b_c00147{bottom:238.524614px;}
.y4a_c00147{bottom:268.899613px;}
.y49_c00147{bottom:299.274612px;}
.y52_c00147{bottom:340.353374px;}
.y4_c00147{bottom:401.525233px;}
.y30_c00147{bottom:486.888550px;}
.y12_c00147{bottom:493.328193px;}
.y26_c00147{bottom:493.343399px;}
.y11_c00147{bottom:493.853709px;}
.y27_c00147{bottom:493.873421px;}
.y3e_c00147{bottom:493.959311px;}
.y25_c00147{bottom:494.588120px;}
.y3f_c00147{bottom:494.792564px;}
.y3d_c00147{bottom:494.812830px;}
.y10_c00147{bottom:494.919675px;}
.y24_c00147{bottom:495.839509px;}
.y3c_c00147{bottom:495.847693px;}
.yf_c00147{bottom:495.993006px;}
.y28_c00147{bottom:496.289992px;}
.y13_c00147{bottom:496.353473px;}
.y40_c00147{bottom:496.974167px;}
.y23_c00147{bottom:497.484380px;}
.ye_c00147{bottom:497.644566px;}
.y3b_c00147{bottom:498.050345px;}
.y41_c00147{bottom:498.364816px;}
.y22_c00147{bottom:499.172711px;}
.yd_c00147{bottom:499.338107px;}
.y42_c00147{bottom:500.063439px;}
.y14_c00147{bottom:500.630691px;}
.y21_c00147{bottom:501.037625px;}
.yc_c00147{bottom:501.208280px;}
.y29_c00147{bottom:501.390523px;}
.y3a_c00147{bottom:501.841887px;}
.y43_c00147{bottom:502.505484px;}
.y15_c00147{bottom:503.149521px;}
.y44_c00147{bottom:504.764625px;}
.y2a_c00147{bottom:505.019047px;}
.y20_c00147{bottom:505.692124px;}
.yb_c00147{bottom:505.871886px;}
.y39_c00147{bottom:507.310818px;}
.y45_c00147{bottom:508.033427px;}
.y16_c00147{bottom:509.101920px;}
.y2b_c00147{bottom:510.652700px;}
.y38_c00147{bottom:511.777229px;}
.y1f_c00147{bottom:512.093421px;}
.ya_c00147{bottom:512.281650px;}
.y17_c00147{bottom:513.850725px;}
.y46_c00147{bottom:516.430791px;}
.y2c_c00147{bottom:517.310242px;}
.y37_c00147{bottom:518.201920px;}
.y1e_c00147{bottom:519.400744px;}
.y9_c00147{bottom:519.490765px;}
.y36_c00147{bottom:522.772118px;}
.y8_c00147{bottom:522.949612px;}
.y47_c00147{bottom:524.479585px;}
.y18_c00147{bottom:525.634639px;}
.y1d_c00147{bottom:526.562252px;}
.y7_c00147{bottom:528.959751px;}
.y2d_c00147{bottom:529.273374px;}
.y35_c00147{bottom:530.544173px;}
.y1c_c00147{bottom:531.331731px;}
.y2f_c00147{bottom:533.268367px;}
.y33_c00147{bottom:533.962015px;}
.y34_c00147{bottom:534.438127px;}
.y6_c00147{bottom:536.219342px;}
.y1b_c00147{bottom:537.503874px;}
.y19_c00147{bottom:537.875309px;}
.y2e_c00147{bottom:538.238862px;}
.y31_c00147{bottom:539.974832px;}
.y1a_c00147{bottom:544.567530px;}
.y5_c00147{bottom:545.754118px;}
.y32_c00147{bottom:577.436970px;}
.y48_c00147{bottom:639.092421px;}
.y58_c00147{bottom:1021.439841px;}
.y56_c00147{bottom:1128.788391px;}
.y54_c00147{bottom:1133.738586px;}
.y53_c00147{bottom:1147.738626px;}
.y57_c00147{bottom:1153.262238px;}
.y55_c00147{bottom:1171.082869px;}
.hb_c00147{height:35.988753px;}
.hc_c00147{height:35.988755px;}
.hd_c00147{height:35.988756px;}
.h14_c00147{height:37.020556px;}
.h5_c00147{height:37.459702px;}
.hf_c00147{height:39.108240px;}
.h13_c00147{height:39.108509px;}
.h9_c00147{height:44.107038px;}
.h6_c00147{height:44.107039px;}
.ha_c00147{height:44.107040px;}
.h7_c00147{height:44.107042px;}
.h8_c00147{height:44.107043px;}
.h17_c00147{height:45.588598px;}
.h3_c00147{height:50.480386px;}
.h10_c00147{height:51.916398px;}
.he_c00147{height:56.295398px;}
.h11_c00147{height:57.017399px;}
.h16_c00147{height:57.574982px;}
.h4_c00147{height:67.042966px;}
.h12_c00147{height:68.367700px;}
.h15_c00147{height:89.376654px;}
.h2_c00147{height:1304.999946px;}
.h0_c00147{height:1304.999953px;}
.h1_c00147{height:1305.000000px;}
.w2_c00147{width:934.874961px;}
.w0_c00147{width:934.875000px;}
.w1_c00147{width:935.250000px;}
.x0_c00147{left:0.000000px;}
.x3f_c00147{left:89.487450px;}
.x40_c00147{left:90.844844px;}
.x41_c00147{left:107.230262px;}
.x42_c00147{left:108.827167px;}
.x45_c00147{left:130.690629px;}
.x16_c00147{left:134.974838px;}
.x15_c00147{left:136.648279px;}
.x17_c00147{left:140.021272px;}
.x18_c00147{left:144.871714px;}
.x19_c00147{left:150.237526px;}
.x1a_c00147{left:152.990336px;}
.x1b_c00147{left:156.000220px;}
.x1c_c00147{left:159.847713px;}
.x26_c00147{left:161.443962px;}
.x1d_c00147{left:163.301377px;}
.x1e_c00147{left:171.586339px;}
.x1f_c00147{left:179.855997px;}
.x20_c00147{left:188.287487px;}
.x21_c00147{left:196.673970px;}
.x22_c00147{left:200.841336px;}
.x23_c00147{left:205.399483px;}
.x24_c00147{left:209.208896px;}
.x25_c00147{left:211.795693px;}
.x5_c00147{left:230.398389px;}
.x4_c00147{left:232.534609px;}
.x6_c00147{left:235.623324px;}
.x7_c00147{left:240.462566px;}
.x8_c00147{left:245.820252px;}
.x9_c00147{left:248.569815px;}
.xa_c00147{left:251.576732px;}
.xb_c00147{left:255.421336px;}
.x44_c00147{left:256.622047px;}
.xc_c00147{left:258.708042px;}
.xd_c00147{left:263.145298px;}
.xe_c00147{left:271.763354px;}
.xf_c00147{left:283.603990px;}
.x10_c00147{left:291.041304px;}
.x11_c00147{left:294.435991px;}
.x43_c00147{left:295.615161px;}
.x12_c00147{left:299.775542px;}
.x13_c00147{left:303.165014px;}
.x14_c00147{left:307.176807px;}
.x2b_c00147{left:327.047435px;}
.x2c_c00147{left:328.264734px;}
.x2d_c00147{left:329.685747px;}
.x2e_c00147{left:333.082971px;}
.x2f_c00147{left:336.307511px;}
.x30_c00147{left:342.189757px;}
.x31_c00147{left:348.376740px;}
.x2a_c00147{left:351.731739px;}
.x32_c00147{left:354.069743px;}
.x33_c00147{left:357.479743px;}
.x34_c00147{left:365.386869px;}
.x35_c00147{left:373.375785px;}
.x36_c00147{left:380.135498px;}
.x37_c00147{left:383.155707px;}
.x38_c00147{left:386.159935px;}
.x39_c00147{left:389.557910px;}
.x3a_c00147{left:392.174988px;}
.x3b_c00147{left:395.489533px;}
.x3c_c00147{left:400.664851px;}
.x3d_c00147{left:403.469600px;}
.x2_c00147{left:452.271732px;}
.x1_c00147{left:462.226578px;}
.x28_c00147{left:464.896169px;}
.x3e_c00147{left:676.878164px;}
.x3_c00147{left:697.320842px;}
.x29_c00147{left:733.540639px;}
.x27_c00147{left:757.088990px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.v1_c00147{vertical-align:1.137408pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ws4_c00147{word-spacing:-37.057398pt;}
.ws0_c00147{word-spacing:-13.485567pt;}
.ws2_c00147{word-spacing:-0.079987pt;}
.ws1_c00147{word-spacing:-0.049560pt;}
.ws5_c00147{word-spacing:0.000000pt;}
.ws3_c00147{word-spacing:256.052163pt;}
._2_c00147{width:1.587401pt;}
._1_c00147{width:2.506895pt;}
._6_c00147{width:4.709777pt;}
._0_c00147{width:5.979124pt;}
._5_c00147{width:15.363525pt;}
._4_c00147{width:19.807248pt;}
._3_c00147{width:21.471557pt;}
.fse_c00147{font-size:35.340254pt;}
.fs9_c00147{font-size:37.333182pt;}
.fsd_c00147{font-size:37.333438pt;}
.fs6_c00147{font-size:42.105093pt;}
.fs3_c00147{font-size:42.105094pt;}
.fs7_c00147{font-size:42.105095pt;}
.fs4_c00147{font-size:42.105096pt;}
.fs5_c00147{font-size:42.105098pt;}
.fs2_c00147{font-size:45.921418pt;}
.fsa_c00147{font-size:49.559999pt;}
.fs10_c00147{font-size:53.319997pt;}
.fs0_c00147{font-size:61.883325pt;}
.fs1_c00147{font-size:63.999997pt;}
.fsb_c00147{font-size:66.154880pt;}
.fs8_c00147{font-size:68.454656pt;}
.fsc_c00147{font-size:79.986889pt;}
.fsf_c00147{font-size:85.319996pt;}
.y0_c00147{bottom:0.000000pt;}
.y1_c00147{bottom:0.000007pt;}
.y3_c00147{bottom:26.134367pt;}
.y2_c00147{bottom:26.976047pt;}
.y51_c00147{bottom:50.021886pt;}
.y50_c00147{bottom:77.021885pt;}
.y4f_c00147{bottom:104.021884pt;}
.y4e_c00147{bottom:131.021883pt;}
.y4d_c00147{bottom:158.021881pt;}
.y4c_c00147{bottom:185.021880pt;}
.y4b_c00147{bottom:212.021879pt;}
.y4a_c00147{bottom:239.021878pt;}
.y49_c00147{bottom:266.021877pt;}
.y52_c00147{bottom:302.536333pt;}
.y4_c00147{bottom:356.911319pt;}
.y30_c00147{bottom:432.789822pt;}
.y12_c00147{bottom:438.513950pt;}
.y26_c00147{bottom:438.527466pt;}
.y11_c00147{bottom:438.981074pt;}
.y27_c00147{bottom:438.998596pt;}
.y3e_c00147{bottom:439.074943pt;}
.y25_c00147{bottom:439.633885pt;}
.y3f_c00147{bottom:439.815613pt;}
.y3d_c00147{bottom:439.833627pt;}
.y10_c00147{bottom:439.928600pt;}
.y24_c00147{bottom:440.746230pt;}
.y3c_c00147{bottom:440.753505pt;}
.yf_c00147{bottom:440.882672pt;}
.y28_c00147{bottom:441.146660pt;}
.y13_c00147{bottom:441.203087pt;}
.y40_c00147{bottom:441.754815pt;}
.y23_c00147{bottom:442.208338pt;}
.ye_c00147{bottom:442.350726pt;}
.y3b_c00147{bottom:442.711417pt;}
.y41_c00147{bottom:442.990948pt;}
.y22_c00147{bottom:443.709077pt;}
.yd_c00147{bottom:443.856095pt;}
.y42_c00147{bottom:444.500834pt;}
.y14_c00147{bottom:445.005059pt;}
.y21_c00147{bottom:445.366778pt;}
.yc_c00147{bottom:445.518471pt;}
.y29_c00147{bottom:445.680465pt;}
.y3a_c00147{bottom:446.081677pt;}
.y43_c00147{bottom:446.671541pt;}
.y15_c00147{bottom:447.244019pt;}
.y44_c00147{bottom:448.679667pt;}
.y2a_c00147{bottom:448.905819pt;}
.y20_c00147{bottom:449.504110pt;}
.yb_c00147{bottom:449.663899pt;}
.y39_c00147{bottom:450.942950pt;}
.y45_c00147{bottom:451.585269pt;}
.y16_c00147{bottom:452.535040pt;}
.y2b_c00147{bottom:453.913511pt;}
.y38_c00147{bottom:454.913093pt;}
.y1f_c00147{bottom:455.194152pt;}
.ya_c00147{bottom:455.361467pt;}
.y17_c00147{bottom:456.756200pt;}
.y46_c00147{bottom:459.049592pt;}
.y2c_c00147{bottom:459.831327pt;}
.y37_c00147{bottom:460.623928pt;}
.y1e_c00147{bottom:461.689550pt;}
.y9_c00147{bottom:461.769569pt;}
.y36_c00147{bottom:464.686327pt;}
.y8_c00147{bottom:464.844100pt;}
.y47_c00147{bottom:466.204075pt;}
.y18_c00147{bottom:467.230790pt;}
.y1d_c00147{bottom:468.055335pt;}
.y7_c00147{bottom:470.186445pt;}
.y2d_c00147{bottom:470.465221pt;}
.y35_c00147{bottom:471.594820pt;}
.y1c_c00147{bottom:472.294872pt;}
.y2f_c00147{bottom:474.016326pt;}
.y33_c00147{bottom:474.632902pt;}
.y34_c00147{bottom:475.056113pt;}
.y6_c00147{bottom:476.639415pt;}
.y1b_c00147{bottom:477.781221pt;}
.y19_c00147{bottom:478.111386pt;}
.y2e_c00147{bottom:478.434544pt;}
.y31_c00147{bottom:479.977628pt;}
.y1a_c00147{bottom:484.060027pt;}
.y5_c00147{bottom:485.114772pt;}
.y32_c00147{bottom:513.277307pt;}
.y48_c00147{bottom:568.082152pt;}
.y58_c00147{bottom:907.946525pt;}
.y56_c00147{bottom:1003.367459pt;}
.y54_c00147{bottom:1007.767632pt;}
.y53_c00147{bottom:1020.212112pt;}
.y57_c00147{bottom:1025.121989pt;}
.y55_c00147{bottom:1040.962550pt;}
.hb_c00147{height:31.990003pt;}
.hc_c00147{height:31.990004pt;}
.hd_c00147{height:31.990006pt;}
.h14_c00147{height:32.907161pt;}
.h5_c00147{height:33.297513pt;}
.hf_c00147{height:34.762880pt;}
.h13_c00147{height:34.763119pt;}
.h9_c00147{height:39.206256pt;}
.h6_c00147{height:39.206257pt;}
.ha_c00147{height:39.206258pt;}
.h7_c00147{height:39.206259pt;}
.h8_c00147{height:39.206261pt;}
.h17_c00147{height:40.523198pt;}
.h3_c00147{height:44.871454pt;}
.h10_c00147{height:46.147909pt;}
.he_c00147{height:50.040354pt;}
.h11_c00147{height:50.682132pt;}
.h16_c00147{height:51.177761pt;}
.h4_c00147{height:59.593748pt;}
.h12_c00147{height:60.771289pt;}
.h15_c00147{height:79.445915pt;}
.h2_c00147{height:1159.999952pt;}
.h0_c00147{height:1159.999959pt;}
.h1_c00147{height:1160.000000pt;}
.w2_c00147{width:830.999965pt;}
.w0_c00147{width:831.000000pt;}
.w1_c00147{width:831.333333pt;}
.x0_c00147{left:0.000000pt;}
.x3f_c00147{left:79.544400pt;}
.x40_c00147{left:80.750973pt;}
.x41_c00147{left:95.315788pt;}
.x42_c00147{left:96.735260pt;}
.x45_c00147{left:116.169448pt;}
.x16_c00147{left:119.977634pt;}
.x15_c00147{left:121.465137pt;}
.x17_c00147{left:124.463353pt;}
.x18_c00147{left:128.774857pt;}
.x19_c00147{left:133.544468pt;}
.x1a_c00147{left:135.991410pt;}
.x1b_c00147{left:138.666862pt;}
.x1c_c00147{left:142.086856pt;}
.x26_c00147{left:143.505744pt;}
.x1d_c00147{left:145.156780pt;}
.x1e_c00147{left:152.521190pt;}
.x1f_c00147{left:159.871997pt;}
.x20_c00147{left:167.366655pt;}
.x21_c00147{left:174.821307pt;}
.x22_c00147{left:178.525632pt;}
.x23_c00147{left:182.577318pt;}
.x24_c00147{left:185.963463pt;}
.x25_c00147{left:188.262839pt;}
.x5_c00147{left:204.798568pt;}
.x4_c00147{left:206.697430pt;}
.x6_c00147{left:209.442955pt;}
.x7_c00147{left:213.744503pt;}
.x8_c00147{left:218.506891pt;}
.x9_c00147{left:220.950947pt;}
.xa_c00147{left:223.623762pt;}
.xb_c00147{left:227.041187pt;}
.x44_c00147{left:228.108486pt;}
.xc_c00147{left:229.962704pt;}
.xd_c00147{left:233.906932pt;}
.xe_c00147{left:241.567426pt;}
.xf_c00147{left:252.092435pt;}
.x10_c00147{left:258.703382pt;}
.x11_c00147{left:261.720880pt;}
.x43_c00147{left:262.769032pt;}
.x12_c00147{left:266.467148pt;}
.x13_c00147{left:269.480012pt;}
.x14_c00147{left:273.046051pt;}
.x2b_c00147{left:290.708831pt;}
.x2c_c00147{left:291.790874pt;}
.x2d_c00147{left:293.053997pt;}
.x2e_c00147{left:296.073752pt;}
.x2f_c00147{left:298.940009pt;}
.x30_c00147{left:304.168673pt;}
.x31_c00147{left:309.668213pt;}
.x2a_c00147{left:312.650435pt;}
.x32_c00147{left:314.728661pt;}
.x33_c00147{left:317.759772pt;}
.x34_c00147{left:324.788328pt;}
.x35_c00147{left:331.889587pt;}
.x36_c00147{left:337.898220pt;}
.x37_c00147{left:340.582851pt;}
.x38_c00147{left:343.253275pt;}
.x39_c00147{left:346.273697pt;}
.x3a_c00147{left:348.599989pt;}
.x3b_c00147{left:351.546252pt;}
.x3c_c00147{left:356.146534pt;}
.x3d_c00147{left:358.639645pt;}
.x2_c00147{left:402.019318pt;}
.x1_c00147{left:410.868069pt;}
.x28_c00147{left:413.241039pt;}
.x3e_c00147{left:601.669479pt;}
.x3_c00147{left:619.840748pt;}
.x29_c00147{left:652.036124pt;}
.x27_c00147{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ce0dadf6d9db91eb8eb6b51.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.171387;font-style:normal;font-weight:normal;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_e92e2e3533aed8f2ba0d932b.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.000000;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00148{font-family:ff3_c00148;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00148;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:0.734863;font-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_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;}
.ls1_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:0.035156px;}
.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;}
}
.ws1_c00148{word-spacing:-19.320776px;}
.ws0_c00148{word-spacing:-18.703125px;}
.ws2_c00148{word-spacing:0.000000px;}
._5_c00148{width:1.683312px;}
._b_c00148{width:2.724607px;}
._8_c00148{width:3.726562px;}
._9_c00148{width:4.728516px;}
._2_c00148{width:5.818360px;}
._7_c00148{width:7.484710px;}
._a_c00148{width:8.898103px;}
._4_c00148{width:10.891365px;}
._d_c00148{width:12.852561px;}
._10_c00148{width:14.746812px;}
._3_c00148{width:17.056616px;}
._c_c00148{width:20.114734px;}
._6_c00148{width:21.304687px;}
._e_c00148{width:23.420373px;}
._1_c00148{width:24.494292px;}
._f_c00148{width:34.178875px;}
._0_c00148{width:36.484355px;}
.fc3_c00148{color:transparent;}
.fc1_c00148{color:rgb(67,91,56);}
.fc2_c00148{color:rgb(128,128,128);}
.fc0_c00148{color:rgb(0,0,0);}
.fs1_c00148{font-size:69.618741px;}
.fs0_c00148{font-size:71.999997px;}
.fs2_c00148{font-size:74.377724px;}
.y0_c00148{bottom:0.000000px;}
.y1_c00148{bottom:0.000008px;}
.y24_c00148{bottom:29.401163px;}
.y13_c00148{bottom:30.348053px;}
.y1d_c00148{bottom:119.754139px;}
.y1c_c00148{bottom:150.129138px;}
.y1b_c00148{bottom:180.504136px;}
.y1a_c00148{bottom:210.879135px;}
.y19_c00148{bottom:241.254134px;}
.y18_c00148{bottom:279.954132px;}
.y17_c00148{bottom:336.654130px;}
.y16_c00148{bottom:367.029129px;}
.y15_c00148{bottom:397.404127px;}
.y14_c00148{bottom:436.099914px;}
.y11_c00148{bottom:492.800253px;}
.y10_c00148{bottom:523.175252px;}
.yf_c00148{bottom:553.550251px;}
.ye_c00148{bottom:583.925250px;}
.yd_c00148{bottom:614.300248px;}
.yc_c00148{bottom:644.675247px;}
.yb_c00148{bottom:675.050246px;}
.ya_c00148{bottom:705.425245px;}
.y9_c00148{bottom:735.800243px;}
.y8_c00148{bottom:766.175242px;}
.y7_c00148{bottom:796.550241px;}
.y6_c00148{bottom:826.925240px;}
.y5_c00148{bottom:857.300238px;}
.y4_c00148{bottom:887.675237px;}
.y3_c00148{bottom:918.050236px;}
.y2_c00148{bottom:948.425234px;}
.y12_c00148{bottom:987.494373px;}
.y23_c00148{bottom:1043.946169px;}
.y22_c00148{bottom:1074.321168px;}
.y21_c00148{bottom:1104.696166px;}
.y20_c00148{bottom:1135.071165px;}
.y1f_c00148{bottom:1165.446164px;}
.y1e_c00148{bottom:1199.188901px;}
.h5_c00148{height:50.480386px;}
.h4_c00148{height:55.160154px;}
.h6_c00148{height:56.981762px;}
.h3_c00148{height:67.042966px;}
.h2_c00148{height:1304.999946px;}
.h0_c00148{height:1304.999953px;}
.h1_c00148{height:1305.000000px;}
.w2_c00148{width:934.874961px;}
.w0_c00148{width:934.875000px;}
.w1_c00148{width:935.250000px;}
.x0_c00148{left:0.000000px;}
.x1_c00148{left:87.902647px;}
.x2_c00148{left:452.782029px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls1_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:0.031250pt;}
.ws1_c00148{word-spacing:-17.174023pt;}
.ws0_c00148{word-spacing:-16.625000pt;}
.ws2_c00148{word-spacing:0.000000pt;}
._5_c00148{width:1.496277pt;}
._b_c00148{width:2.421873pt;}
._8_c00148{width:3.312499pt;}
._9_c00148{width:4.203125pt;}
._2_c00148{width:5.171875pt;}
._7_c00148{width:6.653075pt;}
._a_c00148{width:7.909425pt;}
._4_c00148{width:9.681214pt;}
._d_c00148{width:11.424499pt;}
._10_c00148{width:13.108277pt;}
._3_c00148{width:15.161437pt;}
._c_c00148{width:17.879763pt;}
._6_c00148{width:18.937499pt;}
._e_c00148{width:20.818110pt;}
._1_c00148{width:21.772704pt;}
._f_c00148{width:30.381222pt;}
._0_c00148{width:32.430538pt;}
.fs1_c00148{font-size:61.883325pt;}
.fs0_c00148{font-size:63.999997pt;}
.fs2_c00148{font-size:66.113533pt;}
.y0_c00148{bottom:0.000000pt;}
.y1_c00148{bottom:0.000007pt;}
.y24_c00148{bottom:26.134367pt;}
.y13_c00148{bottom:26.976047pt;}
.y1d_c00148{bottom:106.448124pt;}
.y1c_c00148{bottom:133.448122pt;}
.y1b_c00148{bottom:160.448121pt;}
.y1a_c00148{bottom:187.448120pt;}
.y19_c00148{bottom:214.448119pt;}
.y18_c00148{bottom:248.848118pt;}
.y17_c00148{bottom:299.248116pt;}
.y16_c00148{bottom:326.248114pt;}
.y15_c00148{bottom:353.248113pt;}
.y14_c00148{bottom:387.644368pt;}
.y11_c00148{bottom:438.044670pt;}
.y10_c00148{bottom:465.044669pt;}
.yf_c00148{bottom:492.044667pt;}
.ye_c00148{bottom:519.044666pt;}
.yd_c00148{bottom:546.044665pt;}
.yc_c00148{bottom:573.044664pt;}
.yb_c00148{bottom:600.044663pt;}
.ya_c00148{bottom:627.044662pt;}
.y9_c00148{bottom:654.044661pt;}
.y8_c00148{bottom:681.044660pt;}
.y7_c00148{bottom:708.044658pt;}
.y6_c00148{bottom:735.044657pt;}
.y5_c00148{bottom:762.044656pt;}
.y4_c00148{bottom:789.044655pt;}
.y3_c00148{bottom:816.044654pt;}
.y2_c00148{bottom:843.044653pt;}
.y12_c00148{bottom:877.772776pt;}
.y23_c00148{bottom:927.952150pt;}
.y22_c00148{bottom:954.952149pt;}
.y21_c00148{bottom:981.952148pt;}
.y20_c00148{bottom:1008.952147pt;}
.y1f_c00148{bottom:1035.952146pt;}
.y1e_c00148{bottom:1065.945690pt;}
.h5_c00148{height:44.871454pt;}
.h4_c00148{height:49.031248pt;}
.h6_c00148{height:50.650455pt;}
.h3_c00148{height:59.593748pt;}
.h2_c00148{height:1159.999952pt;}
.h0_c00148{height:1159.999959pt;}
.h1_c00148{height:1160.000000pt;}
.w2_c00148{width:830.999965pt;}
.w0_c00148{width:831.000000pt;}
.w1_c00148{width:831.333333pt;}
.x0_c00148{left:0.000000pt;}
.x1_c00148{left:78.135686pt;}
.x2_c00148{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:0.734863;font-style:normal;font-weight:normal;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_96039dd648905802029a3c2c.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.171387;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff3_c00149{font-family:ff3_c00149;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00149;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff4_c00149{font-family:ff4_c00149;line-height:0.769531;font-style:normal;font-weight: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_c00149;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff5_c00149{font-family:ff5_c00149;line-height:0.743000;font-style:normal;font-weight: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_c00149;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff6_c00149{font-family:ff6_c00149;line-height:1.006348;font-style:normal;font-weight: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_c00149;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff7_c00149{font-family:ff7_c00149;line-height:1.000000;font-style:normal;font-weight: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_c00149;src:url('chunks/assets/font_a9121dd2424135e69ac064d3.woff2')format("woff");}.ff8_c00149{font-family:ff8_c00149;line-height:1.171387;font-style:normal;font-weight: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_c00149;src:url('chunks/assets/font_7e98a71529397d8932d58cbe.woff2')format("woff");}.ff9_c00149{font-family:ff9_c00149;line-height:1.005371;font-style:normal;font-weight: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_c00149;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00149{font-family:ffa_c00149;line-height:0.940000;font-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_c00149{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00149{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00149{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00149{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00149{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00149{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00149{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00149{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00149{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00149{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00149{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00149{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00149{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00149{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00149{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00149{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00149{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00149{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00149{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00149{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00149{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00149{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00149{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00149{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00149{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00149{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00149{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00149{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00149{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00149{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00149{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00149{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00149{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00149{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00149{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00149{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00149{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00149{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00149{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00149{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00149{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00149{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00149{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00149{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00149{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00149{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00149{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00149{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00149{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00149{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00149{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00149{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00149{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00149{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00149{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00149{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00149{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00149{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00149{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00149{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00149{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00149{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00149{vertical-align:0.000000px;}
.v1_c00149{vertical-align:1.279728px;}
.ls0_c00149{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00149{word-spacing:-41.689573px;}
.ws0_c00149{word-spacing:-15.171263px;}
.ws1_c00149{word-spacing:-0.089985px;}
.ws3_c00149{word-spacing:-0.055755px;}
.ws5_c00149{word-spacing:0.000000px;}
.ws2_c00149{word-spacing:288.058683px;}
._2_c00149{width:1.382766px;}
._1_c00149{width:5.663998px;}
._4_c00149{width:7.398465px;}
._0_c00149{width:16.561750px;}
._3_c00149{width:21.445314px;}
.fc5_c00149{color:transparent;}
.fc4_c00149{color:rgb(67,91,56);}
.fc2_c00149{color:rgb(9,71,81);}
.fc3_c00149{color:rgb(255,255,255);}
.fc1_c00149{color:rgb(0,0,0);}
.fc0_c00149{color:rgb(128,128,128);}
.fsd_c00149{font-size:39.757786px;}
.fs9_c00149{font-size:41.999830px;}
.fsc_c00149{font-size:42.000118px;}
.fs6_c00149{font-size:47.368230px;}
.fs3_c00149{font-size:47.368231px;}
.fs7_c00149{font-size:47.368232px;}
.fs4_c00149{font-size:47.368233px;}
.fs5_c00149{font-size:47.368235px;}
.fs2_c00149{font-size:51.661596px;}
.fsf_c00149{font-size:55.754999px;}
.fs10_c00149{font-size:59.984997px;}
.fs0_c00149{font-size:69.618741px;}
.fs1_c00149{font-size:71.999997px;}
.fsa_c00149{font-size:74.424240px;}
.fs8_c00149{font-size:77.011488px;}
.fsb_c00149{font-size:89.985250px;}
.fse_c00149{font-size:95.984996px;}
.y0_c00149{bottom:0.000000px;}
.y1_c00149{bottom:0.000008px;}
.y3_c00149{bottom:29.401163px;}
.y2_c00149{bottom:30.348053px;}
.y4d_c00149{bottom:147.399618px;}
.y4c_c00149{bottom:177.774617px;}
.y4b_c00149{bottom:208.149615px;}
.y4a_c00149{bottom:238.524614px;}
.y49_c00149{bottom:268.899613px;}
.y48_c00149{bottom:299.274612px;}
.y4e_c00149{bottom:340.353374px;}
.y4_c00149{bottom:401.525233px;}
.y30_c00149{bottom:486.888550px;}
.y12_c00149{bottom:493.328193px;}
.y26_c00149{bottom:493.343399px;}
.y11_c00149{bottom:493.853349px;}
.y27_c00149{bottom:493.873061px;}
.y3e_c00149{bottom:493.958987px;}
.y25_c00149{bottom:494.588444px;}
.y3f_c00149{bottom:494.792564px;}
.y3d_c00149{bottom:494.812470px;}
.y10_c00149{bottom:494.919675px;}
.y24_c00149{bottom:495.839509px;}
.y3c_c00149{bottom:495.847333px;}
.yf_c00149{bottom:495.993006px;}
.y28_c00149{bottom:496.289992px;}
.y13_c00149{bottom:496.353113px;}
.y40_c00149{bottom:496.973447px;}
.y23_c00149{bottom:497.484020px;}
.ye_c00149{bottom:497.644926px;}
.y3b_c00149{bottom:498.050705px;}
.y41_c00149{bottom:498.365140px;}
.y22_c00149{bottom:499.172711px;}
.yd_c00149{bottom:499.338107px;}
.y42_c00149{bottom:500.063439px;}
.y14_c00149{bottom:500.630691px;}
.y21_c00149{bottom:501.037949px;}
.yc_c00149{bottom:501.208280px;}
.y29_c00149{bottom:501.390523px;}
.y3a_c00149{bottom:501.842247px;}
.y43_c00149{bottom:502.505484px;}
.y15_c00149{bottom:503.149881px;}
.y44_c00149{bottom:504.764265px;}
.y2a_c00149{bottom:505.018723px;}
.y20_c00149{bottom:505.692124px;}
.yb_c00149{bottom:505.872210px;}
.y39_c00149{bottom:507.310818px;}
.y45_c00149{bottom:508.033427px;}
.y16_c00149{bottom:509.102244px;}
.y2b_c00149{bottom:510.653024px;}
.y38_c00149{bottom:511.777229px;}
.y1f_c00149{bottom:512.093421px;}
.ya_c00149{bottom:512.281650px;}
.y17_c00149{bottom:513.850725px;}
.y46_c00149{bottom:516.430791px;}
.y2c_c00149{bottom:517.310602px;}
.y37_c00149{bottom:518.202280px;}
.y1e_c00149{bottom:519.400384px;}
.y9_c00149{bottom:519.490765px;}
.y36_c00149{bottom:522.772118px;}
.y8_c00149{bottom:522.949612px;}
.y47_c00149{bottom:524.479945px;}
.y18_c00149{bottom:525.634963px;}
.y1d_c00149{bottom:526.562252px;}
.y7_c00149{bottom:528.960471px;}
.y2d_c00149{bottom:529.273050px;}
.y35_c00149{bottom:530.544173px;}
.y1c_c00149{bottom:531.331047px;}
.y2f_c00149{bottom:533.268367px;}
.y33_c00149{bottom:533.961655px;}
.y34_c00149{bottom:534.438127px;}
.y6_c00149{bottom:536.219702px;}
.y1b_c00149{bottom:537.503874px;}
.y19_c00149{bottom:537.875309px;}
.y2e_c00149{bottom:538.238502px;}
.y31_c00149{bottom:539.975192px;}
.y1a_c00149{bottom:544.566810px;}
.y5_c00149{bottom:545.753758px;}
.y32_c00149{bottom:577.436970px;}
.y54_c00149{bottom:639.092781px;}
.y55_c00149{bottom:668.523500px;}
.y52_c00149{bottom:1128.788039px;}
.y50_c00149{bottom:1133.738410px;}
.y4f_c00149{bottom:1147.738449px;}
.y53_c00149{bottom:1153.262414px;}
.y51_c00149{bottom:1171.082693px;}
.hb_c00149{height:35.988753px;}
.hc_c00149{height:35.988755px;}
.hd_c00149{height:35.988756px;}
.h13_c00149{height:37.020556px;}
.h5_c00149{height:37.459702px;}
.hf_c00149{height:39.108240px;}
.h12_c00149{height:39.108509px;}
.h9_c00149{height:44.107038px;}
.h6_c00149{height:44.107039px;}
.ha_c00149{height:44.107040px;}
.h7_c00149{height:44.107042px;}
.h8_c00149{height:44.107043px;}
.h17_c00149{height:45.588598px;}
.h3_c00149{height:50.480386px;}
.h16_c00149{height:51.916398px;}
.he_c00149{height:56.295398px;}
.h10_c00149{height:57.017399px;}
.h15_c00149{height:57.575126px;}
.h4_c00149{height:67.042966px;}
.h11_c00149{height:68.367700px;}
.h14_c00149{height:89.376654px;}
.h2_c00149{height:1304.999946px;}
.h0_c00149{height:1304.999953px;}
.h1_c00149{height:1305.000000px;}
.w2_c00149{width:934.874961px;}
.w0_c00149{width:934.875000px;}
.w1_c00149{width:935.250000px;}
.x0_c00149{left:0.000000px;}
.x3d_c00149{left:87.902647px;}
.x3e_c00149{left:89.260034px;}
.x3f_c00149{left:107.230262px;}
.x40_c00149{left:108.827167px;}
.x44_c00149{left:128.775275px;}
.x15_c00149{left:134.974838px;}
.x14_c00149{left:136.648279px;}
.x16_c00149{left:140.021272px;}
.x17_c00149{left:144.871714px;}
.x18_c00149{left:150.237526px;}
.x19_c00149{left:152.990336px;}
.x1a_c00149{left:156.000220px;}
.x1b_c00149{left:159.847713px;}
.x25_c00149{left:161.443962px;}
.x1c_c00149{left:163.301377px;}
.x1d_c00149{left:171.586339px;}
.x1e_c00149{left:179.855997px;}
.x1f_c00149{left:188.287487px;}
.x20_c00149{left:196.673970px;}
.x21_c00149{left:200.841336px;}
.x22_c00149{left:205.399483px;}
.x23_c00149{left:209.208896px;}
.x24_c00149{left:211.795693px;}
.x4_c00149{left:230.398389px;}
.x3_c00149{left:232.534609px;}
.x5_c00149{left:235.623324px;}
.x6_c00149{left:240.462566px;}
.x7_c00149{left:245.820252px;}
.x8_c00149{left:248.569815px;}
.x9_c00149{left:251.576732px;}
.xa_c00149{left:255.421336px;}
.x42_c00149{left:256.622047px;}
.xb_c00149{left:258.708042px;}
.xc_c00149{left:263.145298px;}
.xd_c00149{left:271.763354px;}
.xe_c00149{left:283.603990px;}
.xf_c00149{left:291.041304px;}
.x10_c00149{left:294.435991px;}
.x41_c00149{left:295.615161px;}
.x11_c00149{left:299.775542px;}
.x12_c00149{left:303.165014px;}
.x13_c00149{left:307.176807px;}
.x2a_c00149{left:327.047435px;}
.x2b_c00149{left:328.264734px;}
.x2c_c00149{left:329.685747px;}
.x2d_c00149{left:333.082971px;}
.x2e_c00149{left:336.307511px;}
.x2f_c00149{left:342.189757px;}
.x30_c00149{left:348.376740px;}
.x29_c00149{left:351.731739px;}
.x31_c00149{left:354.069743px;}
.x32_c00149{left:357.479743px;}
.x33_c00149{left:365.386869px;}
.x34_c00149{left:373.375785px;}
.x35_c00149{left:380.135498px;}
.x36_c00149{left:383.155707px;}
.x37_c00149{left:386.159935px;}
.x38_c00149{left:389.557910px;}
.x39_c00149{left:392.174988px;}
.x3a_c00149{left:395.489533px;}
.x3b_c00149{left:400.664851px;}
.x3c_c00149{left:403.469600px;}
.x1_c00149{left:452.786554px;}
.x27_c00149{left:464.896169px;}
.x2_c00149{left:697.320842px;}
.x43_c00149{left:712.997142px;}
.x28_c00149{left:733.540639px;}
.x26_c00149{left:757.088990px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.v1_c00149{vertical-align:1.137536pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ws4_c00149{word-spacing:-37.057398pt;}
.ws0_c00149{word-spacing:-13.485567pt;}
.ws1_c00149{word-spacing:-0.079987pt;}
.ws3_c00149{word-spacing:-0.049560pt;}
.ws5_c00149{word-spacing:0.000000pt;}
.ws2_c00149{word-spacing:256.052163pt;}
._2_c00149{width:1.229125pt;}
._1_c00149{width:5.034665pt;}
._4_c00149{width:6.576413pt;}
._0_c00149{width:14.721556pt;}
._3_c00149{width:19.062501pt;}
.fsd_c00149{font-size:35.340254pt;}
.fs9_c00149{font-size:37.333182pt;}
.fsc_c00149{font-size:37.333438pt;}
.fs6_c00149{font-size:42.105093pt;}
.fs3_c00149{font-size:42.105094pt;}
.fs7_c00149{font-size:42.105095pt;}
.fs4_c00149{font-size:42.105096pt;}
.fs5_c00149{font-size:42.105098pt;}
.fs2_c00149{font-size:45.921418pt;}
.fsf_c00149{font-size:49.559999pt;}
.fs10_c00149{font-size:53.319997pt;}
.fs0_c00149{font-size:61.883325pt;}
.fs1_c00149{font-size:63.999997pt;}
.fsa_c00149{font-size:66.154880pt;}
.fs8_c00149{font-size:68.454656pt;}
.fsb_c00149{font-size:79.986889pt;}
.fse_c00149{font-size:85.319996pt;}
.y0_c00149{bottom:0.000000pt;}
.y1_c00149{bottom:0.000007pt;}
.y3_c00149{bottom:26.134367pt;}
.y2_c00149{bottom:26.976047pt;}
.y4d_c00149{bottom:131.021883pt;}
.y4c_c00149{bottom:158.021881pt;}
.y4b_c00149{bottom:185.021880pt;}
.y4a_c00149{bottom:212.021879pt;}
.y49_c00149{bottom:239.021878pt;}
.y48_c00149{bottom:266.021877pt;}
.y4e_c00149{bottom:302.536333pt;}
.y4_c00149{bottom:356.911319pt;}
.y30_c00149{bottom:432.789822pt;}
.y12_c00149{bottom:438.513950pt;}
.y26_c00149{bottom:438.527466pt;}
.y11_c00149{bottom:438.980754pt;}
.y27_c00149{bottom:438.998276pt;}
.y3e_c00149{bottom:439.074655pt;}
.y25_c00149{bottom:439.634173pt;}
.y3f_c00149{bottom:439.815613pt;}
.y3d_c00149{bottom:439.833307pt;}
.y10_c00149{bottom:439.928600pt;}
.y24_c00149{bottom:440.746230pt;}
.y3c_c00149{bottom:440.753185pt;}
.yf_c00149{bottom:440.882672pt;}
.y28_c00149{bottom:441.146660pt;}
.y13_c00149{bottom:441.202767pt;}
.y40_c00149{bottom:441.754175pt;}
.y23_c00149{bottom:442.208018pt;}
.ye_c00149{bottom:442.351046pt;}
.y3b_c00149{bottom:442.711737pt;}
.y41_c00149{bottom:442.991236pt;}
.y22_c00149{bottom:443.709077pt;}
.yd_c00149{bottom:443.856095pt;}
.y42_c00149{bottom:444.500834pt;}
.y14_c00149{bottom:445.005059pt;}
.y21_c00149{bottom:445.367066pt;}
.yc_c00149{bottom:445.518471pt;}
.y29_c00149{bottom:445.680465pt;}
.y3a_c00149{bottom:446.081997pt;}
.y43_c00149{bottom:446.671541pt;}
.y15_c00149{bottom:447.244339pt;}
.y44_c00149{bottom:448.679347pt;}
.y2a_c00149{bottom:448.905531pt;}
.y20_c00149{bottom:449.504110pt;}
.yb_c00149{bottom:449.664187pt;}
.y39_c00149{bottom:450.942950pt;}
.y45_c00149{bottom:451.585269pt;}
.y16_c00149{bottom:452.535328pt;}
.y2b_c00149{bottom:453.913799pt;}
.y38_c00149{bottom:454.913093pt;}
.y1f_c00149{bottom:455.194152pt;}
.ya_c00149{bottom:455.361467pt;}
.y17_c00149{bottom:456.756200pt;}
.y46_c00149{bottom:459.049592pt;}
.y2c_c00149{bottom:459.831647pt;}
.y37_c00149{bottom:460.624248pt;}
.y1e_c00149{bottom:461.689230pt;}
.y9_c00149{bottom:461.769569pt;}
.y36_c00149{bottom:464.686327pt;}
.y8_c00149{bottom:464.844100pt;}
.y47_c00149{bottom:466.204395pt;}
.y18_c00149{bottom:467.231078pt;}
.y1d_c00149{bottom:468.055335pt;}
.y7_c00149{bottom:470.187085pt;}
.y2d_c00149{bottom:470.464933pt;}
.y35_c00149{bottom:471.594820pt;}
.y1c_c00149{bottom:472.294264pt;}
.y2f_c00149{bottom:474.016326pt;}
.y33_c00149{bottom:474.632582pt;}
.y34_c00149{bottom:475.056113pt;}
.y6_c00149{bottom:476.639735pt;}
.y1b_c00149{bottom:477.781221pt;}
.y19_c00149{bottom:478.111386pt;}
.y2e_c00149{bottom:478.434224pt;}
.y31_c00149{bottom:479.977948pt;}
.y1a_c00149{bottom:484.059387pt;}
.y5_c00149{bottom:485.114452pt;}
.y32_c00149{bottom:513.277307pt;}
.y54_c00149{bottom:568.082472pt;}
.y55_c00149{bottom:594.243111pt;}
.y52_c00149{bottom:1003.367145pt;}
.y50_c00149{bottom:1007.767476pt;}
.y4f_c00149{bottom:1020.211955pt;}
.y53_c00149{bottom:1025.122146pt;}
.y51_c00149{bottom:1040.962393pt;}
.hb_c00149{height:31.990003pt;}
.hc_c00149{height:31.990004pt;}
.hd_c00149{height:31.990006pt;}
.h13_c00149{height:32.907161pt;}
.h5_c00149{height:33.297513pt;}
.hf_c00149{height:34.762880pt;}
.h12_c00149{height:34.763119pt;}
.h9_c00149{height:39.206256pt;}
.h6_c00149{height:39.206257pt;}
.ha_c00149{height:39.206258pt;}
.h7_c00149{height:39.206259pt;}
.h8_c00149{height:39.206261pt;}
.h17_c00149{height:40.523198pt;}
.h3_c00149{height:44.871454pt;}
.h16_c00149{height:46.147909pt;}
.he_c00149{height:50.040354pt;}
.h10_c00149{height:50.682132pt;}
.h15_c00149{height:51.177889pt;}
.h4_c00149{height:59.593748pt;}
.h11_c00149{height:60.771289pt;}
.h14_c00149{height:79.445915pt;}
.h2_c00149{height:1159.999952pt;}
.h0_c00149{height:1159.999959pt;}
.h1_c00149{height:1160.000000pt;}
.w2_c00149{width:830.999965pt;}
.w0_c00149{width:831.000000pt;}
.w1_c00149{width:831.333333pt;}
.x0_c00149{left:0.000000pt;}
.x3d_c00149{left:78.135686pt;}
.x3e_c00149{left:79.342253pt;}
.x3f_c00149{left:95.315788pt;}
.x40_c00149{left:96.735260pt;}
.x44_c00149{left:114.466911pt;}
.x15_c00149{left:119.977634pt;}
.x14_c00149{left:121.465137pt;}
.x16_c00149{left:124.463353pt;}
.x17_c00149{left:128.774857pt;}
.x18_c00149{left:133.544468pt;}
.x19_c00149{left:135.991410pt;}
.x1a_c00149{left:138.666862pt;}
.x1b_c00149{left:142.086856pt;}
.x25_c00149{left:143.505744pt;}
.x1c_c00149{left:145.156780pt;}
.x1d_c00149{left:152.521190pt;}
.x1e_c00149{left:159.871997pt;}
.x1f_c00149{left:167.366655pt;}
.x20_c00149{left:174.821307pt;}
.x21_c00149{left:178.525632pt;}
.x22_c00149{left:182.577318pt;}
.x23_c00149{left:185.963463pt;}
.x24_c00149{left:188.262839pt;}
.x4_c00149{left:204.798568pt;}
.x3_c00149{left:206.697430pt;}
.x5_c00149{left:209.442955pt;}
.x6_c00149{left:213.744503pt;}
.x7_c00149{left:218.506891pt;}
.x8_c00149{left:220.950947pt;}
.x9_c00149{left:223.623762pt;}
.xa_c00149{left:227.041187pt;}
.x42_c00149{left:228.108486pt;}
.xb_c00149{left:229.962704pt;}
.xc_c00149{left:233.906932pt;}
.xd_c00149{left:241.567426pt;}
.xe_c00149{left:252.092435pt;}
.xf_c00149{left:258.703382pt;}
.x10_c00149{left:261.720880pt;}
.x41_c00149{left:262.769032pt;}
.x11_c00149{left:266.467148pt;}
.x12_c00149{left:269.480012pt;}
.x13_c00149{left:273.046051pt;}
.x2a_c00149{left:290.708831pt;}
.x2b_c00149{left:291.790874pt;}
.x2c_c00149{left:293.053997pt;}
.x2d_c00149{left:296.073752pt;}
.x2e_c00149{left:298.940009pt;}
.x2f_c00149{left:304.168673pt;}
.x30_c00149{left:309.668213pt;}
.x29_c00149{left:312.650435pt;}
.x31_c00149{left:314.728661pt;}
.x32_c00149{left:317.759772pt;}
.x33_c00149{left:324.788328pt;}
.x34_c00149{left:331.889587pt;}
.x35_c00149{left:337.898220pt;}
.x36_c00149{left:340.582851pt;}
.x37_c00149{left:343.253275pt;}
.x38_c00149{left:346.273697pt;}
.x39_c00149{left:348.599989pt;}
.x3a_c00149{left:351.546252pt;}
.x3b_c00149{left:356.146534pt;}
.x3c_c00149{left:358.639645pt;}
.x1_c00149{left:402.476937pt;}
.x27_c00149{left:413.241039pt;}
.x2_c00149{left:619.840748pt;}
.x43_c00149{left:633.775238pt;}
.x28_c00149{left:652.036124pt;}
.x26_c00149{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4d1b0313ac07ba98d500bef.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.171387;font-style:normal;font-weight:normal;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_d7cfa16d72662eecf86612a1.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_4cbe7d00bcc615d2a6c438e2.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00150;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff4_c00150{font-family:ff4_c00150;line-height:0.734863;font-style:normal;font-weight: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_c00150;src:url('chunks/assets/font_ef75ac09ec0bee8008350615.woff2')format("woff");}.ff5_c00150{font-family:ff5_c00150;line-height:0.713867;font-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_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);}
.v0_c00150{vertical-align:0.000000px;}
.ls0_c00150{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00150{word-spacing:-19.320776px;}
.ws0_c00150{word-spacing:-18.703125px;}
.ws2_c00150{word-spacing:0.000000px;}
._0_c00150{width:1.004216px;}
._5_c00150{width:2.024038px;}
._7_c00150{width:3.857091px;}
._2_c00150{width:5.981981px;}
._1_c00150{width:7.025826px;}
._e_c00150{width:8.080700px;}
._9_c00150{width:9.568334px;}
._6_c00150{width:11.154071px;}
._8_c00150{width:12.361827px;}
._b_c00150{width:13.592251px;}
._a_c00150{width:14.601514px;}
._3_c00150{width:17.497643px;}
._4_c00150{width:20.024983px;}
._d_c00150{width:39.534782px;}
._c_c00150{width:49.710935px;}
.fc4_c00150{color:transparent;}
.fc3_c00150{color:rgb(255,49,49);}
.fc1_c00150{color:rgb(67,91,56);}
.fc2_c00150{color:rgb(128,128,128);}
.fc0_c00150{color:rgb(0,0,0);}
.fs1_c00150{font-size:69.618741px;}
.fs0_c00150{font-size:71.999997px;}
.fs2_c00150{font-size:74.377724px;}
.y0_c00150{bottom:0.000000px;}
.y1_c00150{bottom:0.000008px;}
.y1e_c00150{bottom:29.401163px;}
.y17_c00150{bottom:30.348053px;}
.y25_c00150{bottom:146.117262px;}
.y24_c00150{bottom:176.492261px;}
.y23_c00150{bottom:206.867259px;}
.y22_c00150{bottom:237.242258px;}
.y21_c00150{bottom:267.617257px;}
.y20_c00150{bottom:297.992256px;}
.y1f_c00150{bottom:324.988330px;}
.y15_c00150{bottom:380.786161px;}
.y14_c00150{bottom:411.161160px;}
.y13_c00150{bottom:441.536158px;}
.y12_c00150{bottom:471.911157px;}
.y11_c00150{bottom:502.286156px;}
.y10_c00150{bottom:532.661155px;}
.yf_c00150{bottom:563.036153px;}
.ye_c00150{bottom:593.411152px;}
.yd_c00150{bottom:623.786151px;}
.yc_c00150{bottom:654.161150px;}
.yb_c00150{bottom:684.536148px;}
.ya_c00150{bottom:714.911147px;}
.y9_c00150{bottom:745.286146px;}
.y8_c00150{bottom:775.661144px;}
.y7_c00150{bottom:806.036143px;}
.y6_c00150{bottom:836.411142px;}
.y5_c00150{bottom:866.786141px;}
.y4_c00150{bottom:897.161139px;}
.y3_c00150{bottom:927.536138px;}
.y2_c00150{bottom:957.911137px;}
.y16_c00150{bottom:991.832654px;}
.y1d_c00150{bottom:1047.630488px;}
.y1c_c00150{bottom:1078.005487px;}
.y1b_c00150{bottom:1108.380485px;}
.y1a_c00150{bottom:1138.755484px;}
.y19_c00150{bottom:1169.130483px;}
.y18_c00150{bottom:1199.188955px;}
.h5_c00150{height:50.480386px;}
.h4_c00150{height:55.160154px;}
.h6_c00150{height:56.981762px;}
.h3_c00150{height:67.042966px;}
.h2_c00150{height:1304.999946px;}
.h0_c00150{height:1304.999953px;}
.h1_c00150{height:1305.000000px;}
.w2_c00150{width:934.874961px;}
.w0_c00150{width:934.875000px;}
.w1_c00150{width:935.250000px;}
.x0_c00150{left:0.000000px;}
.x1_c00150{left:88.368242px;}
.x2_c00150{left:452.782029px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls0_c00150{letter-spacing:0.000000pt;}
.ws1_c00150{word-spacing:-17.174023pt;}
.ws0_c00150{word-spacing:-16.625000pt;}
.ws2_c00150{word-spacing:0.000000pt;}
._0_c00150{width:0.892636pt;}
._5_c00150{width:1.799145pt;}
._7_c00150{width:3.428526pt;}
._2_c00150{width:5.317317pt;}
._1_c00150{width:6.245179pt;}
._e_c00150{width:7.182845pt;}
._9_c00150{width:8.505186pt;}
._6_c00150{width:9.914730pt;}
._8_c00150{width:10.988291pt;}
._b_c00150{width:12.082001pt;}
._a_c00150{width:12.979123pt;}
._3_c00150{width:15.553460pt;}
._4_c00150{width:17.799985pt;}
._d_c00150{width:35.142028pt;}
._c_c00150{width:44.187498pt;}
.fs1_c00150{font-size:61.883325pt;}
.fs0_c00150{font-size:63.999997pt;}
.fs2_c00150{font-size:66.113533pt;}
.y0_c00150{bottom:0.000000pt;}
.y1_c00150{bottom:0.000007pt;}
.y1e_c00150{bottom:26.134367pt;}
.y17_c00150{bottom:26.976047pt;}
.y25_c00150{bottom:129.882011pt;}
.y24_c00150{bottom:156.882009pt;}
.y23_c00150{bottom:183.882008pt;}
.y22_c00150{bottom:210.882007pt;}
.y21_c00150{bottom:237.882006pt;}
.y20_c00150{bottom:264.882005pt;}
.y1f_c00150{bottom:288.878516pt;}
.y15_c00150{bottom:338.476587pt;}
.y14_c00150{bottom:365.476586pt;}
.y13_c00150{bottom:392.476585pt;}
.y12_c00150{bottom:419.476584pt;}
.y11_c00150{bottom:446.476583pt;}
.y10_c00150{bottom:473.476582pt;}
.yf_c00150{bottom:500.476581pt;}
.ye_c00150{bottom:527.476580pt;}
.yd_c00150{bottom:554.476578pt;}
.yc_c00150{bottom:581.476577pt;}
.yb_c00150{bottom:608.476576pt;}
.ya_c00150{bottom:635.476575pt;}
.y9_c00150{bottom:662.476574pt;}
.y8_c00150{bottom:689.476573pt;}
.y7_c00150{bottom:716.476572pt;}
.y6_c00150{bottom:743.476571pt;}
.y5_c00150{bottom:770.476569pt;}
.y4_c00150{bottom:797.476568pt;}
.y3_c00150{bottom:824.476567pt;}
.y2_c00150{bottom:851.476566pt;}
.y16_c00150{bottom:881.629026pt;}
.y1d_c00150{bottom:931.227100pt;}
.y1c_c00150{bottom:958.227099pt;}
.y1b_c00150{bottom:985.227098pt;}
.y1a_c00150{bottom:1012.227097pt;}
.y19_c00150{bottom:1039.227096pt;}
.y18_c00150{bottom:1065.945738pt;}
.h5_c00150{height:44.871454pt;}
.h4_c00150{height:49.031248pt;}
.h6_c00150{height:50.650455pt;}
.h3_c00150{height:59.593748pt;}
.h2_c00150{height:1159.999952pt;}
.h0_c00150{height:1159.999959pt;}
.h1_c00150{height:1160.000000pt;}
.w2_c00150{width:830.999965pt;}
.w0_c00150{width:831.000000pt;}
.w1_c00150{width:831.333333pt;}
.x0_c00150{left:0.000000pt;}
.x1_c00150{left:78.549549pt;}
.x2_c00150{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:0.734863;font-style:normal;font-weight:normal;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_e30817e1ee1a34cfdaf1e3e0.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_fca6bf8e707035a6ffc9bd78.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00151;src:url('chunks/assets/font_fe6d6cd40839f4442e603743.woff2')format("woff");}.ff4_c00151{font-family:ff4_c00151;line-height:1.005371;font-style:normal;font-weight: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_c00151;src:url('chunks/assets/font_73ad054d81bf5a3e6fb62363.woff2')format("woff");}.ff5_c00151{font-family:ff5_c00151;line-height:1.000000;font-style:normal;font-weight: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_c00151;src:url('chunks/assets/font_4d6dfc09c1249a0ba64cc04e.woff2')format("woff");}.ff6_c00151{font-family:ff6_c00151;line-height:1.171387;font-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_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);}
.v0_c00151{vertical-align:0.000000px;}
.ls0_c00151{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00151{word-spacing:-0.055755px;}
.ws1_c00151{word-spacing:0.000000px;}
._1_c00151{width:5.397788px;}
._0_c00151{width:21.401985px;}
._2_c00151{width:24.360053px;}
._3_c00151{width:34.178875px;}
.fc4_c00151{color:transparent;}
.fc2_c00151{color:rgb(67,91,56);}
.fc3_c00151{color:rgb(255,255,255);}
.fc1_c00151{color:rgb(0,0,0);}
.fc0_c00151{color:rgb(128,128,128);}
.fs2_c00151{font-size:55.754999px;}
.fs0_c00151{font-size:69.618741px;}
.fs1_c00151{font-size:71.999997px;}
.y0_c00151{bottom:0.000000px;}
.y1_c00151{bottom:0.000008px;}
.y3_c00151{bottom:29.395367px;}
.y2_c00151{bottom:30.347873px;}
.ya_c00151{bottom:721.126550px;}
.y9_c00151{bottom:1017.692799px;}
.y8_c00151{bottom:1048.067798px;}
.y7_c00151{bottom:1078.442797px;}
.y6_c00151{bottom:1108.817795px;}
.y5_c00151{bottom:1139.192794px;}
.y4_c00151{bottom:1177.892793px;}
.h3_c00151{height:50.480386px;}
.h6_c00151{height:51.916398px;}
.h5_c00151{height:55.160154px;}
.h4_c00151{height:67.042966px;}
.h2_c00151{height:1304.999946px;}
.h0_c00151{height:1304.999953px;}
.h1_c00151{height:1305.000000px;}
.w2_c00151{width:934.874961px;}
.w0_c00151{width:934.875000px;}
.w1_c00151{width:935.250000px;}
.x0_c00151{left:0.000000px;}
.x2_c00151{left:87.902647px;}
.x1_c00151{left:452.782029px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ws0_c00151{word-spacing:-0.049560pt;}
.ws1_c00151{word-spacing:0.000000pt;}
._1_c00151{width:4.798034pt;}
._0_c00151{width:19.023987pt;}
._2_c00151{width:21.653380pt;}
._3_c00151{width:30.381222pt;}
.fs2_c00151{font-size:49.559999pt;}
.fs0_c00151{font-size:61.883325pt;}
.fs1_c00151{font-size:63.999997pt;}
.y0_c00151{bottom:0.000000pt;}
.y1_c00151{bottom:0.000007pt;}
.y3_c00151{bottom:26.129215pt;}
.y2_c00151{bottom:26.975887pt;}
.ya_c00151{bottom:641.001378pt;}
.y9_c00151{bottom:904.615822pt;}
.y8_c00151{bottom:931.615820pt;}
.y7_c00151{bottom:958.615819pt;}
.y6_c00151{bottom:985.615818pt;}
.y5_c00151{bottom:1012.615817pt;}
.y4_c00151{bottom:1047.015816pt;}
.h3_c00151{height:44.871454pt;}
.h6_c00151{height:46.147909pt;}
.h5_c00151{height:49.031248pt;}
.h4_c00151{height:59.593748pt;}
.h2_c00151{height:1159.999952pt;}
.h0_c00151{height:1159.999959pt;}
.h1_c00151{height:1160.000000pt;}
.w2_c00151{width:830.999965pt;}
.w0_c00151{width:831.000000pt;}
.w1_c00151{width:831.333333pt;}
.x0_c00151{left:0.000000pt;}
.x2_c00151{left:78.135686pt;}
.x1_c00151{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70a14bbf3a3676a985b5426b.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.171387;font-style:normal;font-weight:normal;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_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.006348;font-style:normal;font-weight:normal;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_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00152;src:url('chunks/assets/font_718ad438159114c494852653.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.171387;font-style:normal;font-weight: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_c00152;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:0.734863;font-style:normal;font-weight: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_c00152;src:url('chunks/assets/font_a1a5557f0a8f30d887a48c30.woff2')format("woff");}.ff6_c00152{font-family:ff6_c00152;line-height:1.000000;font-style:normal;font-weight: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_c00152;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff7_c00152{font-family:ff7_c00152;line-height:0.734863;font-style:normal;font-weight: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_c00152;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff8_c00152{font-family:ff8_c00152;line-height:0.769531;font-style:normal;font-weight: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_c00152;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff9_c00152{font-family:ff9_c00152;line-height:0.743000;font-style:normal;font-weight: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_c00152;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00152{font-family:ffa_c00152;line-height:0.940000;font-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_c00152{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00152{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00152{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00152{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00152{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00152{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00152{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00152{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00152{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00152{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00152{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00152{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00152{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00152{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00152{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00152{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00152{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00152{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00152{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00152{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00152{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00152{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00152{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00152{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00152{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00152{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00152{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00152{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00152{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00152{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00152{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00152{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00152{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00152{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00152{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00152{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00152{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00152{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00152{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00152{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00152{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00152{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00152{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00152{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00152{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00152{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00152{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00152{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00152{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00152{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00152{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00152{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00152{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00152{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00152{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00152{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00152{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00152{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00152{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00152{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00152{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00152{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00152{vertical-align:0.000000px;}
.ls0_c00152{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00152{word-spacing:-41.689573px;}
.ws2_c00152{word-spacing:-15.171263px;}
.ws0_c00152{word-spacing:-0.089985px;}
.ws1_c00152{word-spacing:-0.055755px;}
.ws5_c00152{word-spacing:0.000000px;}
.ws3_c00152{word-spacing:281.638789px;}
._3_c00152{width:4.189426px;}
._2_c00152{width:6.338903px;}
._0_c00152{width:10.526756px;}
._1_c00152{width:26.882789px;}
.fc5_c00152{color:transparent;}
.fc4_c00152{color:rgb(9,71,81);}
.fc1_c00152{color:rgb(67,91,56);}
.fc3_c00152{color:rgb(128,128,128);}
.fc2_c00152{color:rgb(255,255,255);}
.fc0_c00152{color:rgb(0,0,0);}
.fs4_c00152{font-size:39.757786px;}
.fsf_c00152{font-size:41.999830px;}
.fs3_c00152{font-size:42.000118px;}
.fsc_c00152{font-size:47.368230px;}
.fs9_c00152{font-size:47.368231px;}
.fsd_c00152{font-size:47.368232px;}
.fsa_c00152{font-size:47.368233px;}
.fsb_c00152{font-size:47.368235px;}
.fs8_c00152{font-size:51.661596px;}
.fs7_c00152{font-size:55.754999px;}
.fs10_c00152{font-size:59.984997px;}
.fs5_c00152{font-size:69.618741px;}
.fs0_c00152{font-size:71.999997px;}
.fs1_c00152{font-size:74.424240px;}
.fse_c00152{font-size:77.011488px;}
.fs2_c00152{font-size:89.985250px;}
.fs6_c00152{font-size:95.984996px;}
.y0_c00152{bottom:0.000000px;}
.y1_c00152{bottom:0.000008px;}
.yf_c00152{bottom:29.401163px;}
.yc_c00152{bottom:30.348053px;}
.y6_c00152{bottom:177.774617px;}
.y5_c00152{bottom:208.149615px;}
.y4_c00152{bottom:238.524614px;}
.y3_c00152{bottom:268.899613px;}
.y2_c00152{bottom:299.274612px;}
.y7_c00152{bottom:340.353374px;}
.y10_c00152{bottom:401.525233px;}
.y3c_c00152{bottom:486.888550px;}
.y1e_c00152{bottom:493.328193px;}
.y32_c00152{bottom:493.343399px;}
.y1d_c00152{bottom:493.853709px;}
.y33_c00152{bottom:493.873421px;}
.y4a_c00152{bottom:493.959311px;}
.y31_c00152{bottom:494.588120px;}
.y4b_c00152{bottom:494.792564px;}
.y49_c00152{bottom:494.812830px;}
.y1c_c00152{bottom:494.919675px;}
.y30_c00152{bottom:495.839509px;}
.y48_c00152{bottom:495.847693px;}
.y1b_c00152{bottom:495.993006px;}
.y34_c00152{bottom:496.289992px;}
.y1f_c00152{bottom:496.353473px;}
.y4c_c00152{bottom:496.974167px;}
.y2f_c00152{bottom:497.484380px;}
.y1a_c00152{bottom:497.644566px;}
.y47_c00152{bottom:498.050345px;}
.y4d_c00152{bottom:498.364816px;}
.y2e_c00152{bottom:499.172711px;}
.y19_c00152{bottom:499.338107px;}
.y4e_c00152{bottom:500.063439px;}
.y20_c00152{bottom:500.630691px;}
.y2d_c00152{bottom:501.037625px;}
.y18_c00152{bottom:501.208280px;}
.y35_c00152{bottom:501.390523px;}
.y46_c00152{bottom:501.841887px;}
.y4f_c00152{bottom:502.505484px;}
.y21_c00152{bottom:503.149521px;}
.y50_c00152{bottom:504.764625px;}
.y36_c00152{bottom:505.019047px;}
.y2c_c00152{bottom:505.692124px;}
.y17_c00152{bottom:505.871886px;}
.y45_c00152{bottom:507.310818px;}
.y51_c00152{bottom:508.033427px;}
.y22_c00152{bottom:509.101920px;}
.y37_c00152{bottom:510.652700px;}
.y44_c00152{bottom:511.777229px;}
.y2b_c00152{bottom:512.093421px;}
.y16_c00152{bottom:512.281650px;}
.y23_c00152{bottom:513.850725px;}
.y52_c00152{bottom:516.430791px;}
.y38_c00152{bottom:517.310242px;}
.y43_c00152{bottom:518.201920px;}
.y2a_c00152{bottom:519.400744px;}
.y15_c00152{bottom:519.490765px;}
.y42_c00152{bottom:522.772118px;}
.y14_c00152{bottom:522.949612px;}
.y53_c00152{bottom:524.479585px;}
.y24_c00152{bottom:525.634639px;}
.y29_c00152{bottom:526.562252px;}
.y13_c00152{bottom:528.959751px;}
.y39_c00152{bottom:529.273374px;}
.y41_c00152{bottom:530.544173px;}
.y28_c00152{bottom:531.331731px;}
.y3b_c00152{bottom:533.268367px;}
.y3f_c00152{bottom:533.962015px;}
.y54_c00152{bottom:534.281911px;}
.y40_c00152{bottom:534.438127px;}
.y12_c00152{bottom:536.219342px;}
.y27_c00152{bottom:537.503874px;}
.y25_c00152{bottom:537.875309px;}
.y3a_c00152{bottom:538.238862px;}
.y3d_c00152{bottom:539.974832px;}
.y26_c00152{bottom:544.567530px;}
.y11_c00152{bottom:545.754118px;}
.y3e_c00152{bottom:577.436970px;}
.ye_c00152{bottom:639.092421px;}
.y55_c00152{bottom:1021.439841px;}
.yb_c00152{bottom:1128.788391px;}
.y9_c00152{bottom:1133.738586px;}
.y8_c00152{bottom:1147.738626px;}
.yd_c00152{bottom:1153.262238px;}
.ya_c00152{bottom:1171.082869px;}
.h11_c00152{height:35.988753px;}
.h12_c00152{height:35.988755px;}
.h13_c00152{height:35.988756px;}
.h7_c00152{height:37.020556px;}
.hb_c00152{height:37.459702px;}
.h15_c00152{height:39.108240px;}
.h6_c00152{height:39.108509px;}
.hf_c00152{height:44.107038px;}
.hc_c00152{height:44.107039px;}
.h10_c00152{height:44.107040px;}
.hd_c00152{height:44.107042px;}
.he_c00152{height:44.107043px;}
.h16_c00152{height:45.588598px;}
.h8_c00152{height:50.480386px;}
.ha_c00152{height:51.916398px;}
.h14_c00152{height:56.295398px;}
.h4_c00152{height:57.017399px;}
.h3_c00152{height:67.042966px;}
.h5_c00152{height:68.367700px;}
.h9_c00152{height:89.376654px;}
.h2_c00152{height:1304.999946px;}
.h0_c00152{height:1304.999953px;}
.h1_c00152{height:1305.000000px;}
.w2_c00152{width:934.874961px;}
.w0_c00152{width:934.875000px;}
.w1_c00152{width:935.250000px;}
.x0_c00152{left:0.000000px;}
.x1_c00152{left:89.487450px;}
.x2_c00152{left:90.844844px;}
.x3_c00152{left:107.230262px;}
.x4_c00152{left:108.827167px;}
.x42_c00152{left:130.690629px;}
.x1a_c00152{left:134.974838px;}
.x19_c00152{left:136.648279px;}
.x1b_c00152{left:140.021272px;}
.x1c_c00152{left:144.871714px;}
.x1d_c00152{left:150.237526px;}
.x1e_c00152{left:152.990336px;}
.x1f_c00152{left:156.000220px;}
.x20_c00152{left:159.847713px;}
.x2a_c00152{left:161.443962px;}
.x21_c00152{left:163.301377px;}
.x22_c00152{left:171.586339px;}
.x23_c00152{left:179.855997px;}
.x24_c00152{left:188.287487px;}
.x25_c00152{left:196.673970px;}
.x26_c00152{left:200.841336px;}
.x27_c00152{left:205.399483px;}
.x28_c00152{left:209.208896px;}
.x29_c00152{left:211.795693px;}
.xa_c00152{left:230.398389px;}
.x9_c00152{left:232.534609px;}
.xb_c00152{left:235.623324px;}
.xc_c00152{left:240.462566px;}
.xd_c00152{left:245.820252px;}
.xe_c00152{left:248.569815px;}
.xf_c00152{left:251.576732px;}
.x10_c00152{left:255.421336px;}
.x2e_c00152{left:256.622047px;}
.x11_c00152{left:258.708042px;}
.x12_c00152{left:263.145298px;}
.x13_c00152{left:271.763354px;}
.x14_c00152{left:283.603990px;}
.x15_c00152{left:291.041304px;}
.x5_c00152{left:295.177092px;}
.x16_c00152{left:299.775542px;}
.x17_c00152{left:303.165014px;}
.x18_c00152{left:307.176807px;}
.x2f_c00152{left:327.047435px;}
.x30_c00152{left:328.264734px;}
.x31_c00152{left:329.685747px;}
.x32_c00152{left:333.082971px;}
.x33_c00152{left:336.307511px;}
.x34_c00152{left:342.189757px;}
.x35_c00152{left:348.376740px;}
.x36_c00152{left:354.069743px;}
.x37_c00152{left:357.479743px;}
.x38_c00152{left:365.386869px;}
.x39_c00152{left:373.375785px;}
.x3a_c00152{left:380.135498px;}
.x3b_c00152{left:383.155707px;}
.x3c_c00152{left:386.159935px;}
.x3d_c00152{left:389.557910px;}
.x3e_c00152{left:392.174988px;}
.x3f_c00152{left:395.489533px;}
.x40_c00152{left:400.664851px;}
.x41_c00152{left:403.469600px;}
.x6_c00152{left:452.786554px;}
.x2c_c00152{left:464.896169px;}
.x7_c00152{left:681.844688px;}
.x8_c00152{left:697.320842px;}
.x2d_c00152{left:733.540639px;}
.x2b_c00152{left:757.088990px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ws4_c00152{word-spacing:-37.057398pt;}
.ws2_c00152{word-spacing:-13.485567pt;}
.ws0_c00152{word-spacing:-0.079987pt;}
.ws1_c00152{word-spacing:-0.049560pt;}
.ws5_c00152{word-spacing:0.000000pt;}
.ws3_c00152{word-spacing:250.345590pt;}
._3_c00152{width:3.723934pt;}
._2_c00152{width:5.634581pt;}
._0_c00152{width:9.357116pt;}
._1_c00152{width:23.895813pt;}
.fs4_c00152{font-size:35.340254pt;}
.fsf_c00152{font-size:37.333182pt;}
.fs3_c00152{font-size:37.333438pt;}
.fsc_c00152{font-size:42.105093pt;}
.fs9_c00152{font-size:42.105094pt;}
.fsd_c00152{font-size:42.105095pt;}
.fsa_c00152{font-size:42.105096pt;}
.fsb_c00152{font-size:42.105098pt;}
.fs8_c00152{font-size:45.921418pt;}
.fs7_c00152{font-size:49.559999pt;}
.fs10_c00152{font-size:53.319997pt;}
.fs5_c00152{font-size:61.883325pt;}
.fs0_c00152{font-size:63.999997pt;}
.fs1_c00152{font-size:66.154880pt;}
.fse_c00152{font-size:68.454656pt;}
.fs2_c00152{font-size:79.986889pt;}
.fs6_c00152{font-size:85.319996pt;}
.y0_c00152{bottom:0.000000pt;}
.y1_c00152{bottom:0.000007pt;}
.yf_c00152{bottom:26.134367pt;}
.yc_c00152{bottom:26.976047pt;}
.y6_c00152{bottom:158.021881pt;}
.y5_c00152{bottom:185.021880pt;}
.y4_c00152{bottom:212.021879pt;}
.y3_c00152{bottom:239.021878pt;}
.y2_c00152{bottom:266.021877pt;}
.y7_c00152{bottom:302.536333pt;}
.y10_c00152{bottom:356.911319pt;}
.y3c_c00152{bottom:432.789822pt;}
.y1e_c00152{bottom:438.513950pt;}
.y32_c00152{bottom:438.527466pt;}
.y1d_c00152{bottom:438.981074pt;}
.y33_c00152{bottom:438.998596pt;}
.y4a_c00152{bottom:439.074943pt;}
.y31_c00152{bottom:439.633885pt;}
.y4b_c00152{bottom:439.815613pt;}
.y49_c00152{bottom:439.833627pt;}
.y1c_c00152{bottom:439.928600pt;}
.y30_c00152{bottom:440.746230pt;}
.y48_c00152{bottom:440.753505pt;}
.y1b_c00152{bottom:440.882672pt;}
.y34_c00152{bottom:441.146660pt;}
.y1f_c00152{bottom:441.203087pt;}
.y4c_c00152{bottom:441.754815pt;}
.y2f_c00152{bottom:442.208338pt;}
.y1a_c00152{bottom:442.350726pt;}
.y47_c00152{bottom:442.711417pt;}
.y4d_c00152{bottom:442.990948pt;}
.y2e_c00152{bottom:443.709077pt;}
.y19_c00152{bottom:443.856095pt;}
.y4e_c00152{bottom:444.500834pt;}
.y20_c00152{bottom:445.005059pt;}
.y2d_c00152{bottom:445.366778pt;}
.y18_c00152{bottom:445.518471pt;}
.y35_c00152{bottom:445.680465pt;}
.y46_c00152{bottom:446.081677pt;}
.y4f_c00152{bottom:446.671541pt;}
.y21_c00152{bottom:447.244019pt;}
.y50_c00152{bottom:448.679667pt;}
.y36_c00152{bottom:448.905819pt;}
.y2c_c00152{bottom:449.504110pt;}
.y17_c00152{bottom:449.663899pt;}
.y45_c00152{bottom:450.942950pt;}
.y51_c00152{bottom:451.585269pt;}
.y22_c00152{bottom:452.535040pt;}
.y37_c00152{bottom:453.913511pt;}
.y44_c00152{bottom:454.913093pt;}
.y2b_c00152{bottom:455.194152pt;}
.y16_c00152{bottom:455.361467pt;}
.y23_c00152{bottom:456.756200pt;}
.y52_c00152{bottom:459.049592pt;}
.y38_c00152{bottom:459.831327pt;}
.y43_c00152{bottom:460.623928pt;}
.y2a_c00152{bottom:461.689550pt;}
.y15_c00152{bottom:461.769569pt;}
.y42_c00152{bottom:464.686327pt;}
.y14_c00152{bottom:464.844100pt;}
.y53_c00152{bottom:466.204075pt;}
.y24_c00152{bottom:467.230790pt;}
.y29_c00152{bottom:468.055335pt;}
.y13_c00152{bottom:470.186445pt;}
.y39_c00152{bottom:470.465221pt;}
.y41_c00152{bottom:471.594820pt;}
.y28_c00152{bottom:472.294872pt;}
.y3b_c00152{bottom:474.016326pt;}
.y3f_c00152{bottom:474.632902pt;}
.y54_c00152{bottom:474.917254pt;}
.y40_c00152{bottom:475.056113pt;}
.y12_c00152{bottom:476.639415pt;}
.y27_c00152{bottom:477.781221pt;}
.y25_c00152{bottom:478.111386pt;}
.y3a_c00152{bottom:478.434544pt;}
.y3d_c00152{bottom:479.977628pt;}
.y26_c00152{bottom:484.060027pt;}
.y11_c00152{bottom:485.114772pt;}
.y3e_c00152{bottom:513.277307pt;}
.ye_c00152{bottom:568.082152pt;}
.y55_c00152{bottom:907.946525pt;}
.yb_c00152{bottom:1003.367459pt;}
.y9_c00152{bottom:1007.767632pt;}
.y8_c00152{bottom:1020.212112pt;}
.yd_c00152{bottom:1025.121989pt;}
.ya_c00152{bottom:1040.962550pt;}
.h11_c00152{height:31.990003pt;}
.h12_c00152{height:31.990004pt;}
.h13_c00152{height:31.990006pt;}
.h7_c00152{height:32.907161pt;}
.hb_c00152{height:33.297513pt;}
.h15_c00152{height:34.762880pt;}
.h6_c00152{height:34.763119pt;}
.hf_c00152{height:39.206256pt;}
.hc_c00152{height:39.206257pt;}
.h10_c00152{height:39.206258pt;}
.hd_c00152{height:39.206259pt;}
.he_c00152{height:39.206261pt;}
.h16_c00152{height:40.523198pt;}
.h8_c00152{height:44.871454pt;}
.ha_c00152{height:46.147909pt;}
.h14_c00152{height:50.040354pt;}
.h4_c00152{height:50.682132pt;}
.h3_c00152{height:59.593748pt;}
.h5_c00152{height:60.771289pt;}
.h9_c00152{height:79.445915pt;}
.h2_c00152{height:1159.999952pt;}
.h0_c00152{height:1159.999959pt;}
.h1_c00152{height:1160.000000pt;}
.w2_c00152{width:830.999965pt;}
.w0_c00152{width:831.000000pt;}
.w1_c00152{width:831.333333pt;}
.x0_c00152{left:0.000000pt;}
.x1_c00152{left:79.544400pt;}
.x2_c00152{left:80.750973pt;}
.x3_c00152{left:95.315788pt;}
.x4_c00152{left:96.735260pt;}
.x42_c00152{left:116.169448pt;}
.x1a_c00152{left:119.977634pt;}
.x19_c00152{left:121.465137pt;}
.x1b_c00152{left:124.463353pt;}
.x1c_c00152{left:128.774857pt;}
.x1d_c00152{left:133.544468pt;}
.x1e_c00152{left:135.991410pt;}
.x1f_c00152{left:138.666862pt;}
.x20_c00152{left:142.086856pt;}
.x2a_c00152{left:143.505744pt;}
.x21_c00152{left:145.156780pt;}
.x22_c00152{left:152.521190pt;}
.x23_c00152{left:159.871997pt;}
.x24_c00152{left:167.366655pt;}
.x25_c00152{left:174.821307pt;}
.x26_c00152{left:178.525632pt;}
.x27_c00152{left:182.577318pt;}
.x28_c00152{left:185.963463pt;}
.x29_c00152{left:188.262839pt;}
.xa_c00152{left:204.798568pt;}
.x9_c00152{left:206.697430pt;}
.xb_c00152{left:209.442955pt;}
.xc_c00152{left:213.744503pt;}
.xd_c00152{left:218.506891pt;}
.xe_c00152{left:220.950947pt;}
.xf_c00152{left:223.623762pt;}
.x10_c00152{left:227.041187pt;}
.x2e_c00152{left:228.108486pt;}
.x11_c00152{left:229.962704pt;}
.x12_c00152{left:233.906932pt;}
.x13_c00152{left:241.567426pt;}
.x14_c00152{left:252.092435pt;}
.x15_c00152{left:258.703382pt;}
.x5_c00152{left:262.379637pt;}
.x16_c00152{left:266.467148pt;}
.x17_c00152{left:269.480012pt;}
.x18_c00152{left:273.046051pt;}
.x2f_c00152{left:290.708831pt;}
.x30_c00152{left:291.790874pt;}
.x31_c00152{left:293.053997pt;}
.x32_c00152{left:296.073752pt;}
.x33_c00152{left:298.940009pt;}
.x34_c00152{left:304.168673pt;}
.x35_c00152{left:309.668213pt;}
.x36_c00152{left:314.728661pt;}
.x37_c00152{left:317.759772pt;}
.x38_c00152{left:324.788328pt;}
.x39_c00152{left:331.889587pt;}
.x3a_c00152{left:337.898220pt;}
.x3b_c00152{left:340.582851pt;}
.x3c_c00152{left:343.253275pt;}
.x3d_c00152{left:346.273697pt;}
.x3e_c00152{left:348.599989pt;}
.x3f_c00152{left:351.546252pt;}
.x40_c00152{left:356.146534pt;}
.x41_c00152{left:358.639645pt;}
.x6_c00152{left:402.476937pt;}
.x2c_c00152{left:413.241039pt;}
.x7_c00152{left:606.084167pt;}
.x8_c00152{left:619.840748pt;}
.x2d_c00152{left:652.036124pt;}
.x2b_c00152{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e9ebfe2eb1172539bec659d.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.171387;font-style:normal;font-weight:normal;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_4cbe7d00bcc615d2a6c438e2.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_af799c5f19fdd39a838179a1.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:1.005371;font-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_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);}
.v0_c00153{vertical-align:0.000000px;}
.ls0_c00153{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00153{word-spacing:0.000000px;}
._b_c00153{width:1.050293px;}
._0_c00153{width:2.114732px;}
._2_c00153{width:3.139188px;}
._6_c00153{width:4.404075px;}
._8_c00153{width:5.731290px;}
._7_c00153{width:6.790166px;}
._5_c00153{width:13.682785px;}
._1_c00153{width:14.759170px;}
._3_c00153{width:16.095657px;}
._c_c00153{width:17.520583px;}
._9_c00153{width:19.813981px;}
._a_c00153{width:23.350137px;}
._e_c00153{width:25.316413px;}
._4_c00153{width:27.031242px;}
._f_c00153{width:31.183592px;}
._d_c00153{width:39.972654px;}
.fc3_c00153{color:transparent;}
.fc1_c00153{color:rgb(67,91,56);}
.fc2_c00153{color:rgb(128,128,128);}
.fc0_c00153{color:rgb(0,0,0);}
.fs1_c00153{font-size:69.618741px;}
.fs0_c00153{font-size:71.999997px;}
.y0_c00153{bottom:0.000000px;}
.y1_c00153{bottom:0.000008px;}
.y23_c00153{bottom:29.401163px;}
.y15_c00153{bottom:30.348053px;}
.y1b_c00153{bottom:171.619085px;}
.y1a_c00153{bottom:201.994084px;}
.y19_c00153{bottom:232.369082px;}
.y18_c00153{bottom:262.744081px;}
.y17_c00153{bottom:293.119080px;}
.y16_c00153{bottom:330.685294px;}
.y13_c00153{bottom:391.885295px;}
.y12_c00153{bottom:422.260294px;}
.y11_c00153{bottom:452.635293px;}
.y10_c00153{bottom:483.010291px;}
.yf_c00153{bottom:513.385290px;}
.ye_c00153{bottom:543.760289px;}
.yd_c00153{bottom:574.135288px;}
.yc_c00153{bottom:604.510286px;}
.yb_c00153{bottom:634.885285px;}
.ya_c00153{bottom:665.260284px;}
.y9_c00153{bottom:695.635283px;}
.y8_c00153{bottom:726.010281px;}
.y7_c00153{bottom:756.385280px;}
.y6_c00153{bottom:786.760279px;}
.y5_c00153{bottom:817.135278px;}
.y4_c00153{bottom:847.510276px;}
.y3_c00153{bottom:877.885275px;}
.y2_c00153{bottom:908.260274px;}
.y14_c00153{bottom:945.835272px;}
.y22_c00153{bottom:1009.863941px;}
.y21_c00153{bottom:1040.238939px;}
.y20_c00153{bottom:1070.613938px;}
.y1f_c00153{bottom:1100.988937px;}
.y1e_c00153{bottom:1131.363936px;}
.y1d_c00153{bottom:1161.738934px;}
.y1c_c00153{bottom:1199.772371px;}
.h5_c00153{height:50.480386px;}
.h4_c00153{height:55.160154px;}
.h3_c00153{height:67.042966px;}
.h2_c00153{height:1304.999946px;}
.h0_c00153{height:1304.999953px;}
.h1_c00153{height:1305.000000px;}
.w2_c00153{width:934.874961px;}
.w0_c00153{width:934.875000px;}
.w1_c00153{width:935.250000px;}
.x0_c00153{left:0.000000px;}
.x1_c00153{left:86.804348px;}
.x3_c00153{left:87.902647px;}
.x2_c00153{left:452.782029px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ws0_c00153{word-spacing:0.000000pt;}
._b_c00153{width:0.933593pt;}
._0_c00153{width:1.879762pt;}
._2_c00153{width:2.790389pt;}
._6_c00153{width:3.914734pt;}
._8_c00153{width:5.094480pt;}
._7_c00153{width:6.035703pt;}
._5_c00153{width:12.162475pt;}
._1_c00153{width:13.119262pt;}
._3_c00153{width:14.307251pt;}
._c_c00153{width:15.573852pt;}
._9_c00153{width:17.612427pt;}
._a_c00153{width:20.755677pt;}
._e_c00153{width:22.503478pt;}
._4_c00153{width:24.027771pt;}
._f_c00153{width:27.718748pt;}
._d_c00153{width:35.531248pt;}
.fs1_c00153{font-size:61.883325pt;}
.fs0_c00153{font-size:63.999997pt;}
.y0_c00153{bottom:0.000000pt;}
.y1_c00153{bottom:0.000007pt;}
.y23_c00153{bottom:26.134367pt;}
.y15_c00153{bottom:26.976047pt;}
.y1b_c00153{bottom:152.550298pt;}
.y1a_c00153{bottom:179.550297pt;}
.y19_c00153{bottom:206.550295pt;}
.y18_c00153{bottom:233.550294pt;}
.y17_c00153{bottom:260.550293pt;}
.y16_c00153{bottom:293.942484pt;}
.y13_c00153{bottom:348.342485pt;}
.y12_c00153{bottom:375.342484pt;}
.y11_c00153{bottom:402.342482pt;}
.y10_c00153{bottom:429.342481pt;}
.yf_c00153{bottom:456.342480pt;}
.ye_c00153{bottom:483.342479pt;}
.yd_c00153{bottom:510.342478pt;}
.yc_c00153{bottom:537.342477pt;}
.yb_c00153{bottom:564.342476pt;}
.ya_c00153{bottom:591.342475pt;}
.y9_c00153{bottom:618.342473pt;}
.y8_c00153{bottom:645.342472pt;}
.y7_c00153{bottom:672.342471pt;}
.y6_c00153{bottom:699.342470pt;}
.y5_c00153{bottom:726.342469pt;}
.y4_c00153{bottom:753.342468pt;}
.y3_c00153{bottom:780.342467pt;}
.y2_c00153{bottom:807.342466pt;}
.y14_c00153{bottom:840.742464pt;}
.y22_c00153{bottom:897.656836pt;}
.y21_c00153{bottom:924.656835pt;}
.y20_c00153{bottom:951.656834pt;}
.y1f_c00153{bottom:978.656833pt;}
.y1e_c00153{bottom:1005.656832pt;}
.y1d_c00153{bottom:1032.656831pt;}
.y1c_c00153{bottom:1066.464330pt;}
.h5_c00153{height:44.871454pt;}
.h4_c00153{height:49.031248pt;}
.h3_c00153{height:59.593748pt;}
.h2_c00153{height:1159.999952pt;}
.h0_c00153{height:1159.999959pt;}
.h1_c00153{height:1160.000000pt;}
.w2_c00153{width:830.999965pt;}
.w0_c00153{width:831.000000pt;}
.w1_c00153{width:831.333333pt;}
.x0_c00153{left:0.000000pt;}
.x1_c00153{left:77.159421pt;}
.x3_c00153{left:78.135686pt;}
.x2_c00153{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:0.734863;font-style:normal;font-weight:normal;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_8696ebfd218292bfabb2c722.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.171387;font-style:normal;font-weight:normal;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_fca6bf8e707035a6ffc9bd78.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_6a379a7a420699f53da39dc6.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:1.005371;font-style:normal;font-weight: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_c00154;src:url('chunks/assets/font_73ad054d81bf5a3e6fb62363.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;line-height:1.000000;font-style:normal;font-weight: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_c00154;src:url('chunks/assets/font_3335dc1090679ff64f1650a1.woff2')format("woff");}.ff6_c00154{font-family:ff6_c00154;line-height:1.171387;font-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_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);}
.v0_c00154{vertical-align:0.000000px;}
.ls0_c00154{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00154{word-spacing:-0.055755px;}
.ws1_c00154{word-spacing:0.000000px;}
._5_c00154{width:4.615010px;}
._1_c00154{width:7.218702px;}
._3_c00154{width:8.537064px;}
._0_c00154{width:17.103514px;}
._2_c00154{width:26.419918px;}
._4_c00154{width:32.062500px;}
.fc4_c00154{color:transparent;}
.fc2_c00154{color:rgb(67,91,56);}
.fc3_c00154{color:rgb(255,255,255);}
.fc1_c00154{color:rgb(0,0,0);}
.fc0_c00154{color:rgb(128,128,128);}
.fs2_c00154{font-size:55.754999px;}
.fs0_c00154{font-size:69.618741px;}
.fs1_c00154{font-size:71.999997px;}
.y0_c00154{bottom:0.000000px;}
.y1_c00154{bottom:0.000008px;}
.y3_c00154{bottom:29.401163px;}
.y2_c00154{bottom:30.348053px;}
.yc_c00154{bottom:623.124802px;}
.yb_c00154{bottom:978.822380px;}
.ya_c00154{bottom:1009.197379px;}
.y9_c00154{bottom:1039.572378px;}
.y8_c00154{bottom:1069.947377px;}
.y7_c00154{bottom:1100.322375px;}
.y6_c00154{bottom:1130.697374px;}
.y5_c00154{bottom:1161.072373px;}
.y4_c00154{bottom:1199.772371px;}
.h3_c00154{height:50.480386px;}
.h6_c00154{height:51.916398px;}
.h5_c00154{height:55.160154px;}
.h4_c00154{height:67.042966px;}
.h2_c00154{height:1304.999946px;}
.h0_c00154{height:1304.999953px;}
.h1_c00154{height:1305.000000px;}
.w2_c00154{width:934.874961px;}
.w0_c00154{width:934.875000px;}
.w1_c00154{width:935.250000px;}
.x0_c00154{left:0.000000px;}
.x2_c00154{left:87.902647px;}
.x1_c00154{left:452.782029px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ws0_c00154{word-spacing:-0.049560pt;}
.ws1_c00154{word-spacing:0.000000pt;}
._5_c00154{width:4.102231pt;}
._1_c00154{width:6.416624pt;}
._3_c00154{width:7.588501pt;}
._0_c00154{width:15.203123pt;}
._2_c00154{width:23.484372pt;}
._4_c00154{width:28.500000pt;}
.fs2_c00154{font-size:49.559999pt;}
.fs0_c00154{font-size:61.883325pt;}
.fs1_c00154{font-size:63.999997pt;}
.y0_c00154{bottom:0.000000pt;}
.y1_c00154{bottom:0.000007pt;}
.y3_c00154{bottom:26.134367pt;}
.y2_c00154{bottom:26.976047pt;}
.yc_c00154{bottom:553.888713pt;}
.yb_c00154{bottom:870.064338pt;}
.ya_c00154{bottom:897.064337pt;}
.y9_c00154{bottom:924.064336pt;}
.y8_c00154{bottom:951.064335pt;}
.y7_c00154{bottom:978.064334pt;}
.y6_c00154{bottom:1005.064333pt;}
.y5_c00154{bottom:1032.064331pt;}
.y4_c00154{bottom:1066.464330pt;}
.h3_c00154{height:44.871454pt;}
.h6_c00154{height:46.147909pt;}
.h5_c00154{height:49.031248pt;}
.h4_c00154{height:59.593748pt;}
.h2_c00154{height:1159.999952pt;}
.h0_c00154{height:1159.999959pt;}
.h1_c00154{height:1160.000000pt;}
.w2_c00154{width:830.999965pt;}
.w0_c00154{width:831.000000pt;}
.w1_c00154{width:831.333333pt;}
.x0_c00154{left:0.000000pt;}
.x2_c00154{left:78.135686pt;}
.x1_c00154{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9ef9f0346239b325ae68da6.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.000000;font-style:normal;font-weight:normal;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_a53b2219dd0a0749565c772d.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.171387;font-style:normal;font-weight:normal;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_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00155;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff4_c00155{font-family:ff4_c00155;line-height:1.000000;font-style:normal;font-weight: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_c00155;src:url('chunks/assets/font_ec45a0fe79ae83fb9ad1bf2c.woff2')format("woff");}.ff5_c00155{font-family:ff5_c00155;line-height:1.171387;font-style:normal;font-weight: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_c00155;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff6_c00155{font-family:ff6_c00155;line-height:0.734863;font-style:normal;font-weight: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_c00155;src:url('chunks/assets/font_5bf6793dc2f2f81fcee04379.woff2')format("woff");}.ff7_c00155{font-family:ff7_c00155;line-height:1.000000;font-style:normal;font-weight: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_c00155;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00155{font-family:ff8_c00155;line-height:0.734863;font-style:normal;font-weight: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_c00155;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff9_c00155{font-family:ff9_c00155;line-height:0.769531;font-style:normal;font-weight: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_c00155;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ffa_c00155{font-family:ffa_c00155;line-height:0.743000;font-style:normal;font-weight: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_c00155;src:url('chunks/assets/font_d5ed718ffe46d1a34bfc9bd3.woff2')format("woff");}.ffb_c00155{font-family:ffb_c00155;line-height:0.940000;font-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_c00155{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00155{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00155{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00155{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00155{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00155{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00155{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00155{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00155{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00155{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00155{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00155{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00155{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00155{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00155{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00155{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00155{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00155{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00155{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00155{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00155{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00155{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00155{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00155{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00155{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00155{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00155{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00155{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00155{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00155{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00155{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00155{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00155{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00155{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00155{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00155{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00155{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00155{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00155{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00155{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00155{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00155{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00155{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00155{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00155{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00155{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00155{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00155{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00155{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00155{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00155{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00155{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00155{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00155{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00155{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00155{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00155{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00155{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00155{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00155{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00155{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00155{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00155{vertical-align:0.000000px;}
.ls0_c00155{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00155{word-spacing:-41.689573px;}
.ws2_c00155{word-spacing:-15.171263px;}
.ws0_c00155{word-spacing:-0.095970px;}
.ws1_c00155{word-spacing:-0.055755px;}
.ws5_c00155{word-spacing:0.000000px;}
.ws3_c00155{word-spacing:281.638789px;}
._1_c00155{width:1.923223px;}
._4_c00155{width:6.334506px;}
._2_c00155{width:7.369974px;}
._0_c00155{width:21.515623px;}
._3_c00155{width:34.728466px;}
.fc5_c00155{color:transparent;}
.fc4_c00155{color:rgb(9,71,81);}
.fc1_c00155{color:rgb(67,91,56);}
.fc3_c00155{color:rgb(128,128,128);}
.fc2_c00155{color:rgb(255,255,255);}
.fc0_c00155{color:rgb(0,0,0);}
.fs4_c00155{font-size:39.757786px;}
.fsf_c00155{font-size:41.999830px;}
.fs3_c00155{font-size:42.000118px;}
.fsc_c00155{font-size:47.368230px;}
.fs9_c00155{font-size:47.368231px;}
.fsd_c00155{font-size:47.368232px;}
.fsa_c00155{font-size:47.368233px;}
.fsb_c00155{font-size:47.368235px;}
.fs8_c00155{font-size:51.661596px;}
.fs7_c00155{font-size:55.754999px;}
.fs10_c00155{font-size:59.984997px;}
.fs5_c00155{font-size:69.618741px;}
.fs0_c00155{font-size:71.999997px;}
.fs1_c00155{font-size:74.424240px;}
.fse_c00155{font-size:77.011488px;}
.fs2_c00155{font-size:95.970270px;}
.fs6_c00155{font-size:95.984996px;}
.y0_c00155{bottom:0.000000px;}
.y1_c00155{bottom:0.000008px;}
.y10_c00155{bottom:29.401163px;}
.yd_c00155{bottom:30.348053px;}
.y7_c00155{bottom:147.399618px;}
.y6_c00155{bottom:177.774617px;}
.y5_c00155{bottom:208.149615px;}
.y4_c00155{bottom:238.524614px;}
.y3_c00155{bottom:268.899613px;}
.y2_c00155{bottom:299.274612px;}
.y8_c00155{bottom:340.353302px;}
.y11_c00155{bottom:401.525233px;}
.y3d_c00155{bottom:486.888370px;}
.y1f_c00155{bottom:493.328373px;}
.y33_c00155{bottom:493.343471px;}
.y1e_c00155{bottom:493.853637px;}
.y34_c00155{bottom:493.873313px;}
.y49_c00155{bottom:493.959419px;}
.y32_c00155{bottom:494.588120px;}
.y4a_c00155{bottom:494.792744px;}
.y48_c00155{bottom:494.812830px;}
.y1d_c00155{bottom:494.919783px;}
.y31_c00155{bottom:495.839401px;}
.y47_c00155{bottom:495.847621px;}
.y1c_c00155{bottom:495.993006px;}
.y35_c00155{bottom:496.289812px;}
.y20_c00155{bottom:496.353473px;}
.y4b_c00155{bottom:496.973987px;}
.y30_c00155{bottom:497.484272px;}
.y1b_c00155{bottom:497.644566px;}
.y46_c00155{bottom:498.050345px;}
.y4c_c00155{bottom:498.364888px;}
.y2f_c00155{bottom:499.172531px;}
.y1a_c00155{bottom:499.338107px;}
.y4d_c00155{bottom:500.063187px;}
.y21_c00155{bottom:500.630691px;}
.y2e_c00155{bottom:501.037769px;}
.y19_c00155{bottom:501.208172px;}
.y36_c00155{bottom:501.390631px;}
.y45_c00155{bottom:501.842067px;}
.y4e_c00155{bottom:502.505484px;}
.y22_c00155{bottom:503.149449px;}
.y4f_c00155{bottom:504.764445px;}
.y37_c00155{bottom:505.018795px;}
.y2d_c00155{bottom:505.692124px;}
.y18_c00155{bottom:505.871886px;}
.y44_c00155{bottom:507.310818px;}
.y50_c00155{bottom:508.033427px;}
.y23_c00155{bottom:509.101992px;}
.y38_c00155{bottom:510.652700px;}
.y43_c00155{bottom:511.777409px;}
.y2c_c00155{bottom:512.093493px;}
.y17_c00155{bottom:512.281758px;}
.y24_c00155{bottom:513.850725px;}
.y51_c00155{bottom:516.430683px;}
.y39_c00155{bottom:517.310350px;}
.y42_c00155{bottom:518.202172px;}
.y2b_c00155{bottom:519.400636px;}
.y16_c00155{bottom:519.490837px;}
.y41_c00155{bottom:522.772046px;}
.y15_c00155{bottom:522.949612px;}
.y52_c00155{bottom:524.479585px;}
.y25_c00155{bottom:525.634639px;}
.y2a_c00155{bottom:526.562252px;}
.y14_c00155{bottom:528.959931px;}
.y3a_c00155{bottom:529.273374px;}
.y40_c00155{bottom:530.544173px;}
.y29_c00155{bottom:531.331479px;}
.y3c_c00155{bottom:533.268115px;}
.y3e_c00155{bottom:533.961835px;}
.y53_c00155{bottom:534.281911px;}
.y3f_c00155{bottom:534.437983px;}
.y13_c00155{bottom:536.219342px;}
.y28_c00155{bottom:537.503802px;}
.y26_c00155{bottom:537.875201px;}
.y3b_c00155{bottom:538.238934px;}
.y27_c00155{bottom:544.567278px;}
.y12_c00155{bottom:545.754118px;}
.yf_c00155{bottom:639.092601px;}
.y54_c00155{bottom:1021.439863px;}
.yc_c00155{bottom:1128.788247px;}
.ya_c00155{bottom:1131.928465px;}
.y9_c00155{bottom:1146.803507px;}
.ye_c00155{bottom:1153.262281px;}
.yb_c00155{bottom:1171.082779px;}
.h11_c00155{height:35.988753px;}
.h12_c00155{height:35.988755px;}
.h13_c00155{height:35.988756px;}
.h7_c00155{height:37.020556px;}
.hb_c00155{height:37.459702px;}
.h15_c00155{height:39.108240px;}
.h6_c00155{height:39.108509px;}
.hf_c00155{height:44.107038px;}
.hc_c00155{height:44.107039px;}
.h10_c00155{height:44.107040px;}
.hd_c00155{height:44.107042px;}
.he_c00155{height:44.107043px;}
.h16_c00155{height:45.588598px;}
.h8_c00155{height:50.480386px;}
.ha_c00155{height:51.916398px;}
.h14_c00155{height:56.295398px;}
.h4_c00155{height:57.017399px;}
.h3_c00155{height:67.042966px;}
.h5_c00155{height:72.914912px;}
.h9_c00155{height:89.376654px;}
.h2_c00155{height:1304.999946px;}
.h0_c00155{height:1304.999953px;}
.h1_c00155{height:1305.000000px;}
.w2_c00155{width:934.874961px;}
.w0_c00155{width:934.875000px;}
.w1_c00155{width:935.250000px;}
.x0_c00155{left:0.000000px;}
.x1_c00155{left:89.487450px;}
.x2_c00155{left:90.844844px;}
.x3_c00155{left:107.230262px;}
.x4_c00155{left:108.827167px;}
.x40_c00155{left:130.690629px;}
.x1a_c00155{left:134.974838px;}
.x19_c00155{left:136.648279px;}
.x1b_c00155{left:140.021272px;}
.x1c_c00155{left:144.871714px;}
.x1d_c00155{left:150.237526px;}
.x1e_c00155{left:152.990336px;}
.x1f_c00155{left:156.000220px;}
.x20_c00155{left:159.847713px;}
.x2a_c00155{left:161.443962px;}
.x21_c00155{left:163.301377px;}
.x22_c00155{left:171.586339px;}
.x23_c00155{left:179.855997px;}
.x24_c00155{left:188.287487px;}
.x25_c00155{left:196.673970px;}
.x26_c00155{left:200.841336px;}
.x27_c00155{left:205.399483px;}
.x28_c00155{left:209.208896px;}
.x29_c00155{left:211.795693px;}
.xa_c00155{left:230.398389px;}
.x9_c00155{left:232.534609px;}
.xb_c00155{left:235.623324px;}
.xc_c00155{left:240.462566px;}
.xd_c00155{left:245.820252px;}
.xe_c00155{left:248.569815px;}
.xf_c00155{left:251.576732px;}
.x10_c00155{left:255.421336px;}
.x2c_c00155{left:256.622047px;}
.x11_c00155{left:258.708042px;}
.x12_c00155{left:263.145298px;}
.x13_c00155{left:271.763354px;}
.x14_c00155{left:283.603990px;}
.x15_c00155{left:291.041304px;}
.x5_c00155{left:295.177092px;}
.x16_c00155{left:299.775542px;}
.x17_c00155{left:303.165014px;}
.x18_c00155{left:307.176807px;}
.x2d_c00155{left:327.047435px;}
.x2e_c00155{left:328.264734px;}
.x2f_c00155{left:329.685747px;}
.x30_c00155{left:333.082971px;}
.x31_c00155{left:336.307511px;}
.x32_c00155{left:342.189757px;}
.x33_c00155{left:348.376740px;}
.x34_c00155{left:354.069743px;}
.x35_c00155{left:357.479743px;}
.x36_c00155{left:365.386869px;}
.x37_c00155{left:373.375785px;}
.x38_c00155{left:380.135498px;}
.x39_c00155{left:383.155707px;}
.x3a_c00155{left:386.159935px;}
.x3b_c00155{left:389.557910px;}
.x3c_c00155{left:392.174988px;}
.x3d_c00155{left:395.489533px;}
.x3e_c00155{left:400.664851px;}
.x3f_c00155{left:403.469600px;}
.x6_c00155{left:452.786554px;}
.x7_c00155{left:676.878164px;}
.x8_c00155{left:697.320842px;}
.x2b_c00155{left:757.088990px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ws4_c00155{word-spacing:-37.057398pt;}
.ws2_c00155{word-spacing:-13.485567pt;}
.ws0_c00155{word-spacing:-0.085307pt;}
.ws1_c00155{word-spacing:-0.049560pt;}
.ws5_c00155{word-spacing:0.000000pt;}
.ws3_c00155{word-spacing:250.345590pt;}
._1_c00155{width:1.709531pt;}
._4_c00155{width:5.630672pt;}
._2_c00155{width:6.551088pt;}
._0_c00155{width:19.124998pt;}
._3_c00155{width:30.869748pt;}
.fs4_c00155{font-size:35.340254pt;}
.fsf_c00155{font-size:37.333182pt;}
.fs3_c00155{font-size:37.333438pt;}
.fsc_c00155{font-size:42.105093pt;}
.fs9_c00155{font-size:42.105094pt;}
.fsd_c00155{font-size:42.105095pt;}
.fsa_c00155{font-size:42.105096pt;}
.fsb_c00155{font-size:42.105098pt;}
.fs8_c00155{font-size:45.921418pt;}
.fs7_c00155{font-size:49.559999pt;}
.fs10_c00155{font-size:53.319997pt;}
.fs5_c00155{font-size:61.883325pt;}
.fs0_c00155{font-size:63.999997pt;}
.fs1_c00155{font-size:66.154880pt;}
.fse_c00155{font-size:68.454656pt;}
.fs2_c00155{font-size:85.306907pt;}
.fs6_c00155{font-size:85.319996pt;}
.y0_c00155{bottom:0.000000pt;}
.y1_c00155{bottom:0.000007pt;}
.y10_c00155{bottom:26.134367pt;}
.yd_c00155{bottom:26.976047pt;}
.y7_c00155{bottom:131.021883pt;}
.y6_c00155{bottom:158.021881pt;}
.y5_c00155{bottom:185.021880pt;}
.y4_c00155{bottom:212.021879pt;}
.y3_c00155{bottom:239.021878pt;}
.y2_c00155{bottom:266.021877pt;}
.y8_c00155{bottom:302.536269pt;}
.y11_c00155{bottom:356.911319pt;}
.y3d_c00155{bottom:432.789662pt;}
.y1f_c00155{bottom:438.514110pt;}
.y33_c00155{bottom:438.527530pt;}
.y1e_c00155{bottom:438.981010pt;}
.y34_c00155{bottom:438.998500pt;}
.y49_c00155{bottom:439.075039pt;}
.y32_c00155{bottom:439.633885pt;}
.y4a_c00155{bottom:439.815773pt;}
.y48_c00155{bottom:439.833627pt;}
.y1d_c00155{bottom:439.928696pt;}
.y31_c00155{bottom:440.746134pt;}
.y47_c00155{bottom:440.753441pt;}
.y1c_c00155{bottom:440.882672pt;}
.y35_c00155{bottom:441.146500pt;}
.y20_c00155{bottom:441.203087pt;}
.y4b_c00155{bottom:441.754655pt;}
.y30_c00155{bottom:442.208242pt;}
.y1b_c00155{bottom:442.350726pt;}
.y46_c00155{bottom:442.711417pt;}
.y4c_c00155{bottom:442.991012pt;}
.y2f_c00155{bottom:443.708917pt;}
.y1a_c00155{bottom:443.856095pt;}
.y4d_c00155{bottom:444.500610pt;}
.y21_c00155{bottom:445.005059pt;}
.y2e_c00155{bottom:445.366906pt;}
.y19_c00155{bottom:445.518375pt;}
.y36_c00155{bottom:445.680561pt;}
.y45_c00155{bottom:446.081837pt;}
.y4e_c00155{bottom:446.671541pt;}
.y22_c00155{bottom:447.243955pt;}
.y4f_c00155{bottom:448.679507pt;}
.y37_c00155{bottom:448.905595pt;}
.y2d_c00155{bottom:449.504110pt;}
.y18_c00155{bottom:449.663899pt;}
.y44_c00155{bottom:450.942950pt;}
.y50_c00155{bottom:451.585269pt;}
.y23_c00155{bottom:452.535104pt;}
.y38_c00155{bottom:453.913511pt;}
.y43_c00155{bottom:454.913253pt;}
.y2c_c00155{bottom:455.194216pt;}
.y17_c00155{bottom:455.361563pt;}
.y24_c00155{bottom:456.756200pt;}
.y51_c00155{bottom:459.049496pt;}
.y39_c00155{bottom:459.831423pt;}
.y42_c00155{bottom:460.624152pt;}
.y2b_c00155{bottom:461.689454pt;}
.y16_c00155{bottom:461.769633pt;}
.y41_c00155{bottom:464.686263pt;}
.y15_c00155{bottom:464.844100pt;}
.y52_c00155{bottom:466.204075pt;}
.y25_c00155{bottom:467.230790pt;}
.y2a_c00155{bottom:468.055335pt;}
.y14_c00155{bottom:470.186605pt;}
.y3a_c00155{bottom:470.465221pt;}
.y40_c00155{bottom:471.594820pt;}
.y29_c00155{bottom:472.294648pt;}
.y3c_c00155{bottom:474.016102pt;}
.y3e_c00155{bottom:474.632742pt;}
.y53_c00155{bottom:474.917254pt;}
.y3f_c00155{bottom:475.055985pt;}
.y13_c00155{bottom:476.639415pt;}
.y28_c00155{bottom:477.781157pt;}
.y26_c00155{bottom:478.111290pt;}
.y3b_c00155{bottom:478.434608pt;}
.y27_c00155{bottom:484.059803pt;}
.y12_c00155{bottom:485.114772pt;}
.yf_c00155{bottom:568.082312pt;}
.y54_c00155{bottom:907.946545pt;}
.yc_c00155{bottom:1003.367331pt;}
.ya_c00155{bottom:1006.158636pt;}
.y9_c00155{bottom:1019.380895pt;}
.ye_c00155{bottom:1025.122028pt;}
.yb_c00155{bottom:1040.962470pt;}
.h11_c00155{height:31.990003pt;}
.h12_c00155{height:31.990004pt;}
.h13_c00155{height:31.990006pt;}
.h7_c00155{height:32.907161pt;}
.hb_c00155{height:33.297513pt;}
.h15_c00155{height:34.762880pt;}
.h6_c00155{height:34.763119pt;}
.hf_c00155{height:39.206256pt;}
.hc_c00155{height:39.206257pt;}
.h10_c00155{height:39.206258pt;}
.hd_c00155{height:39.206259pt;}
.he_c00155{height:39.206261pt;}
.h16_c00155{height:40.523198pt;}
.h8_c00155{height:44.871454pt;}
.ha_c00155{height:46.147909pt;}
.h14_c00155{height:50.040354pt;}
.h4_c00155{height:50.682132pt;}
.h3_c00155{height:59.593748pt;}
.h5_c00155{height:64.813255pt;}
.h9_c00155{height:79.445915pt;}
.h2_c00155{height:1159.999952pt;}
.h0_c00155{height:1159.999959pt;}
.h1_c00155{height:1160.000000pt;}
.w2_c00155{width:830.999965pt;}
.w0_c00155{width:831.000000pt;}
.w1_c00155{width:831.333333pt;}
.x0_c00155{left:0.000000pt;}
.x1_c00155{left:79.544400pt;}
.x2_c00155{left:80.750973pt;}
.x3_c00155{left:95.315788pt;}
.x4_c00155{left:96.735260pt;}
.x40_c00155{left:116.169448pt;}
.x1a_c00155{left:119.977634pt;}
.x19_c00155{left:121.465137pt;}
.x1b_c00155{left:124.463353pt;}
.x1c_c00155{left:128.774857pt;}
.x1d_c00155{left:133.544468pt;}
.x1e_c00155{left:135.991410pt;}
.x1f_c00155{left:138.666862pt;}
.x20_c00155{left:142.086856pt;}
.x2a_c00155{left:143.505744pt;}
.x21_c00155{left:145.156780pt;}
.x22_c00155{left:152.521190pt;}
.x23_c00155{left:159.871997pt;}
.x24_c00155{left:167.366655pt;}
.x25_c00155{left:174.821307pt;}
.x26_c00155{left:178.525632pt;}
.x27_c00155{left:182.577318pt;}
.x28_c00155{left:185.963463pt;}
.x29_c00155{left:188.262839pt;}
.xa_c00155{left:204.798568pt;}
.x9_c00155{left:206.697430pt;}
.xb_c00155{left:209.442955pt;}
.xc_c00155{left:213.744503pt;}
.xd_c00155{left:218.506891pt;}
.xe_c00155{left:220.950947pt;}
.xf_c00155{left:223.623762pt;}
.x10_c00155{left:227.041187pt;}
.x2c_c00155{left:228.108486pt;}
.x11_c00155{left:229.962704pt;}
.x12_c00155{left:233.906932pt;}
.x13_c00155{left:241.567426pt;}
.x14_c00155{left:252.092435pt;}
.x15_c00155{left:258.703382pt;}
.x5_c00155{left:262.379637pt;}
.x16_c00155{left:266.467148pt;}
.x17_c00155{left:269.480012pt;}
.x18_c00155{left:273.046051pt;}
.x2d_c00155{left:290.708831pt;}
.x2e_c00155{left:291.790874pt;}
.x2f_c00155{left:293.053997pt;}
.x30_c00155{left:296.073752pt;}
.x31_c00155{left:298.940009pt;}
.x32_c00155{left:304.168673pt;}
.x33_c00155{left:309.668213pt;}
.x34_c00155{left:314.728661pt;}
.x35_c00155{left:317.759772pt;}
.x36_c00155{left:324.788328pt;}
.x37_c00155{left:331.889587pt;}
.x38_c00155{left:337.898220pt;}
.x39_c00155{left:340.582851pt;}
.x3a_c00155{left:343.253275pt;}
.x3b_c00155{left:346.273697pt;}
.x3c_c00155{left:348.599989pt;}
.x3d_c00155{left:351.546252pt;}
.x3e_c00155{left:356.146534pt;}
.x3f_c00155{left:358.639645pt;}
.x6_c00155{left:402.476937pt;}
.x7_c00155{left:601.669479pt;}
.x8_c00155{left:619.840748pt;}
.x2b_c00155{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44f14bdc25b493f9fa1a2936.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.171387;font-style:normal;font-weight:normal;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_0199f74656051b53a05b4de7.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.000000;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00156;src:url('chunks/assets/font_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:0.734863;font-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_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;}
.ls0_c00156{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00156{word-spacing:-18.703125px;}
.ws1_c00156{word-spacing:0.000000px;}
._5_c00156{width:1.652343px;}
._b_c00156{width:2.676748px;}
._d_c00156{width:3.691691px;}
._7_c00156{width:4.757764px;}
._1_c00156{width:6.480420px;}
._4_c00156{width:7.712677px;}
._11_c00156{width:11.924969px;}
._f_c00156{width:14.203126px;}
._c_c00156{width:15.570913px;}
._8_c00156{width:16.875000px;}
._9_c00156{width:21.553115px;}
._6_c00156{width:27.671810px;}
._3_c00156{width:28.854488px;}
._a_c00156{width:29.859327px;}
._10_c00156{width:33.174657px;}
._0_c00156{width:35.745113px;}
._e_c00156{width:37.645473px;}
._2_c00156{width:39.881190px;}
.fc3_c00156{color:transparent;}
.fc1_c00156{color:rgb(67,91,56);}
.fc2_c00156{color:rgb(128,128,128);}
.fc0_c00156{color:rgb(0,0,0);}
.fs1_c00156{font-size:69.618741px;}
.fs0_c00156{font-size:71.999997px;}
.y0_c00156{bottom:0.000000px;}
.y1_c00156{bottom:0.000008px;}
.y20_c00156{bottom:29.400983px;}
.y13_c00156{bottom:30.347873px;}
.y27_c00156{bottom:71.319201px;}
.y26_c00156{bottom:101.694200px;}
.y25_c00156{bottom:132.069198px;}
.y24_c00156{bottom:162.444197px;}
.y23_c00156{bottom:192.819196px;}
.y22_c00156{bottom:223.194195px;}
.y21_c00156{bottom:261.894013px;}
.y1a_c00156{bottom:310.719191px;}
.y19_c00156{bottom:341.094190px;}
.y18_c00156{bottom:371.469189px;}
.y17_c00156{bottom:401.844187px;}
.y16_c00156{bottom:432.219186px;}
.y15_c00156{bottom:462.594185px;}
.y14_c00156{bottom:496.770963px;}
.y11_c00156{bottom:544.719001px;}
.y10_c00156{bottom:575.094000px;}
.yf_c00156{bottom:605.468999px;}
.ye_c00156{bottom:635.843998px;}
.yd_c00156{bottom:666.218996px;}
.yc_c00156{bottom:696.593995px;}
.yb_c00156{bottom:726.968994px;}
.ya_c00156{bottom:757.343992px;}
.y9_c00156{bottom:787.718991px;}
.y8_c00156{bottom:818.093990px;}
.y7_c00156{bottom:848.468989px;}
.y6_c00156{bottom:878.843987px;}
.y5_c00156{bottom:909.218986px;}
.y4_c00156{bottom:939.593985px;}
.y3_c00156{bottom:969.968984px;}
.y2_c00156{bottom:1000.343982px;}
.y12_c00156{bottom:1034.543981px;}
.y1f_c00156{bottom:1080.033179px;}
.y1e_c00156{bottom:1110.408178px;}
.y1d_c00156{bottom:1140.783177px;}
.y1c_c00156{bottom:1171.158176px;}
.y1b_c00156{bottom:1199.772371px;}
.h5_c00156{height:50.480386px;}
.h4_c00156{height:55.160154px;}
.h3_c00156{height:67.042966px;}
.h2_c00156{height:1304.999946px;}
.h0_c00156{height:1304.999953px;}
.h1_c00156{height:1305.000000px;}
.w2_c00156{width:934.874961px;}
.w0_c00156{width:934.875000px;}
.w1_c00156{width:935.250000px;}
.x0_c00156{left:0.000000px;}
.x3_c00156{left:86.016578px;}
.x1_c00156{left:87.902647px;}
.x2_c00156{left:452.782029px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws0_c00156{word-spacing:-16.625000pt;}
.ws1_c00156{word-spacing:0.000000pt;}
._5_c00156{width:1.468749pt;}
._b_c00156{width:2.379332pt;}
._d_c00156{width:3.281503pt;}
._7_c00156{width:4.229124pt;}
._1_c00156{width:5.760373pt;}
._4_c00156{width:6.855713pt;}
._11_c00156{width:10.599972pt;}
._f_c00156{width:12.625001pt;}
._c_c00156{width:13.840812pt;}
._8_c00156{width:15.000000pt;}
._9_c00156{width:19.158324pt;}
._6_c00156{width:24.597164pt;}
._3_c00156{width:25.648434pt;}
._a_c00156{width:26.541624pt;}
._10_c00156{width:29.488584pt;}
._0_c00156{width:31.773434pt;}
._e_c00156{width:33.462643pt;}
._2_c00156{width:35.449947pt;}
.fs1_c00156{font-size:61.883325pt;}
.fs0_c00156{font-size:63.999997pt;}
.y0_c00156{bottom:0.000000pt;}
.y1_c00156{bottom:0.000007pt;}
.y20_c00156{bottom:26.134207pt;}
.y13_c00156{bottom:26.975887pt;}
.y27_c00156{bottom:63.394845pt;}
.y26_c00156{bottom:90.394844pt;}
.y25_c00156{bottom:117.394843pt;}
.y24_c00156{bottom:144.394842pt;}
.y23_c00156{bottom:171.394841pt;}
.y22_c00156{bottom:198.394840pt;}
.y21_c00156{bottom:232.794678pt;}
.y1a_c00156{bottom:276.194836pt;}
.y19_c00156{bottom:303.194835pt;}
.y18_c00156{bottom:330.194834pt;}
.y17_c00156{bottom:357.194833pt;}
.y16_c00156{bottom:384.194832pt;}
.y15_c00156{bottom:411.194831pt;}
.y14_c00156{bottom:441.574190pt;}
.y11_c00156{bottom:484.194668pt;}
.y10_c00156{bottom:511.194667pt;}
.yf_c00156{bottom:538.194666pt;}
.ye_c00156{bottom:565.194664pt;}
.yd_c00156{bottom:592.194663pt;}
.yc_c00156{bottom:619.194662pt;}
.yb_c00156{bottom:646.194661pt;}
.ya_c00156{bottom:673.194660pt;}
.y9_c00156{bottom:700.194659pt;}
.y8_c00156{bottom:727.194658pt;}
.y7_c00156{bottom:754.194657pt;}
.y6_c00156{bottom:781.194655pt;}
.y5_c00156{bottom:808.194654pt;}
.y4_c00156{bottom:835.194653pt;}
.y3_c00156{bottom:862.194652pt;}
.y2_c00156{bottom:889.194651pt;}
.y12_c00156{bottom:919.594650pt;}
.y1f_c00156{bottom:960.029493pt;}
.y1e_c00156{bottom:987.029492pt;}
.y1d_c00156{bottom:1014.029491pt;}
.y1c_c00156{bottom:1041.029489pt;}
.y1b_c00156{bottom:1066.464330pt;}
.h5_c00156{height:44.871454pt;}
.h4_c00156{height:49.031248pt;}
.h3_c00156{height:59.593748pt;}
.h2_c00156{height:1159.999952pt;}
.h0_c00156{height:1159.999959pt;}
.h1_c00156{height:1160.000000pt;}
.w2_c00156{width:830.999965pt;}
.w0_c00156{width:831.000000pt;}
.w1_c00156{width:831.333333pt;}
.x0_c00156{left:0.000000pt;}
.x3_c00156{left:76.459181pt;}
.x1_c00156{left:78.135686pt;}
.x2_c00156{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:0.734863;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:0.734863;font-style:normal;font-weight:normal;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_3fa5563bd41b92af7fb1c76b.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00157;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:0.769531;font-style:normal;font-weight: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_c00157;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;line-height:0.743000;font-style:normal;font-weight: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_c00157;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ff6_c00157{font-family:ff6_c00157;line-height:0.894000;font-style:normal;font-weight: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_c00157;src:url('chunks/assets/font_4fb6c80ed135b7d7a484078a.woff2')format("woff");}.ff7_c00157{font-family:ff7_c00157;line-height:0.940000;font-style:normal;font-weight: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_c00157;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff8_c00157{font-family:ff8_c00157;line-height:1.006348;font-style:normal;font-weight: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_c00157;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff9_c00157{font-family:ff9_c00157;line-height:1.000000;font-style:normal;font-weight: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_c00157;src:url('chunks/assets/font_bb16df89a4ef407154e0887a.woff2')format("woff");}.ffa_c00157{font-family:ffa_c00157;line-height:1.171387;font-style:normal;font-weight: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_c00157;src:url('chunks/assets/font_3bbbc8dd1de87dd47d1245d5.woff2')format("woff");}.ffb_c00157{font-family:ffb_c00157;line-height:1.000000;font-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_c00157{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00157{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00157{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00157{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00157{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00157{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00157{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00157{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00157{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00157{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00157{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00157{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00157{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00157{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00157{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00157{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00157{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00157{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00157{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00157{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00157{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00157{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00157{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00157{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00157{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00157{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00157{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00157{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00157{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00157{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00157{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00157{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00157{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00157{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00157{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00157{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00157{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00157{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00157{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00157{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00157{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00157{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00157{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00157{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00157{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00157{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00157{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00157{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00157{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00157{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00157{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00157{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00157{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00157{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00157{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00157{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00157{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00157{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00157{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00157{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00157{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00157{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00157{vertical-align:0.000000px;}
.v2_c00157{vertical-align:1.279584px;}
.v1_c00157{vertical-align:26.825858px;}
.ls0_c00157{letter-spacing:0.000000px;}
.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:-16.915769px;}
.ws1_c00157{word-spacing:-15.171263px;}
.ws2_c00157{word-spacing:-0.089985px;}
.ws4_c00157{word-spacing:-0.055755px;}
.ws6_c00157{word-spacing:0.000000px;}
.ws3_c00157{word-spacing:288.058683px;}
.ws0_c00157{word-spacing:1115.008845px;}
._0_c00157{width:6.691361px;}
._3_c00157{width:7.753050px;}
._1_c00157{width:10.324195px;}
._2_c00157{width:11.777345px;}
._4_c00157{width:32.322601px;}
.fc5_c00157{color:transparent;}
.fc4_c00157{color:rgb(67,91,56);}
.fc1_c00157{color:rgb(9,71,81);}
.fc3_c00157{color:rgb(255,255,255);}
.fc2_c00157{color:rgb(0,0,0);}
.fc0_c00157{color:rgb(128,128,128);}
.fse_c00157{font-size:39.757786px;}
.fs8_c00157{font-size:41.999830px;}
.fsd_c00157{font-size:42.000118px;}
.fs5_c00157{font-size:47.368230px;}
.fs2_c00157{font-size:47.368231px;}
.fs6_c00157{font-size:47.368232px;}
.fs3_c00157{font-size:47.368233px;}
.fs4_c00157{font-size:47.368235px;}
.fs1_c00157{font-size:51.661596px;}
.fs10_c00157{font-size:55.754999px;}
.fs9_c00157{font-size:56.421836px;}
.fs11_c00157{font-size:59.984997px;}
.fs0_c00157{font-size:69.618741px;}
.fsa_c00157{font-size:71.999997px;}
.fsb_c00157{font-size:74.424240px;}
.fs7_c00157{font-size:77.011488px;}
.fsc_c00157{font-size:89.985250px;}
.fsf_c00157{font-size:95.984996px;}
.y0_c00157{bottom:0.000000px;}
.y1_c00157{bottom:0.000008px;}
.y52_c00157{bottom:29.401163px;}
.y2_c00157{bottom:30.348053px;}
.y4b_c00157{bottom:152.597802px;}
.y4a_c00157{bottom:182.972800px;}
.y49_c00157{bottom:213.347799px;}
.y48_c00157{bottom:243.722798px;}
.y47_c00157{bottom:274.097797px;}
.y46_c00157{bottom:304.472795px;}
.y4c_c00157{bottom:340.353374px;}
.y3_c00157{bottom:401.525233px;}
.y11_c00157{bottom:493.328193px;}
.y25_c00157{bottom:493.343399px;}
.y10_c00157{bottom:493.853709px;}
.y26_c00157{bottom:493.873421px;}
.y3b_c00157{bottom:493.959311px;}
.y24_c00157{bottom:494.588120px;}
.y3c_c00157{bottom:494.792564px;}
.y3a_c00157{bottom:494.812830px;}
.yf_c00157{bottom:494.919675px;}
.y23_c00157{bottom:495.839509px;}
.y39_c00157{bottom:495.847693px;}
.ye_c00157{bottom:495.993006px;}
.y27_c00157{bottom:496.289992px;}
.y12_c00157{bottom:496.353473px;}
.y3d_c00157{bottom:496.974167px;}
.y22_c00157{bottom:497.484380px;}
.yd_c00157{bottom:497.644566px;}
.y38_c00157{bottom:498.050345px;}
.y3e_c00157{bottom:498.364816px;}
.y21_c00157{bottom:499.172711px;}
.yc_c00157{bottom:499.338107px;}
.y3f_c00157{bottom:500.063439px;}
.y13_c00157{bottom:500.630691px;}
.y20_c00157{bottom:501.037625px;}
.yb_c00157{bottom:501.208280px;}
.y28_c00157{bottom:501.390523px;}
.y37_c00157{bottom:501.841887px;}
.y40_c00157{bottom:502.505484px;}
.y14_c00157{bottom:503.149521px;}
.y41_c00157{bottom:504.764625px;}
.y29_c00157{bottom:505.019047px;}
.y1f_c00157{bottom:505.692124px;}
.ya_c00157{bottom:505.871886px;}
.y36_c00157{bottom:507.310818px;}
.y42_c00157{bottom:508.033427px;}
.y15_c00157{bottom:509.101920px;}
.y2a_c00157{bottom:510.652700px;}
.y35_c00157{bottom:511.777229px;}
.y1e_c00157{bottom:512.093421px;}
.y9_c00157{bottom:512.281650px;}
.y16_c00157{bottom:513.850725px;}
.y43_c00157{bottom:516.430791px;}
.y2b_c00157{bottom:517.310242px;}
.y34_c00157{bottom:518.201920px;}
.y1d_c00157{bottom:519.400744px;}
.y8_c00157{bottom:519.490765px;}
.y33_c00157{bottom:522.772118px;}
.y7_c00157{bottom:522.949612px;}
.y44_c00157{bottom:524.479585px;}
.y17_c00157{bottom:525.634639px;}
.y1c_c00157{bottom:526.562252px;}
.y6_c00157{bottom:528.959751px;}
.y2c_c00157{bottom:529.273374px;}
.y32_c00157{bottom:530.544173px;}
.y1b_c00157{bottom:531.331731px;}
.y2e_c00157{bottom:533.268367px;}
.y30_c00157{bottom:533.962015px;}
.y31_c00157{bottom:534.438127px;}
.y5_c00157{bottom:536.219342px;}
.y1a_c00157{bottom:537.503874px;}
.y18_c00157{bottom:537.875309px;}
.y2d_c00157{bottom:538.238862px;}
.y19_c00157{bottom:544.567530px;}
.y4_c00157{bottom:545.754118px;}
.y2f_c00157{bottom:577.436970px;}
.y53_c00157{bottom:639.092421px;}
.y54_c00157{bottom:968.525117px;}
.y45_c00157{bottom:1025.000528px;}
.y50_c00157{bottom:1128.788391px;}
.y4e_c00157{bottom:1133.738586px;}
.y4d_c00157{bottom:1147.738626px;}
.y51_c00157{bottom:1153.988214px;}
.y4f_c00157{bottom:1171.082869px;}
.ha_c00157{height:35.988753px;}
.hb_c00157{height:35.988755px;}
.hc_c00157{height:35.988756px;}
.h15_c00157{height:37.020556px;}
.h4_c00157{height:37.459702px;}
.he_c00157{height:39.108240px;}
.h14_c00157{height:39.108509px;}
.h10_c00157{height:42.880595px;}
.h8_c00157{height:44.107038px;}
.h5_c00157{height:44.107039px;}
.h9_c00157{height:44.107040px;}
.h6_c00157{height:44.107042px;}
.h7_c00157{height:44.107043px;}
.h19_c00157{height:45.588598px;}
.h3_c00157{height:50.480386px;}
.h18_c00157{height:51.916398px;}
.hf_c00157{height:56.295398px;}
.h12_c00157{height:57.017399px;}
.h17_c00157{height:57.574982px;}
.hd_c00157{height:65.934098px;}
.h11_c00157{height:67.042966px;}
.h13_c00157{height:68.367700px;}
.h16_c00157{height:89.376654px;}
.h2_c00157{height:1304.999946px;}
.h0_c00157{height:1304.999953px;}
.h1_c00157{height:1305.000000px;}
.w2_c00157{width:934.874961px;}
.w0_c00157{width:934.875000px;}
.w1_c00157{width:935.250000px;}
.x0_c00157{left:0.000000px;}
.x3c_c00157{left:89.487450px;}
.x3d_c00157{left:90.844844px;}
.x3e_c00157{left:107.230262px;}
.x3b_c00157{left:109.067316px;}
.x42_c00157{left:128.744037px;}
.x15_c00157{left:134.974838px;}
.x14_c00157{left:136.648279px;}
.x16_c00157{left:140.021272px;}
.x17_c00157{left:144.871714px;}
.x18_c00157{left:150.237526px;}
.x19_c00157{left:152.990336px;}
.x1a_c00157{left:156.000220px;}
.x1b_c00157{left:159.847713px;}
.x25_c00157{left:161.443962px;}
.x1c_c00157{left:163.301377px;}
.x1d_c00157{left:171.586339px;}
.x1e_c00157{left:179.855997px;}
.x1f_c00157{left:188.287487px;}
.x20_c00157{left:196.673970px;}
.x21_c00157{left:200.841336px;}
.x22_c00157{left:205.399483px;}
.x23_c00157{left:209.208896px;}
.x24_c00157{left:211.795693px;}
.x4_c00157{left:230.398389px;}
.x3_c00157{left:232.534609px;}
.x5_c00157{left:235.623324px;}
.x6_c00157{left:240.462566px;}
.x7_c00157{left:245.820252px;}
.x8_c00157{left:248.569815px;}
.x9_c00157{left:251.576732px;}
.xa_c00157{left:255.421336px;}
.x40_c00157{left:256.622047px;}
.xb_c00157{left:258.708042px;}
.xc_c00157{left:263.145298px;}
.xd_c00157{left:271.763354px;}
.xe_c00157{left:283.603990px;}
.xf_c00157{left:291.041304px;}
.x10_c00157{left:294.435991px;}
.x3f_c00157{left:295.615161px;}
.x11_c00157{left:299.775542px;}
.x12_c00157{left:303.165014px;}
.x13_c00157{left:307.176807px;}
.x28_c00157{left:327.047435px;}
.x29_c00157{left:328.264734px;}
.x2a_c00157{left:329.685747px;}
.x2b_c00157{left:333.082971px;}
.x2c_c00157{left:336.307511px;}
.x2d_c00157{left:342.189757px;}
.x2e_c00157{left:348.376740px;}
.x27_c00157{left:351.731739px;}
.x2f_c00157{left:354.069743px;}
.x30_c00157{left:357.479743px;}
.x31_c00157{left:365.386869px;}
.x32_c00157{left:373.375785px;}
.x33_c00157{left:380.135498px;}
.x34_c00157{left:383.155707px;}
.x35_c00157{left:386.159935px;}
.x36_c00157{left:389.557910px;}
.x37_c00157{left:392.174988px;}
.x38_c00157{left:395.489533px;}
.x39_c00157{left:400.664851px;}
.x3a_c00157{left:403.469600px;}
.x1_c00157{left:452.786554px;}
.x41_c00157{left:661.571972px;}
.x2_c00157{left:697.320842px;}
.x26_c00157{left:733.540639px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.v2_c00157{vertical-align:1.137408pt;}
.v1_c00157{vertical-align:23.845207pt;}
.ls0_c00157{letter-spacing:0.000000pt;}
.ws5_c00157{word-spacing:-15.036239pt;}
.ws1_c00157{word-spacing:-13.485567pt;}
.ws2_c00157{word-spacing:-0.079987pt;}
.ws4_c00157{word-spacing:-0.049560pt;}
.ws6_c00157{word-spacing:0.000000pt;}
.ws3_c00157{word-spacing:256.052163pt;}
.ws0_c00157{word-spacing:991.118974pt;}
._0_c00157{width:5.947876pt;}
._3_c00157{width:6.891600pt;}
._1_c00157{width:9.177062pt;}
._2_c00157{width:10.468751pt;}
._4_c00157{width:28.731201pt;}
.fse_c00157{font-size:35.340254pt;}
.fs8_c00157{font-size:37.333182pt;}
.fsd_c00157{font-size:37.333438pt;}
.fs5_c00157{font-size:42.105093pt;}
.fs2_c00157{font-size:42.105094pt;}
.fs6_c00157{font-size:42.105095pt;}
.fs3_c00157{font-size:42.105096pt;}
.fs4_c00157{font-size:42.105098pt;}
.fs1_c00157{font-size:45.921418pt;}
.fs10_c00157{font-size:49.559999pt;}
.fs9_c00157{font-size:50.152743pt;}
.fs11_c00157{font-size:53.319997pt;}
.fs0_c00157{font-size:61.883325pt;}
.fsa_c00157{font-size:63.999997pt;}
.fsb_c00157{font-size:66.154880pt;}
.fs7_c00157{font-size:68.454656pt;}
.fsc_c00157{font-size:79.986889pt;}
.fsf_c00157{font-size:85.319996pt;}
.y0_c00157{bottom:0.000000pt;}
.y1_c00157{bottom:0.000007pt;}
.y52_c00157{bottom:26.134367pt;}
.y2_c00157{bottom:26.976047pt;}
.y4b_c00157{bottom:135.642490pt;}
.y4a_c00157{bottom:162.642489pt;}
.y49_c00157{bottom:189.642488pt;}
.y48_c00157{bottom:216.642487pt;}
.y47_c00157{bottom:243.642486pt;}
.y46_c00157{bottom:270.642485pt;}
.y4c_c00157{bottom:302.536333pt;}
.y3_c00157{bottom:356.911319pt;}
.y11_c00157{bottom:438.513950pt;}
.y25_c00157{bottom:438.527466pt;}
.y10_c00157{bottom:438.981074pt;}
.y26_c00157{bottom:438.998596pt;}
.y3b_c00157{bottom:439.074943pt;}
.y24_c00157{bottom:439.633885pt;}
.y3c_c00157{bottom:439.815613pt;}
.y3a_c00157{bottom:439.833627pt;}
.yf_c00157{bottom:439.928600pt;}
.y23_c00157{bottom:440.746230pt;}
.y39_c00157{bottom:440.753505pt;}
.ye_c00157{bottom:440.882672pt;}
.y27_c00157{bottom:441.146660pt;}
.y12_c00157{bottom:441.203087pt;}
.y3d_c00157{bottom:441.754815pt;}
.y22_c00157{bottom:442.208338pt;}
.yd_c00157{bottom:442.350726pt;}
.y38_c00157{bottom:442.711417pt;}
.y3e_c00157{bottom:442.990948pt;}
.y21_c00157{bottom:443.709077pt;}
.yc_c00157{bottom:443.856095pt;}
.y3f_c00157{bottom:444.500834pt;}
.y13_c00157{bottom:445.005059pt;}
.y20_c00157{bottom:445.366778pt;}
.yb_c00157{bottom:445.518471pt;}
.y28_c00157{bottom:445.680465pt;}
.y37_c00157{bottom:446.081677pt;}
.y40_c00157{bottom:446.671541pt;}
.y14_c00157{bottom:447.244019pt;}
.y41_c00157{bottom:448.679667pt;}
.y29_c00157{bottom:448.905819pt;}
.y1f_c00157{bottom:449.504110pt;}
.ya_c00157{bottom:449.663899pt;}
.y36_c00157{bottom:450.942950pt;}
.y42_c00157{bottom:451.585269pt;}
.y15_c00157{bottom:452.535040pt;}
.y2a_c00157{bottom:453.913511pt;}
.y35_c00157{bottom:454.913093pt;}
.y1e_c00157{bottom:455.194152pt;}
.y9_c00157{bottom:455.361467pt;}
.y16_c00157{bottom:456.756200pt;}
.y43_c00157{bottom:459.049592pt;}
.y2b_c00157{bottom:459.831327pt;}
.y34_c00157{bottom:460.623928pt;}
.y1d_c00157{bottom:461.689550pt;}
.y8_c00157{bottom:461.769569pt;}
.y33_c00157{bottom:464.686327pt;}
.y7_c00157{bottom:464.844100pt;}
.y44_c00157{bottom:466.204075pt;}
.y17_c00157{bottom:467.230790pt;}
.y1c_c00157{bottom:468.055335pt;}
.y6_c00157{bottom:470.186445pt;}
.y2c_c00157{bottom:470.465221pt;}
.y32_c00157{bottom:471.594820pt;}
.y1b_c00157{bottom:472.294872pt;}
.y2e_c00157{bottom:474.016326pt;}
.y30_c00157{bottom:474.632902pt;}
.y31_c00157{bottom:475.056113pt;}
.y5_c00157{bottom:476.639415pt;}
.y1a_c00157{bottom:477.781221pt;}
.y18_c00157{bottom:478.111386pt;}
.y2d_c00157{bottom:478.434544pt;}
.y19_c00157{bottom:484.060027pt;}
.y4_c00157{bottom:485.114772pt;}
.y2f_c00157{bottom:513.277307pt;}
.y53_c00157{bottom:568.082152pt;}
.y54_c00157{bottom:860.911215pt;}
.y45_c00157{bottom:911.111580pt;}
.y50_c00157{bottom:1003.367459pt;}
.y4e_c00157{bottom:1007.767632pt;}
.y4d_c00157{bottom:1020.212112pt;}
.y51_c00157{bottom:1025.767301pt;}
.y4f_c00157{bottom:1040.962550pt;}
.ha_c00157{height:31.990003pt;}
.hb_c00157{height:31.990004pt;}
.hc_c00157{height:31.990006pt;}
.h15_c00157{height:32.907161pt;}
.h4_c00157{height:33.297513pt;}
.he_c00157{height:34.762880pt;}
.h14_c00157{height:34.763119pt;}
.h10_c00157{height:38.116085pt;}
.h8_c00157{height:39.206256pt;}
.h5_c00157{height:39.206257pt;}
.h9_c00157{height:39.206258pt;}
.h6_c00157{height:39.206259pt;}
.h7_c00157{height:39.206261pt;}
.h19_c00157{height:40.523198pt;}
.h3_c00157{height:44.871454pt;}
.h18_c00157{height:46.147909pt;}
.hf_c00157{height:50.040354pt;}
.h12_c00157{height:50.682132pt;}
.h17_c00157{height:51.177761pt;}
.hd_c00157{height:58.608087pt;}
.h11_c00157{height:59.593748pt;}
.h13_c00157{height:60.771289pt;}
.h16_c00157{height:79.445915pt;}
.h2_c00157{height:1159.999952pt;}
.h0_c00157{height:1159.999959pt;}
.h1_c00157{height:1160.000000pt;}
.w2_c00157{width:830.999965pt;}
.w0_c00157{width:831.000000pt;}
.w1_c00157{width:831.333333pt;}
.x0_c00157{left:0.000000pt;}
.x3c_c00157{left:79.544400pt;}
.x3d_c00157{left:80.750973pt;}
.x3e_c00157{left:95.315788pt;}
.x3b_c00157{left:96.948726pt;}
.x42_c00157{left:114.439144pt;}
.x15_c00157{left:119.977634pt;}
.x14_c00157{left:121.465137pt;}
.x16_c00157{left:124.463353pt;}
.x17_c00157{left:128.774857pt;}
.x18_c00157{left:133.544468pt;}
.x19_c00157{left:135.991410pt;}
.x1a_c00157{left:138.666862pt;}
.x1b_c00157{left:142.086856pt;}
.x25_c00157{left:143.505744pt;}
.x1c_c00157{left:145.156780pt;}
.x1d_c00157{left:152.521190pt;}
.x1e_c00157{left:159.871997pt;}
.x1f_c00157{left:167.366655pt;}
.x20_c00157{left:174.821307pt;}
.x21_c00157{left:178.525632pt;}
.x22_c00157{left:182.577318pt;}
.x23_c00157{left:185.963463pt;}
.x24_c00157{left:188.262839pt;}
.x4_c00157{left:204.798568pt;}
.x3_c00157{left:206.697430pt;}
.x5_c00157{left:209.442955pt;}
.x6_c00157{left:213.744503pt;}
.x7_c00157{left:218.506891pt;}
.x8_c00157{left:220.950947pt;}
.x9_c00157{left:223.623762pt;}
.xa_c00157{left:227.041187pt;}
.x40_c00157{left:228.108486pt;}
.xb_c00157{left:229.962704pt;}
.xc_c00157{left:233.906932pt;}
.xd_c00157{left:241.567426pt;}
.xe_c00157{left:252.092435pt;}
.xf_c00157{left:258.703382pt;}
.x10_c00157{left:261.720880pt;}
.x3f_c00157{left:262.769032pt;}
.x11_c00157{left:266.467148pt;}
.x12_c00157{left:269.480012pt;}
.x13_c00157{left:273.046051pt;}
.x28_c00157{left:290.708831pt;}
.x29_c00157{left:291.790874pt;}
.x2a_c00157{left:293.053997pt;}
.x2b_c00157{left:296.073752pt;}
.x2c_c00157{left:298.940009pt;}
.x2d_c00157{left:304.168673pt;}
.x2e_c00157{left:309.668213pt;}
.x27_c00157{left:312.650435pt;}
.x2f_c00157{left:314.728661pt;}
.x30_c00157{left:317.759772pt;}
.x31_c00157{left:324.788328pt;}
.x32_c00157{left:331.889587pt;}
.x33_c00157{left:337.898220pt;}
.x34_c00157{left:340.582851pt;}
.x35_c00157{left:343.253275pt;}
.x36_c00157{left:346.273697pt;}
.x37_c00157{left:348.599989pt;}
.x38_c00157{left:351.546252pt;}
.x39_c00157{left:356.146534pt;}
.x3a_c00157{left:358.639645pt;}
.x1_c00157{left:402.476937pt;}
.x41_c00157{left:588.063975pt;}
.x2_c00157{left:619.840748pt;}
.x26_c00157{left:652.036124pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_693c4d1e6f2960bbbf866700.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.171387;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.006348;font-style:normal;font-weight:normal;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_05b19c737ac3802ca9a58c3b.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.000000;font-style:normal;font-weight:normal;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_73ad054d81bf5a3e6fb62363.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.000000;font-style:normal;font-weight: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_c00158;src:url('chunks/assets/font_90f0025d0ea14fb493a79866.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:1.171387;font-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_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);}
.v0_c00158{vertical-align:0.000000px;}
.v1_c00158{vertical-align:3.768624px;}
.ls0_c00158{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00158{word-spacing:-18.703125px;}
.ws1_c00158{word-spacing:-0.055755px;}
.ws2_c00158{word-spacing:0.000000px;}
._1_c00158{width:1.022208px;}
._7_c00158{width:2.800757px;}
._b_c00158{width:3.972585px;}
._2_c00158{width:5.372518px;}
._0_c00158{width:6.603950px;}
._8_c00158{width:9.491776px;}
._5_c00158{width:10.539046px;}
._10_c00158{width:11.842572px;}
._13_c00158{width:14.953078px;}
._4_c00158{width:16.312501px;}
._a_c00158{width:17.502312px;}
._12_c00158{width:20.509547px;}
._6_c00158{width:22.493546px;}
._3_c00158{width:27.523429px;}
._e_c00158{width:28.532795px;}
._c_c00158{width:30.093747px;}
._9_c00158{width:34.564428px;}
._f_c00158{width:35.919592px;}
._11_c00158{width:38.460938px;}
._d_c00158{width:42.242154px;}
._14_c00158{width:1515.105788px;}
.fc1_c00158{color:rgb(67,91,56);}
.fc2_c00158{color:rgb(255,255,255);}
.fc0_c00158{color:rgb(0,0,0);}
.fs1_c00158{font-size:55.754999px;}
.fs0_c00158{font-size:71.999997px;}
.y0_c00158{bottom:0.000000px;}
.y1_c00158{bottom:0.000008px;}
.y1d_c00158{bottom:29.401163px;}
.y28_c00158{bottom:77.889741px;}
.y27_c00158{bottom:106.014740px;}
.y26_c00158{bottom:134.139738px;}
.y25_c00158{bottom:162.264737px;}
.y24_c00158{bottom:190.389736px;}
.y23_c00158{bottom:218.514735px;}
.y22_c00158{bottom:246.639734px;}
.y21_c00158{bottom:274.764733px;}
.y20_c00158{bottom:302.889731px;}
.y1f_c00158{bottom:331.014730px;}
.y1e_c00158{bottom:364.989369px;}
.y17_c00158{bottom:414.714727px;}
.y16_c00158{bottom:442.839726px;}
.y15_c00158{bottom:470.964724px;}
.y14_c00158{bottom:499.089723px;}
.y13_c00158{bottom:527.214722px;}
.y12_c00158{bottom:555.339721px;}
.y11_c00158{bottom:583.464720px;}
.y10_c00158{bottom:611.589719px;}
.yf_c00158{bottom:639.714717px;}
.ye_c00158{bottom:670.739372px;}
.yc_c00158{bottom:718.214384px;}
.yb_c00158{bottom:746.339383px;}
.ya_c00158{bottom:774.464382px;}
.y9_c00158{bottom:802.589381px;}
.y8_c00158{bottom:830.714380px;}
.y7_c00158{bottom:858.839379px;}
.y6_c00158{bottom:886.964377px;}
.y5_c00158{bottom:915.089376px;}
.y4_c00158{bottom:943.214375px;}
.y3_c00158{bottom:971.339374px;}
.y2_c00158{bottom:999.464373px;}
.yd_c00158{bottom:1033.439371px;}
.y1c_c00158{bottom:1081.046205px;}
.y1b_c00158{bottom:1109.171204px;}
.y1a_c00158{bottom:1137.296203px;}
.y19_c00158{bottom:1165.421201px;}
.y18_c00158{bottom:1199.772371px;}
.h4_c00158{height:55.160154px;}
.h3_c00158{height:67.042966px;}
.h2_c00158{height:1304.999946px;}
.h0_c00158{height:1304.999953px;}
.h1_c00158{height:1305.000000px;}
.w2_c00158{width:934.874961px;}
.w0_c00158{width:934.875000px;}
.w1_c00158{width:935.250000px;}
.x0_c00158{left:0.000000px;}
.x3_c00158{left:84.761744px;}
.x1_c00158{left:87.223950px;}
.x2_c00158{left:89.487450px;}
.x4_c00158{left:452.271732px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.v1_c00158{vertical-align:3.349888pt;}
.ls0_c00158{letter-spacing:0.000000pt;}
.ws0_c00158{word-spacing:-16.625000pt;}
.ws1_c00158{word-spacing:-0.049560pt;}
.ws2_c00158{word-spacing:0.000000pt;}
._1_c00158{width:0.908629pt;}
._7_c00158{width:2.489562pt;}
._b_c00158{width:3.531186pt;}
._2_c00158{width:4.775571pt;}
._0_c00158{width:5.870177pt;}
._8_c00158{width:8.437134pt;}
._5_c00158{width:9.368041pt;}
._10_c00158{width:10.526731pt;}
._13_c00158{width:13.291625pt;}
._4_c00158{width:14.500001pt;}
._a_c00158{width:15.557610pt;}
._12_c00158{width:18.230708pt;}
._6_c00158{width:19.994263pt;}
._3_c00158{width:24.465271pt;}
._e_c00158{width:25.362484pt;}
._c_c00158{width:26.749998pt;}
._9_c00158{width:30.723936pt;}
._f_c00158{width:31.928527pt;}
._11_c00158{width:34.187500pt;}
._d_c00158{width:37.548581pt;}
._14_c00158{width:1346.760700pt;}
.fs1_c00158{font-size:49.559999pt;}
.fs0_c00158{font-size:63.999997pt;}
.y0_c00158{bottom:0.000000pt;}
.y1_c00158{bottom:0.000007pt;}
.y1d_c00158{bottom:26.134367pt;}
.y28_c00158{bottom:69.235325pt;}
.y27_c00158{bottom:94.235324pt;}
.y26_c00158{bottom:119.235323pt;}
.y25_c00158{bottom:144.235322pt;}
.y24_c00158{bottom:169.235321pt;}
.y23_c00158{bottom:194.235320pt;}
.y22_c00158{bottom:219.235319pt;}
.y21_c00158{bottom:244.235318pt;}
.y20_c00158{bottom:269.235317pt;}
.y1f_c00158{bottom:294.235316pt;}
.y1e_c00158{bottom:324.434994pt;}
.y17_c00158{bottom:368.635313pt;}
.y16_c00158{bottom:393.635312pt;}
.y15_c00158{bottom:418.635311pt;}
.y14_c00158{bottom:443.635310pt;}
.y13_c00158{bottom:468.635308pt;}
.y12_c00158{bottom:493.635307pt;}
.y11_c00158{bottom:518.635306pt;}
.y10_c00158{bottom:543.635305pt;}
.yf_c00158{bottom:568.635304pt;}
.ye_c00158{bottom:596.212775pt;}
.yc_c00158{bottom:638.412786pt;}
.yb_c00158{bottom:663.412785pt;}
.ya_c00158{bottom:688.412784pt;}
.y9_c00158{bottom:713.412783pt;}
.y8_c00158{bottom:738.412782pt;}
.y7_c00158{bottom:763.412781pt;}
.y6_c00158{bottom:788.412780pt;}
.y5_c00158{bottom:813.412779pt;}
.y4_c00158{bottom:838.412778pt;}
.y3_c00158{bottom:863.412777pt;}
.y2_c00158{bottom:888.412776pt;}
.yd_c00158{bottom:918.612775pt;}
.y1c_c00158{bottom:960.929960pt;}
.y1b_c00158{bottom:985.929959pt;}
.y1a_c00158{bottom:1010.929958pt;}
.y19_c00158{bottom:1035.929957pt;}
.y18_c00158{bottom:1066.464330pt;}
.h4_c00158{height:49.031248pt;}
.h3_c00158{height:59.593748pt;}
.h2_c00158{height:1159.999952pt;}
.h0_c00158{height:1159.999959pt;}
.h1_c00158{height:1160.000000pt;}
.w2_c00158{width:830.999965pt;}
.w0_c00158{width:831.000000pt;}
.w1_c00158{width:831.333333pt;}
.x0_c00158{left:0.000000pt;}
.x3_c00158{left:75.343773pt;}
.x1_c00158{left:77.532400pt;}
.x2_c00158{left:79.544400pt;}
.x4_c00158{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:0.734863;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:0.734863;font-style:normal;font-weight:normal;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_f9c58b9282be607cf523d31d.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:0.769531;font-style:normal;font-weight: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_c00159;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff5_c00159{font-family:ff5_c00159;line-height:0.743000;font-style:normal;font-weight: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_c00159;src:url('chunks/assets/font_d5ed718ffe46d1a34bfc9bd3.woff2')format("woff");}.ff6_c00159{font-family:ff6_c00159;line-height:0.940000;font-style:normal;font-weight: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_c00159;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff7_c00159{font-family:ff7_c00159;line-height:1.000000;font-style:normal;font-weight: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_c00159;src:url('chunks/assets/font_28aa1deb3353ac931885f831.woff2')format("woff");}.ff8_c00159{font-family:ff8_c00159;line-height:1.171387;font-style:normal;font-weight: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_c00159;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff9_c00159{font-family:ff9_c00159;line-height:1.006348;font-style:normal;font-weight: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_c00159;src:url('chunks/assets/font_382ef6e4fd5590828ca3a89b.woff2')format("woff");}.ffa_c00159{font-family:ffa_c00159;line-height:1.000000;font-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_c00159{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00159{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00159{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00159{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00159{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00159{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00159{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00159{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00159{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00159{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00159{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00159{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00159{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00159{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00159{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00159{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00159{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00159{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00159{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00159{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00159{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00159{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00159{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00159{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00159{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00159{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00159{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00159{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00159{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00159{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00159{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00159{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00159{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00159{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00159{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00159{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00159{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00159{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00159{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00159{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00159{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00159{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00159{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00159{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00159{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00159{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00159{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00159{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00159{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00159{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00159{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00159{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00159{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00159{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00159{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00159{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00159{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00159{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00159{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00159{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00159{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00159{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.v1_c00159{vertical-align:1.279728px;}
.ls0_c00159{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00159{word-spacing:-41.689573px;}
.ws0_c00159{word-spacing:-15.171263px;}
.ws3_c00159{word-spacing:-0.089985px;}
.ws2_c00159{word-spacing:-0.055755px;}
.ws5_c00159{word-spacing:0.000000px;}
.ws4_c00159{word-spacing:288.058683px;}
._1_c00159{width:1.925354px;}
._0_c00159{width:3.642173px;}
._3_c00159{width:13.183596px;}
._2_c00159{width:15.790991px;}
.fc5_c00159{color:transparent;}
.fc4_c00159{color:rgb(67,91,56);}
.fc1_c00159{color:rgb(9,71,81);}
.fc3_c00159{color:rgb(255,255,255);}
.fc2_c00159{color:rgb(0,0,0);}
.fc0_c00159{color:rgb(128,128,128);}
.fsf_c00159{font-size:39.757786px;}
.fs8_c00159{font-size:41.999830px;}
.fse_c00159{font-size:42.000118px;}
.fs5_c00159{font-size:47.368230px;}
.fs2_c00159{font-size:47.368231px;}
.fs6_c00159{font-size:47.368232px;}
.fs3_c00159{font-size:47.368233px;}
.fs4_c00159{font-size:47.368235px;}
.fs1_c00159{font-size:51.661596px;}
.fsa_c00159{font-size:55.754999px;}
.fs9_c00159{font-size:59.984997px;}
.fs0_c00159{font-size:69.618741px;}
.fsb_c00159{font-size:71.999997px;}
.fsc_c00159{font-size:74.424240px;}
.fs7_c00159{font-size:77.011488px;}
.fsd_c00159{font-size:89.985250px;}
.fs10_c00159{font-size:95.984996px;}
.y0_c00159{bottom:0.000000px;}
.y1_c00159{bottom:0.000008px;}
.y55_c00159{bottom:29.401163px;}
.y2_c00159{bottom:30.348053px;}
.y4e_c00159{bottom:152.597802px;}
.y4d_c00159{bottom:182.972800px;}
.y4c_c00159{bottom:213.347799px;}
.y4b_c00159{bottom:243.722798px;}
.y4a_c00159{bottom:274.097797px;}
.y49_c00159{bottom:304.472795px;}
.y4f_c00159{bottom:340.353374px;}
.y3_c00159{bottom:401.525233px;}
.y2f_c00159{bottom:486.888550px;}
.y11_c00159{bottom:493.328193px;}
.y25_c00159{bottom:493.343399px;}
.y10_c00159{bottom:493.853349px;}
.y26_c00159{bottom:493.873061px;}
.y3d_c00159{bottom:493.958987px;}
.y24_c00159{bottom:494.588444px;}
.y3e_c00159{bottom:494.792564px;}
.y3c_c00159{bottom:494.812470px;}
.yf_c00159{bottom:494.919675px;}
.y23_c00159{bottom:495.839509px;}
.y3b_c00159{bottom:495.847333px;}
.ye_c00159{bottom:495.993006px;}
.y27_c00159{bottom:496.289992px;}
.y12_c00159{bottom:496.353113px;}
.y3f_c00159{bottom:496.973447px;}
.y22_c00159{bottom:497.484020px;}
.yd_c00159{bottom:497.644926px;}
.y3a_c00159{bottom:498.050705px;}
.y40_c00159{bottom:498.365140px;}
.y21_c00159{bottom:499.172711px;}
.yc_c00159{bottom:499.338107px;}
.y41_c00159{bottom:500.063439px;}
.y13_c00159{bottom:500.630691px;}
.y20_c00159{bottom:501.037949px;}
.yb_c00159{bottom:501.208280px;}
.y28_c00159{bottom:501.390523px;}
.y39_c00159{bottom:501.842247px;}
.y42_c00159{bottom:502.505484px;}
.y14_c00159{bottom:503.149881px;}
.y43_c00159{bottom:504.764265px;}
.y29_c00159{bottom:505.018723px;}
.y1f_c00159{bottom:505.692124px;}
.ya_c00159{bottom:505.872210px;}
.y38_c00159{bottom:507.310818px;}
.y44_c00159{bottom:508.033427px;}
.y15_c00159{bottom:509.102244px;}
.y2a_c00159{bottom:510.653024px;}
.y37_c00159{bottom:511.777229px;}
.y1e_c00159{bottom:512.093421px;}
.y9_c00159{bottom:512.281650px;}
.y16_c00159{bottom:513.850725px;}
.y45_c00159{bottom:516.430791px;}
.y2b_c00159{bottom:517.310602px;}
.y36_c00159{bottom:518.202280px;}
.y1d_c00159{bottom:519.400384px;}
.y8_c00159{bottom:519.490765px;}
.y35_c00159{bottom:522.772118px;}
.y7_c00159{bottom:522.949612px;}
.y46_c00159{bottom:524.479945px;}
.y17_c00159{bottom:525.634963px;}
.y1c_c00159{bottom:526.562252px;}
.y6_c00159{bottom:528.960471px;}
.y2c_c00159{bottom:529.273050px;}
.y34_c00159{bottom:530.544173px;}
.y1b_c00159{bottom:531.331047px;}
.y2e_c00159{bottom:533.268367px;}
.y32_c00159{bottom:533.961655px;}
.y33_c00159{bottom:534.438127px;}
.y5_c00159{bottom:536.219702px;}
.y1a_c00159{bottom:537.503874px;}
.y18_c00159{bottom:537.875309px;}
.y2d_c00159{bottom:538.238502px;}
.y30_c00159{bottom:539.975192px;}
.y19_c00159{bottom:544.566810px;}
.y4_c00159{bottom:545.753758px;}
.y31_c00159{bottom:577.436970px;}
.y48_c00159{bottom:639.092781px;}
.y47_c00159{bottom:1021.440190px;}
.y53_c00159{bottom:1128.788039px;}
.y51_c00159{bottom:1133.738410px;}
.y50_c00159{bottom:1147.738449px;}
.y54_c00159{bottom:1153.262414px;}
.y52_c00159{bottom:1171.082693px;}
.ha_c00159{height:35.988753px;}
.hb_c00159{height:35.988755px;}
.hc_c00159{height:35.988756px;}
.h15_c00159{height:37.020556px;}
.h4_c00159{height:37.459702px;}
.he_c00159{height:39.108240px;}
.h14_c00159{height:39.108509px;}
.h8_c00159{height:44.107038px;}
.h5_c00159{height:44.107039px;}
.h9_c00159{height:44.107040px;}
.h6_c00159{height:44.107042px;}
.h7_c00159{height:44.107043px;}
.hf_c00159{height:45.588598px;}
.h3_c00159{height:50.480386px;}
.h10_c00159{height:51.916398px;}
.hd_c00159{height:56.295398px;}
.h12_c00159{height:57.017399px;}
.h17_c00159{height:57.575126px;}
.h11_c00159{height:67.042966px;}
.h13_c00159{height:68.367700px;}
.h16_c00159{height:89.376654px;}
.h2_c00159{height:1304.999946px;}
.h0_c00159{height:1304.999953px;}
.h1_c00159{height:1305.000000px;}
.w2_c00159{width:934.874961px;}
.w0_c00159{width:934.875000px;}
.w1_c00159{width:935.250000px;}
.x0_c00159{left:0.000000px;}
.x3f_c00159{left:89.487450px;}
.x40_c00159{left:90.844844px;}
.x41_c00159{left:107.230262px;}
.x42_c00159{left:108.827167px;}
.x3d_c00159{left:130.690629px;}
.x15_c00159{left:134.974838px;}
.x14_c00159{left:136.648279px;}
.x16_c00159{left:140.021272px;}
.x17_c00159{left:144.871714px;}
.x18_c00159{left:150.237526px;}
.x19_c00159{left:152.990336px;}
.x1a_c00159{left:156.000220px;}
.x1b_c00159{left:159.847713px;}
.x25_c00159{left:161.443962px;}
.x1c_c00159{left:163.301377px;}
.x1d_c00159{left:171.586339px;}
.x1e_c00159{left:179.855997px;}
.x1f_c00159{left:188.287487px;}
.x20_c00159{left:196.673970px;}
.x21_c00159{left:200.841336px;}
.x22_c00159{left:205.399483px;}
.x23_c00159{left:209.208896px;}
.x24_c00159{left:211.795693px;}
.x4_c00159{left:230.398389px;}
.x3_c00159{left:232.534609px;}
.x5_c00159{left:235.623324px;}
.x6_c00159{left:240.462566px;}
.x7_c00159{left:245.820252px;}
.x8_c00159{left:248.569815px;}
.x9_c00159{left:251.576732px;}
.xa_c00159{left:255.421336px;}
.x44_c00159{left:256.622047px;}
.xb_c00159{left:258.708042px;}
.xc_c00159{left:263.145298px;}
.xd_c00159{left:271.763354px;}
.xe_c00159{left:283.603990px;}
.xf_c00159{left:291.041304px;}
.x10_c00159{left:294.435991px;}
.x43_c00159{left:295.615161px;}
.x11_c00159{left:299.775542px;}
.x12_c00159{left:303.165014px;}
.x13_c00159{left:307.176807px;}
.x2a_c00159{left:327.047435px;}
.x2b_c00159{left:328.264734px;}
.x2c_c00159{left:329.685747px;}
.x2d_c00159{left:333.082971px;}
.x2e_c00159{left:336.307511px;}
.x2f_c00159{left:342.189757px;}
.x30_c00159{left:348.376740px;}
.x29_c00159{left:351.731739px;}
.x31_c00159{left:354.069743px;}
.x32_c00159{left:357.479743px;}
.x33_c00159{left:365.386869px;}
.x34_c00159{left:373.375785px;}
.x35_c00159{left:380.135498px;}
.x36_c00159{left:383.155707px;}
.x37_c00159{left:386.159935px;}
.x38_c00159{left:389.557910px;}
.x39_c00159{left:392.174988px;}
.x3a_c00159{left:395.489533px;}
.x3b_c00159{left:400.664851px;}
.x3c_c00159{left:403.469600px;}
.x1_c00159{left:452.786554px;}
.x27_c00159{left:464.896169px;}
.x3e_c00159{left:659.135961px;}
.x2_c00159{left:697.320842px;}
.x28_c00159{left:733.540639px;}
.x26_c00159{left:757.088990px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.v1_c00159{vertical-align:1.137536pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws1_c00159{word-spacing:-37.057398pt;}
.ws0_c00159{word-spacing:-13.485567pt;}
.ws3_c00159{word-spacing:-0.079987pt;}
.ws2_c00159{word-spacing:-0.049560pt;}
.ws5_c00159{word-spacing:0.000000pt;}
.ws4_c00159{word-spacing:256.052163pt;}
._1_c00159{width:1.711426pt;}
._0_c00159{width:3.237487pt;}
._3_c00159{width:11.718752pt;}
._2_c00159{width:14.036437pt;}
.fsf_c00159{font-size:35.340254pt;}
.fs8_c00159{font-size:37.333182pt;}
.fse_c00159{font-size:37.333438pt;}
.fs5_c00159{font-size:42.105093pt;}
.fs2_c00159{font-size:42.105094pt;}
.fs6_c00159{font-size:42.105095pt;}
.fs3_c00159{font-size:42.105096pt;}
.fs4_c00159{font-size:42.105098pt;}
.fs1_c00159{font-size:45.921418pt;}
.fsa_c00159{font-size:49.559999pt;}
.fs9_c00159{font-size:53.319997pt;}
.fs0_c00159{font-size:61.883325pt;}
.fsb_c00159{font-size:63.999997pt;}
.fsc_c00159{font-size:66.154880pt;}
.fs7_c00159{font-size:68.454656pt;}
.fsd_c00159{font-size:79.986889pt;}
.fs10_c00159{font-size:85.319996pt;}
.y0_c00159{bottom:0.000000pt;}
.y1_c00159{bottom:0.000007pt;}
.y55_c00159{bottom:26.134367pt;}
.y2_c00159{bottom:26.976047pt;}
.y4e_c00159{bottom:135.642490pt;}
.y4d_c00159{bottom:162.642489pt;}
.y4c_c00159{bottom:189.642488pt;}
.y4b_c00159{bottom:216.642487pt;}
.y4a_c00159{bottom:243.642486pt;}
.y49_c00159{bottom:270.642485pt;}
.y4f_c00159{bottom:302.536333pt;}
.y3_c00159{bottom:356.911319pt;}
.y2f_c00159{bottom:432.789822pt;}
.y11_c00159{bottom:438.513950pt;}
.y25_c00159{bottom:438.527466pt;}
.y10_c00159{bottom:438.980754pt;}
.y26_c00159{bottom:438.998276pt;}
.y3d_c00159{bottom:439.074655pt;}
.y24_c00159{bottom:439.634173pt;}
.y3e_c00159{bottom:439.815613pt;}
.y3c_c00159{bottom:439.833307pt;}
.yf_c00159{bottom:439.928600pt;}
.y23_c00159{bottom:440.746230pt;}
.y3b_c00159{bottom:440.753185pt;}
.ye_c00159{bottom:440.882672pt;}
.y27_c00159{bottom:441.146660pt;}
.y12_c00159{bottom:441.202767pt;}
.y3f_c00159{bottom:441.754175pt;}
.y22_c00159{bottom:442.208018pt;}
.yd_c00159{bottom:442.351046pt;}
.y3a_c00159{bottom:442.711737pt;}
.y40_c00159{bottom:442.991236pt;}
.y21_c00159{bottom:443.709077pt;}
.yc_c00159{bottom:443.856095pt;}
.y41_c00159{bottom:444.500834pt;}
.y13_c00159{bottom:445.005059pt;}
.y20_c00159{bottom:445.367066pt;}
.yb_c00159{bottom:445.518471pt;}
.y28_c00159{bottom:445.680465pt;}
.y39_c00159{bottom:446.081997pt;}
.y42_c00159{bottom:446.671541pt;}
.y14_c00159{bottom:447.244339pt;}
.y43_c00159{bottom:448.679347pt;}
.y29_c00159{bottom:448.905531pt;}
.y1f_c00159{bottom:449.504110pt;}
.ya_c00159{bottom:449.664187pt;}
.y38_c00159{bottom:450.942950pt;}
.y44_c00159{bottom:451.585269pt;}
.y15_c00159{bottom:452.535328pt;}
.y2a_c00159{bottom:453.913799pt;}
.y37_c00159{bottom:454.913093pt;}
.y1e_c00159{bottom:455.194152pt;}
.y9_c00159{bottom:455.361467pt;}
.y16_c00159{bottom:456.756200pt;}
.y45_c00159{bottom:459.049592pt;}
.y2b_c00159{bottom:459.831647pt;}
.y36_c00159{bottom:460.624248pt;}
.y1d_c00159{bottom:461.689230pt;}
.y8_c00159{bottom:461.769569pt;}
.y35_c00159{bottom:464.686327pt;}
.y7_c00159{bottom:464.844100pt;}
.y46_c00159{bottom:466.204395pt;}
.y17_c00159{bottom:467.231078pt;}
.y1c_c00159{bottom:468.055335pt;}
.y6_c00159{bottom:470.187085pt;}
.y2c_c00159{bottom:470.464933pt;}
.y34_c00159{bottom:471.594820pt;}
.y1b_c00159{bottom:472.294264pt;}
.y2e_c00159{bottom:474.016326pt;}
.y32_c00159{bottom:474.632582pt;}
.y33_c00159{bottom:475.056113pt;}
.y5_c00159{bottom:476.639735pt;}
.y1a_c00159{bottom:477.781221pt;}
.y18_c00159{bottom:478.111386pt;}
.y2d_c00159{bottom:478.434224pt;}
.y30_c00159{bottom:479.977948pt;}
.y19_c00159{bottom:484.059387pt;}
.y4_c00159{bottom:485.114452pt;}
.y31_c00159{bottom:513.277307pt;}
.y48_c00159{bottom:568.082472pt;}
.y47_c00159{bottom:907.946836pt;}
.y53_c00159{bottom:1003.367145pt;}
.y51_c00159{bottom:1007.767476pt;}
.y50_c00159{bottom:1020.211955pt;}
.y54_c00159{bottom:1025.122146pt;}
.y52_c00159{bottom:1040.962393pt;}
.ha_c00159{height:31.990003pt;}
.hb_c00159{height:31.990004pt;}
.hc_c00159{height:31.990006pt;}
.h15_c00159{height:32.907161pt;}
.h4_c00159{height:33.297513pt;}
.he_c00159{height:34.762880pt;}
.h14_c00159{height:34.763119pt;}
.h8_c00159{height:39.206256pt;}
.h5_c00159{height:39.206257pt;}
.h9_c00159{height:39.206258pt;}
.h6_c00159{height:39.206259pt;}
.h7_c00159{height:39.206261pt;}
.hf_c00159{height:40.523198pt;}
.h3_c00159{height:44.871454pt;}
.h10_c00159{height:46.147909pt;}
.hd_c00159{height:50.040354pt;}
.h12_c00159{height:50.682132pt;}
.h17_c00159{height:51.177889pt;}
.h11_c00159{height:59.593748pt;}
.h13_c00159{height:60.771289pt;}
.h16_c00159{height:79.445915pt;}
.h2_c00159{height:1159.999952pt;}
.h0_c00159{height:1159.999959pt;}
.h1_c00159{height:1160.000000pt;}
.w2_c00159{width:830.999965pt;}
.w0_c00159{width:831.000000pt;}
.w1_c00159{width:831.333333pt;}
.x0_c00159{left:0.000000pt;}
.x3f_c00159{left:79.544400pt;}
.x40_c00159{left:80.750973pt;}
.x41_c00159{left:95.315788pt;}
.x42_c00159{left:96.735260pt;}
.x3d_c00159{left:116.169448pt;}
.x15_c00159{left:119.977634pt;}
.x14_c00159{left:121.465137pt;}
.x16_c00159{left:124.463353pt;}
.x17_c00159{left:128.774857pt;}
.x18_c00159{left:133.544468pt;}
.x19_c00159{left:135.991410pt;}
.x1a_c00159{left:138.666862pt;}
.x1b_c00159{left:142.086856pt;}
.x25_c00159{left:143.505744pt;}
.x1c_c00159{left:145.156780pt;}
.x1d_c00159{left:152.521190pt;}
.x1e_c00159{left:159.871997pt;}
.x1f_c00159{left:167.366655pt;}
.x20_c00159{left:174.821307pt;}
.x21_c00159{left:178.525632pt;}
.x22_c00159{left:182.577318pt;}
.x23_c00159{left:185.963463pt;}
.x24_c00159{left:188.262839pt;}
.x4_c00159{left:204.798568pt;}
.x3_c00159{left:206.697430pt;}
.x5_c00159{left:209.442955pt;}
.x6_c00159{left:213.744503pt;}
.x7_c00159{left:218.506891pt;}
.x8_c00159{left:220.950947pt;}
.x9_c00159{left:223.623762pt;}
.xa_c00159{left:227.041187pt;}
.x44_c00159{left:228.108486pt;}
.xb_c00159{left:229.962704pt;}
.xc_c00159{left:233.906932pt;}
.xd_c00159{left:241.567426pt;}
.xe_c00159{left:252.092435pt;}
.xf_c00159{left:258.703382pt;}
.x10_c00159{left:261.720880pt;}
.x43_c00159{left:262.769032pt;}
.x11_c00159{left:266.467148pt;}
.x12_c00159{left:269.480012pt;}
.x13_c00159{left:273.046051pt;}
.x2a_c00159{left:290.708831pt;}
.x2b_c00159{left:291.790874pt;}
.x2c_c00159{left:293.053997pt;}
.x2d_c00159{left:296.073752pt;}
.x2e_c00159{left:298.940009pt;}
.x2f_c00159{left:304.168673pt;}
.x30_c00159{left:309.668213pt;}
.x29_c00159{left:312.650435pt;}
.x31_c00159{left:314.728661pt;}
.x32_c00159{left:317.759772pt;}
.x33_c00159{left:324.788328pt;}
.x34_c00159{left:331.889587pt;}
.x35_c00159{left:337.898220pt;}
.x36_c00159{left:340.582851pt;}
.x37_c00159{left:343.253275pt;}
.x38_c00159{left:346.273697pt;}
.x39_c00159{left:348.599989pt;}
.x3a_c00159{left:351.546252pt;}
.x3b_c00159{left:356.146534pt;}
.x3c_c00159{left:358.639645pt;}
.x1_c00159{left:402.476937pt;}
.x27_c00159{left:413.241039pt;}
.x3e_c00159{left:585.898632pt;}
.x2_c00159{left:619.840748pt;}
.x28_c00159{left:652.036124pt;}
.x26_c00159{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b944941a16df457dd0fe8a0d.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.006348;font-style:normal;font-weight:normal;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_050ae662bcdf7a5108e56b4b.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.000000;font-style:normal;font-weight:normal;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_22a8d9e28664e8a7e2db6004.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.006348;font-style:normal;font-weight:normal;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_11d1a962eb30f8fe331fa733.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:0.723633;font-style:normal;font-weight: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_3b60aae33aa1d9de3bb6e5cd.woff2')format("woff");}.ff5_c00160{font-family:ff5_c00160;line-height:0.965332;font-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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00160{vertical-align:0.000000px;}
.ls0_c00160{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00160{word-spacing:-19.320776px;}
.ws1_c00160{word-spacing:-0.055755px;}
.ws2_c00160{word-spacing:0.000000px;}
._3_c00160{width:5.489044px;}
._1_c00160{width:8.015626px;}
._5_c00160{width:12.842054px;}
._0_c00160{width:15.480422px;}
._4_c00160{width:16.785462px;}
._2_c00160{width:26.177326px;}
._6_c00160{width:28.725814px;}
.fc3_c00160{color:transparent;}
.fc1_c00160{color:rgb(67,91,56);}
.fc2_c00160{color:rgb(255,255,255);}
.fc0_c00160{color:rgb(0,0,0);}
.fs3_c00160{font-size:55.754999px;}
.fs1_c00160{font-size:69.618741px;}
.fs0_c00160{font-size:71.999997px;}
.fs2_c00160{font-size:74.377724px;}
.y0_c00160{bottom:0.000000px;}
.y1_c00160{bottom:0.000008px;}
.y8_c00160{bottom:29.401163px;}
.y6_c00160{bottom:30.348053px;}
.y10_c00160{bottom:62.412549px;}
.y5_c00160{bottom:783.088736px;}
.y4_c00160{bottom:813.463735px;}
.y3_c00160{bottom:843.838734px;}
.y2_c00160{bottom:874.213732px;}
.y7_c00160{bottom:917.413731px;}
.ye_c00160{bottom:994.148890px;}
.yd_c00160{bottom:1024.523889px;}
.yc_c00160{bottom:1054.898888px;}
.yb_c00160{bottom:1085.273886px;}
.ya_c00160{bottom:1115.648885px;}
.y9_c00160{bottom:1146.023884px;}
.yf_c00160{bottom:1189.296328px;}
.h6_c00160{height:40.427819px;}
.h4_c00160{height:53.335842px;}
.h3_c00160{height:55.160154px;}
.h5_c00160{height:56.981762px;}
.h2_c00160{height:1304.999946px;}
.h0_c00160{height:1304.999953px;}
.h1_c00160{height:1305.000000px;}
.w2_c00160{width:934.874961px;}
.w0_c00160{width:934.875000px;}
.w1_c00160{width:935.250000px;}
.x0_c00160{left:0.000000px;}
.x3_c00160{left:30.881501px;}
.x1_c00160{left:87.223950px;}
.x2_c00160{left:452.782029px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls0_c00160{letter-spacing:0.000000pt;}
.ws0_c00160{word-spacing:-17.174023pt;}
.ws1_c00160{word-spacing:-0.049560pt;}
.ws2_c00160{word-spacing:0.000000pt;}
._3_c00160{width:4.879150pt;}
._1_c00160{width:7.125001pt;}
._5_c00160{width:11.415159pt;}
._0_c00160{width:13.760375pt;}
._4_c00160{width:14.920411pt;}
._2_c00160{width:23.268735pt;}
._6_c00160{width:25.534057pt;}
.fs3_c00160{font-size:49.559999pt;}
.fs1_c00160{font-size:61.883325pt;}
.fs0_c00160{font-size:63.999997pt;}
.fs2_c00160{font-size:66.113533pt;}
.y0_c00160{bottom:0.000000pt;}
.y1_c00160{bottom:0.000007pt;}
.y8_c00160{bottom:26.134367pt;}
.y6_c00160{bottom:26.976047pt;}
.y10_c00160{bottom:55.477822pt;}
.y5_c00160{bottom:696.078877pt;}
.y4_c00160{bottom:723.078875pt;}
.y3_c00160{bottom:750.078874pt;}
.y2_c00160{bottom:777.078873pt;}
.y7_c00160{bottom:815.478872pt;}
.ye_c00160{bottom:883.687902pt;}
.yd_c00160{bottom:910.687901pt;}
.yc_c00160{bottom:937.687900pt;}
.yb_c00160{bottom:964.687899pt;}
.ya_c00160{bottom:991.687898pt;}
.y9_c00160{bottom:1018.687897pt;}
.yf_c00160{bottom:1057.152292pt;}
.h6_c00160{height:35.935839pt;}
.h4_c00160{height:47.409637pt;}
.h3_c00160{height:49.031248pt;}
.h5_c00160{height:50.650455pt;}
.h2_c00160{height:1159.999952pt;}
.h0_c00160{height:1159.999959pt;}
.h1_c00160{height:1160.000000pt;}
.w2_c00160{width:830.999965pt;}
.w0_c00160{width:831.000000pt;}
.w1_c00160{width:831.333333pt;}
.x0_c00160{left:0.000000pt;}
.x3_c00160{left:27.450223pt;}
.x1_c00160{left:77.532400pt;}
.x2_c00160{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67921a2296186e2177374f2a.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.006348;font-style:normal;font-weight:normal;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_9a300695921e054a5a5f289f.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.000000;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:0.734863;font-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_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);}
.v0_c00161{vertical-align:0.000000px;}
.ls0_c00161{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00161{word-spacing:0.000000px;}
._0_c00161{width:1.485900px;}
._6_c00161{width:2.517234px;}
._3_c00161{width:3.708984px;}
._e_c00161{width:4.833705px;}
._11_c00161{width:5.870030px;}
._a_c00161{width:6.939237px;}
._8_c00161{width:8.148419px;}
._d_c00161{width:9.432726px;}
._2_c00161{width:10.703086px;}
._f_c00161{width:11.970093px;}
._9_c00161{width:15.394117px;}
._5_c00161{width:16.669073px;}
._4_c00161{width:19.933594px;}
._b_c00161{width:22.429687px;}
._7_c00161{width:24.973707px;}
._1_c00161{width:26.437500px;}
._c_c00161{width:29.531251px;}
._10_c00161{width:31.154824px;}
.fc2_c00161{color:transparent;}
.fc1_c00161{color:rgb(128,128,128);}
.fc0_c00161{color:rgb(0,0,0);}
.fs1_c00161{font-size:69.618741px;}
.fs0_c00161{font-size:71.999997px;}
.y0_c00161{bottom:0.000000px;}
.y1_c00161{bottom:0.000008px;}
.y21_c00161{bottom:29.400983px;}
.y20_c00161{bottom:30.347873px;}
.y1f_c00161{bottom:215.028272px;}
.y1e_c00161{bottom:246.528271px;}
.y1d_c00161{bottom:278.028269px;}
.y1c_c00161{bottom:309.528268px;}
.y1b_c00161{bottom:341.028267px;}
.y1a_c00161{bottom:372.528265px;}
.y19_c00161{bottom:404.028264px;}
.y18_c00161{bottom:435.528263px;}
.y17_c00161{bottom:467.028261px;}
.y16_c00161{bottom:498.528260px;}
.y15_c00161{bottom:530.028259px;}
.y14_c00161{bottom:561.528257px;}
.y13_c00161{bottom:593.028256px;}
.y12_c00161{bottom:624.528255px;}
.y11_c00161{bottom:656.028253px;}
.y10_c00161{bottom:687.528252px;}
.yf_c00161{bottom:719.028251px;}
.ye_c00161{bottom:782.028248px;}
.yd_c00161{bottom:813.528247px;}
.yc_c00161{bottom:845.028246px;}
.yb_c00161{bottom:876.528244px;}
.ya_c00161{bottom:908.028243px;}
.y9_c00161{bottom:939.528242px;}
.y8_c00161{bottom:971.028240px;}
.y7_c00161{bottom:1002.528239px;}
.y6_c00161{bottom:1034.028238px;}
.y5_c00161{bottom:1065.528236px;}
.y4_c00161{bottom:1097.028235px;}
.y3_c00161{bottom:1128.528234px;}
.y2_c00161{bottom:1160.028232px;}
.h4_c00161{height:50.480386px;}
.h3_c00161{height:55.160154px;}
.h2_c00161{height:1304.999946px;}
.h0_c00161{height:1304.999953px;}
.h1_c00161{height:1305.000000px;}
.w2_c00161{width:934.874961px;}
.w0_c00161{width:934.875000px;}
.w1_c00161{width:935.250000px;}
.x0_c00161{left:0.000000px;}
.x1_c00161{left:87.902647px;}
.x2_c00161{left:452.782029px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ws0_c00161{word-spacing:0.000000pt;}
._0_c00161{width:1.320800pt;}
._6_c00161{width:2.237541pt;}
._3_c00161{width:3.296875pt;}
._e_c00161{width:4.296626pt;}
._11_c00161{width:5.217804pt;}
._a_c00161{width:6.168211pt;}
._8_c00161{width:7.243039pt;}
._d_c00161{width:8.384646pt;}
._2_c00161{width:9.513854pt;}
._f_c00161{width:10.640083pt;}
._9_c00161{width:13.683660pt;}
._5_c00161{width:14.816954pt;}
._4_c00161{width:17.718750pt;}
._b_c00161{width:19.937499pt;}
._7_c00161{width:22.198850pt;}
._1_c00161{width:23.500000pt;}
._c_c00161{width:26.250001pt;}
._10_c00161{width:27.693177pt;}
.fs1_c00161{font-size:61.883325pt;}
.fs0_c00161{font-size:63.999997pt;}
.y0_c00161{bottom:0.000000pt;}
.y1_c00161{bottom:0.000007pt;}
.y21_c00161{bottom:26.134207pt;}
.y20_c00161{bottom:26.975887pt;}
.y1f_c00161{bottom:191.136242pt;}
.y1e_c00161{bottom:219.136240pt;}
.y1d_c00161{bottom:247.136239pt;}
.y1c_c00161{bottom:275.136238pt;}
.y1b_c00161{bottom:303.136237pt;}
.y1a_c00161{bottom:331.136236pt;}
.y19_c00161{bottom:359.136235pt;}
.y18_c00161{bottom:387.136233pt;}
.y17_c00161{bottom:415.136232pt;}
.y16_c00161{bottom:443.136231pt;}
.y15_c00161{bottom:471.136230pt;}
.y14_c00161{bottom:499.136229pt;}
.y13_c00161{bottom:527.136228pt;}
.y12_c00161{bottom:555.136226pt;}
.y11_c00161{bottom:583.136225pt;}
.y10_c00161{bottom:611.136224pt;}
.yf_c00161{bottom:639.136223pt;}
.ye_c00161{bottom:695.136221pt;}
.yd_c00161{bottom:723.136219pt;}
.yc_c00161{bottom:751.136218pt;}
.yb_c00161{bottom:779.136217pt;}
.ya_c00161{bottom:807.136216pt;}
.y9_c00161{bottom:835.136215pt;}
.y8_c00161{bottom:863.136214pt;}
.y7_c00161{bottom:891.136212pt;}
.y6_c00161{bottom:919.136211pt;}
.y5_c00161{bottom:947.136210pt;}
.y4_c00161{bottom:975.136209pt;}
.y3_c00161{bottom:1003.136208pt;}
.y2_c00161{bottom:1031.136207pt;}
.h4_c00161{height:44.871454pt;}
.h3_c00161{height:49.031248pt;}
.h2_c00161{height:1159.999952pt;}
.h0_c00161{height:1159.999959pt;}
.h1_c00161{height:1160.000000pt;}
.w2_c00161{width:830.999965pt;}
.w0_c00161{width:831.000000pt;}
.w1_c00161{width:831.333333pt;}
.x0_c00161{left:0.000000pt;}
.x1_c00161{left:78.135686pt;}
.x2_c00161{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1cb62b67862714dafa9fbc19.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.006348;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:0.734863;font-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_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);}
.v0_c00162{vertical-align:0.000000px;}
.ls0_c00162{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00162{word-spacing:0.000000px;}
._1_c00162{width:1.525178px;}
._3_c00162{width:2.828703px;}
._f_c00162{width:4.038022px;}
._d_c00162{width:5.055634px;}
._c_c00162{width:6.092054px;}
._b_c00162{width:7.435546px;}
._0_c00162{width:9.332336px;}
._2_c00162{width:11.249999px;}
._5_c00162{width:13.078125px;}
._6_c00162{width:14.512455px;}
._7_c00162{width:24.851551px;}
._8_c00162{width:27.105470px;}
._a_c00162{width:28.343694px;}
._4_c00162{width:34.759915px;}
._9_c00162{width:35.852921px;}
._e_c00162{width:37.304622px;}
._10_c00162{width:53.031210px;}
.fc2_c00162{color:transparent;}
.fc1_c00162{color:rgb(128,128,128);}
.fc0_c00162{color:rgb(0,0,0);}
.fs1_c00162{font-size:69.618741px;}
.fs0_c00162{font-size:71.999997px;}
.y0_c00162{bottom:0.000000px;}
.y1_c00162{bottom:0.000008px;}
.y24_c00162{bottom:29.401163px;}
.y23_c00162{bottom:30.348053px;}
.y22_c00162{bottom:160.047415px;}
.y21_c00162{bottom:191.547413px;}
.y20_c00162{bottom:223.047412px;}
.y1f_c00162{bottom:254.547411px;}
.y1e_c00162{bottom:286.047409px;}
.y1d_c00162{bottom:317.547408px;}
.y1c_c00162{bottom:349.047407px;}
.y1b_c00162{bottom:380.547405px;}
.y1a_c00162{bottom:412.047404px;}
.y19_c00162{bottom:443.547403px;}
.y18_c00162{bottom:475.047401px;}
.y17_c00162{bottom:506.547400px;}
.y16_c00162{bottom:538.047399px;}
.y15_c00162{bottom:569.547397px;}
.y14_c00162{bottom:601.047396px;}
.y13_c00162{bottom:632.547395px;}
.y12_c00162{bottom:664.047394px;}
.y11_c00162{bottom:695.547392px;}
.y10_c00162{bottom:727.047391px;}
.yf_c00162{bottom:758.547390px;}
.ye_c00162{bottom:821.547387px;}
.yd_c00162{bottom:853.047386px;}
.yc_c00162{bottom:884.547384px;}
.yb_c00162{bottom:916.047383px;}
.ya_c00162{bottom:947.547382px;}
.y9_c00162{bottom:979.047380px;}
.y8_c00162{bottom:1010.547379px;}
.y7_c00162{bottom:1042.047378px;}
.y6_c00162{bottom:1073.547376px;}
.y5_c00162{bottom:1105.047375px;}
.y4_c00162{bottom:1136.547374px;}
.y3_c00162{bottom:1168.047373px;}
.y2_c00162{bottom:1199.547371px;}
.h4_c00162{height:50.480386px;}
.h3_c00162{height:55.160154px;}
.h2_c00162{height:1304.999946px;}
.h0_c00162{height:1304.999953px;}
.h1_c00162{height:1305.000000px;}
.w2_c00162{width:934.874961px;}
.w0_c00162{width:934.875000px;}
.w1_c00162{width:935.250000px;}
.x0_c00162{left:0.000000px;}
.x1_c00162{left:89.487450px;}
.x2_c00162{left:452.782029px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls0_c00162{letter-spacing:0.000000pt;}
.ws0_c00162{word-spacing:0.000000pt;}
._1_c00162{width:1.355714pt;}
._3_c00162{width:2.514403pt;}
._f_c00162{width:3.589353pt;}
._d_c00162{width:4.493897pt;}
._c_c00162{width:5.415159pt;}
._b_c00162{width:6.609374pt;}
._0_c00162{width:8.295409pt;}
._2_c00162{width:9.999999pt;}
._5_c00162{width:11.625000pt;}
._6_c00162{width:12.899960pt;}
._7_c00162{width:22.090268pt;}
._8_c00162{width:24.093751pt;}
._a_c00162{width:25.194395pt;}
._4_c00162{width:30.897702pt;}
._9_c00162{width:31.869263pt;}
._e_c00162{width:33.159664pt;}
._10_c00162{width:47.138853pt;}
.fs1_c00162{font-size:61.883325pt;}
.fs0_c00162{font-size:63.999997pt;}
.y0_c00162{bottom:0.000000pt;}
.y1_c00162{bottom:0.000007pt;}
.y24_c00162{bottom:26.134367pt;}
.y23_c00162{bottom:26.976047pt;}
.y22_c00162{bottom:142.264368pt;}
.y21_c00162{bottom:170.264367pt;}
.y20_c00162{bottom:198.264366pt;}
.y1f_c00162{bottom:226.264365pt;}
.y1e_c00162{bottom:254.264364pt;}
.y1d_c00162{bottom:282.264363pt;}
.y1c_c00162{bottom:310.264361pt;}
.y1b_c00162{bottom:338.264360pt;}
.y1a_c00162{bottom:366.264359pt;}
.y19_c00162{bottom:394.264358pt;}
.y18_c00162{bottom:422.264357pt;}
.y17_c00162{bottom:450.264356pt;}
.y16_c00162{bottom:478.264354pt;}
.y15_c00162{bottom:506.264353pt;}
.y14_c00162{bottom:534.264352pt;}
.y13_c00162{bottom:562.264351pt;}
.y12_c00162{bottom:590.264350pt;}
.y11_c00162{bottom:618.264349pt;}
.y10_c00162{bottom:646.264347pt;}
.yf_c00162{bottom:674.264346pt;}
.ye_c00162{bottom:730.264344pt;}
.yd_c00162{bottom:758.264343pt;}
.yc_c00162{bottom:786.264342pt;}
.yb_c00162{bottom:814.264340pt;}
.ya_c00162{bottom:842.264339pt;}
.y9_c00162{bottom:870.264338pt;}
.y8_c00162{bottom:898.264337pt;}
.y7_c00162{bottom:926.264336pt;}
.y6_c00162{bottom:954.264335pt;}
.y5_c00162{bottom:982.264333pt;}
.y4_c00162{bottom:1010.264332pt;}
.y3_c00162{bottom:1038.264331pt;}
.y2_c00162{bottom:1066.264330pt;}
.h4_c00162{height:44.871454pt;}
.h3_c00162{height:49.031248pt;}
.h2_c00162{height:1159.999952pt;}
.h0_c00162{height:1159.999959pt;}
.h1_c00162{height:1160.000000pt;}
.w2_c00162{width:830.999965pt;}
.w0_c00162{width:831.000000pt;}
.w1_c00162{width:831.333333pt;}
.x0_c00162{left:0.000000pt;}
.x1_c00162{left:79.544400pt;}
.x2_c00162{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ae8a28d8e3de8f92716e920.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.006348;font-style:normal;font-weight:normal;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_f5ae13f1c4074f1c5b738f40.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.000000;font-style:normal;font-weight:normal;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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:0.734863;font-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_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;}
.ls7_c00163{letter-spacing:0.000000px;}
.ls5_c00163{letter-spacing:0.004453px;}
.ls1_c00163{letter-spacing:0.010995px;}
.ls6_c00163{letter-spacing:0.011015px;}
.ls2_c00163{letter-spacing:0.011035px;}
.ls3_c00163{letter-spacing:0.020020px;}
.ls4_c00163{letter-spacing:0.026543px;}
.ls0_c00163{letter-spacing:2.182292px;}
.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;}
}
.ws0_c00163{word-spacing:-18.692968px;}
.ws1_c00163{word-spacing:0.000000px;}
._2_c00163{margin-left:-1.005488px;}
._6_c00163{width:1.004955px;}
._1_c00163{width:2.033432px;}
._c_c00163{width:3.035217px;}
._5_c00163{width:4.100132px;}
._b_c00163{width:5.155679px;}
._8_c00163{width:7.072627px;}
._10_c00163{width:8.384894px;}
._9_c00163{width:9.487669px;}
._d_c00163{width:10.593789px;}
._a_c00163{width:11.644145px;}
._0_c00163{width:12.696557px;}
._3_c00163{width:14.679688px;}
._7_c00163{width:15.776279px;}
._11_c00163{width:16.912963px;}
._f_c00163{width:21.900886px;}
._e_c00163{width:26.558901px;}
._12_c00163{width:35.029963px;}
._4_c00163{width:36.633458px;}
.fc2_c00163{color:transparent;}
.fc1_c00163{color:rgb(128,128,128);}
.fc0_c00163{color:rgb(0,0,0);}
.fs1_c00163{font-size:48.000598px;}
.fs2_c00163{font-size:69.618741px;}
.fs0_c00163{font-size:71.960897px;}
.fs3_c00163{font-size:71.999997px;}
.y0_c00163{bottom:0.000000px;}
.y1_c00163{bottom:0.000008px;}
.y2b_c00163{bottom:29.401163px;}
.y2a_c00163{bottom:30.348053px;}
.y29_c00163{bottom:80.133155px;}
.y28_c00163{bottom:109.133517px;}
.y27_c00163{bottom:138.133878px;}
.y26_c00163{bottom:167.134239px;}
.y25_c00163{bottom:196.134601px;}
.y24_c00163{bottom:225.134962px;}
.y23_c00163{bottom:254.135323px;}
.y22_c00163{bottom:283.135684px;}
.y21_c00163{bottom:312.136046px;}
.y20_c00163{bottom:341.136407px;}
.y1f_c00163{bottom:370.136768px;}
.y1e_c00163{bottom:399.137130px;}
.y1d_c00163{bottom:428.137491px;}
.y1c_c00163{bottom:457.137852px;}
.y1b_c00163{bottom:486.138213px;}
.y1a_c00163{bottom:515.138575px;}
.y19_c00163{bottom:544.138936px;}
.y18_c00163{bottom:573.139297px;}
.y17_c00163{bottom:602.139659px;}
.y16_c00163{bottom:631.140020px;}
.y15_c00163{bottom:660.140381px;}
.y14_c00163{bottom:689.140742px;}
.y13_c00163{bottom:718.141104px;}
.y12_c00163{bottom:747.141465px;}
.y11_c00163{bottom:776.141826px;}
.y10_c00163{bottom:801.142138px;}
.yf_c00163{bottom:824.142424px;}
.ye_c00163{bottom:853.142786px;}
.yd_c00163{bottom:882.143147px;}
.yc_c00163{bottom:911.143508px;}
.yb_c00163{bottom:940.143870px;}
.ya_c00163{bottom:969.144231px;}
.y9_c00163{bottom:998.144592px;}
.y8_c00163{bottom:1027.144953px;}
.y7_c00163{bottom:1056.145315px;}
.y6_c00163{bottom:1085.145676px;}
.y5_c00163{bottom:1114.146037px;}
.y4_c00163{bottom:1143.146399px;}
.y3_c00163{bottom:1172.146760px;}
.y2_c00163{bottom:1201.147121px;}
.h4_c00163{height:36.773896px;}
.h5_c00163{height:50.480386px;}
.h3_c00163{height:55.130199px;}
.h6_c00163{height:55.160154px;}
.h2_c00163{height:1304.999946px;}
.h0_c00163{height:1304.999953px;}
.h1_c00163{height:1305.000000px;}
.w2_c00163{width:934.874961px;}
.w0_c00163{width:934.875000px;}
.w1_c00163{width:935.250000px;}
.x0_c00163{left:0.000000px;}
.x1_c00163{left:87.902647px;}
.x2_c00163{left:452.782029px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls7_c00163{letter-spacing:0.000000pt;}
.ls5_c00163{letter-spacing:0.003958pt;}
.ls1_c00163{letter-spacing:0.009774pt;}
.ls6_c00163{letter-spacing:0.009791pt;}
.ls2_c00163{letter-spacing:0.009809pt;}
.ls3_c00163{letter-spacing:0.017795pt;}
.ls4_c00163{letter-spacing:0.023594pt;}
.ls0_c00163{letter-spacing:1.939816pt;}
.ws0_c00163{word-spacing:-16.615971pt;}
.ws1_c00163{word-spacing:0.000000pt;}
._2_c00163{margin-left:-0.893767pt;}
._6_c00163{width:0.893294pt;}
._1_c00163{width:1.807495pt;}
._c_c00163{width:2.697970pt;}
._5_c00163{width:3.644562pt;}
._b_c00163{width:4.582826pt;}
._8_c00163{width:6.286779pt;}
._10_c00163{width:7.453239pt;}
._9_c00163{width:8.433483pt;}
._d_c00163{width:9.416702pt;}
._a_c00163{width:10.350351pt;}
._0_c00163{width:11.285828pt;}
._3_c00163{width:13.048612pt;}
._7_c00163{width:14.023359pt;}
._11_c00163{width:15.033745pt;}
._f_c00163{width:19.467455pt;}
._e_c00163{width:23.607912pt;}
._12_c00163{width:31.137744pt;}
._4_c00163{width:32.563074pt;}
.fs1_c00163{font-size:42.667198pt;}
.fs2_c00163{font-size:61.883325pt;}
.fs0_c00163{font-size:63.965241pt;}
.fs3_c00163{font-size:63.999997pt;}
.y0_c00163{bottom:0.000000pt;}
.y1_c00163{bottom:0.000007pt;}
.y2b_c00163{bottom:26.134367pt;}
.y2a_c00163{bottom:26.976047pt;}
.y29_c00163{bottom:71.229471pt;}
.y28_c00163{bottom:97.007570pt;}
.y27_c00163{bottom:122.785669pt;}
.y26_c00163{bottom:148.563768pt;}
.y25_c00163{bottom:174.341867pt;}
.y24_c00163{bottom:200.119966pt;}
.y23_c00163{bottom:225.898065pt;}
.y22_c00163{bottom:251.676164pt;}
.y21_c00163{bottom:277.454263pt;}
.y20_c00163{bottom:303.232362pt;}
.y1f_c00163{bottom:329.010461pt;}
.y1e_c00163{bottom:354.788560pt;}
.y1d_c00163{bottom:380.566659pt;}
.y1c_c00163{bottom:406.344757pt;}
.y1b_c00163{bottom:432.122856pt;}
.y1a_c00163{bottom:457.900955pt;}
.y19_c00163{bottom:483.679054pt;}
.y18_c00163{bottom:509.457153pt;}
.y17_c00163{bottom:535.235252pt;}
.y16_c00163{bottom:561.013351pt;}
.y15_c00163{bottom:586.791450pt;}
.y14_c00163{bottom:612.569549pt;}
.y13_c00163{bottom:638.347648pt;}
.y12_c00163{bottom:664.125747pt;}
.y11_c00163{bottom:689.903846pt;}
.y10_c00163{bottom:712.126345pt;}
.yf_c00163{bottom:732.571044pt;}
.ye_c00163{bottom:758.349143pt;}
.yd_c00163{bottom:784.127242pt;}
.yc_c00163{bottom:809.905341pt;}
.yb_c00163{bottom:835.683440pt;}
.ya_c00163{bottom:861.461539pt;}
.y9_c00163{bottom:887.239637pt;}
.y8_c00163{bottom:913.017736pt;}
.y7_c00163{bottom:938.795835pt;}
.y6_c00163{bottom:964.573934pt;}
.y5_c00163{bottom:990.352033pt;}
.y4_c00163{bottom:1016.130132pt;}
.y3_c00163{bottom:1041.908231pt;}
.y2_c00163{bottom:1067.686330pt;}
.h4_c00163{height:32.687907pt;}
.h5_c00163{height:44.871454pt;}
.h3_c00163{height:49.004621pt;}
.h6_c00163{height:49.031248pt;}
.h2_c00163{height:1159.999952pt;}
.h0_c00163{height:1159.999959pt;}
.h1_c00163{height:1160.000000pt;}
.w2_c00163{width:830.999965pt;}
.w0_c00163{width:831.000000pt;}
.w1_c00163{width:831.333333pt;}
.x0_c00163{left:0.000000pt;}
.x1_c00163{left:78.135686pt;}
.x2_c00163{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:0.734863;font-style:normal;font-weight:normal;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_0943c2a3df217cb447cf4e8a.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.006348;font-style:normal;font-weight:normal;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_d6bc07493f2319eed5977c27.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00164;src:url('chunks/assets/font_ad682626cf8c62d41376e56b.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.000000;font-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_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);}
.v0_c00164{vertical-align:0.000000px;}
.ls1_c00164{letter-spacing:0.000000px;}
.ls0_c00164{letter-spacing:0.000022px;}
.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:-18.703125px;}
.ws1_c00164{word-spacing:0.000000px;}
._5_c00164{width:1.019530px;}
._9_c00164{width:2.090430px;}
._8_c00164{width:3.093749px;}
._1_c00164{width:5.397788px;}
._c_c00164{width:9.584128px;}
._a_c00164{width:10.610732px;}
._0_c00164{width:12.764398px;}
._b_c00164{width:14.062499px;}
._d_c00164{width:19.872750px;}
._2_c00164{width:24.360053px;}
._6_c00164{width:25.702374px;}
._4_c00164{width:31.129210px;}
._3_c00164{width:34.178875px;}
._e_c00164{width:37.905439px;}
._7_c00164{width:46.645268px;}
.fc3_c00164{color:transparent;}
.fc1_c00164{color:rgb(67,91,56);}
.fc2_c00164{color:rgb(0,0,0);}
.fc0_c00164{color:rgb(128,128,128);}
.fs0_c00164{font-size:69.618741px;}
.fs1_c00164{font-size:71.999997px;}
.y0_c00164{bottom:0.000000px;}
.y1_c00164{bottom:0.000008px;}
.y9_c00164{bottom:29.401163px;}
.y2_c00164{bottom:30.348053px;}
.y8_c00164{bottom:497.374431px;}
.y7_c00164{bottom:527.749430px;}
.y6_c00164{bottom:558.124429px;}
.y5_c00164{bottom:588.499427px;}
.y4_c00164{bottom:618.874426px;}
.y3_c00164{bottom:660.949424px;}
.yd_c00164{bottom:724.445477px;}
.yc_c00164{bottom:754.820475px;}
.yb_c00164{bottom:785.195474px;}
.ya_c00164{bottom:826.721685px;}
.y18_c00164{bottom:890.831915px;}
.y17_c00164{bottom:921.206914px;}
.y16_c00164{bottom:951.581912px;}
.y15_c00164{bottom:981.956911px;}
.y14_c00164{bottom:1012.331910px;}
.y13_c00164{bottom:1042.706909px;}
.y12_c00164{bottom:1073.081907px;}
.y11_c00164{bottom:1103.456906px;}
.y10_c00164{bottom:1133.831905px;}
.yf_c00164{bottom:1164.206903px;}
.ye_c00164{bottom:1194.581902px;}
.h3_c00164{height:50.480386px;}
.h4_c00164{height:55.160154px;}
.h2_c00164{height:1304.999946px;}
.h0_c00164{height:1304.999953px;}
.h1_c00164{height:1305.000000px;}
.w2_c00164{width:934.874961px;}
.w0_c00164{width:934.875000px;}
.w1_c00164{width:935.250000px;}
.x0_c00164{left:0.000000px;}
.x3_c00164{left:89.487450px;}
.x2_c00164{left:90.721217px;}
.x1_c00164{left:452.782029px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls1_c00164{letter-spacing:0.000000pt;}
.ls0_c00164{letter-spacing:0.000020pt;}
.ws0_c00164{word-spacing:-16.625000pt;}
.ws1_c00164{word-spacing:0.000000pt;}
._5_c00164{width:0.906249pt;}
._9_c00164{width:1.858160pt;}
._8_c00164{width:2.749999pt;}
._1_c00164{width:4.798034pt;}
._c_c00164{width:8.519225pt;}
._a_c00164{width:9.431762pt;}
._0_c00164{width:11.346131pt;}
._b_c00164{width:12.499999pt;}
._d_c00164{width:17.664667pt;}
._2_c00164{width:21.653380pt;}
._6_c00164{width:22.846555pt;}
._4_c00164{width:27.670409pt;}
._3_c00164{width:30.381222pt;}
._e_c00164{width:33.693724pt;}
._7_c00164{width:41.462461pt;}
.fs0_c00164{font-size:61.883325pt;}
.fs1_c00164{font-size:63.999997pt;}
.y0_c00164{bottom:0.000000pt;}
.y1_c00164{bottom:0.000007pt;}
.y9_c00164{bottom:26.134367pt;}
.y2_c00164{bottom:26.976047pt;}
.y8_c00164{bottom:442.110606pt;}
.y7_c00164{bottom:469.110604pt;}
.y6_c00164{bottom:496.110603pt;}
.y5_c00164{bottom:523.110602pt;}
.y4_c00164{bottom:550.110601pt;}
.y3_c00164{bottom:587.510600pt;}
.yd_c00164{bottom:643.951535pt;}
.yc_c00164{bottom:670.951534pt;}
.yb_c00164{bottom:697.951533pt;}
.ya_c00164{bottom:734.863720pt;}
.y18_c00164{bottom:791.850591pt;}
.y17_c00164{bottom:818.850590pt;}
.y16_c00164{bottom:845.850589pt;}
.y15_c00164{bottom:872.850588pt;}
.y14_c00164{bottom:899.850587pt;}
.y13_c00164{bottom:926.850585pt;}
.y12_c00164{bottom:953.850584pt;}
.y11_c00164{bottom:980.850583pt;}
.y10_c00164{bottom:1007.850582pt;}
.yf_c00164{bottom:1034.850581pt;}
.ye_c00164{bottom:1061.850580pt;}
.h3_c00164{height:44.871454pt;}
.h4_c00164{height:49.031248pt;}
.h2_c00164{height:1159.999952pt;}
.h0_c00164{height:1159.999959pt;}
.h1_c00164{height:1160.000000pt;}
.w2_c00164{width:830.999965pt;}
.w0_c00164{width:831.000000pt;}
.w1_c00164{width:831.333333pt;}
.x0_c00164{left:0.000000pt;}
.x3_c00164{left:79.544400pt;}
.x2_c00164{left:80.641081pt;}
.x1_c00164{left:402.472914pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f19ee68526ce949e88838b1.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:0.734863;font-style:normal;font-weight:normal;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_54a330d05fc00e136b31813d.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:0.769531;font-style:normal;font-weight: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_c00165;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff5_c00165{font-family:ff5_c00165;line-height:0.743000;font-style:normal;font-weight: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_c00165;src:url('chunks/assets/font_2d34ed89ba4b4696cc0b285b.woff2')format("woff");}.ff6_c00165{font-family:ff6_c00165;line-height:1.000000;font-style:normal;font-weight: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_c00165;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff7_c00165{font-family:ff7_c00165;line-height:1.006348;font-style:normal;font-weight: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_c00165;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff8_c00165{font-family:ff8_c00165;line-height:1.000000;font-style:normal;font-weight: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_c00165;src:url('chunks/assets/font_741ef0f7fbee2639961df7f8.woff2')format("woff");}.ff9_c00165{font-family:ff9_c00165;line-height:1.171387;font-style:normal;font-weight: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_c00165;src:url('chunks/assets/font_9ef760a1be66c5f06f846e1d.woff2')format("woff");}.ffa_c00165{font-family:ffa_c00165;line-height:1.000000;font-style:normal;font-weight: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_c00165;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffb_c00165{font-family:ffb_c00165;line-height:0.940000;font-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_c00165{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00165{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00165{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00165{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00165{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00165{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00165{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00165{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00165{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00165{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00165{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00165{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00165{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00165{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00165{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00165{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00165{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00165{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00165{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00165{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00165{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00165{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00165{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00165{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00165{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00165{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00165{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00165{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00165{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00165{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00165{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00165{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00165{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00165{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00165{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00165{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00165{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00165{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00165{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00165{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00165{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00165{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00165{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00165{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00165{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00165{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00165{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00165{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00165{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00165{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00165{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00165{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00165{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00165{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00165{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00165{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00165{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00165{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00165{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00165{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00165{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00165{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00165{vertical-align:0.000000px;}
.v1_c00165{vertical-align:1.280304px;}
.ls0_c00165{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00165{word-spacing:-41.689573px;}
.ws0_c00165{word-spacing:-15.171263px;}
.ws1_c00165{word-spacing:-0.089985px;}
.ws3_c00165{word-spacing:-0.055755px;}
.ws5_c00165{word-spacing:0.000000px;}
.ws2_c00165{word-spacing:288.058683px;}
._0_c00165{width:5.362906px;}
._1_c00165{width:21.490012px;}
._2_c00165{width:22.958950px;}
.fc5_c00165{color:transparent;}
.fc4_c00165{color:rgb(67,91,56);}
.fc2_c00165{color:rgb(9,71,81);}
.fc3_c00165{color:rgb(255,255,255);}
.fc1_c00165{color:rgb(0,0,0);}
.fc0_c00165{color:rgb(128,128,128);}
.fsd_c00165{font-size:39.757786px;}
.fs9_c00165{font-size:41.999830px;}
.fsc_c00165{font-size:42.000118px;}
.fs6_c00165{font-size:47.368230px;}
.fs3_c00165{font-size:47.368231px;}
.fs7_c00165{font-size:47.368232px;}
.fs4_c00165{font-size:47.368233px;}
.fs5_c00165{font-size:47.368235px;}
.fs2_c00165{font-size:51.661596px;}
.fsf_c00165{font-size:55.754999px;}
.fs10_c00165{font-size:59.984997px;}
.fs0_c00165{font-size:69.618741px;}
.fs1_c00165{font-size:71.999997px;}
.fsa_c00165{font-size:74.424240px;}
.fs8_c00165{font-size:77.011488px;}
.fsb_c00165{font-size:89.985250px;}
.fse_c00165{font-size:95.984996px;}
.y0_c00165{bottom:0.000000px;}
.y1_c00165{bottom:0.000008px;}
.y3_c00165{bottom:29.401163px;}
.y2_c00165{bottom:30.348053px;}
.y4b_c00165{bottom:202.765672px;}
.y4a_c00165{bottom:233.140670px;}
.y49_c00165{bottom:263.515669px;}
.y48_c00165{bottom:293.890668px;}
.y4c_c00165{bottom:323.719467px;}
.y4_c00165{bottom:401.525233px;}
.y30_c00165{bottom:486.888370px;}
.y12_c00165{bottom:493.328373px;}
.y26_c00165{bottom:493.343471px;}
.y11_c00165{bottom:493.853637px;}
.y27_c00165{bottom:493.873313px;}
.y3e_c00165{bottom:493.959419px;}
.y25_c00165{bottom:494.588120px;}
.y3f_c00165{bottom:494.792744px;}
.y3d_c00165{bottom:494.812830px;}
.y10_c00165{bottom:494.919783px;}
.y24_c00165{bottom:495.839401px;}
.y3c_c00165{bottom:495.847621px;}
.yf_c00165{bottom:495.993006px;}
.y28_c00165{bottom:496.289812px;}
.y13_c00165{bottom:496.353473px;}
.y40_c00165{bottom:496.973987px;}
.y23_c00165{bottom:497.484272px;}
.ye_c00165{bottom:497.644566px;}
.y3b_c00165{bottom:498.050345px;}
.y41_c00165{bottom:498.364888px;}
.y22_c00165{bottom:499.172531px;}
.yd_c00165{bottom:499.338107px;}
.y42_c00165{bottom:500.063187px;}
.y14_c00165{bottom:500.630691px;}
.y21_c00165{bottom:501.037769px;}
.yc_c00165{bottom:501.208172px;}
.y29_c00165{bottom:501.390631px;}
.y3a_c00165{bottom:501.842067px;}
.y43_c00165{bottom:502.505484px;}
.y15_c00165{bottom:503.149449px;}
.y44_c00165{bottom:504.764445px;}
.y2a_c00165{bottom:505.018795px;}
.y20_c00165{bottom:505.692124px;}
.yb_c00165{bottom:505.871886px;}
.y39_c00165{bottom:507.310818px;}
.y45_c00165{bottom:508.033427px;}
.y16_c00165{bottom:509.101992px;}
.y2b_c00165{bottom:510.652700px;}
.y38_c00165{bottom:511.777409px;}
.y1f_c00165{bottom:512.093493px;}
.ya_c00165{bottom:512.281758px;}
.y17_c00165{bottom:513.850725px;}
.y46_c00165{bottom:516.430683px;}
.y2c_c00165{bottom:517.310350px;}
.y37_c00165{bottom:518.202172px;}
.y1e_c00165{bottom:519.400636px;}
.y9_c00165{bottom:519.490837px;}
.y36_c00165{bottom:522.772046px;}
.y8_c00165{bottom:522.949612px;}
.y47_c00165{bottom:524.479585px;}
.y18_c00165{bottom:525.634639px;}
.y1d_c00165{bottom:526.562252px;}
.y7_c00165{bottom:528.959931px;}
.y2d_c00165{bottom:529.273374px;}
.y35_c00165{bottom:530.544173px;}
.y1c_c00165{bottom:531.331479px;}
.y2f_c00165{bottom:533.268115px;}
.y33_c00165{bottom:533.961835px;}
.y34_c00165{bottom:534.437983px;}
.y6_c00165{bottom:536.219342px;}
.y1b_c00165{bottom:537.503802px;}
.y19_c00165{bottom:537.875201px;}
.y2e_c00165{bottom:538.238934px;}
.y31_c00165{bottom:539.974724px;}
.y1a_c00165{bottom:544.567278px;}
.y5_c00165{bottom:545.754118px;}
.y32_c00165{bottom:577.437042px;}
.y52_c00165{bottom:639.092601px;}
.y53_c00165{bottom:1021.439863px;}
.y50_c00165{bottom:1128.788247px;}
.y4e_c00165{bottom:1133.738464px;}
.y4d_c00165{bottom:1147.738503px;}
.y51_c00165{bottom:1153.262281px;}
.y4f_c00165{bottom:1171.082779px;}
.hb_c00165{height:35.988753px;}
.hc_c00165{height:35.988755px;}
.hd_c00165{height:35.988756px;}
.h13_c00165{height:37.020556px;}
.h5_c00165{height:37.459702px;}
.hf_c00165{height:39.108240px;}
.h12_c00165{height:39.108509px;}
.h9_c00165{height:44.107038px;}
.h6_c00165{height:44.107039px;}
.ha_c00165{height:44.107040px;}
.h7_c00165{height:44.107042px;}
.h8_c00165{height:44.107043px;}
.h17_c00165{height:45.588598px;}
.h3_c00165{height:50.480386px;}
.h16_c00165{height:51.916398px;}
.he_c00165{height:56.295398px;}
.h10_c00165{height:57.017399px;}
.h15_c00165{height:57.575702px;}
.h4_c00165{height:67.042966px;}
.h11_c00165{height:68.367700px;}
.h14_c00165{height:89.376654px;}
.h2_c00165{height:1304.999946px;}
.h0_c00165{height:1304.999953px;}
.h1_c00165{height:1305.000000px;}
.w2_c00165{width:934.874961px;}
.w0_c00165{width:934.875000px;}
.w1_c00165{width:935.250000px;}
.x0_c00165{left:0.000000px;}
.x3e_c00165{left:88.287988px;}
.x3d_c00165{left:90.686927px;}
.x3f_c00165{left:107.230262px;}
.x40_c00165{left:108.827167px;}
.x44_c00165{left:130.690629px;}
.x15_c00165{left:134.974838px;}
.x14_c00165{left:136.648279px;}
.x16_c00165{left:140.021272px;}
.x17_c00165{left:144.871714px;}
.x18_c00165{left:150.237526px;}
.x19_c00165{left:152.990336px;}
.x1a_c00165{left:156.000220px;}
.x1b_c00165{left:159.847713px;}
.x25_c00165{left:161.443962px;}
.x1c_c00165{left:163.301377px;}
.x1d_c00165{left:171.586339px;}
.x1e_c00165{left:179.855997px;}
.x1f_c00165{left:188.287487px;}
.x20_c00165{left:196.673970px;}
.x21_c00165{left:200.841336px;}
.x22_c00165{left:205.399483px;}
.x23_c00165{left:209.208896px;}
.x24_c00165{left:211.795693px;}
.x4_c00165{left:230.398389px;}
.x3_c00165{left:232.534609px;}
.x5_c00165{left:235.623324px;}
.x6_c00165{left:240.462566px;}
.x7_c00165{left:245.820252px;}
.x8_c00165{left:248.569815px;}
.x9_c00165{left:251.576732px;}
.xa_c00165{left:255.421336px;}
.x42_c00165{left:256.622047px;}
.xb_c00165{left:258.708042px;}
.xc_c00165{left:263.145298px;}
.xd_c00165{left:271.763354px;}
.xe_c00165{left:283.603990px;}
.xf_c00165{left:291.041304px;}
.x10_c00165{left:294.435991px;}
.x41_c00165{left:295.615161px;}
.x11_c00165{left:299.775542px;}
.x12_c00165{left:303.165014px;}
.x13_c00165{left:307.176807px;}
.x2a_c00165{left:327.047435px;}
.x2b_c00165{left:328.264734px;}
.x2c_c00165{left:329.685747px;}
.x2d_c00165{left:333.082971px;}
.x2e_c00165{left:336.307511px;}
.x2f_c00165{left:342.189757px;}
.x30_c00165{left:348.376740px;}
.x29_c00165{left:351.731739px;}
.x31_c00165{left:354.069743px;}
.x32_c00165{left:357.479743px;}
.x33_c00165{left:365.386869px;}
.x34_c00165{left:373.375785px;}
.x35_c00165{left:380.135498px;}
.x36_c00165{left:383.155707px;}
.x37_c00165{left:386.159935px;}
.x38_c00165{left:389.557910px;}
.x39_c00165{left:392.174988px;}
.x3a_c00165{left:395.489533px;}
.x3b_c00165{left:400.664851px;}
.x3c_c00165{left:403.469600px;}
.x1_c00165{left:452.786554px;}
.x27_c00165{left:464.896169px;}
.x43_c00165{left:676.878164px;}
.x2_c00165{left:697.320842px;}
.x28_c00165{left:733.540639px;}
.x26_c00165{left:757.088990px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.v1_c00165{vertical-align:1.138048pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ws4_c00165{word-spacing:-37.057398pt;}
.ws0_c00165{word-spacing:-13.485567pt;}
.ws1_c00165{word-spacing:-0.079987pt;}
.ws3_c00165{word-spacing:-0.049560pt;}
.ws5_c00165{word-spacing:0.000000pt;}
.ws2_c00165{word-spacing:256.052163pt;}
._0_c00165{width:4.767028pt;}
._1_c00165{width:19.102233pt;}
._2_c00165{width:20.407956pt;}
.fsd_c00165{font-size:35.340254pt;}
.fs9_c00165{font-size:37.333182pt;}
.fsc_c00165{font-size:37.333438pt;}
.fs6_c00165{font-size:42.105093pt;}
.fs3_c00165{font-size:42.105094pt;}
.fs7_c00165{font-size:42.105095pt;}
.fs4_c00165{font-size:42.105096pt;}
.fs5_c00165{font-size:42.105098pt;}
.fs2_c00165{font-size:45.921418pt;}
.fsf_c00165{font-size:49.559999pt;}
.fs10_c00165{font-size:53.319997pt;}
.fs0_c00165{font-size:61.883325pt;}
.fs1_c00165{font-size:63.999997pt;}
.fsa_c00165{font-size:66.154880pt;}
.fs8_c00165{font-size:68.454656pt;}
.fsb_c00165{font-size:79.986889pt;}
.fse_c00165{font-size:85.319996pt;}
.y0_c00165{bottom:0.000000pt;}
.y1_c00165{bottom:0.000007pt;}
.y3_c00165{bottom:26.134367pt;}
.y2_c00165{bottom:26.976047pt;}
.y4b_c00165{bottom:180.236152pt;}
.y4a_c00165{bottom:207.236151pt;}
.y49_c00165{bottom:234.236150pt;}
.y48_c00165{bottom:261.236149pt;}
.y4c_c00165{bottom:287.750637pt;}
.y4_c00165{bottom:356.911319pt;}
.y30_c00165{bottom:432.789662pt;}
.y12_c00165{bottom:438.514110pt;}
.y26_c00165{bottom:438.527530pt;}
.y11_c00165{bottom:438.981010pt;}
.y27_c00165{bottom:438.998500pt;}
.y3e_c00165{bottom:439.075039pt;}
.y25_c00165{bottom:439.633885pt;}
.y3f_c00165{bottom:439.815773pt;}
.y3d_c00165{bottom:439.833627pt;}
.y10_c00165{bottom:439.928696pt;}
.y24_c00165{bottom:440.746134pt;}
.y3c_c00165{bottom:440.753441pt;}
.yf_c00165{bottom:440.882672pt;}
.y28_c00165{bottom:441.146500pt;}
.y13_c00165{bottom:441.203087pt;}
.y40_c00165{bottom:441.754655pt;}
.y23_c00165{bottom:442.208242pt;}
.ye_c00165{bottom:442.350726pt;}
.y3b_c00165{bottom:442.711417pt;}
.y41_c00165{bottom:442.991012pt;}
.y22_c00165{bottom:443.708917pt;}
.yd_c00165{bottom:443.856095pt;}
.y42_c00165{bottom:444.500610pt;}
.y14_c00165{bottom:445.005059pt;}
.y21_c00165{bottom:445.366906pt;}
.yc_c00165{bottom:445.518375pt;}
.y29_c00165{bottom:445.680561pt;}
.y3a_c00165{bottom:446.081837pt;}
.y43_c00165{bottom:446.671541pt;}
.y15_c00165{bottom:447.243955pt;}
.y44_c00165{bottom:448.679507pt;}
.y2a_c00165{bottom:448.905595pt;}
.y20_c00165{bottom:449.504110pt;}
.yb_c00165{bottom:449.663899pt;}
.y39_c00165{bottom:450.942950pt;}
.y45_c00165{bottom:451.585269pt;}
.y16_c00165{bottom:452.535104pt;}
.y2b_c00165{bottom:453.913511pt;}
.y38_c00165{bottom:454.913253pt;}
.y1f_c00165{bottom:455.194216pt;}
.ya_c00165{bottom:455.361563pt;}
.y17_c00165{bottom:456.756200pt;}
.y46_c00165{bottom:459.049496pt;}
.y2c_c00165{bottom:459.831423pt;}
.y37_c00165{bottom:460.624152pt;}
.y1e_c00165{bottom:461.689454pt;}
.y9_c00165{bottom:461.769633pt;}
.y36_c00165{bottom:464.686263pt;}
.y8_c00165{bottom:464.844100pt;}
.y47_c00165{bottom:466.204075pt;}
.y18_c00165{bottom:467.230790pt;}
.y1d_c00165{bottom:468.055335pt;}
.y7_c00165{bottom:470.186605pt;}
.y2d_c00165{bottom:470.465221pt;}
.y35_c00165{bottom:471.594820pt;}
.y1c_c00165{bottom:472.294648pt;}
.y2f_c00165{bottom:474.016102pt;}
.y33_c00165{bottom:474.632742pt;}
.y34_c00165{bottom:475.055985pt;}
.y6_c00165{bottom:476.639415pt;}
.y1b_c00165{bottom:477.781157pt;}
.y19_c00165{bottom:478.111290pt;}
.y2e_c00165{bottom:478.434608pt;}
.y31_c00165{bottom:479.977532pt;}
.y1a_c00165{bottom:484.059803pt;}
.y5_c00165{bottom:485.114772pt;}
.y32_c00165{bottom:513.277371pt;}
.y52_c00165{bottom:568.082312pt;}
.y53_c00165{bottom:907.946545pt;}
.y50_c00165{bottom:1003.367331pt;}
.y4e_c00165{bottom:1007.767524pt;}
.y4d_c00165{bottom:1020.212003pt;}
.y51_c00165{bottom:1025.122028pt;}
.y4f_c00165{bottom:1040.962470pt;}
.hb_c00165{height:31.990003pt;}
.hc_c00165{height:31.990004pt;}
.hd_c00165{height:31.990006pt;}
.h13_c00165{height:32.907161pt;}
.h5_c00165{height:33.297513pt;}
.hf_c00165{height:34.762880pt;}
.h12_c00165{height:34.763119pt;}
.h9_c00165{height:39.206256pt;}
.h6_c00165{height:39.206257pt;}
.ha_c00165{height:39.206258pt;}
.h7_c00165{height:39.206259pt;}
.h8_c00165{height:39.206261pt;}
.h17_c00165{height:40.523198pt;}
.h3_c00165{height:44.871454pt;}
.h16_c00165{height:46.147909pt;}
.he_c00165{height:50.040354pt;}
.h10_c00165{height:50.682132pt;}
.h15_c00165{height:51.178401pt;}
.h4_c00165{height:59.593748pt;}
.h11_c00165{height:60.771289pt;}
.h14_c00165{height:79.445915pt;}
.h2_c00165{height:1159.999952pt;}
.h0_c00165{height:1159.999959pt;}
.h1_c00165{height:1160.000000pt;}
.w2_c00165{width:830.999965pt;}
.w0_c00165{width:831.000000pt;}
.w1_c00165{width:831.333333pt;}
.x0_c00165{left:0.000000pt;}
.x3e_c00165{left:78.478211pt;}
.x3d_c00165{left:80.610601pt;}
.x3f_c00165{left:95.315788pt;}
.x40_c00165{left:96.735260pt;}
.x44_c00165{left:116.169448pt;}
.x15_c00165{left:119.977634pt;}
.x14_c00165{left:121.465137pt;}
.x16_c00165{left:124.463353pt;}
.x17_c00165{left:128.774857pt;}
.x18_c00165{left:133.544468pt;}
.x19_c00165{left:135.991410pt;}
.x1a_c00165{left:138.666862pt;}
.x1b_c00165{left:142.086856pt;}
.x25_c00165{left:143.505744pt;}
.x1c_c00165{left:145.156780pt;}
.x1d_c00165{left:152.521190pt;}
.x1e_c00165{left:159.871997pt;}
.x1f_c00165{left:167.366655pt;}
.x20_c00165{left:174.821307pt;}
.x21_c00165{left:178.525632pt;}
.x22_c00165{left:182.577318pt;}
.x23_c00165{left:185.963463pt;}
.x24_c00165{left:188.262839pt;}
.x4_c00165{left:204.798568pt;}
.x3_c00165{left:206.697430pt;}
.x5_c00165{left:209.442955pt;}
.x6_c00165{left:213.744503pt;}
.x7_c00165{left:218.506891pt;}
.x8_c00165{left:220.950947pt;}
.x9_c00165{left:223.623762pt;}
.xa_c00165{left:227.041187pt;}
.x42_c00165{left:228.108486pt;}
.xb_c00165{left:229.962704pt;}
.xc_c00165{left:233.906932pt;}
.xd_c00165{left:241.567426pt;}
.xe_c00165{left:252.092435pt;}
.xf_c00165{left:258.703382pt;}
.x10_c00165{left:261.720880pt;}
.x41_c00165{left:262.769032pt;}
.x11_c00165{left:266.467148pt;}
.x12_c00165{left:269.480012pt;}
.x13_c00165{left:273.046051pt;}
.x2a_c00165{left:290.708831pt;}
.x2b_c00165{left:291.790874pt;}
.x2c_c00165{left:293.053997pt;}
.x2d_c00165{left:296.073752pt;}
.x2e_c00165{left:298.940009pt;}
.x2f_c00165{left:304.168673pt;}
.x30_c00165{left:309.668213pt;}
.x29_c00165{left:312.650435pt;}
.x31_c00165{left:314.728661pt;}
.x32_c00165{left:317.759772pt;}
.x33_c00165{left:324.788328pt;}
.x34_c00165{left:331.889587pt;}
.x35_c00165{left:337.898220pt;}
.x36_c00165{left:340.582851pt;}
.x37_c00165{left:343.253275pt;}
.x38_c00165{left:346.273697pt;}
.x39_c00165{left:348.599989pt;}
.x3a_c00165{left:351.546252pt;}
.x3b_c00165{left:356.146534pt;}
.x3c_c00165{left:358.639645pt;}
.x1_c00165{left:402.476937pt;}
.x27_c00165{left:413.241039pt;}
.x43_c00165{left:601.669479pt;}
.x2_c00165{left:619.840748pt;}
.x28_c00165{left:652.036124pt;}
.x26_c00165{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90be5aaa40d435ba46bc7d4d.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.171387;font-style:normal;font-weight:normal;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_f64e910511b3c88966b10fa1.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.000000;font-style:normal;font-weight:normal;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_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.006348;font-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_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;}
.ls0_c00166{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00166{word-spacing:-18.703125px;}
.ws1_c00166{word-spacing:0.000000px;}
._1_c00166{width:1.674590px;}
._3_c00166{width:3.626929px;}
._a_c00166{width:5.045405px;}
._0_c00166{width:6.641784px;}
._e_c00166{width:8.091294px;}
._7_c00166{width:10.441408px;}
._5_c00166{width:12.589782px;}
._10_c00166{width:13.893857px;}
._c_c00166{width:16.234357px;}
._6_c00166{width:17.357779px;}
._b_c00166{width:19.741880px;}
._2_c00166{width:20.749946px;}
._4_c00166{width:22.230420px;}
._9_c00166{width:29.359308px;}
._f_c00166{width:30.815593px;}
._8_c00166{width:31.982782px;}
._d_c00166{width:40.113280px;}
.fc1_c00166{color:rgb(67,91,56);}
.fc0_c00166{color:rgb(0,0,0);}
.fs0_c00166{font-size:71.999997px;}
.y0_c00166{bottom:0.000000px;}
.y1_c00166{bottom:0.000008px;}
.y15_c00166{bottom:29.400983px;}
.y13_c00166{bottom:178.121243px;}
.y12_c00166{bottom:208.496241px;}
.y11_c00166{bottom:238.871240px;}
.y10_c00166{bottom:269.246239px;}
.yf_c00166{bottom:299.621238px;}
.ye_c00166{bottom:329.996236px;}
.yd_c00166{bottom:360.371235px;}
.yc_c00166{bottom:390.746234px;}
.yb_c00166{bottom:421.121232px;}
.ya_c00166{bottom:451.496231px;}
.y9_c00166{bottom:481.871230px;}
.y8_c00166{bottom:512.246229px;}
.y7_c00166{bottom:542.621227px;}
.y6_c00166{bottom:572.996226px;}
.y5_c00166{bottom:603.371225px;}
.y4_c00166{bottom:633.746224px;}
.y3_c00166{bottom:664.121222px;}
.y2_c00166{bottom:694.496221px;}
.y14_c00166{bottom:735.359909px;}
.y21_c00166{bottom:821.355435px;}
.y20_c00166{bottom:851.730434px;}
.y1f_c00166{bottom:882.105432px;}
.y1e_c00166{bottom:912.480431px;}
.y1d_c00166{bottom:946.680253px;}
.y1c_c00166{bottom:1017.972202px;}
.y1b_c00166{bottom:1048.347201px;}
.y1a_c00166{bottom:1078.722200px;}
.y19_c00166{bottom:1109.097199px;}
.y18_c00166{bottom:1139.472197px;}
.y17_c00166{bottom:1169.847196px;}
.y16_c00166{bottom:1200.222195px;}
.h4_c00166{height:55.160154px;}
.h3_c00166{height:67.042966px;}
.h2_c00166{height:1304.999946px;}
.h0_c00166{height:1304.999953px;}
.h1_c00166{height:1305.000000px;}
.w2_c00166{width:934.874961px;}
.w0_c00166{width:934.875000px;}
.w1_c00166{width:935.250000px;}
.x0_c00166{left:0.000000px;}
.x1_c00166{left:87.902647px;}
.x2_c00166{left:452.271732px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws0_c00166{word-spacing:-16.625000pt;}
.ws1_c00166{word-spacing:0.000000pt;}
._1_c00166{width:1.488524pt;}
._3_c00166{width:3.223937pt;}
._a_c00166{width:4.484805pt;}
._0_c00166{width:5.903808pt;}
._e_c00166{width:7.192261pt;}
._7_c00166{width:9.281251pt;}
._5_c00166{width:11.190917pt;}
._10_c00166{width:12.350095pt;}
._c_c00166{width:14.430539pt;}
._6_c00166{width:15.429137pt;}
._b_c00166{width:17.548338pt;}
._2_c00166{width:18.444396pt;}
._4_c00166{width:19.760373pt;}
._9_c00166{width:26.097163pt;}
._f_c00166{width:27.391639pt;}
._8_c00166{width:28.429139pt;}
._d_c00166{width:35.656249pt;}
.fs0_c00166{font-size:63.999997pt;}
.y0_c00166{bottom:0.000000pt;}
.y1_c00166{bottom:0.000007pt;}
.y15_c00166{bottom:26.134207pt;}
.y13_c00166{bottom:158.329993pt;}
.y12_c00166{bottom:185.329992pt;}
.y11_c00166{bottom:212.329991pt;}
.y10_c00166{bottom:239.329990pt;}
.yf_c00166{bottom:266.329989pt;}
.ye_c00166{bottom:293.329988pt;}
.yd_c00166{bottom:320.329987pt;}
.yc_c00166{bottom:347.329986pt;}
.yb_c00166{bottom:374.329984pt;}
.ya_c00166{bottom:401.329983pt;}
.y9_c00166{bottom:428.329982pt;}
.y8_c00166{bottom:455.329981pt;}
.y7_c00166{bottom:482.329980pt;}
.y6_c00166{bottom:509.329979pt;}
.y5_c00166{bottom:536.329978pt;}
.y4_c00166{bottom:563.329977pt;}
.y3_c00166{bottom:590.329975pt;}
.y2_c00166{bottom:617.329974pt;}
.y14_c00166{bottom:653.653253pt;}
.y21_c00166{bottom:730.093720pt;}
.y20_c00166{bottom:757.093719pt;}
.y1f_c00166{bottom:784.093718pt;}
.y1e_c00166{bottom:811.093717pt;}
.y1d_c00166{bottom:841.493559pt;}
.y1c_c00166{bottom:904.864180pt;}
.y1b_c00166{bottom:931.864179pt;}
.y1a_c00166{bottom:958.864178pt;}
.y19_c00166{bottom:985.864177pt;}
.y18_c00166{bottom:1012.864175pt;}
.y17_c00166{bottom:1039.864174pt;}
.y16_c00166{bottom:1066.864173pt;}
.h4_c00166{height:49.031248pt;}
.h3_c00166{height:59.593748pt;}
.h2_c00166{height:1159.999952pt;}
.h0_c00166{height:1159.999959pt;}
.h1_c00166{height:1160.000000pt;}
.w2_c00166{width:830.999965pt;}
.w0_c00166{width:831.000000pt;}
.w1_c00166{width:831.333333pt;}
.x0_c00166{left:0.000000pt;}
.x1_c00166{left:78.135686pt;}
.x2_c00166{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.006348;font-style:normal;font-weight:normal;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_7e61a0c42f1c3755190db959.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_d381b53accd9ab1b3e84a51b.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.000000;font-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_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;}
.ls0_c00167{letter-spacing:0.000000px;}
.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:0.000000px;}
._4_c00167{width:4.615010px;}
._2_c00167{width:7.599378px;}
._1_c00167{width:8.771485px;}
._3_c00167{width:32.062500px;}
._0_c00167{width:41.829482px;}
.fc1_c00167{color:rgb(0,0,0);}
.fc0_c00167{color:rgb(67,91,56);}
.fs0_c00167{font-size:71.999997px;}
.y0_c00167{bottom:0.000000px;}
.y1_c00167{bottom:0.000008px;}
.yb_c00167{bottom:29.401163px;}
.ya_c00167{bottom:897.224553px;}
.y9_c00167{bottom:927.599552px;}
.y8_c00167{bottom:957.974551px;}
.y7_c00167{bottom:988.349550px;}
.y6_c00167{bottom:1018.724548px;}
.y5_c00167{bottom:1054.696773px;}
.y4_c00167{bottom:1126.120208px;}
.y3_c00167{bottom:1156.495207px;}
.y2_c00167{bottom:1193.724969px;}
.h5_c00167{height:54.703123px;}
.h3_c00167{height:55.160154px;}
.h4_c00167{height:67.042966px;}
.h2_c00167{height:1304.999946px;}
.h0_c00167{height:1304.999953px;}
.h1_c00167{height:1305.000000px;}
.w2_c00167{width:934.874961px;}
.w0_c00167{width:934.875000px;}
.w1_c00167{width:935.250000px;}
.x0_c00167{left:0.000000px;}
.x1_c00167{left:93.543307px;}
.x2_c00167{left:452.271732px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ws0_c00167{word-spacing:0.000000pt;}
._4_c00167{width:4.102231pt;}
._2_c00167{width:6.755003pt;}
._1_c00167{width:7.796875pt;}
._3_c00167{width:28.500000pt;}
._0_c00167{width:37.181762pt;}
.fs0_c00167{font-size:63.999997pt;}
.y0_c00167{bottom:0.000000pt;}
.y1_c00167{bottom:0.000007pt;}
.yb_c00167{bottom:26.134367pt;}
.ya_c00167{bottom:797.532936pt;}
.y9_c00167{bottom:824.532935pt;}
.y8_c00167{bottom:851.532934pt;}
.y7_c00167{bottom:878.532933pt;}
.y6_c00167{bottom:905.532932pt;}
.y5_c00167{bottom:937.508243pt;}
.y4_c00167{bottom:1000.995741pt;}
.y3_c00167{bottom:1027.995740pt;}
.y2_c00167{bottom:1061.088861pt;}
.h5_c00167{height:48.624998pt;}
.h3_c00167{height:49.031248pt;}
.h4_c00167{height:59.593748pt;}
.h2_c00167{height:1159.999952pt;}
.h0_c00167{height:1159.999959pt;}
.h1_c00167{height:1160.000000pt;}
.w2_c00167{width:830.999965pt;}
.w0_c00167{width:831.000000pt;}
.w1_c00167{width:831.333333pt;}
.x0_c00167{left:0.000000pt;}
.x1_c00167{left:83.149606pt;}
.x2_c00167{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:0.734863;font-style:normal;font-weight:normal;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_c936f80f16507e1d07def6f6.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00168;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:0.743000;font-style:normal;font-weight: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_c00168;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;line-height:1.000000;font-style:normal;font-weight: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_c00168;src:url('chunks/assets/font_7e3a6036f5ce3cd582faefac.woff2')format("woff");}.ff6_c00168{font-family:ff6_c00168;line-height:1.171387;font-style:normal;font-weight: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_c00168;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff7_c00168{font-family:ff7_c00168;line-height:1.006348;font-style:normal;font-weight: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_c00168;src:url('chunks/assets/font_5f3d69117526d1db4f6ce4f5.woff2')format("woff");}.ff8_c00168{font-family:ff8_c00168;line-height:1.000000;font-style:normal;font-weight: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_c00168;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00168{font-family:ff9_c00168;line-height:0.940000;font-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_c00168{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00168{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00168{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00168{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00168{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00168{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00168{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00168{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00168{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00168{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00168{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00168{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00168{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00168{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00168{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00168{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00168{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00168{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00168{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00168{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00168{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00168{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00168{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00168{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00168{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00168{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00168{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00168{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00168{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00168{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00168{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00168{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00168{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00168{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00168{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00168{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00168{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00168{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00168{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00168{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00168{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00168{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00168{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00168{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00168{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00168{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00168{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00168{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00168{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00168{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00168{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00168{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00168{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00168{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00168{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00168{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00168{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00168{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00168{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00168{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00168{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00168{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00168{vertical-align:0.000000px;}
.v1_c00168{vertical-align:1.278288px;}
.ls0_c00168{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00168{word-spacing:-41.689573px;}
.ws0_c00168{word-spacing:-15.171263px;}
.ws2_c00168{word-spacing:-0.089985px;}
.ws1_c00168{word-spacing:-0.055755px;}
.ws5_c00168{word-spacing:0.000000px;}
.ws3_c00168{word-spacing:288.058683px;}
._3_c00168{width:1.740232px;}
._2_c00168{width:2.784346px;}
._1_c00168{width:4.365830px;}
._0_c00168{width:5.878097px;}
.fc4_c00168{color:transparent;}
.fc3_c00168{color:rgb(67,91,56);}
.fc2_c00168{color:rgb(255,255,255);}
.fc1_c00168{color:rgb(0,0,0);}
.fc0_c00168{color:rgb(9,71,81);}
.fsd_c00168{font-size:39.757786px;}
.fs7_c00168{font-size:41.999830px;}
.fsc_c00168{font-size:42.000118px;}
.fs4_c00168{font-size:47.368230px;}
.fs1_c00168{font-size:47.368231px;}
.fs5_c00168{font-size:47.368232px;}
.fs2_c00168{font-size:47.368233px;}
.fs3_c00168{font-size:47.368235px;}
.fs0_c00168{font-size:51.661596px;}
.fs8_c00168{font-size:55.754999px;}
.fsf_c00168{font-size:59.984997px;}
.fs9_c00168{font-size:71.999997px;}
.fsa_c00168{font-size:74.424240px;}
.fs6_c00168{font-size:77.011488px;}
.fsb_c00168{font-size:89.985250px;}
.fse_c00168{font-size:95.984996px;}
.y0_c00168{bottom:0.000000px;}
.y1_c00168{bottom:0.000008px;}
.y52_c00168{bottom:29.401163px;}
.y4b_c00168{bottom:174.544085px;}
.y4a_c00168{bottom:204.919083px;}
.y49_c00168{bottom:235.294082px;}
.y48_c00168{bottom:265.669081px;}
.y47_c00168{bottom:296.044080px;}
.y4c_c00168{bottom:337.122878px;}
.y2_c00168{bottom:401.525233px;}
.y2e_c00168{bottom:486.888550px;}
.y10_c00168{bottom:493.328193px;}
.y24_c00168{bottom:493.343723px;}
.yf_c00168{bottom:493.853349px;}
.y25_c00168{bottom:493.873061px;}
.y3c_c00168{bottom:493.959311px;}
.y23_c00168{bottom:494.588120px;}
.y3d_c00168{bottom:494.792564px;}
.y3b_c00168{bottom:494.812830px;}
.ye_c00168{bottom:494.919675px;}
.y22_c00168{bottom:495.839509px;}
.y3a_c00168{bottom:495.847693px;}
.yd_c00168{bottom:495.992682px;}
.y26_c00168{bottom:496.289992px;}
.y11_c00168{bottom:496.353473px;}
.y3e_c00168{bottom:496.973807px;}
.y21_c00168{bottom:497.484380px;}
.yc_c00168{bottom:497.644566px;}
.y39_c00168{bottom:498.050705px;}
.y3f_c00168{bottom:498.365140px;}
.y20_c00168{bottom:499.172711px;}
.yb_c00168{bottom:499.338107px;}
.y40_c00168{bottom:500.063439px;}
.y12_c00168{bottom:500.630691px;}
.y1f_c00168{bottom:501.037949px;}
.ya_c00168{bottom:501.207920px;}
.y27_c00168{bottom:501.390163px;}
.y38_c00168{bottom:501.841887px;}
.y41_c00168{bottom:502.505484px;}
.y13_c00168{bottom:503.149881px;}
.y42_c00168{bottom:504.764625px;}
.y28_c00168{bottom:505.018723px;}
.y1e_c00168{bottom:505.692484px;}
.y9_c00168{bottom:505.872210px;}
.y37_c00168{bottom:507.311178px;}
.y43_c00168{bottom:508.033427px;}
.y14_c00168{bottom:509.101920px;}
.y29_c00168{bottom:510.652700px;}
.y36_c00168{bottom:511.777589px;}
.y1d_c00168{bottom:512.093421px;}
.y8_c00168{bottom:512.281650px;}
.y15_c00168{bottom:513.850725px;}
.y44_c00168{bottom:516.430791px;}
.y2a_c00168{bottom:517.310242px;}
.y35_c00168{bottom:518.201920px;}
.y1c_c00168{bottom:519.400744px;}
.y7_c00168{bottom:519.491089px;}
.y34_c00168{bottom:522.772118px;}
.y6_c00168{bottom:522.949612px;}
.y45_c00168{bottom:524.479585px;}
.y16_c00168{bottom:525.634963px;}
.y1b_c00168{bottom:526.562252px;}
.y5_c00168{bottom:528.960111px;}
.y2b_c00168{bottom:529.273374px;}
.y33_c00168{bottom:530.544173px;}
.y1a_c00168{bottom:531.331371px;}
.y2d_c00168{bottom:533.268367px;}
.y31_c00168{bottom:533.962015px;}
.y32_c00168{bottom:534.438127px;}
.y4_c00168{bottom:536.219342px;}
.y19_c00168{bottom:537.504234px;}
.y17_c00168{bottom:537.874949px;}
.y2c_c00168{bottom:538.238862px;}
.y2f_c00168{bottom:539.974832px;}
.y18_c00168{bottom:544.567170px;}
.y3_c00168{bottom:545.754118px;}
.y30_c00168{bottom:577.437330px;}
.y46_c00168{bottom:639.092421px;}
.y53_c00168{bottom:1021.439841px;}
.y50_c00168{bottom:1128.788391px;}
.y4e_c00168{bottom:1133.738410px;}
.y4d_c00168{bottom:1147.738449px;}
.y51_c00168{bottom:1153.262414px;}
.y4f_c00168{bottom:1171.082693px;}
.h9_c00168{height:35.988753px;}
.ha_c00168{height:35.988755px;}
.hb_c00168{height:35.988756px;}
.h13_c00168{height:37.020556px;}
.h3_c00168{height:37.459702px;}
.hd_c00168{height:39.108240px;}
.h12_c00168{height:39.108509px;}
.h7_c00168{height:44.107038px;}
.h4_c00168{height:44.107039px;}
.h8_c00168{height:44.107040px;}
.h5_c00168{height:44.107042px;}
.h6_c00168{height:44.107043px;}
.h16_c00168{height:45.588598px;}
.he_c00168{height:51.916398px;}
.hc_c00168{height:56.295398px;}
.h10_c00168{height:57.017399px;}
.h15_c00168{height:57.573686px;}
.hf_c00168{height:67.042966px;}
.h11_c00168{height:68.367700px;}
.h14_c00168{height:89.376654px;}
.h2_c00168{height:1304.999946px;}
.h0_c00168{height:1304.999953px;}
.h1_c00168{height:1305.000000px;}
.w2_c00168{width:934.874961px;}
.w0_c00168{width:934.875000px;}
.w1_c00168{width:935.250000px;}
.x0_c00168{left:0.000000px;}
.x3d_c00168{left:87.902647px;}
.x3e_c00168{left:89.260034px;}
.x3f_c00168{left:107.230262px;}
.x40_c00168{left:108.827167px;}
.x44_c00168{left:130.690629px;}
.x14_c00168{left:134.974838px;}
.x13_c00168{left:136.648279px;}
.x15_c00168{left:140.021272px;}
.x16_c00168{left:144.871714px;}
.x17_c00168{left:150.237526px;}
.x18_c00168{left:152.990336px;}
.x19_c00168{left:156.000220px;}
.x1a_c00168{left:159.847713px;}
.x24_c00168{left:161.443962px;}
.x1b_c00168{left:163.301377px;}
.x1c_c00168{left:171.586339px;}
.x1d_c00168{left:179.855997px;}
.x1e_c00168{left:188.287487px;}
.x1f_c00168{left:196.673970px;}
.x20_c00168{left:200.841336px;}
.x21_c00168{left:205.399483px;}
.x22_c00168{left:209.208896px;}
.x23_c00168{left:211.795693px;}
.x3_c00168{left:230.398389px;}
.x2_c00168{left:232.534609px;}
.x4_c00168{left:235.623324px;}
.x5_c00168{left:240.462566px;}
.x6_c00168{left:245.820252px;}
.x7_c00168{left:248.569815px;}
.x8_c00168{left:251.576732px;}
.x9_c00168{left:255.421336px;}
.x42_c00168{left:256.622047px;}
.xa_c00168{left:258.708042px;}
.xb_c00168{left:263.145298px;}
.xc_c00168{left:271.763354px;}
.xd_c00168{left:283.603990px;}
.xe_c00168{left:291.041304px;}
.xf_c00168{left:294.435991px;}
.x41_c00168{left:295.615161px;}
.x10_c00168{left:299.775542px;}
.x11_c00168{left:303.165014px;}
.x12_c00168{left:307.176807px;}
.x29_c00168{left:327.047435px;}
.x2a_c00168{left:328.264734px;}
.x2b_c00168{left:329.685747px;}
.x2c_c00168{left:333.082971px;}
.x2d_c00168{left:336.307511px;}
.x2e_c00168{left:342.189757px;}
.x2f_c00168{left:348.376740px;}
.x28_c00168{left:351.731739px;}
.x30_c00168{left:354.069743px;}
.x31_c00168{left:357.479743px;}
.x32_c00168{left:365.386869px;}
.x33_c00168{left:373.375785px;}
.x34_c00168{left:380.135498px;}
.x35_c00168{left:383.155707px;}
.x36_c00168{left:386.159935px;}
.x37_c00168{left:389.557910px;}
.x38_c00168{left:392.174988px;}
.x39_c00168{left:395.489533px;}
.x3a_c00168{left:400.664851px;}
.x3b_c00168{left:403.469600px;}
.x43_c00168{left:452.271732px;}
.x26_c00168{left:464.896169px;}
.x3c_c00168{left:676.878164px;}
.x1_c00168{left:697.320842px;}
.x27_c00168{left:733.540639px;}
.x25_c00168{left:757.088990px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.v1_c00168{vertical-align:1.136256pt;}
.ls0_c00168{letter-spacing:0.000000pt;}
.ws4_c00168{word-spacing:-37.057398pt;}
.ws0_c00168{word-spacing:-13.485567pt;}
.ws2_c00168{word-spacing:-0.079987pt;}
.ws1_c00168{word-spacing:-0.049560pt;}
.ws5_c00168{word-spacing:0.000000pt;}
.ws3_c00168{word-spacing:256.052163pt;}
._3_c00168{width:1.546873pt;}
._2_c00168{width:2.474975pt;}
._1_c00168{width:3.880738pt;}
._0_c00168{width:5.224975pt;}
.fsd_c00168{font-size:35.340254pt;}
.fs7_c00168{font-size:37.333182pt;}
.fsc_c00168{font-size:37.333438pt;}
.fs4_c00168{font-size:42.105093pt;}
.fs1_c00168{font-size:42.105094pt;}
.fs5_c00168{font-size:42.105095pt;}
.fs2_c00168{font-size:42.105096pt;}
.fs3_c00168{font-size:42.105098pt;}
.fs0_c00168{font-size:45.921418pt;}
.fs8_c00168{font-size:49.559999pt;}
.fsf_c00168{font-size:53.319997pt;}
.fs9_c00168{font-size:63.999997pt;}
.fsa_c00168{font-size:66.154880pt;}
.fs6_c00168{font-size:68.454656pt;}
.fsb_c00168{font-size:79.986889pt;}
.fse_c00168{font-size:85.319996pt;}
.y0_c00168{bottom:0.000000pt;}
.y1_c00168{bottom:0.000007pt;}
.y52_c00168{bottom:26.134367pt;}
.y4b_c00168{bottom:155.150298pt;}
.y4a_c00168{bottom:182.150296pt;}
.y49_c00168{bottom:209.150295pt;}
.y48_c00168{bottom:236.150294pt;}
.y47_c00168{bottom:263.150293pt;}
.y4c_c00168{bottom:299.664781pt;}
.y2_c00168{bottom:356.911319pt;}
.y2e_c00168{bottom:432.789822pt;}
.y10_c00168{bottom:438.513950pt;}
.y24_c00168{bottom:438.527754pt;}
.yf_c00168{bottom:438.980754pt;}
.y25_c00168{bottom:438.998276pt;}
.y3c_c00168{bottom:439.074943pt;}
.y23_c00168{bottom:439.633885pt;}
.y3d_c00168{bottom:439.815613pt;}
.y3b_c00168{bottom:439.833627pt;}
.ye_c00168{bottom:439.928600pt;}
.y22_c00168{bottom:440.746230pt;}
.y3a_c00168{bottom:440.753505pt;}
.yd_c00168{bottom:440.882384pt;}
.y26_c00168{bottom:441.146660pt;}
.y11_c00168{bottom:441.203087pt;}
.y3e_c00168{bottom:441.754495pt;}
.y21_c00168{bottom:442.208338pt;}
.yc_c00168{bottom:442.350726pt;}
.y39_c00168{bottom:442.711737pt;}
.y3f_c00168{bottom:442.991236pt;}
.y20_c00168{bottom:443.709077pt;}
.yb_c00168{bottom:443.856095pt;}
.y40_c00168{bottom:444.500834pt;}
.y12_c00168{bottom:445.005059pt;}
.y1f_c00168{bottom:445.367066pt;}
.ya_c00168{bottom:445.518151pt;}
.y27_c00168{bottom:445.680145pt;}
.y38_c00168{bottom:446.081677pt;}
.y41_c00168{bottom:446.671541pt;}
.y13_c00168{bottom:447.244339pt;}
.y42_c00168{bottom:448.679667pt;}
.y28_c00168{bottom:448.905531pt;}
.y1e_c00168{bottom:449.504430pt;}
.y9_c00168{bottom:449.664187pt;}
.y37_c00168{bottom:450.943270pt;}
.y43_c00168{bottom:451.585269pt;}
.y14_c00168{bottom:452.535040pt;}
.y29_c00168{bottom:453.913511pt;}
.y36_c00168{bottom:454.913413pt;}
.y1d_c00168{bottom:455.194152pt;}
.y8_c00168{bottom:455.361467pt;}
.y15_c00168{bottom:456.756200pt;}
.y44_c00168{bottom:459.049592pt;}
.y2a_c00168{bottom:459.831327pt;}
.y35_c00168{bottom:460.623928pt;}
.y1c_c00168{bottom:461.689550pt;}
.y7_c00168{bottom:461.769857pt;}
.y34_c00168{bottom:464.686327pt;}
.y6_c00168{bottom:464.844100pt;}
.y45_c00168{bottom:466.204075pt;}
.y16_c00168{bottom:467.231078pt;}
.y1b_c00168{bottom:468.055335pt;}
.y5_c00168{bottom:470.186765pt;}
.y2b_c00168{bottom:470.465221pt;}
.y33_c00168{bottom:471.594820pt;}
.y1a_c00168{bottom:472.294552pt;}
.y2d_c00168{bottom:474.016326pt;}
.y31_c00168{bottom:474.632902pt;}
.y32_c00168{bottom:475.056113pt;}
.y4_c00168{bottom:476.639415pt;}
.y19_c00168{bottom:477.781541pt;}
.y17_c00168{bottom:478.111066pt;}
.y2c_c00168{bottom:478.434544pt;}
.y2f_c00168{bottom:479.977628pt;}
.y18_c00168{bottom:484.059707pt;}
.y3_c00168{bottom:485.114772pt;}
.y30_c00168{bottom:513.277627pt;}
.y46_c00168{bottom:568.082152pt;}
.y53_c00168{bottom:907.946525pt;}
.y50_c00168{bottom:1003.367459pt;}
.y4e_c00168{bottom:1007.767476pt;}
.y4d_c00168{bottom:1020.211955pt;}
.y51_c00168{bottom:1025.122146pt;}
.y4f_c00168{bottom:1040.962393pt;}
.h9_c00168{height:31.990003pt;}
.ha_c00168{height:31.990004pt;}
.hb_c00168{height:31.990006pt;}
.h13_c00168{height:32.907161pt;}
.h3_c00168{height:33.297513pt;}
.hd_c00168{height:34.762880pt;}
.h12_c00168{height:34.763119pt;}
.h7_c00168{height:39.206256pt;}
.h4_c00168{height:39.206257pt;}
.h8_c00168{height:39.206258pt;}
.h5_c00168{height:39.206259pt;}
.h6_c00168{height:39.206261pt;}
.h16_c00168{height:40.523198pt;}
.he_c00168{height:46.147909pt;}
.hc_c00168{height:50.040354pt;}
.h10_c00168{height:50.682132pt;}
.h15_c00168{height:51.176609pt;}
.hf_c00168{height:59.593748pt;}
.h11_c00168{height:60.771289pt;}
.h14_c00168{height:79.445915pt;}
.h2_c00168{height:1159.999952pt;}
.h0_c00168{height:1159.999959pt;}
.h1_c00168{height:1160.000000pt;}
.w2_c00168{width:830.999965pt;}
.w0_c00168{width:831.000000pt;}
.w1_c00168{width:831.333333pt;}
.x0_c00168{left:0.000000pt;}
.x3d_c00168{left:78.135686pt;}
.x3e_c00168{left:79.342253pt;}
.x3f_c00168{left:95.315788pt;}
.x40_c00168{left:96.735260pt;}
.x44_c00168{left:116.169448pt;}
.x14_c00168{left:119.977634pt;}
.x13_c00168{left:121.465137pt;}
.x15_c00168{left:124.463353pt;}
.x16_c00168{left:128.774857pt;}
.x17_c00168{left:133.544468pt;}
.x18_c00168{left:135.991410pt;}
.x19_c00168{left:138.666862pt;}
.x1a_c00168{left:142.086856pt;}
.x24_c00168{left:143.505744pt;}
.x1b_c00168{left:145.156780pt;}
.x1c_c00168{left:152.521190pt;}
.x1d_c00168{left:159.871997pt;}
.x1e_c00168{left:167.366655pt;}
.x1f_c00168{left:174.821307pt;}
.x20_c00168{left:178.525632pt;}
.x21_c00168{left:182.577318pt;}
.x22_c00168{left:185.963463pt;}
.x23_c00168{left:188.262839pt;}
.x3_c00168{left:204.798568pt;}
.x2_c00168{left:206.697430pt;}
.x4_c00168{left:209.442955pt;}
.x5_c00168{left:213.744503pt;}
.x6_c00168{left:218.506891pt;}
.x7_c00168{left:220.950947pt;}
.x8_c00168{left:223.623762pt;}
.x9_c00168{left:227.041187pt;}
.x42_c00168{left:228.108486pt;}
.xa_c00168{left:229.962704pt;}
.xb_c00168{left:233.906932pt;}
.xc_c00168{left:241.567426pt;}
.xd_c00168{left:252.092435pt;}
.xe_c00168{left:258.703382pt;}
.xf_c00168{left:261.720880pt;}
.x41_c00168{left:262.769032pt;}
.x10_c00168{left:266.467148pt;}
.x11_c00168{left:269.480012pt;}
.x12_c00168{left:273.046051pt;}
.x29_c00168{left:290.708831pt;}
.x2a_c00168{left:291.790874pt;}
.x2b_c00168{left:293.053997pt;}
.x2c_c00168{left:296.073752pt;}
.x2d_c00168{left:298.940009pt;}
.x2e_c00168{left:304.168673pt;}
.x2f_c00168{left:309.668213pt;}
.x28_c00168{left:312.650435pt;}
.x30_c00168{left:314.728661pt;}
.x31_c00168{left:317.759772pt;}
.x32_c00168{left:324.788328pt;}
.x33_c00168{left:331.889587pt;}
.x34_c00168{left:337.898220pt;}
.x35_c00168{left:340.582851pt;}
.x36_c00168{left:343.253275pt;}
.x37_c00168{left:346.273697pt;}
.x38_c00168{left:348.599989pt;}
.x39_c00168{left:351.546252pt;}
.x3a_c00168{left:356.146534pt;}
.x3b_c00168{left:358.639645pt;}
.x43_c00168{left:402.019318pt;}
.x26_c00168{left:413.241039pt;}
.x3c_c00168{left:601.669479pt;}
.x1_c00168{left:619.840748pt;}
.x27_c00168{left:652.036124pt;}
.x25_c00168{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7315a470cbf15a31f303b4fd.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.171387;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.006348;font-style:normal;font-weight:normal;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_c95cf27c59b0509c51e1ca1a.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.000000;font-style:normal;font-weight:normal;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_73ad054d81bf5a3e6fb62363.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:1.000000;font-style:normal;font-weight: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_c00169;src:url('chunks/assets/font_90a272cee46c3f11bc10e0d6.woff2')format("woff");}.ff5_c00169{font-family:ff5_c00169;line-height:1.171387;font-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_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);}
.v0_c00169{vertical-align:0.000000px;}
.ls1_c00169{letter-spacing:0.000000px;}
.ls0_c00169{letter-spacing:0.035133px;}
.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;}
}
.ws0_c00169{word-spacing:-19.320776px;}
.ws1_c00169{word-spacing:-0.059985px;}
.ws2_c00169{word-spacing:0.000000px;}
._0_c00169{width:1.183570px;}
._3_c00169{width:2.368653px;}
._9_c00169{width:4.361160px;}
._5_c00169{width:5.515546px;}
._4_c00169{width:6.750002px;}
._2_c00169{width:11.013450px;}
._6_c00169{width:15.668837px;}
._7_c00169{width:24.360053px;}
._8_c00169{width:34.178875px;}
._1_c00169{width:39.023435px;}
.fc1_c00169{color:rgb(67,91,56);}
.fc2_c00169{color:rgb(255,255,255);}
.fc0_c00169{color:rgb(0,0,0);}
.fs2_c00169{font-size:59.984997px;}
.fs0_c00169{font-size:71.999997px;}
.fs1_c00169{font-size:74.377724px;}
.y0_c00169{bottom:0.000000px;}
.y1_c00169{bottom:0.000008px;}
.y19_c00169{bottom:29.401163px;}
.y1a_c00169{bottom:377.436080px;}
.y13_c00169{bottom:469.690288px;}
.y12_c00169{bottom:500.065287px;}
.y11_c00169{bottom:530.440286px;}
.y10_c00169{bottom:560.815285px;}
.yf_c00169{bottom:591.190283px;}
.ye_c00169{bottom:624.265282px;}
.yd_c00169{bottom:674.016301px;}
.yc_c00169{bottom:704.391299px;}
.yb_c00169{bottom:737.413212px;}
.y9_c00169{bottom:782.682858px;}
.y8_c00169{bottom:813.057857px;}
.y7_c00169{bottom:843.432855px;}
.y6_c00169{bottom:873.807854px;}
.y5_c00169{bottom:904.182853px;}
.y4_c00169{bottom:934.557851px;}
.y3_c00169{bottom:964.932850px;}
.y2_c00169{bottom:995.307849px;}
.ya_c00169{bottom:1028.382848px;}
.y18_c00169{bottom:1074.612260px;}
.y17_c00169{bottom:1104.987259px;}
.y16_c00169{bottom:1135.362257px;}
.y15_c00169{bottom:1165.737256px;}
.y14_c00169{bottom:1199.188901px;}
.h4_c00169{height:55.160154px;}
.h6_c00169{height:55.855171px;}
.h5_c00169{height:56.981762px;}
.h3_c00169{height:67.042966px;}
.h2_c00169{height:1304.999946px;}
.h0_c00169{height:1304.999953px;}
.h1_c00169{height:1305.000000px;}
.w2_c00169{width:934.874961px;}
.w0_c00169{width:934.875000px;}
.w1_c00169{width:935.250000px;}
.x0_c00169{left:0.000000px;}
.x1_c00169{left:89.487450px;}
.x2_c00169{left:90.844844px;}
.x3_c00169{left:452.271732px;}
.x4_c00169{left:683.625212px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls1_c00169{letter-spacing:0.000000pt;}
.ls0_c00169{letter-spacing:0.031230pt;}
.ws0_c00169{word-spacing:-17.174023pt;}
.ws1_c00169{word-spacing:-0.053320pt;}
.ws2_c00169{word-spacing:0.000000pt;}
._0_c00169{width:1.052062pt;}
._3_c00169{width:2.105469pt;}
._9_c00169{width:3.876586pt;}
._5_c00169{width:4.902707pt;}
._4_c00169{width:6.000002pt;}
._2_c00169{width:9.789734pt;}
._6_c00169{width:13.927855pt;}
._7_c00169{width:21.653380pt;}
._8_c00169{width:30.381222pt;}
._1_c00169{width:34.687498pt;}
.fs2_c00169{font-size:53.319997pt;}
.fs0_c00169{font-size:63.999997pt;}
.fs1_c00169{font-size:66.113533pt;}
.y0_c00169{bottom:0.000000pt;}
.y1_c00169{bottom:0.000007pt;}
.y19_c00169{bottom:26.134367pt;}
.y1a_c00169{bottom:335.498738pt;}
.y13_c00169{bottom:417.502479pt;}
.y12_c00169{bottom:444.502477pt;}
.y11_c00169{bottom:471.502476pt;}
.y10_c00169{bottom:498.502475pt;}
.yf_c00169{bottom:525.502474pt;}
.ye_c00169{bottom:554.902473pt;}
.yd_c00169{bottom:599.125601pt;}
.yc_c00169{bottom:626.125600pt;}
.yb_c00169{bottom:655.478411pt;}
.y9_c00169{bottom:695.718096pt;}
.y8_c00169{bottom:722.718095pt;}
.y7_c00169{bottom:749.718094pt;}
.y6_c00169{bottom:776.718092pt;}
.y5_c00169{bottom:803.718091pt;}
.y4_c00169{bottom:830.718090pt;}
.y3_c00169{bottom:857.718089pt;}
.y2_c00169{bottom:884.718088pt;}
.ya_c00169{bottom:914.118087pt;}
.y18_c00169{bottom:955.210898pt;}
.y17_c00169{bottom:982.210897pt;}
.y16_c00169{bottom:1009.210896pt;}
.y15_c00169{bottom:1036.210894pt;}
.y14_c00169{bottom:1065.945690pt;}
.h4_c00169{height:49.031248pt;}
.h6_c00169{height:49.649041pt;}
.h5_c00169{height:50.650455pt;}
.h3_c00169{height:59.593748pt;}
.h2_c00169{height:1159.999952pt;}
.h0_c00169{height:1159.999959pt;}
.h1_c00169{height:1160.000000pt;}
.w2_c00169{width:830.999965pt;}
.w0_c00169{width:831.000000pt;}
.w1_c00169{width:831.333333pt;}
.x0_c00169{left:0.000000pt;}
.x1_c00169{left:79.544400pt;}
.x2_c00169{left:80.750973pt;}
.x3_c00169{left:402.019318pt;}
.x4_c00169{left:607.666855pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.000000;font-style:normal;font-weight:normal;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_95e567d8cba5c355efdf0fb2.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.171387;font-style:normal;font-weight:normal;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_de07b783af1f9d8fd28e89d3.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.006348;font-style:normal;font-weight:normal;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_ef75ac09ec0bee8008350615.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:0.713867;font-style:normal;font-weight: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_c00170;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:1.006348;font-style:normal;font-weight: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_c00170;src:url('chunks/assets/font_da009546aedbfded3c6e4058.woff2')format("woff");}.ff6_c00170{font-family:ff6_c00170;line-height:1.000000;font-style:normal;font-weight: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_c00170;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff7_c00170{font-family:ff7_c00170;line-height:0.734863;font-style:normal;font-weight: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_c00170;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff8_c00170{font-family:ff8_c00170;line-height:0.769531;font-style:normal;font-weight: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_c00170;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff9_c00170{font-family:ff9_c00170;line-height:0.743000;font-style:normal;font-weight: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_c00170;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00170{font-family:ffa_c00170;line-height:0.940000;font-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_c00170{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00170{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00170{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00170{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00170{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00170{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00170{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00170{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00170{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00170{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00170{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00170{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00170{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00170{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00170{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00170{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00170{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00170{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00170{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00170{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00170{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00170{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00170{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00170{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00170{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00170{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00170{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00170{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00170{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00170{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00170{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00170{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00170{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00170{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00170{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00170{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00170{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00170{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00170{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00170{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00170{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00170{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00170{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00170{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00170{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00170{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00170{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00170{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00170{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00170{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00170{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00170{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00170{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00170{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00170{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00170{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00170{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00170{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00170{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00170{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00170{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00170{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.ls1_c00170{letter-spacing:0.000000px;}
.ls0_c00170{letter-spacing:2.531250px;}
.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;}
}
.ws4_c00170{word-spacing:-41.689573px;}
.ws2_c00170{word-spacing:-15.171263px;}
.ws1_c00170{word-spacing:-0.089985px;}
.ws0_c00170{word-spacing:-0.055755px;}
.ws5_c00170{word-spacing:0.000000px;}
.ws3_c00170{word-spacing:281.638789px;}
._3_c00170{width:1.808076px;}
._2_c00170{width:3.289580px;}
._1_c00170{width:6.462293px;}
._4_c00170{width:13.630530px;}
._0_c00170{width:29.219852px;}
.fc6_c00170{color:transparent;}
.fc5_c00170{color:rgb(9,71,81);}
.fc4_c00170{color:rgb(67,91,56);}
.fc3_c00170{color:rgb(8,1,0);}
.fc2_c00170{color:rgb(255,49,49);}
.fc1_c00170{color:rgb(0,0,0);}
.fc0_c00170{color:rgb(255,255,255);}
.fs5_c00170{font-size:39.757786px;}
.fse_c00170{font-size:41.999830px;}
.fs4_c00170{font-size:42.000118px;}
.fsb_c00170{font-size:47.368230px;}
.fs8_c00170{font-size:47.368231px;}
.fsc_c00170{font-size:47.368232px;}
.fs9_c00170{font-size:47.368233px;}
.fsa_c00170{font-size:47.368235px;}
.fs7_c00170{font-size:51.661596px;}
.fs0_c00170{font-size:55.754999px;}
.fsf_c00170{font-size:59.984997px;}
.fs1_c00170{font-size:71.999997px;}
.fs2_c00170{font-size:74.424240px;}
.fsd_c00170{font-size:77.011488px;}
.fs3_c00170{font-size:89.985250px;}
.fs6_c00170{font-size:95.984996px;}
.y0_c00170{bottom:0.000000px;}
.y1_c00170{bottom:0.000008px;}
.y54_c00170{bottom:29.401163px;}
.y8_c00170{bottom:152.597730px;}
.y7_c00170{bottom:182.972728px;}
.y6_c00170{bottom:213.347727px;}
.y5_c00170{bottom:243.722726px;}
.y4_c00170{bottom:274.097725px;}
.y3_c00170{bottom:304.472723px;}
.y9_c00170{bottom:340.353302px;}
.yf_c00170{bottom:401.525233px;}
.y3b_c00170{bottom:486.888370px;}
.y1d_c00170{bottom:493.328373px;}
.y31_c00170{bottom:493.343471px;}
.y1c_c00170{bottom:493.853637px;}
.y32_c00170{bottom:493.873313px;}
.y49_c00170{bottom:493.959419px;}
.y30_c00170{bottom:494.588120px;}
.y4a_c00170{bottom:494.792744px;}
.y48_c00170{bottom:494.812830px;}
.y1b_c00170{bottom:494.919783px;}
.y2f_c00170{bottom:495.839401px;}
.y47_c00170{bottom:495.847621px;}
.y1a_c00170{bottom:495.993006px;}
.y33_c00170{bottom:496.289812px;}
.y1e_c00170{bottom:496.353473px;}
.y4b_c00170{bottom:496.973987px;}
.y2e_c00170{bottom:497.484272px;}
.y19_c00170{bottom:497.644566px;}
.y46_c00170{bottom:498.050345px;}
.y4c_c00170{bottom:498.364888px;}
.y2d_c00170{bottom:499.172531px;}
.y18_c00170{bottom:499.338107px;}
.y4d_c00170{bottom:500.063187px;}
.y1f_c00170{bottom:500.630691px;}
.y2c_c00170{bottom:501.037769px;}
.y17_c00170{bottom:501.208172px;}
.y34_c00170{bottom:501.390631px;}
.y45_c00170{bottom:501.842067px;}
.y4e_c00170{bottom:502.505484px;}
.y20_c00170{bottom:503.149449px;}
.y4f_c00170{bottom:504.764445px;}
.y35_c00170{bottom:505.018795px;}
.y2b_c00170{bottom:505.692124px;}
.y16_c00170{bottom:505.871886px;}
.y44_c00170{bottom:507.310818px;}
.y50_c00170{bottom:508.033427px;}
.y21_c00170{bottom:509.101992px;}
.y36_c00170{bottom:510.652700px;}
.y43_c00170{bottom:511.777409px;}
.y2a_c00170{bottom:512.093493px;}
.y15_c00170{bottom:512.281758px;}
.y22_c00170{bottom:513.850725px;}
.y51_c00170{bottom:516.430683px;}
.y37_c00170{bottom:517.310350px;}
.y42_c00170{bottom:518.202172px;}
.y29_c00170{bottom:519.400636px;}
.y14_c00170{bottom:519.490837px;}
.y41_c00170{bottom:522.772046px;}
.y13_c00170{bottom:522.949612px;}
.y52_c00170{bottom:524.479585px;}
.y23_c00170{bottom:525.634639px;}
.y28_c00170{bottom:526.562252px;}
.y12_c00170{bottom:528.959931px;}
.y38_c00170{bottom:529.273374px;}
.y40_c00170{bottom:530.544173px;}
.y27_c00170{bottom:531.331479px;}
.y3a_c00170{bottom:533.268115px;}
.y3e_c00170{bottom:533.961835px;}
.y53_c00170{bottom:534.281911px;}
.y3f_c00170{bottom:534.437983px;}
.y11_c00170{bottom:536.219342px;}
.y26_c00170{bottom:537.503802px;}
.y24_c00170{bottom:537.875201px;}
.y39_c00170{bottom:538.238934px;}
.y3c_c00170{bottom:539.974724px;}
.y25_c00170{bottom:544.567278px;}
.y10_c00170{bottom:545.754118px;}
.y3d_c00170{bottom:577.437042px;}
.y2_c00170{bottom:639.092601px;}
.y55_c00170{bottom:1021.439863px;}
.yd_c00170{bottom:1128.788247px;}
.yb_c00170{bottom:1133.738464px;}
.ya_c00170{bottom:1147.738503px;}
.ye_c00170{bottom:1153.262281px;}
.yc_c00170{bottom:1171.082779px;}
.h14_c00170{height:32.176627px;}
.h10_c00170{height:35.988753px;}
.h11_c00170{height:35.988755px;}
.h12_c00170{height:35.988756px;}
.hf_c00170{height:36.289430px;}
.hc_c00170{height:36.289431px;}
.hd_c00170{height:36.289433px;}
.he_c00170{height:36.289434px;}
.h8_c00170{height:37.020556px;}
.hb_c00170{height:37.459702px;}
.h7_c00170{height:39.108509px;}
.h15_c00170{height:45.588598px;}
.h3_c00170{height:51.916398px;}
.h4_c00170{height:55.160154px;}
.h13_c00170{height:56.295398px;}
.h5_c00170{height:57.017399px;}
.h9_c00170{height:67.042966px;}
.h6_c00170{height:68.367700px;}
.ha_c00170{height:89.376654px;}
.h2_c00170{height:1304.999946px;}
.h0_c00170{height:1304.999953px;}
.h1_c00170{height:1305.000000px;}
.w2_c00170{width:934.874961px;}
.w0_c00170{width:934.875000px;}
.w1_c00170{width:935.250000px;}
.x0_c00170{left:0.000000px;}
.x3_c00170{left:88.287988px;}
.x2_c00170{left:90.686927px;}
.x4_c00170{left:107.230262px;}
.x5_c00170{left:108.827167px;}
.x42_c00170{left:130.690629px;}
.x19_c00170{left:134.974838px;}
.x18_c00170{left:136.648279px;}
.x1a_c00170{left:140.021272px;}
.x1b_c00170{left:144.871714px;}
.x1c_c00170{left:150.237526px;}
.x1d_c00170{left:152.990336px;}
.x1e_c00170{left:156.000220px;}
.x1f_c00170{left:159.847713px;}
.x29_c00170{left:161.443962px;}
.x20_c00170{left:163.301377px;}
.x21_c00170{left:171.586339px;}
.x22_c00170{left:179.855997px;}
.x23_c00170{left:188.287487px;}
.x24_c00170{left:196.673970px;}
.x25_c00170{left:200.841336px;}
.x26_c00170{left:205.399483px;}
.x27_c00170{left:209.208896px;}
.x28_c00170{left:211.795693px;}
.x9_c00170{left:230.398389px;}
.x8_c00170{left:232.534609px;}
.xa_c00170{left:235.623324px;}
.xb_c00170{left:240.462566px;}
.xc_c00170{left:245.820252px;}
.xd_c00170{left:248.569815px;}
.xe_c00170{left:251.576732px;}
.xf_c00170{left:255.421336px;}
.x2d_c00170{left:256.622047px;}
.x10_c00170{left:258.708042px;}
.x11_c00170{left:263.145298px;}
.x12_c00170{left:271.763354px;}
.x13_c00170{left:283.603990px;}
.x14_c00170{left:291.041304px;}
.x6_c00170{left:295.177092px;}
.x15_c00170{left:299.775542px;}
.x16_c00170{left:303.165014px;}
.x17_c00170{left:307.176807px;}
.x2e_c00170{left:327.047435px;}
.x2f_c00170{left:328.264734px;}
.x30_c00170{left:329.685747px;}
.x31_c00170{left:333.082971px;}
.x32_c00170{left:336.307511px;}
.x33_c00170{left:342.189757px;}
.x34_c00170{left:348.376740px;}
.x35_c00170{left:354.069743px;}
.x36_c00170{left:357.479743px;}
.x37_c00170{left:365.386869px;}
.x38_c00170{left:373.375785px;}
.x39_c00170{left:380.135498px;}
.x3a_c00170{left:383.155707px;}
.x3b_c00170{left:386.159935px;}
.x3c_c00170{left:389.557910px;}
.x3d_c00170{left:392.174988px;}
.x3e_c00170{left:395.489533px;}
.x3f_c00170{left:400.664851px;}
.x40_c00170{left:403.469600px;}
.x41_c00170{left:452.271732px;}
.x2b_c00170{left:464.896169px;}
.x1_c00170{left:676.878164px;}
.x7_c00170{left:697.320842px;}
.x2c_c00170{left:733.540639px;}
.x2a_c00170{left:757.088990px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls1_c00170{letter-spacing:0.000000pt;}
.ls0_c00170{letter-spacing:2.250000pt;}
.ws4_c00170{word-spacing:-37.057398pt;}
.ws2_c00170{word-spacing:-13.485567pt;}
.ws1_c00170{word-spacing:-0.079987pt;}
.ws0_c00170{word-spacing:-0.049560pt;}
.ws5_c00170{word-spacing:0.000000pt;}
.ws3_c00170{word-spacing:250.345590pt;}
._3_c00170{width:1.607179pt;}
._2_c00170{width:2.924071pt;}
._1_c00170{width:5.744261pt;}
._4_c00170{width:12.116026pt;}
._0_c00170{width:25.973202pt;}
.fs5_c00170{font-size:35.340254pt;}
.fse_c00170{font-size:37.333182pt;}
.fs4_c00170{font-size:37.333438pt;}
.fsb_c00170{font-size:42.105093pt;}
.fs8_c00170{font-size:42.105094pt;}
.fsc_c00170{font-size:42.105095pt;}
.fs9_c00170{font-size:42.105096pt;}
.fsa_c00170{font-size:42.105098pt;}
.fs7_c00170{font-size:45.921418pt;}
.fs0_c00170{font-size:49.559999pt;}
.fsf_c00170{font-size:53.319997pt;}
.fs1_c00170{font-size:63.999997pt;}
.fs2_c00170{font-size:66.154880pt;}
.fsd_c00170{font-size:68.454656pt;}
.fs3_c00170{font-size:79.986889pt;}
.fs6_c00170{font-size:85.319996pt;}
.y0_c00170{bottom:0.000000pt;}
.y1_c00170{bottom:0.000007pt;}
.y54_c00170{bottom:26.134367pt;}
.y8_c00170{bottom:135.642426pt;}
.y7_c00170{bottom:162.642425pt;}
.y6_c00170{bottom:189.642424pt;}
.y5_c00170{bottom:216.642423pt;}
.y4_c00170{bottom:243.642422pt;}
.y3_c00170{bottom:270.642421pt;}
.y9_c00170{bottom:302.536269pt;}
.yf_c00170{bottom:356.911319pt;}
.y3b_c00170{bottom:432.789662pt;}
.y1d_c00170{bottom:438.514110pt;}
.y31_c00170{bottom:438.527530pt;}
.y1c_c00170{bottom:438.981010pt;}
.y32_c00170{bottom:438.998500pt;}
.y49_c00170{bottom:439.075039pt;}
.y30_c00170{bottom:439.633885pt;}
.y4a_c00170{bottom:439.815773pt;}
.y48_c00170{bottom:439.833627pt;}
.y1b_c00170{bottom:439.928696pt;}
.y2f_c00170{bottom:440.746134pt;}
.y47_c00170{bottom:440.753441pt;}
.y1a_c00170{bottom:440.882672pt;}
.y33_c00170{bottom:441.146500pt;}
.y1e_c00170{bottom:441.203087pt;}
.y4b_c00170{bottom:441.754655pt;}
.y2e_c00170{bottom:442.208242pt;}
.y19_c00170{bottom:442.350726pt;}
.y46_c00170{bottom:442.711417pt;}
.y4c_c00170{bottom:442.991012pt;}
.y2d_c00170{bottom:443.708917pt;}
.y18_c00170{bottom:443.856095pt;}
.y4d_c00170{bottom:444.500610pt;}
.y1f_c00170{bottom:445.005059pt;}
.y2c_c00170{bottom:445.366906pt;}
.y17_c00170{bottom:445.518375pt;}
.y34_c00170{bottom:445.680561pt;}
.y45_c00170{bottom:446.081837pt;}
.y4e_c00170{bottom:446.671541pt;}
.y20_c00170{bottom:447.243955pt;}
.y4f_c00170{bottom:448.679507pt;}
.y35_c00170{bottom:448.905595pt;}
.y2b_c00170{bottom:449.504110pt;}
.y16_c00170{bottom:449.663899pt;}
.y44_c00170{bottom:450.942950pt;}
.y50_c00170{bottom:451.585269pt;}
.y21_c00170{bottom:452.535104pt;}
.y36_c00170{bottom:453.913511pt;}
.y43_c00170{bottom:454.913253pt;}
.y2a_c00170{bottom:455.194216pt;}
.y15_c00170{bottom:455.361563pt;}
.y22_c00170{bottom:456.756200pt;}
.y51_c00170{bottom:459.049496pt;}
.y37_c00170{bottom:459.831423pt;}
.y42_c00170{bottom:460.624152pt;}
.y29_c00170{bottom:461.689454pt;}
.y14_c00170{bottom:461.769633pt;}
.y41_c00170{bottom:464.686263pt;}
.y13_c00170{bottom:464.844100pt;}
.y52_c00170{bottom:466.204075pt;}
.y23_c00170{bottom:467.230790pt;}
.y28_c00170{bottom:468.055335pt;}
.y12_c00170{bottom:470.186605pt;}
.y38_c00170{bottom:470.465221pt;}
.y40_c00170{bottom:471.594820pt;}
.y27_c00170{bottom:472.294648pt;}
.y3a_c00170{bottom:474.016102pt;}
.y3e_c00170{bottom:474.632742pt;}
.y53_c00170{bottom:474.917254pt;}
.y3f_c00170{bottom:475.055985pt;}
.y11_c00170{bottom:476.639415pt;}
.y26_c00170{bottom:477.781157pt;}
.y24_c00170{bottom:478.111290pt;}
.y39_c00170{bottom:478.434608pt;}
.y3c_c00170{bottom:479.977532pt;}
.y25_c00170{bottom:484.059803pt;}
.y10_c00170{bottom:485.114772pt;}
.y3d_c00170{bottom:513.277371pt;}
.y2_c00170{bottom:568.082312pt;}
.y55_c00170{bottom:907.946545pt;}
.yd_c00170{bottom:1003.367331pt;}
.yb_c00170{bottom:1007.767524pt;}
.ya_c00170{bottom:1020.212003pt;}
.ye_c00170{bottom:1025.122028pt;}
.yc_c00170{bottom:1040.962470pt;}
.h14_c00170{height:28.601447pt;}
.h10_c00170{height:31.990003pt;}
.h11_c00170{height:31.990004pt;}
.h12_c00170{height:31.990006pt;}
.hf_c00170{height:32.257271pt;}
.hc_c00170{height:32.257272pt;}
.hd_c00170{height:32.257274pt;}
.he_c00170{height:32.257275pt;}
.h8_c00170{height:32.907161pt;}
.hb_c00170{height:33.297513pt;}
.h7_c00170{height:34.763119pt;}
.h15_c00170{height:40.523198pt;}
.h3_c00170{height:46.147909pt;}
.h4_c00170{height:49.031248pt;}
.h13_c00170{height:50.040354pt;}
.h5_c00170{height:50.682132pt;}
.h9_c00170{height:59.593748pt;}
.h6_c00170{height:60.771289pt;}
.ha_c00170{height:79.445915pt;}
.h2_c00170{height:1159.999952pt;}
.h0_c00170{height:1159.999959pt;}
.h1_c00170{height:1160.000000pt;}
.w2_c00170{width:830.999965pt;}
.w0_c00170{width:831.000000pt;}
.w1_c00170{width:831.333333pt;}
.x0_c00170{left:0.000000pt;}
.x3_c00170{left:78.478211pt;}
.x2_c00170{left:80.610601pt;}
.x4_c00170{left:95.315788pt;}
.x5_c00170{left:96.735260pt;}
.x42_c00170{left:116.169448pt;}
.x19_c00170{left:119.977634pt;}
.x18_c00170{left:121.465137pt;}
.x1a_c00170{left:124.463353pt;}
.x1b_c00170{left:128.774857pt;}
.x1c_c00170{left:133.544468pt;}
.x1d_c00170{left:135.991410pt;}
.x1e_c00170{left:138.666862pt;}
.x1f_c00170{left:142.086856pt;}
.x29_c00170{left:143.505744pt;}
.x20_c00170{left:145.156780pt;}
.x21_c00170{left:152.521190pt;}
.x22_c00170{left:159.871997pt;}
.x23_c00170{left:167.366655pt;}
.x24_c00170{left:174.821307pt;}
.x25_c00170{left:178.525632pt;}
.x26_c00170{left:182.577318pt;}
.x27_c00170{left:185.963463pt;}
.x28_c00170{left:188.262839pt;}
.x9_c00170{left:204.798568pt;}
.x8_c00170{left:206.697430pt;}
.xa_c00170{left:209.442955pt;}
.xb_c00170{left:213.744503pt;}
.xc_c00170{left:218.506891pt;}
.xd_c00170{left:220.950947pt;}
.xe_c00170{left:223.623762pt;}
.xf_c00170{left:227.041187pt;}
.x2d_c00170{left:228.108486pt;}
.x10_c00170{left:229.962704pt;}
.x11_c00170{left:233.906932pt;}
.x12_c00170{left:241.567426pt;}
.x13_c00170{left:252.092435pt;}
.x14_c00170{left:258.703382pt;}
.x6_c00170{left:262.379637pt;}
.x15_c00170{left:266.467148pt;}
.x16_c00170{left:269.480012pt;}
.x17_c00170{left:273.046051pt;}
.x2e_c00170{left:290.708831pt;}
.x2f_c00170{left:291.790874pt;}
.x30_c00170{left:293.053997pt;}
.x31_c00170{left:296.073752pt;}
.x32_c00170{left:298.940009pt;}
.x33_c00170{left:304.168673pt;}
.x34_c00170{left:309.668213pt;}
.x35_c00170{left:314.728661pt;}
.x36_c00170{left:317.759772pt;}
.x37_c00170{left:324.788328pt;}
.x38_c00170{left:331.889587pt;}
.x39_c00170{left:337.898220pt;}
.x3a_c00170{left:340.582851pt;}
.x3b_c00170{left:343.253275pt;}
.x3c_c00170{left:346.273697pt;}
.x3d_c00170{left:348.599989pt;}
.x3e_c00170{left:351.546252pt;}
.x3f_c00170{left:356.146534pt;}
.x40_c00170{left:358.639645pt;}
.x41_c00170{left:402.019318pt;}
.x2b_c00170{left:413.241039pt;}
.x1_c00170{left:601.669479pt;}
.x7_c00170{left:619.840748pt;}
.x2c_c00170{left:652.036124pt;}
.x2a_c00170{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5edf201c6025315998f4be6c.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.006348;font-style:normal;font-weight:normal;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_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.006348;font-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_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);}
.v0_c00171{vertical-align:0.000000px;}
.ls0_c00171{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00171{word-spacing:-19.320776px;}
.ws1_c00171{word-spacing:0.000000px;}
._7_c00171{width:1.125002px;}
._4_c00171{width:2.390626px;}
._1_c00171{width:4.224107px;}
._5_c00171{width:5.439460px;}
._9_c00171{width:7.177229px;}
._e_c00171{width:8.338352px;}
._8_c00171{width:9.473988px;}
._0_c00171{width:11.186074px;}
._2_c00171{width:12.410155px;}
._c_c00171{width:13.474184px;}
._b_c00171{width:15.532606px;}
._11_c00171{width:20.541959px;}
._12_c00171{width:21.679454px;}
._d_c00171{width:25.368733px;}
._f_c00171{width:27.621068px;}
._6_c00171{width:31.415609px;}
._a_c00171{width:33.117188px;}
._10_c00171{width:38.774115px;}
._3_c00171{width:46.348705px;}
.fc1_c00171{color:rgb(67,91,56);}
.fc0_c00171{color:rgb(0,0,0);}
.fs0_c00171{font-size:71.999997px;}
.fs1_c00171{font-size:74.377724px;}
.y0_c00171{bottom:0.000000px;}
.y1_c00171{bottom:0.000008px;}
.y28_c00171{bottom:29.400983px;}
.y1f_c00171{bottom:97.374020px;}
.y1e_c00171{bottom:125.499019px;}
.y1d_c00171{bottom:153.624018px;}
.y1c_c00171{bottom:181.749016px;}
.y1b_c00171{bottom:209.874015px;}
.y1a_c00171{bottom:237.999014px;}
.y19_c00171{bottom:266.124013px;}
.y18_c00171{bottom:294.249012px;}
.y17_c00171{bottom:322.374011px;}
.y16_c00171{bottom:350.499009px;}
.y15_c00171{bottom:378.624008px;}
.y14_c00171{bottom:406.749007px;}
.y13_c00171{bottom:434.874006px;}
.y12_c00171{bottom:462.999005px;}
.y11_c00171{bottom:491.124004px;}
.y10_c00171{bottom:519.249002px;}
.yf_c00171{bottom:547.374001px;}
.ye_c00171{bottom:575.499000px;}
.yd_c00171{bottom:603.623999px;}
.yc_c00171{bottom:631.748998px;}
.yb_c00171{bottom:659.873997px;}
.ya_c00171{bottom:687.998995px;}
.y9_c00171{bottom:716.123994px;}
.y8_c00171{bottom:744.248993px;}
.y7_c00171{bottom:772.373992px;}
.y6_c00171{bottom:800.498991px;}
.y5_c00171{bottom:828.623989px;}
.y4_c00171{bottom:856.748988px;}
.y3_c00171{bottom:884.873987px;}
.y2_c00171{bottom:912.998986px;}
.y20_c00171{bottom:958.266698px;}
.y26_c00171{bottom:1022.976519px;}
.y25_c00171{bottom:1049.976518px;}
.y24_c00171{bottom:1076.976517px;}
.y23_c00171{bottom:1103.976516px;}
.y22_c00171{bottom:1130.976514px;}
.y21_c00171{bottom:1157.976513px;}
.y27_c00171{bottom:1199.188987px;}
.h3_c00171{height:55.160154px;}
.h4_c00171{height:56.981762px;}
.h2_c00171{height:1304.999946px;}
.h0_c00171{height:1304.999953px;}
.h1_c00171{height:1305.000000px;}
.w2_c00171{width:934.874961px;}
.w0_c00171{width:934.875000px;}
.w1_c00171{width:935.250000px;}
.x0_c00171{left:0.000000px;}
.x2_c00171{left:87.902647px;}
.x1_c00171{left:89.487450px;}
.x3_c00171{left:452.271732px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws0_c00171{word-spacing:-17.174023pt;}
.ws1_c00171{word-spacing:0.000000pt;}
._7_c00171{width:1.000002pt;}
._4_c00171{width:2.125001pt;}
._1_c00171{width:3.754762pt;}
._5_c00171{width:4.835076pt;}
._9_c00171{width:6.379759pt;}
._e_c00171{width:7.411868pt;}
._8_c00171{width:8.421322pt;}
._0_c00171{width:9.943177pt;}
._2_c00171{width:11.031249pt;}
._c_c00171{width:11.977053pt;}
._b_c00171{width:13.806761pt;}
._11_c00171{width:18.259519pt;}
._12_c00171{width:19.270626pt;}
._d_c00171{width:22.549985pt;}
._f_c00171{width:24.552060pt;}
._6_c00171{width:27.924986pt;}
._a_c00171{width:29.437500pt;}
._10_c00171{width:34.465880pt;}
._3_c00171{width:41.198849pt;}
.fs0_c00171{font-size:63.999997pt;}
.fs1_c00171{font-size:66.113533pt;}
.y0_c00171{bottom:0.000000pt;}
.y1_c00171{bottom:0.000007pt;}
.y28_c00171{bottom:26.134207pt;}
.y1f_c00171{bottom:86.554684pt;}
.y1e_c00171{bottom:111.554683pt;}
.y1d_c00171{bottom:136.554682pt;}
.y1c_c00171{bottom:161.554681pt;}
.y1b_c00171{bottom:186.554680pt;}
.y1a_c00171{bottom:211.554679pt;}
.y19_c00171{bottom:236.554678pt;}
.y18_c00171{bottom:261.554677pt;}
.y17_c00171{bottom:286.554676pt;}
.y16_c00171{bottom:311.554675pt;}
.y15_c00171{bottom:336.554674pt;}
.y14_c00171{bottom:361.554673pt;}
.y13_c00171{bottom:386.554672pt;}
.y12_c00171{bottom:411.554671pt;}
.y11_c00171{bottom:436.554670pt;}
.y10_c00171{bottom:461.554669pt;}
.yf_c00171{bottom:486.554668pt;}
.ye_c00171{bottom:511.554667pt;}
.yd_c00171{bottom:536.554666pt;}
.yc_c00171{bottom:561.554665pt;}
.yb_c00171{bottom:586.554664pt;}
.ya_c00171{bottom:611.554663pt;}
.y9_c00171{bottom:636.554661pt;}
.y8_c00171{bottom:661.554660pt;}
.y7_c00171{bottom:686.554659pt;}
.y6_c00171{bottom:711.554658pt;}
.y5_c00171{bottom:736.554657pt;}
.y4_c00171{bottom:761.554656pt;}
.y3_c00171{bottom:786.554655pt;}
.y2_c00171{bottom:811.554654pt;}
.y20_c00171{bottom:851.792621pt;}
.y26_c00171{bottom:909.312461pt;}
.y25_c00171{bottom:933.312460pt;}
.y24_c00171{bottom:957.312459pt;}
.y23_c00171{bottom:981.312458pt;}
.y22_c00171{bottom:1005.312457pt;}
.y21_c00171{bottom:1029.312456pt;}
.y27_c00171{bottom:1065.945766pt;}
.h3_c00171{height:49.031248pt;}
.h4_c00171{height:50.650455pt;}
.h2_c00171{height:1159.999952pt;}
.h0_c00171{height:1159.999959pt;}
.h1_c00171{height:1160.000000pt;}
.w2_c00171{width:830.999965pt;}
.w0_c00171{width:831.000000pt;}
.w1_c00171{width:831.333333pt;}
.x0_c00171{left:0.000000pt;}
.x2_c00171{left:78.135686pt;}
.x1_c00171{left:79.544400pt;}
.x3_c00171{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_40e73635b25a8d6cfaf3066a.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.006348;font-style:normal;font-weight:normal;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_c11b6e73d03da968a4837075.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.000000;font-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_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);}
.v0_c00172{vertical-align:0.000000px;}
.ls0_c00172{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00172{word-spacing:-0.072000px;}
.ws1_c00172{word-spacing:0.000000px;}
._5_c00172{width:1.664017px;}
._a_c00172{width:2.675442px;}
._c_c00172{width:3.914095px;}
._e_c00172{width:5.299811px;}
._9_c00172{width:6.403792px;}
._8_c00172{width:8.010201px;}
._10_c00172{width:9.248283px;}
._6_c00172{width:10.645270px;}
._0_c00172{width:13.007814px;}
._2_c00172{width:14.361326px;}
._b_c00172{width:15.628530px;}
._7_c00172{width:17.666006px;}
._d_c00172{width:19.807929px;}
._4_c00172{width:21.063743px;}
._3_c00172{width:22.768958px;}
._1_c00172{width:24.544895px;}
._f_c00172{width:25.973393px;}
.fc0_c00172{color:rgb(0,0,0);}
.fs0_c00172{font-size:71.999997px;}
.y0_c00172{bottom:0.000000px;}
.y1_c00172{bottom:0.000008px;}
.y28_c00172{bottom:29.401163px;}
.y27_c00172{bottom:158.067238px;}
.y26_c00172{bottom:186.192237px;}
.y25_c00172{bottom:214.317236px;}
.y24_c00172{bottom:242.442235px;}
.y23_c00172{bottom:270.567234px;}
.y22_c00172{bottom:298.692232px;}
.y21_c00172{bottom:326.817231px;}
.y20_c00172{bottom:354.942230px;}
.y1f_c00172{bottom:383.067229px;}
.y1e_c00172{bottom:411.192228px;}
.y1d_c00172{bottom:439.317226px;}
.y1c_c00172{bottom:467.442225px;}
.y1b_c00172{bottom:495.567224px;}
.y1a_c00172{bottom:523.692223px;}
.y19_c00172{bottom:551.817222px;}
.y18_c00172{bottom:579.942221px;}
.y17_c00172{bottom:608.067219px;}
.y16_c00172{bottom:636.192218px;}
.y15_c00172{bottom:664.317217px;}
.y14_c00172{bottom:692.442216px;}
.y13_c00172{bottom:720.567215px;}
.y12_c00172{bottom:748.692214px;}
.y11_c00172{bottom:776.817212px;}
.y10_c00172{bottom:804.942211px;}
.yf_c00172{bottom:833.067210px;}
.ye_c00172{bottom:861.192209px;}
.yd_c00172{bottom:889.317208px;}
.yc_c00172{bottom:917.442207px;}
.yb_c00172{bottom:945.567205px;}
.ya_c00172{bottom:973.692204px;}
.y9_c00172{bottom:1001.817203px;}
.y8_c00172{bottom:1029.942202px;}
.y7_c00172{bottom:1058.067201px;}
.y6_c00172{bottom:1086.192200px;}
.y5_c00172{bottom:1114.317198px;}
.y4_c00172{bottom:1142.442197px;}
.y3_c00172{bottom:1170.567196px;}
.y2_c00172{bottom:1198.692195px;}
.h3_c00172{height:55.160154px;}
.h2_c00172{height:1304.999946px;}
.h0_c00172{height:1304.999953px;}
.h1_c00172{height:1305.000000px;}
.w2_c00172{width:934.874961px;}
.w0_c00172{width:934.875000px;}
.w1_c00172{width:935.250000px;}
.x0_c00172{left:0.000000px;}
.x1_c00172{left:89.487450px;}
.x2_c00172{left:452.271732px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls0_c00172{letter-spacing:0.000000pt;}
.ws0_c00172{word-spacing:-0.064000pt;}
.ws1_c00172{word-spacing:0.000000pt;}
._5_c00172{width:1.479126pt;}
._a_c00172{width:2.378171pt;}
._c_c00172{width:3.479196pt;}
._e_c00172{width:4.710943pt;}
._9_c00172{width:5.692259pt;}
._8_c00172{width:7.120179pt;}
._10_c00172{width:8.220696pt;}
._6_c00172{width:9.462462pt;}
._0_c00172{width:11.562501pt;}
._2_c00172{width:12.765623pt;}
._b_c00172{width:13.892026pt;}
._7_c00172{width:15.703117pt;}
._d_c00172{width:17.607048pt;}
._4_c00172{width:18.723327pt;}
._3_c00172{width:20.239074pt;}
._1_c00172{width:21.817684pt;}
._f_c00172{width:23.087460pt;}
.fs0_c00172{font-size:63.999997pt;}
.y0_c00172{bottom:0.000000pt;}
.y1_c00172{bottom:0.000007pt;}
.y28_c00172{bottom:26.134367pt;}
.y27_c00172{bottom:140.504212pt;}
.y26_c00172{bottom:165.504211pt;}
.y25_c00172{bottom:190.504210pt;}
.y24_c00172{bottom:215.504209pt;}
.y23_c00172{bottom:240.504208pt;}
.y22_c00172{bottom:265.504207pt;}
.y21_c00172{bottom:290.504205pt;}
.y20_c00172{bottom:315.504204pt;}
.y1f_c00172{bottom:340.504203pt;}
.y1e_c00172{bottom:365.504202pt;}
.y1d_c00172{bottom:390.504201pt;}
.y1c_c00172{bottom:415.504200pt;}
.y1b_c00172{bottom:440.504199pt;}
.y1a_c00172{bottom:465.504198pt;}
.y19_c00172{bottom:490.504197pt;}
.y18_c00172{bottom:515.504196pt;}
.y17_c00172{bottom:540.504195pt;}
.y16_c00172{bottom:565.504194pt;}
.y15_c00172{bottom:590.504193pt;}
.y14_c00172{bottom:615.504192pt;}
.y13_c00172{bottom:640.504191pt;}
.y12_c00172{bottom:665.504190pt;}
.y11_c00172{bottom:690.504189pt;}
.y10_c00172{bottom:715.504188pt;}
.yf_c00172{bottom:740.504187pt;}
.ye_c00172{bottom:765.504186pt;}
.yd_c00172{bottom:790.504185pt;}
.yc_c00172{bottom:815.504184pt;}
.yb_c00172{bottom:840.504183pt;}
.ya_c00172{bottom:865.504182pt;}
.y9_c00172{bottom:890.504180pt;}
.y8_c00172{bottom:915.504179pt;}
.y7_c00172{bottom:940.504178pt;}
.y6_c00172{bottom:965.504177pt;}
.y5_c00172{bottom:990.504176pt;}
.y4_c00172{bottom:1015.504175pt;}
.y3_c00172{bottom:1040.504174pt;}
.y2_c00172{bottom:1065.504173pt;}
.h3_c00172{height:49.031248pt;}
.h2_c00172{height:1159.999952pt;}
.h0_c00172{height:1159.999959pt;}
.h1_c00172{height:1160.000000pt;}
.w2_c00172{width:830.999965pt;}
.w0_c00172{width:831.000000pt;}
.w1_c00172{width:831.333333pt;}
.x0_c00172{left:0.000000pt;}
.x1_c00172{left:79.544400pt;}
.x2_c00172{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e93b04873767357a178414cd.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.006348;font-style:normal;font-weight:normal;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_699a74b1f25784e5e86cd3be.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.000000;font-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_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;}
.ls0_c00173{letter-spacing:0.000000px;}
.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:-18.703125px;}
.ws1_c00173{word-spacing:0.000000px;}
._2_c00173{width:1.230469px;}
._5_c00173{width:2.320325px;}
._a_c00173{width:3.332189px;}
._3_c00173{width:4.345298px;}
._8_c00173{width:5.428140px;}
._7_c00173{width:7.129646px;}
._f_c00173{width:9.117075px;}
._b_c00173{width:10.429662px;}
._c_c00173{width:12.355906px;}
._4_c00173{width:13.418837px;}
._6_c00173{width:14.505373px;}
._d_c00173{width:15.928937px;}
._1_c00173{width:19.729655px;}
._9_c00173{width:21.111738px;}
._e_c00173{width:31.672553px;}
._0_c00173{width:34.919697px;}
.fc0_c00173{color:rgb(0,0,0);}
.fs0_c00173{font-size:71.999997px;}
.y0_c00173{bottom:0.000000px;}
.y1_c00173{bottom:0.000008px;}
.y2a_c00173{bottom:29.401163px;}
.y29_c00173{bottom:146.817415px;}
.y28_c00173{bottom:173.817414px;}
.y27_c00173{bottom:200.817413px;}
.y26_c00173{bottom:227.817412px;}
.y25_c00173{bottom:254.817411px;}
.y24_c00173{bottom:281.817409px;}
.y23_c00173{bottom:308.817408px;}
.y22_c00173{bottom:335.817407px;}
.y21_c00173{bottom:362.817406px;}
.y20_c00173{bottom:389.817405px;}
.y1f_c00173{bottom:416.817404px;}
.y1e_c00173{bottom:443.817403px;}
.y1d_c00173{bottom:470.817402px;}
.y1c_c00173{bottom:497.817400px;}
.y1b_c00173{bottom:524.817399px;}
.y1a_c00173{bottom:551.817398px;}
.y19_c00173{bottom:578.817397px;}
.y18_c00173{bottom:605.817396px;}
.y17_c00173{bottom:632.817395px;}
.y16_c00173{bottom:659.817394px;}
.y15_c00173{bottom:686.817393px;}
.y14_c00173{bottom:713.817391px;}
.y13_c00173{bottom:740.817390px;}
.y12_c00173{bottom:767.817389px;}
.y11_c00173{bottom:794.817388px;}
.y10_c00173{bottom:821.817387px;}
.yf_c00173{bottom:848.817386px;}
.ye_c00173{bottom:875.817385px;}
.yd_c00173{bottom:902.817384px;}
.yc_c00173{bottom:929.817382px;}
.yb_c00173{bottom:956.817381px;}
.ya_c00173{bottom:983.817380px;}
.y9_c00173{bottom:1010.817379px;}
.y8_c00173{bottom:1037.817378px;}
.y7_c00173{bottom:1064.817377px;}
.y6_c00173{bottom:1091.817376px;}
.y5_c00173{bottom:1118.817375px;}
.y4_c00173{bottom:1145.817373px;}
.y3_c00173{bottom:1172.817372px;}
.y2_c00173{bottom:1199.817371px;}
.h3_c00173{height:55.160154px;}
.h2_c00173{height:1304.999946px;}
.h0_c00173{height:1304.999953px;}
.h1_c00173{height:1305.000000px;}
.w2_c00173{width:934.874961px;}
.w0_c00173{width:934.875000px;}
.w1_c00173{width:935.250000px;}
.x0_c00173{left:0.000000px;}
.x1_c00173{left:87.902647px;}
.x2_c00173{left:452.271732px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws0_c00173{word-spacing:-16.625000pt;}
.ws1_c00173{word-spacing:0.000000pt;}
._2_c00173{width:1.093750pt;}
._5_c00173{width:2.062511pt;}
._a_c00173{width:2.961945pt;}
._3_c00173{width:3.862487pt;}
._8_c00173{width:4.825013pt;}
._7_c00173{width:6.337463pt;}
._f_c00173{width:8.104066pt;}
._b_c00173{width:9.270811pt;}
._c_c00173{width:10.983027pt;}
._4_c00173{width:11.927856pt;}
._6_c00173{width:12.893665pt;}
._d_c00173{width:14.159055pt;}
._1_c00173{width:17.537471pt;}
._9_c00173{width:18.765989pt;}
._e_c00173{width:28.153380pt;}
._0_c00173{width:31.039731pt;}
.fs0_c00173{font-size:63.999997pt;}
.y0_c00173{bottom:0.000000pt;}
.y1_c00173{bottom:0.000007pt;}
.y2a_c00173{bottom:26.134367pt;}
.y29_c00173{bottom:130.504369pt;}
.y28_c00173{bottom:154.504368pt;}
.y27_c00173{bottom:178.504367pt;}
.y26_c00173{bottom:202.504366pt;}
.y25_c00173{bottom:226.504365pt;}
.y24_c00173{bottom:250.504364pt;}
.y23_c00173{bottom:274.504363pt;}
.y22_c00173{bottom:298.504362pt;}
.y21_c00173{bottom:322.504361pt;}
.y20_c00173{bottom:346.504360pt;}
.y1f_c00173{bottom:370.504359pt;}
.y1e_c00173{bottom:394.504358pt;}
.y1d_c00173{bottom:418.504357pt;}
.y1c_c00173{bottom:442.504356pt;}
.y1b_c00173{bottom:466.504355pt;}
.y1a_c00173{bottom:490.504354pt;}
.y19_c00173{bottom:514.504353pt;}
.y18_c00173{bottom:538.504352pt;}
.y17_c00173{bottom:562.504351pt;}
.y16_c00173{bottom:586.504350pt;}
.y15_c00173{bottom:610.504349pt;}
.y14_c00173{bottom:634.504348pt;}
.y13_c00173{bottom:658.504347pt;}
.y12_c00173{bottom:682.504346pt;}
.y11_c00173{bottom:706.504345pt;}
.y10_c00173{bottom:730.504344pt;}
.yf_c00173{bottom:754.504343pt;}
.ye_c00173{bottom:778.504342pt;}
.yd_c00173{bottom:802.504341pt;}
.yc_c00173{bottom:826.504340pt;}
.yb_c00173{bottom:850.504339pt;}
.ya_c00173{bottom:874.504338pt;}
.y9_c00173{bottom:898.504337pt;}
.y8_c00173{bottom:922.504336pt;}
.y7_c00173{bottom:946.504335pt;}
.y6_c00173{bottom:970.504334pt;}
.y5_c00173{bottom:994.504333pt;}
.y4_c00173{bottom:1018.504332pt;}
.y3_c00173{bottom:1042.504331pt;}
.y2_c00173{bottom:1066.504330pt;}
.h3_c00173{height:49.031248pt;}
.h2_c00173{height:1159.999952pt;}
.h0_c00173{height:1159.999959pt;}
.h1_c00173{height:1160.000000pt;}
.w2_c00173{width:830.999965pt;}
.w0_c00173{width:831.000000pt;}
.w1_c00173{width:831.333333pt;}
.x0_c00173{left:0.000000pt;}
.x1_c00173{left:78.135686pt;}
.x2_c00173{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.006348;font-style:normal;font-weight:normal;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_1d15e76a240f69f776531bb3.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.006348;font-style:normal;font-weight:normal;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_8640b98d77715a0f71a67477.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.000000;font-style:normal;font-weight:normal;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_73ad054d81bf5a3e6fb62363.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.000000;font-style:normal;font-weight: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_c00174;src:url('chunks/assets/font_da9cd706401570900c1f2efb.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:1.171387;font-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_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;}
.ls0_c00174{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00174{word-spacing:-18.703125px;}
.ws1_c00174{word-spacing:-0.055755px;}
.ws2_c00174{word-spacing:0.000000px;}
._2_c00174{width:2.548828px;}
._5_c00174{width:5.397788px;}
._4_c00174{width:14.013818px;}
._3_c00174{width:17.648432px;}
._6_c00174{width:24.360053px;}
._7_c00174{width:34.178875px;}
._1_c00174{width:36.078070px;}
._0_c00174{width:61.277341px;}
.fc2_c00174{color:rgb(255,255,255);}
.fc1_c00174{color:rgb(0,0,0);}
.fc0_c00174{color:rgb(67,91,56);}
.fs1_c00174{font-size:55.754999px;}
.fs0_c00174{font-size:71.999997px;}
.y0_c00174{bottom:0.000000px;}
.y1_c00174{bottom:0.000008px;}
.ye_c00174{bottom:29.401163px;}
.yf_c00174{bottom:79.958661px;}
.yd_c00174{bottom:756.806451px;}
.yc_c00174{bottom:787.181450px;}
.yb_c00174{bottom:817.556449px;}
.ya_c00174{bottom:847.931447px;}
.y9_c00174{bottom:878.306446px;}
.y8_c00174{bottom:924.881797px;}
.y7_c00174{bottom:1014.354451px;}
.y6_c00174{bottom:1044.729450px;}
.y5_c00174{bottom:1075.104448px;}
.y4_c00174{bottom:1105.479447px;}
.y3_c00174{bottom:1135.854446px;}
.y2_c00174{bottom:1182.246280px;}
.h4_c00174{height:51.916398px;}
.h3_c00174{height:55.160154px;}
.h2_c00174{height:1304.999946px;}
.h0_c00174{height:1304.999953px;}
.h1_c00174{height:1305.000000px;}
.w2_c00174{width:934.874961px;}
.w0_c00174{width:934.875000px;}
.w1_c00174{width:935.250000px;}
.x0_c00174{left:0.000000px;}
.x1_c00174{left:90.844844px;}
.x2_c00174{left:452.271732px;}
.x3_c00174{left:675.042344px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws0_c00174{word-spacing:-16.625000pt;}
.ws1_c00174{word-spacing:-0.049560pt;}
.ws2_c00174{word-spacing:0.000000pt;}
._2_c00174{width:2.265625pt;}
._5_c00174{width:4.798034pt;}
._4_c00174{width:12.456727pt;}
._3_c00174{width:15.687495pt;}
._6_c00174{width:21.653380pt;}
._7_c00174{width:30.381222pt;}
._1_c00174{width:32.069395pt;}
._0_c00174{width:54.468748pt;}
.fs1_c00174{font-size:49.559999pt;}
.fs0_c00174{font-size:63.999997pt;}
.y0_c00174{bottom:0.000000pt;}
.y1_c00174{bottom:0.000007pt;}
.ye_c00174{bottom:26.134367pt;}
.yf_c00174{bottom:71.074365pt;}
.yd_c00174{bottom:672.716846pt;}
.yc_c00174{bottom:699.716844pt;}
.yb_c00174{bottom:726.716843pt;}
.ya_c00174{bottom:753.716842pt;}
.y9_c00174{bottom:780.716841pt;}
.y8_c00174{bottom:822.117153pt;}
.y7_c00174{bottom:901.648401pt;}
.y6_c00174{bottom:928.648400pt;}
.y5_c00174{bottom:955.648399pt;}
.y4_c00174{bottom:982.648397pt;}
.y3_c00174{bottom:1009.648396pt;}
.y2_c00174{bottom:1050.885582pt;}
.h4_c00174{height:46.147909pt;}
.h3_c00174{height:49.031248pt;}
.h2_c00174{height:1159.999952pt;}
.h0_c00174{height:1159.999959pt;}
.h1_c00174{height:1160.000000pt;}
.w2_c00174{width:830.999965pt;}
.w0_c00174{width:831.000000pt;}
.w1_c00174{width:831.333333pt;}
.x0_c00174{left:0.000000pt;}
.x1_c00174{left:80.750973pt;}
.x2_c00174{left:402.019318pt;}
.x3_c00174{left:600.037639pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:0.734863;font-style:normal;font-weight:normal;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_4dc3df70bdfb5df17fb2b00c.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_a9cfe109e120c8e6cce913a2.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:0.743000;font-style:normal;font-weight: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_c00175;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff5_c00175{font-family:ff5_c00175;line-height:1.000000;font-style:normal;font-weight: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_c00175;src:url('chunks/assets/font_c7f3284ca986dc60f5970197.woff2')format("woff");}.ff6_c00175{font-family:ff6_c00175;line-height:1.171387;font-style:normal;font-weight: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_c00175;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff7_c00175{font-family:ff7_c00175;line-height:1.006348;font-style:normal;font-weight: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_c00175;src:url('chunks/assets/font_8b17aea9e8891100c93da460.woff2')format("woff");}.ff8_c00175{font-family:ff8_c00175;line-height:1.000000;font-style:normal;font-weight: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_c00175;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00175{font-family:ff9_c00175;line-height:0.940000;font-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_c00175{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00175{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00175{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00175{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00175{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00175{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00175{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00175{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00175{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00175{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00175{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00175{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00175{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00175{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00175{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00175{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00175{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00175{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00175{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00175{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00175{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00175{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00175{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00175{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00175{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00175{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00175{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00175{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00175{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00175{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00175{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00175{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00175{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00175{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00175{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00175{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00175{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00175{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00175{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00175{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00175{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00175{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00175{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00175{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00175{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00175{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00175{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00175{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00175{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00175{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00175{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00175{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00175{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00175{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00175{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00175{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00175{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00175{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00175{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00175{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00175{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00175{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00175{vertical-align:0.000000px;}
.v1_c00175{vertical-align:1.280304px;}
.ls0_c00175{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00175{word-spacing:-41.689573px;}
.ws0_c00175{word-spacing:-15.171263px;}
.ws2_c00175{word-spacing:-0.089985px;}
.ws1_c00175{word-spacing:-0.055755px;}
.ws5_c00175{word-spacing:0.000000px;}
.ws3_c00175{word-spacing:288.058683px;}
._2_c00175{width:3.281203px;}
._0_c00175{width:14.630836px;}
._1_c00175{width:19.757797px;}
.fc4_c00175{color:transparent;}
.fc3_c00175{color:rgb(67,91,56);}
.fc2_c00175{color:rgb(255,255,255);}
.fc1_c00175{color:rgb(0,0,0);}
.fc0_c00175{color:rgb(9,71,81);}
.fsd_c00175{font-size:39.757786px;}
.fs7_c00175{font-size:41.999830px;}
.fsc_c00175{font-size:42.000118px;}
.fs4_c00175{font-size:47.368230px;}
.fs1_c00175{font-size:47.368231px;}
.fs5_c00175{font-size:47.368232px;}
.fs2_c00175{font-size:47.368233px;}
.fs3_c00175{font-size:47.368235px;}
.fs0_c00175{font-size:51.661596px;}
.fs8_c00175{font-size:55.754999px;}
.fsf_c00175{font-size:59.984997px;}
.fs9_c00175{font-size:71.999997px;}
.fsa_c00175{font-size:74.424240px;}
.fs6_c00175{font-size:77.011488px;}
.fsb_c00175{font-size:89.985250px;}
.fse_c00175{font-size:95.984996px;}
.y0_c00175{bottom:0.000000px;}
.y1_c00175{bottom:0.000008px;}
.y51_c00175{bottom:29.401163px;}
.y4a_c00175{bottom:175.870541px;}
.y49_c00175{bottom:206.245539px;}
.y48_c00175{bottom:236.620538px;}
.y47_c00175{bottom:266.995537px;}
.y4b_c00175{bottom:296.824228px;}
.y2_c00175{bottom:401.525233px;}
.y2e_c00175{bottom:486.888370px;}
.y10_c00175{bottom:493.328373px;}
.y24_c00175{bottom:493.343471px;}
.yf_c00175{bottom:493.853637px;}
.y25_c00175{bottom:493.873313px;}
.y3c_c00175{bottom:493.959419px;}
.y23_c00175{bottom:494.588120px;}
.y3d_c00175{bottom:494.792744px;}
.y3b_c00175{bottom:494.812830px;}
.ye_c00175{bottom:494.919783px;}
.y22_c00175{bottom:495.839401px;}
.y3a_c00175{bottom:495.847621px;}
.yd_c00175{bottom:495.993006px;}
.y26_c00175{bottom:496.289812px;}
.y11_c00175{bottom:496.353473px;}
.y3e_c00175{bottom:496.973987px;}
.y21_c00175{bottom:497.484272px;}
.yc_c00175{bottom:497.644566px;}
.y39_c00175{bottom:498.050345px;}
.y3f_c00175{bottom:498.364888px;}
.y20_c00175{bottom:499.172531px;}
.yb_c00175{bottom:499.338107px;}
.y40_c00175{bottom:500.063187px;}
.y12_c00175{bottom:500.630691px;}
.y1f_c00175{bottom:501.037769px;}
.ya_c00175{bottom:501.208172px;}
.y27_c00175{bottom:501.390631px;}
.y38_c00175{bottom:501.842067px;}
.y41_c00175{bottom:502.505484px;}
.y13_c00175{bottom:503.149449px;}
.y42_c00175{bottom:504.764445px;}
.y28_c00175{bottom:505.018795px;}
.y1e_c00175{bottom:505.692124px;}
.y9_c00175{bottom:505.871886px;}
.y37_c00175{bottom:507.310818px;}
.y43_c00175{bottom:508.033427px;}
.y14_c00175{bottom:509.101992px;}
.y29_c00175{bottom:510.652700px;}
.y36_c00175{bottom:511.777409px;}
.y1d_c00175{bottom:512.093493px;}
.y8_c00175{bottom:512.281758px;}
.y15_c00175{bottom:513.850725px;}
.y44_c00175{bottom:516.430683px;}
.y2a_c00175{bottom:517.310350px;}
.y35_c00175{bottom:518.202172px;}
.y1c_c00175{bottom:519.400636px;}
.y7_c00175{bottom:519.490837px;}
.y34_c00175{bottom:522.772046px;}
.y6_c00175{bottom:522.949612px;}
.y45_c00175{bottom:524.479585px;}
.y16_c00175{bottom:525.634639px;}
.y1b_c00175{bottom:526.562252px;}
.y5_c00175{bottom:528.959931px;}
.y2b_c00175{bottom:529.273374px;}
.y33_c00175{bottom:530.544173px;}
.y1a_c00175{bottom:531.331479px;}
.y2d_c00175{bottom:533.268115px;}
.y31_c00175{bottom:533.961835px;}
.y32_c00175{bottom:534.437983px;}
.y4_c00175{bottom:536.219342px;}
.y19_c00175{bottom:537.503802px;}
.y17_c00175{bottom:537.875201px;}
.y2c_c00175{bottom:538.238934px;}
.y2f_c00175{bottom:539.974724px;}
.y18_c00175{bottom:544.567278px;}
.y3_c00175{bottom:545.754118px;}
.y30_c00175{bottom:577.437042px;}
.y46_c00175{bottom:639.092601px;}
.y52_c00175{bottom:1021.439863px;}
.y4f_c00175{bottom:1128.788247px;}
.y4d_c00175{bottom:1133.738464px;}
.y4c_c00175{bottom:1147.738503px;}
.y50_c00175{bottom:1153.262281px;}
.y4e_c00175{bottom:1171.082779px;}
.h9_c00175{height:35.988753px;}
.ha_c00175{height:35.988755px;}
.hb_c00175{height:35.988756px;}
.h13_c00175{height:37.020556px;}
.h3_c00175{height:37.459702px;}
.hd_c00175{height:39.108240px;}
.h12_c00175{height:39.108509px;}
.h7_c00175{height:44.107038px;}
.h4_c00175{height:44.107039px;}
.h8_c00175{height:44.107040px;}
.h5_c00175{height:44.107042px;}
.h6_c00175{height:44.107043px;}
.h16_c00175{height:45.588598px;}
.he_c00175{height:51.916398px;}
.hc_c00175{height:56.295398px;}
.h10_c00175{height:57.017399px;}
.h15_c00175{height:57.575702px;}
.hf_c00175{height:67.042966px;}
.h11_c00175{height:68.367700px;}
.h14_c00175{height:89.376654px;}
.h2_c00175{height:1304.999946px;}
.h0_c00175{height:1304.999953px;}
.h1_c00175{height:1305.000000px;}
.w2_c00175{width:934.874961px;}
.w0_c00175{width:934.875000px;}
.w1_c00175{width:935.250000px;}
.x0_c00175{left:0.000000px;}
.x3e_c00175{left:88.287988px;}
.x3d_c00175{left:90.686927px;}
.x3f_c00175{left:107.230262px;}
.x40_c00175{left:108.827167px;}
.x44_c00175{left:130.690629px;}
.x14_c00175{left:134.974838px;}
.x13_c00175{left:136.648279px;}
.x15_c00175{left:140.021272px;}
.x16_c00175{left:144.871714px;}
.x17_c00175{left:150.237526px;}
.x18_c00175{left:152.990336px;}
.x19_c00175{left:156.000220px;}
.x1a_c00175{left:159.847713px;}
.x24_c00175{left:161.443962px;}
.x1b_c00175{left:163.301377px;}
.x1c_c00175{left:171.586339px;}
.x1d_c00175{left:179.855997px;}
.x1e_c00175{left:188.287487px;}
.x1f_c00175{left:196.673970px;}
.x20_c00175{left:200.841336px;}
.x21_c00175{left:205.399483px;}
.x22_c00175{left:209.208896px;}
.x23_c00175{left:211.795693px;}
.x3_c00175{left:230.398389px;}
.x2_c00175{left:232.534609px;}
.x4_c00175{left:235.623324px;}
.x5_c00175{left:240.462566px;}
.x6_c00175{left:245.820252px;}
.x7_c00175{left:248.569815px;}
.x8_c00175{left:251.576732px;}
.x9_c00175{left:255.421336px;}
.x42_c00175{left:256.622047px;}
.xa_c00175{left:258.708042px;}
.xb_c00175{left:263.145298px;}
.xc_c00175{left:271.763354px;}
.xd_c00175{left:283.603990px;}
.xe_c00175{left:291.041304px;}
.xf_c00175{left:294.435991px;}
.x41_c00175{left:295.615161px;}
.x10_c00175{left:299.775542px;}
.x11_c00175{left:303.165014px;}
.x12_c00175{left:307.176807px;}
.x29_c00175{left:327.047435px;}
.x2a_c00175{left:328.264734px;}
.x2b_c00175{left:329.685747px;}
.x2c_c00175{left:333.082971px;}
.x2d_c00175{left:336.307511px;}
.x2e_c00175{left:342.189757px;}
.x2f_c00175{left:348.376740px;}
.x28_c00175{left:351.731739px;}
.x30_c00175{left:354.069743px;}
.x31_c00175{left:357.479743px;}
.x32_c00175{left:365.386869px;}
.x33_c00175{left:373.375785px;}
.x34_c00175{left:380.135498px;}
.x35_c00175{left:383.155707px;}
.x36_c00175{left:386.159935px;}
.x37_c00175{left:389.557910px;}
.x38_c00175{left:392.174988px;}
.x39_c00175{left:395.489533px;}
.x3a_c00175{left:400.664851px;}
.x3b_c00175{left:403.469600px;}
.x43_c00175{left:452.271732px;}
.x26_c00175{left:464.896169px;}
.x3c_c00175{left:676.878164px;}
.x1_c00175{left:697.320842px;}
.x27_c00175{left:733.540639px;}
.x25_c00175{left:757.088990px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.v1_c00175{vertical-align:1.138048pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws4_c00175{word-spacing:-37.057398pt;}
.ws0_c00175{word-spacing:-13.485567pt;}
.ws2_c00175{word-spacing:-0.079987pt;}
.ws1_c00175{word-spacing:-0.049560pt;}
.ws5_c00175{word-spacing:0.000000pt;}
.ws3_c00175{word-spacing:256.052163pt;}
._2_c00175{width:2.916625pt;}
._0_c00175{width:13.005187pt;}
._1_c00175{width:17.562487pt;}
.fsd_c00175{font-size:35.340254pt;}
.fs7_c00175{font-size:37.333182pt;}
.fsc_c00175{font-size:37.333438pt;}
.fs4_c00175{font-size:42.105093pt;}
.fs1_c00175{font-size:42.105094pt;}
.fs5_c00175{font-size:42.105095pt;}
.fs2_c00175{font-size:42.105096pt;}
.fs3_c00175{font-size:42.105098pt;}
.fs0_c00175{font-size:45.921418pt;}
.fs8_c00175{font-size:49.559999pt;}
.fsf_c00175{font-size:53.319997pt;}
.fs9_c00175{font-size:63.999997pt;}
.fsa_c00175{font-size:66.154880pt;}
.fs6_c00175{font-size:68.454656pt;}
.fsb_c00175{font-size:79.986889pt;}
.fse_c00175{font-size:85.319996pt;}
.y0_c00175{bottom:0.000000pt;}
.y1_c00175{bottom:0.000007pt;}
.y51_c00175{bottom:26.134367pt;}
.y4a_c00175{bottom:156.329369pt;}
.y49_c00175{bottom:183.329368pt;}
.y48_c00175{bottom:210.329367pt;}
.y47_c00175{bottom:237.329366pt;}
.y4b_c00175{bottom:263.843758pt;}
.y2_c00175{bottom:356.911319pt;}
.y2e_c00175{bottom:432.789662pt;}
.y10_c00175{bottom:438.514110pt;}
.y24_c00175{bottom:438.527530pt;}
.yf_c00175{bottom:438.981010pt;}
.y25_c00175{bottom:438.998500pt;}
.y3c_c00175{bottom:439.075039pt;}
.y23_c00175{bottom:439.633885pt;}
.y3d_c00175{bottom:439.815773pt;}
.y3b_c00175{bottom:439.833627pt;}
.ye_c00175{bottom:439.928696pt;}
.y22_c00175{bottom:440.746134pt;}
.y3a_c00175{bottom:440.753441pt;}
.yd_c00175{bottom:440.882672pt;}
.y26_c00175{bottom:441.146500pt;}
.y11_c00175{bottom:441.203087pt;}
.y3e_c00175{bottom:441.754655pt;}
.y21_c00175{bottom:442.208242pt;}
.yc_c00175{bottom:442.350726pt;}
.y39_c00175{bottom:442.711417pt;}
.y3f_c00175{bottom:442.991012pt;}
.y20_c00175{bottom:443.708917pt;}
.yb_c00175{bottom:443.856095pt;}
.y40_c00175{bottom:444.500610pt;}
.y12_c00175{bottom:445.005059pt;}
.y1f_c00175{bottom:445.366906pt;}
.ya_c00175{bottom:445.518375pt;}
.y27_c00175{bottom:445.680561pt;}
.y38_c00175{bottom:446.081837pt;}
.y41_c00175{bottom:446.671541pt;}
.y13_c00175{bottom:447.243955pt;}
.y42_c00175{bottom:448.679507pt;}
.y28_c00175{bottom:448.905595pt;}
.y1e_c00175{bottom:449.504110pt;}
.y9_c00175{bottom:449.663899pt;}
.y37_c00175{bottom:450.942950pt;}
.y43_c00175{bottom:451.585269pt;}
.y14_c00175{bottom:452.535104pt;}
.y29_c00175{bottom:453.913511pt;}
.y36_c00175{bottom:454.913253pt;}
.y1d_c00175{bottom:455.194216pt;}
.y8_c00175{bottom:455.361563pt;}
.y15_c00175{bottom:456.756200pt;}
.y44_c00175{bottom:459.049496pt;}
.y2a_c00175{bottom:459.831423pt;}
.y35_c00175{bottom:460.624152pt;}
.y1c_c00175{bottom:461.689454pt;}
.y7_c00175{bottom:461.769633pt;}
.y34_c00175{bottom:464.686263pt;}
.y6_c00175{bottom:464.844100pt;}
.y45_c00175{bottom:466.204075pt;}
.y16_c00175{bottom:467.230790pt;}
.y1b_c00175{bottom:468.055335pt;}
.y5_c00175{bottom:470.186605pt;}
.y2b_c00175{bottom:470.465221pt;}
.y33_c00175{bottom:471.594820pt;}
.y1a_c00175{bottom:472.294648pt;}
.y2d_c00175{bottom:474.016102pt;}
.y31_c00175{bottom:474.632742pt;}
.y32_c00175{bottom:475.055985pt;}
.y4_c00175{bottom:476.639415pt;}
.y19_c00175{bottom:477.781157pt;}
.y17_c00175{bottom:478.111290pt;}
.y2c_c00175{bottom:478.434608pt;}
.y2f_c00175{bottom:479.977532pt;}
.y18_c00175{bottom:484.059803pt;}
.y3_c00175{bottom:485.114772pt;}
.y30_c00175{bottom:513.277371pt;}
.y46_c00175{bottom:568.082312pt;}
.y52_c00175{bottom:907.946545pt;}
.y4f_c00175{bottom:1003.367331pt;}
.y4d_c00175{bottom:1007.767524pt;}
.y4c_c00175{bottom:1020.212003pt;}
.y50_c00175{bottom:1025.122028pt;}
.y4e_c00175{bottom:1040.962470pt;}
.h9_c00175{height:31.990003pt;}
.ha_c00175{height:31.990004pt;}
.hb_c00175{height:31.990006pt;}
.h13_c00175{height:32.907161pt;}
.h3_c00175{height:33.297513pt;}
.hd_c00175{height:34.762880pt;}
.h12_c00175{height:34.763119pt;}
.h7_c00175{height:39.206256pt;}
.h4_c00175{height:39.206257pt;}
.h8_c00175{height:39.206258pt;}
.h5_c00175{height:39.206259pt;}
.h6_c00175{height:39.206261pt;}
.h16_c00175{height:40.523198pt;}
.he_c00175{height:46.147909pt;}
.hc_c00175{height:50.040354pt;}
.h10_c00175{height:50.682132pt;}
.h15_c00175{height:51.178401pt;}
.hf_c00175{height:59.593748pt;}
.h11_c00175{height:60.771289pt;}
.h14_c00175{height:79.445915pt;}
.h2_c00175{height:1159.999952pt;}
.h0_c00175{height:1159.999959pt;}
.h1_c00175{height:1160.000000pt;}
.w2_c00175{width:830.999965pt;}
.w0_c00175{width:831.000000pt;}
.w1_c00175{width:831.333333pt;}
.x0_c00175{left:0.000000pt;}
.x3e_c00175{left:78.478211pt;}
.x3d_c00175{left:80.610601pt;}
.x3f_c00175{left:95.315788pt;}
.x40_c00175{left:96.735260pt;}
.x44_c00175{left:116.169448pt;}
.x14_c00175{left:119.977634pt;}
.x13_c00175{left:121.465137pt;}
.x15_c00175{left:124.463353pt;}
.x16_c00175{left:128.774857pt;}
.x17_c00175{left:133.544468pt;}
.x18_c00175{left:135.991410pt;}
.x19_c00175{left:138.666862pt;}
.x1a_c00175{left:142.086856pt;}
.x24_c00175{left:143.505744pt;}
.x1b_c00175{left:145.156780pt;}
.x1c_c00175{left:152.521190pt;}
.x1d_c00175{left:159.871997pt;}
.x1e_c00175{left:167.366655pt;}
.x1f_c00175{left:174.821307pt;}
.x20_c00175{left:178.525632pt;}
.x21_c00175{left:182.577318pt;}
.x22_c00175{left:185.963463pt;}
.x23_c00175{left:188.262839pt;}
.x3_c00175{left:204.798568pt;}
.x2_c00175{left:206.697430pt;}
.x4_c00175{left:209.442955pt;}
.x5_c00175{left:213.744503pt;}
.x6_c00175{left:218.506891pt;}
.x7_c00175{left:220.950947pt;}
.x8_c00175{left:223.623762pt;}
.x9_c00175{left:227.041187pt;}
.x42_c00175{left:228.108486pt;}
.xa_c00175{left:229.962704pt;}
.xb_c00175{left:233.906932pt;}
.xc_c00175{left:241.567426pt;}
.xd_c00175{left:252.092435pt;}
.xe_c00175{left:258.703382pt;}
.xf_c00175{left:261.720880pt;}
.x41_c00175{left:262.769032pt;}
.x10_c00175{left:266.467148pt;}
.x11_c00175{left:269.480012pt;}
.x12_c00175{left:273.046051pt;}
.x29_c00175{left:290.708831pt;}
.x2a_c00175{left:291.790874pt;}
.x2b_c00175{left:293.053997pt;}
.x2c_c00175{left:296.073752pt;}
.x2d_c00175{left:298.940009pt;}
.x2e_c00175{left:304.168673pt;}
.x2f_c00175{left:309.668213pt;}
.x28_c00175{left:312.650435pt;}
.x30_c00175{left:314.728661pt;}
.x31_c00175{left:317.759772pt;}
.x32_c00175{left:324.788328pt;}
.x33_c00175{left:331.889587pt;}
.x34_c00175{left:337.898220pt;}
.x35_c00175{left:340.582851pt;}
.x36_c00175{left:343.253275pt;}
.x37_c00175{left:346.273697pt;}
.x38_c00175{left:348.599989pt;}
.x39_c00175{left:351.546252pt;}
.x3a_c00175{left:356.146534pt;}
.x3b_c00175{left:358.639645pt;}
.x43_c00175{left:402.019318pt;}
.x26_c00175{left:413.241039pt;}
.x3c_c00175{left:601.669479pt;}
.x1_c00175{left:619.840748pt;}
.x27_c00175{left:652.036124pt;}
.x25_c00175{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a63e6e09ca4a3dd662017770.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.171387;font-style:normal;font-weight:normal;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_ccd91e3f84c4ad3999a38bab.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.000000;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:1.006348;font-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_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);}
.v0_c00176{vertical-align:0.000000px;}
.ls0_c00176{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00176{word-spacing:-18.703125px;}
.ws1_c00176{word-spacing:0.000000px;}
._c_c00176{width:1.035324px;}
._d_c00176{width:2.628202px;}
._7_c00176{width:3.636129px;}
._f_c00176{width:5.397788px;}
._6_c00176{width:8.252106px;}
._3_c00176{width:10.114904px;}
._0_c00176{width:14.572266px;}
._2_c00176{width:16.497068px;}
._8_c00176{width:17.508640px;}
._e_c00176{width:19.792987px;}
._4_c00176{width:20.908355px;}
._10_c00176{width:24.360053px;}
._9_c00176{width:26.904073px;}
._11_c00176{width:34.178875px;}
._5_c00176{width:37.796398px;}
._1_c00176{width:38.807416px;}
._b_c00176{width:41.829482px;}
._a_c00176{width:47.540038px;}
.fc1_c00176{color:rgb(67,91,56);}
.fc0_c00176{color:rgb(0,0,0);}
.fs0_c00176{font-size:71.999997px;}
.y0_c00176{bottom:0.000000px;}
.y1_c00176{bottom:0.000008px;}
.y23_c00176{bottom:29.400983px;}
.y22_c00176{bottom:92.048360px;}
.y21_c00176{bottom:122.423359px;}
.y20_c00176{bottom:152.798358px;}
.y1f_c00176{bottom:183.173356px;}
.y1e_c00176{bottom:213.548355px;}
.y1d_c00176{bottom:250.420778px;}
.y17_c00176{bottom:312.745955px;}
.y16_c00176{bottom:343.120954px;}
.y15_c00176{bottom:378.899120px;}
.y13_c00176{bottom:443.629846px;}
.y12_c00176{bottom:474.004845px;}
.y11_c00176{bottom:504.379844px;}
.y10_c00176{bottom:534.754843px;}
.yf_c00176{bottom:565.129841px;}
.ye_c00176{bottom:595.504840px;}
.yd_c00176{bottom:625.879839px;}
.yc_c00176{bottom:656.254837px;}
.yb_c00176{bottom:686.629836px;}
.ya_c00176{bottom:717.004835px;}
.y9_c00176{bottom:747.379834px;}
.y8_c00176{bottom:777.754832px;}
.y7_c00176{bottom:808.129831px;}
.y6_c00176{bottom:838.504830px;}
.y5_c00176{bottom:868.879829px;}
.y4_c00176{bottom:899.254827px;}
.y3_c00176{bottom:929.629826px;}
.y2_c00176{bottom:960.004825px;}
.y14_c00176{bottom:995.329647px;}
.y1c_c00176{bottom:1058.285609px;}
.y1b_c00176{bottom:1088.660608px;}
.y1a_c00176{bottom:1119.035607px;}
.y19_c00176{bottom:1149.410605px;}
.y18_c00176{bottom:1187.862665px;}
.h4_c00176{height:55.160154px;}
.h3_c00176{height:67.042966px;}
.h2_c00176{height:1304.999946px;}
.h0_c00176{height:1304.999953px;}
.h1_c00176{height:1305.000000px;}
.w2_c00176{width:934.874961px;}
.w0_c00176{width:934.875000px;}
.w1_c00176{width:935.250000px;}
.x0_c00176{left:0.000000px;}
.x1_c00176{left:87.902647px;}
.x2_c00176{left:90.722973px;}
.x3_c00176{left:452.271732px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ws0_c00176{word-spacing:-16.625000pt;}
.ws1_c00176{word-spacing:0.000000pt;}
._c_c00176{width:0.920288pt;}
._d_c00176{width:2.336179pt;}
._7_c00176{width:3.232115pt;}
._f_c00176{width:4.798034pt;}
._6_c00176{width:7.335205pt;}
._3_c00176{width:8.991026pt;}
._0_c00176{width:12.953125pt;}
._2_c00176{width:14.664060pt;}
._8_c00176{width:15.563235pt;}
._e_c00176{width:17.593766pt;}
._4_c00176{width:18.585205pt;}
._10_c00176{width:21.653380pt;}
._9_c00176{width:23.914731pt;}
._11_c00176{width:30.381222pt;}
._5_c00176{width:33.596799pt;}
._1_c00176{width:34.495481pt;}
._b_c00176{width:37.181762pt;}
._a_c00176{width:42.257812pt;}
.fs0_c00176{font-size:63.999997pt;}
.y0_c00176{bottom:0.000000pt;}
.y1_c00176{bottom:0.000007pt;}
.y23_c00176{bottom:26.134207pt;}
.y22_c00176{bottom:81.820765pt;}
.y21_c00176{bottom:108.820763pt;}
.y20_c00176{bottom:135.820762pt;}
.y1f_c00176{bottom:162.820761pt;}
.y1e_c00176{bottom:189.820760pt;}
.y1d_c00176{bottom:222.596247pt;}
.y17_c00176{bottom:277.996404pt;}
.y16_c00176{bottom:304.996403pt;}
.y15_c00176{bottom:336.799218pt;}
.y13_c00176{bottom:394.337641pt;}
.y12_c00176{bottom:421.337640pt;}
.y11_c00176{bottom:448.337639pt;}
.y10_c00176{bottom:475.337638pt;}
.yf_c00176{bottom:502.337637pt;}
.ye_c00176{bottom:529.337636pt;}
.yd_c00176{bottom:556.337634pt;}
.yc_c00176{bottom:583.337633pt;}
.yb_c00176{bottom:610.337632pt;}
.ya_c00176{bottom:637.337631pt;}
.y9_c00176{bottom:664.337630pt;}
.y8_c00176{bottom:691.337629pt;}
.y7_c00176{bottom:718.337628pt;}
.y6_c00176{bottom:745.337627pt;}
.y5_c00176{bottom:772.337625pt;}
.y4_c00176{bottom:799.337624pt;}
.y3_c00176{bottom:826.337623pt;}
.y2_c00176{bottom:853.337622pt;}
.y14_c00176{bottom:884.737464pt;}
.y1c_c00176{bottom:940.698319pt;}
.y1b_c00176{bottom:967.698318pt;}
.y1a_c00176{bottom:994.698317pt;}
.y19_c00176{bottom:1021.698316pt;}
.y18_c00176{bottom:1055.877924pt;}
.h4_c00176{height:49.031248pt;}
.h3_c00176{height:59.593748pt;}
.h2_c00176{height:1159.999952pt;}
.h0_c00176{height:1159.999959pt;}
.h1_c00176{height:1160.000000pt;}
.w2_c00176{width:830.999965pt;}
.w0_c00176{width:831.000000pt;}
.w1_c00176{width:831.333333pt;}
.x0_c00176{left:0.000000pt;}
.x1_c00176{left:78.135686pt;}
.x2_c00176{left:80.642643pt;}
.x3_c00176{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:0.734863;font-style:normal;font-weight:normal;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_b0157f9de24618b8430d3994.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00177;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_a9cfe109e120c8e6cce913a2.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:0.743000;font-style:normal;font-weight: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_c00177;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;line-height:1.000000;font-style:normal;font-weight: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_c00177;src:url('chunks/assets/font_93251db3de1d9b4f3b8a2e0a.woff2')format("woff");}.ff6_c00177{font-family:ff6_c00177;line-height:1.171387;font-style:normal;font-weight: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_c00177;src:url('chunks/assets/font_04e6df757465e325b36045db.woff2')format("woff");}.ff7_c00177{font-family:ff7_c00177;line-height:1.000000;font-style:normal;font-weight: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_c00177;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff8_c00177{font-family:ff8_c00177;line-height:1.006348;font-style:normal;font-weight: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_c00177;src:url('chunks/assets/font_7936076051ebd255a3fa07a3.woff2')format("woff");}.ff9_c00177{font-family:ff9_c00177;line-height:1.000000;font-style:normal;font-weight: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_c00177;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00177{font-family:ffa_c00177;line-height:0.940000;font-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_c00177{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00177{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00177{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00177{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00177{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00177{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00177{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00177{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00177{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00177{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00177{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00177{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00177{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00177{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00177{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00177{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00177{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00177{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00177{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00177{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00177{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00177{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00177{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00177{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00177{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00177{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00177{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00177{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00177{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00177{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00177{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00177{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00177{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00177{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00177{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00177{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00177{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00177{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00177{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00177{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00177{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00177{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00177{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00177{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00177{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00177{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00177{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00177{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00177{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00177{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00177{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00177{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00177{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00177{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00177{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00177{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00177{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00177{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00177{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00177{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00177{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00177{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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;}
.v1_c00177{vertical-align:1.279584px;}
.ls0_c00177{letter-spacing:0.000000px;}
.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;}
}
.ws5_c00177{word-spacing:-41.689573px;}
.ws2_c00177{word-spacing:-18.703125px;}
.ws0_c00177{word-spacing:-15.171263px;}
.ws3_c00177{word-spacing:-0.089985px;}
.ws1_c00177{word-spacing:-0.055755px;}
.ws6_c00177{word-spacing:0.000000px;}
.ws4_c00177{word-spacing:288.058683px;}
._2_c00177{width:1.980418px;}
._1_c00177{width:5.027342px;}
._0_c00177{width:7.382812px;}
._3_c00177{width:11.742189px;}
.fc4_c00177{color:transparent;}
.fc3_c00177{color:rgb(67,91,56);}
.fc2_c00177{color:rgb(255,255,255);}
.fc1_c00177{color:rgb(0,0,0);}
.fc0_c00177{color:rgb(9,71,81);}
.fsd_c00177{font-size:39.757786px;}
.fs7_c00177{font-size:41.999830px;}
.fsc_c00177{font-size:42.000118px;}
.fs4_c00177{font-size:47.368230px;}
.fs1_c00177{font-size:47.368231px;}
.fs5_c00177{font-size:47.368232px;}
.fs2_c00177{font-size:47.368233px;}
.fs3_c00177{font-size:47.368235px;}
.fs0_c00177{font-size:51.661596px;}
.fs8_c00177{font-size:55.754999px;}
.fsf_c00177{font-size:59.984997px;}
.fs9_c00177{font-size:71.999997px;}
.fsa_c00177{font-size:74.424240px;}
.fs6_c00177{font-size:77.011488px;}
.fsb_c00177{font-size:89.985250px;}
.fse_c00177{font-size:95.984996px;}
.y0_c00177{bottom:0.000000px;}
.y1_c00177{bottom:0.000008px;}
.y52_c00177{bottom:29.401163px;}
.y4b_c00177{bottom:173.868401px;}
.y4a_c00177{bottom:204.243399px;}
.y49_c00177{bottom:234.618398px;}
.y48_c00177{bottom:264.993397px;}
.y47_c00177{bottom:295.368396px;}
.y4c_c00177{bottom:329.449335px;}
.y2_c00177{bottom:401.525233px;}
.y2e_c00177{bottom:486.888550px;}
.y10_c00177{bottom:493.328193px;}
.y24_c00177{bottom:493.343399px;}
.yf_c00177{bottom:493.853709px;}
.y25_c00177{bottom:493.873421px;}
.y3c_c00177{bottom:493.959311px;}
.y23_c00177{bottom:494.588120px;}
.y3d_c00177{bottom:494.792564px;}
.y3b_c00177{bottom:494.812830px;}
.ye_c00177{bottom:494.919675px;}
.y22_c00177{bottom:495.839509px;}
.y3a_c00177{bottom:495.847693px;}
.yd_c00177{bottom:495.993006px;}
.y26_c00177{bottom:496.289992px;}
.y11_c00177{bottom:496.353473px;}
.y3e_c00177{bottom:496.974167px;}
.y21_c00177{bottom:497.484380px;}
.yc_c00177{bottom:497.644566px;}
.y39_c00177{bottom:498.050345px;}
.y3f_c00177{bottom:498.364816px;}
.y20_c00177{bottom:499.172711px;}
.yb_c00177{bottom:499.338107px;}
.y40_c00177{bottom:500.063439px;}
.y12_c00177{bottom:500.630691px;}
.y1f_c00177{bottom:501.037625px;}
.ya_c00177{bottom:501.208280px;}
.y27_c00177{bottom:501.390523px;}
.y38_c00177{bottom:501.841887px;}
.y41_c00177{bottom:502.505484px;}
.y13_c00177{bottom:503.149521px;}
.y42_c00177{bottom:504.764625px;}
.y28_c00177{bottom:505.019047px;}
.y1e_c00177{bottom:505.692124px;}
.y9_c00177{bottom:505.871886px;}
.y37_c00177{bottom:507.310818px;}
.y43_c00177{bottom:508.033427px;}
.y14_c00177{bottom:509.101920px;}
.y29_c00177{bottom:510.652700px;}
.y36_c00177{bottom:511.777229px;}
.y1d_c00177{bottom:512.093421px;}
.y8_c00177{bottom:512.281650px;}
.y15_c00177{bottom:513.850725px;}
.y44_c00177{bottom:516.430791px;}
.y2a_c00177{bottom:517.310242px;}
.y35_c00177{bottom:518.201920px;}
.y1c_c00177{bottom:519.400744px;}
.y7_c00177{bottom:519.490765px;}
.y34_c00177{bottom:522.772118px;}
.y6_c00177{bottom:522.949612px;}
.y45_c00177{bottom:524.479585px;}
.y16_c00177{bottom:525.634639px;}
.y1b_c00177{bottom:526.562252px;}
.y5_c00177{bottom:528.959751px;}
.y2b_c00177{bottom:529.273374px;}
.y33_c00177{bottom:530.544173px;}
.y1a_c00177{bottom:531.331731px;}
.y2d_c00177{bottom:533.268367px;}
.y31_c00177{bottom:533.962015px;}
.y32_c00177{bottom:534.438127px;}
.y4_c00177{bottom:536.219342px;}
.y19_c00177{bottom:537.503874px;}
.y17_c00177{bottom:537.875309px;}
.y2c_c00177{bottom:538.238862px;}
.y2f_c00177{bottom:539.974832px;}
.y18_c00177{bottom:544.567530px;}
.y3_c00177{bottom:545.754118px;}
.y30_c00177{bottom:577.436970px;}
.y46_c00177{bottom:639.092421px;}
.y53_c00177{bottom:1021.439841px;}
.y50_c00177{bottom:1128.788391px;}
.y4e_c00177{bottom:1133.738586px;}
.y4d_c00177{bottom:1147.738626px;}
.y51_c00177{bottom:1153.262238px;}
.y4f_c00177{bottom:1171.082869px;}
.h9_c00177{height:35.988753px;}
.ha_c00177{height:35.988755px;}
.hb_c00177{height:35.988756px;}
.h13_c00177{height:37.020556px;}
.h3_c00177{height:37.459702px;}
.hd_c00177{height:39.108240px;}
.h12_c00177{height:39.108509px;}
.h7_c00177{height:44.107038px;}
.h4_c00177{height:44.107039px;}
.h8_c00177{height:44.107040px;}
.h5_c00177{height:44.107042px;}
.h6_c00177{height:44.107043px;}
.h16_c00177{height:45.588598px;}
.he_c00177{height:51.916398px;}
.hc_c00177{height:56.295398px;}
.h10_c00177{height:57.017399px;}
.h15_c00177{height:57.574982px;}
.hf_c00177{height:67.042966px;}
.h11_c00177{height:68.367700px;}
.h14_c00177{height:89.376654px;}
.h2_c00177{height:1304.999946px;}
.h0_c00177{height:1304.999953px;}
.h1_c00177{height:1305.000000px;}
.w2_c00177{width:934.874961px;}
.w0_c00177{width:934.875000px;}
.w1_c00177{width:935.250000px;}
.x0_c00177{left:0.000000px;}
.x3e_c00177{left:88.287988px;}
.x3d_c00177{left:90.686927px;}
.x3f_c00177{left:107.230262px;}
.x40_c00177{left:108.827167px;}
.x44_c00177{left:130.690629px;}
.x14_c00177{left:134.974838px;}
.x13_c00177{left:136.648279px;}
.x15_c00177{left:140.021272px;}
.x16_c00177{left:144.871714px;}
.x17_c00177{left:150.237526px;}
.x18_c00177{left:152.990336px;}
.x19_c00177{left:156.000220px;}
.x1a_c00177{left:159.847713px;}
.x24_c00177{left:161.443962px;}
.x1b_c00177{left:163.301377px;}
.x1c_c00177{left:171.586339px;}
.x1d_c00177{left:179.855997px;}
.x1e_c00177{left:188.287487px;}
.x1f_c00177{left:196.673970px;}
.x20_c00177{left:200.841336px;}
.x21_c00177{left:205.399483px;}
.x22_c00177{left:209.208896px;}
.x23_c00177{left:211.795693px;}
.x3_c00177{left:230.398389px;}
.x2_c00177{left:232.534609px;}
.x4_c00177{left:235.623324px;}
.x5_c00177{left:240.462566px;}
.x6_c00177{left:245.820252px;}
.x7_c00177{left:248.569815px;}
.x8_c00177{left:251.576732px;}
.x9_c00177{left:255.421336px;}
.x42_c00177{left:256.622047px;}
.xa_c00177{left:258.708042px;}
.xb_c00177{left:263.145298px;}
.xc_c00177{left:271.763354px;}
.xd_c00177{left:283.603990px;}
.xe_c00177{left:291.041304px;}
.xf_c00177{left:294.435991px;}
.x41_c00177{left:295.615161px;}
.x10_c00177{left:299.775542px;}
.x11_c00177{left:303.165014px;}
.x12_c00177{left:307.176807px;}
.x29_c00177{left:327.047435px;}
.x2a_c00177{left:328.264734px;}
.x2b_c00177{left:329.685747px;}
.x2c_c00177{left:333.082971px;}
.x2d_c00177{left:336.307511px;}
.x2e_c00177{left:342.189757px;}
.x2f_c00177{left:348.376740px;}
.x28_c00177{left:351.731739px;}
.x30_c00177{left:354.069743px;}
.x31_c00177{left:357.479743px;}
.x32_c00177{left:365.386869px;}
.x33_c00177{left:373.375785px;}
.x34_c00177{left:380.135498px;}
.x35_c00177{left:383.155707px;}
.x36_c00177{left:386.159935px;}
.x37_c00177{left:389.557910px;}
.x38_c00177{left:392.174988px;}
.x39_c00177{left:395.489533px;}
.x3a_c00177{left:400.664851px;}
.x3b_c00177{left:403.469600px;}
.x43_c00177{left:452.271732px;}
.x26_c00177{left:464.896169px;}
.x3c_c00177{left:676.878164px;}
.x1_c00177{left:697.320842px;}
.x27_c00177{left:733.540639px;}
.x25_c00177{left:757.088990px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.v1_c00177{vertical-align:1.137408pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ws5_c00177{word-spacing:-37.057398pt;}
.ws2_c00177{word-spacing:-16.625000pt;}
.ws0_c00177{word-spacing:-13.485567pt;}
.ws3_c00177{word-spacing:-0.079987pt;}
.ws1_c00177{word-spacing:-0.049560pt;}
.ws6_c00177{word-spacing:0.000000pt;}
.ws4_c00177{word-spacing:256.052163pt;}
._2_c00177{width:1.760371pt;}
._1_c00177{width:4.468749pt;}
._0_c00177{width:6.562500pt;}
._3_c00177{width:10.437501pt;}
.fsd_c00177{font-size:35.340254pt;}
.fs7_c00177{font-size:37.333182pt;}
.fsc_c00177{font-size:37.333438pt;}
.fs4_c00177{font-size:42.105093pt;}
.fs1_c00177{font-size:42.105094pt;}
.fs5_c00177{font-size:42.105095pt;}
.fs2_c00177{font-size:42.105096pt;}
.fs3_c00177{font-size:42.105098pt;}
.fs0_c00177{font-size:45.921418pt;}
.fs8_c00177{font-size:49.559999pt;}
.fsf_c00177{font-size:53.319997pt;}
.fs9_c00177{font-size:63.999997pt;}
.fsa_c00177{font-size:66.154880pt;}
.fs6_c00177{font-size:68.454656pt;}
.fsb_c00177{font-size:79.986889pt;}
.fse_c00177{font-size:85.319996pt;}
.y0_c00177{bottom:0.000000pt;}
.y1_c00177{bottom:0.000007pt;}
.y52_c00177{bottom:26.134367pt;}
.y4b_c00177{bottom:154.549690pt;}
.y4a_c00177{bottom:181.549688pt;}
.y49_c00177{bottom:208.549687pt;}
.y48_c00177{bottom:235.549686pt;}
.y47_c00177{bottom:262.549685pt;}
.y4c_c00177{bottom:292.843853pt;}
.y2_c00177{bottom:356.911319pt;}
.y2e_c00177{bottom:432.789822pt;}
.y10_c00177{bottom:438.513950pt;}
.y24_c00177{bottom:438.527466pt;}
.yf_c00177{bottom:438.981074pt;}
.y25_c00177{bottom:438.998596pt;}
.y3c_c00177{bottom:439.074943pt;}
.y23_c00177{bottom:439.633885pt;}
.y3d_c00177{bottom:439.815613pt;}
.y3b_c00177{bottom:439.833627pt;}
.ye_c00177{bottom:439.928600pt;}
.y22_c00177{bottom:440.746230pt;}
.y3a_c00177{bottom:440.753505pt;}
.yd_c00177{bottom:440.882672pt;}
.y26_c00177{bottom:441.146660pt;}
.y11_c00177{bottom:441.203087pt;}
.y3e_c00177{bottom:441.754815pt;}
.y21_c00177{bottom:442.208338pt;}
.yc_c00177{bottom:442.350726pt;}
.y39_c00177{bottom:442.711417pt;}
.y3f_c00177{bottom:442.990948pt;}
.y20_c00177{bottom:443.709077pt;}
.yb_c00177{bottom:443.856095pt;}
.y40_c00177{bottom:444.500834pt;}
.y12_c00177{bottom:445.005059pt;}
.y1f_c00177{bottom:445.366778pt;}
.ya_c00177{bottom:445.518471pt;}
.y27_c00177{bottom:445.680465pt;}
.y38_c00177{bottom:446.081677pt;}
.y41_c00177{bottom:446.671541pt;}
.y13_c00177{bottom:447.244019pt;}
.y42_c00177{bottom:448.679667pt;}
.y28_c00177{bottom:448.905819pt;}
.y1e_c00177{bottom:449.504110pt;}
.y9_c00177{bottom:449.663899pt;}
.y37_c00177{bottom:450.942950pt;}
.y43_c00177{bottom:451.585269pt;}
.y14_c00177{bottom:452.535040pt;}
.y29_c00177{bottom:453.913511pt;}
.y36_c00177{bottom:454.913093pt;}
.y1d_c00177{bottom:455.194152pt;}
.y8_c00177{bottom:455.361467pt;}
.y15_c00177{bottom:456.756200pt;}
.y44_c00177{bottom:459.049592pt;}
.y2a_c00177{bottom:459.831327pt;}
.y35_c00177{bottom:460.623928pt;}
.y1c_c00177{bottom:461.689550pt;}
.y7_c00177{bottom:461.769569pt;}
.y34_c00177{bottom:464.686327pt;}
.y6_c00177{bottom:464.844100pt;}
.y45_c00177{bottom:466.204075pt;}
.y16_c00177{bottom:467.230790pt;}
.y1b_c00177{bottom:468.055335pt;}
.y5_c00177{bottom:470.186445pt;}
.y2b_c00177{bottom:470.465221pt;}
.y33_c00177{bottom:471.594820pt;}
.y1a_c00177{bottom:472.294872pt;}
.y2d_c00177{bottom:474.016326pt;}
.y31_c00177{bottom:474.632902pt;}
.y32_c00177{bottom:475.056113pt;}
.y4_c00177{bottom:476.639415pt;}
.y19_c00177{bottom:477.781221pt;}
.y17_c00177{bottom:478.111386pt;}
.y2c_c00177{bottom:478.434544pt;}
.y2f_c00177{bottom:479.977628pt;}
.y18_c00177{bottom:484.060027pt;}
.y3_c00177{bottom:485.114772pt;}
.y30_c00177{bottom:513.277307pt;}
.y46_c00177{bottom:568.082152pt;}
.y53_c00177{bottom:907.946525pt;}
.y50_c00177{bottom:1003.367459pt;}
.y4e_c00177{bottom:1007.767632pt;}
.y4d_c00177{bottom:1020.212112pt;}
.y51_c00177{bottom:1025.121989pt;}
.y4f_c00177{bottom:1040.962550pt;}
.h9_c00177{height:31.990003pt;}
.ha_c00177{height:31.990004pt;}
.hb_c00177{height:31.990006pt;}
.h13_c00177{height:32.907161pt;}
.h3_c00177{height:33.297513pt;}
.hd_c00177{height:34.762880pt;}
.h12_c00177{height:34.763119pt;}
.h7_c00177{height:39.206256pt;}
.h4_c00177{height:39.206257pt;}
.h8_c00177{height:39.206258pt;}
.h5_c00177{height:39.206259pt;}
.h6_c00177{height:39.206261pt;}
.h16_c00177{height:40.523198pt;}
.he_c00177{height:46.147909pt;}
.hc_c00177{height:50.040354pt;}
.h10_c00177{height:50.682132pt;}
.h15_c00177{height:51.177761pt;}
.hf_c00177{height:59.593748pt;}
.h11_c00177{height:60.771289pt;}
.h14_c00177{height:79.445915pt;}
.h2_c00177{height:1159.999952pt;}
.h0_c00177{height:1159.999959pt;}
.h1_c00177{height:1160.000000pt;}
.w2_c00177{width:830.999965pt;}
.w0_c00177{width:831.000000pt;}
.w1_c00177{width:831.333333pt;}
.x0_c00177{left:0.000000pt;}
.x3e_c00177{left:78.478211pt;}
.x3d_c00177{left:80.610601pt;}
.x3f_c00177{left:95.315788pt;}
.x40_c00177{left:96.735260pt;}
.x44_c00177{left:116.169448pt;}
.x14_c00177{left:119.977634pt;}
.x13_c00177{left:121.465137pt;}
.x15_c00177{left:124.463353pt;}
.x16_c00177{left:128.774857pt;}
.x17_c00177{left:133.544468pt;}
.x18_c00177{left:135.991410pt;}
.x19_c00177{left:138.666862pt;}
.x1a_c00177{left:142.086856pt;}
.x24_c00177{left:143.505744pt;}
.x1b_c00177{left:145.156780pt;}
.x1c_c00177{left:152.521190pt;}
.x1d_c00177{left:159.871997pt;}
.x1e_c00177{left:167.366655pt;}
.x1f_c00177{left:174.821307pt;}
.x20_c00177{left:178.525632pt;}
.x21_c00177{left:182.577318pt;}
.x22_c00177{left:185.963463pt;}
.x23_c00177{left:188.262839pt;}
.x3_c00177{left:204.798568pt;}
.x2_c00177{left:206.697430pt;}
.x4_c00177{left:209.442955pt;}
.x5_c00177{left:213.744503pt;}
.x6_c00177{left:218.506891pt;}
.x7_c00177{left:220.950947pt;}
.x8_c00177{left:223.623762pt;}
.x9_c00177{left:227.041187pt;}
.x42_c00177{left:228.108486pt;}
.xa_c00177{left:229.962704pt;}
.xb_c00177{left:233.906932pt;}
.xc_c00177{left:241.567426pt;}
.xd_c00177{left:252.092435pt;}
.xe_c00177{left:258.703382pt;}
.xf_c00177{left:261.720880pt;}
.x41_c00177{left:262.769032pt;}
.x10_c00177{left:266.467148pt;}
.x11_c00177{left:269.480012pt;}
.x12_c00177{left:273.046051pt;}
.x29_c00177{left:290.708831pt;}
.x2a_c00177{left:291.790874pt;}
.x2b_c00177{left:293.053997pt;}
.x2c_c00177{left:296.073752pt;}
.x2d_c00177{left:298.940009pt;}
.x2e_c00177{left:304.168673pt;}
.x2f_c00177{left:309.668213pt;}
.x28_c00177{left:312.650435pt;}
.x30_c00177{left:314.728661pt;}
.x31_c00177{left:317.759772pt;}
.x32_c00177{left:324.788328pt;}
.x33_c00177{left:331.889587pt;}
.x34_c00177{left:337.898220pt;}
.x35_c00177{left:340.582851pt;}
.x36_c00177{left:343.253275pt;}
.x37_c00177{left:346.273697pt;}
.x38_c00177{left:348.599989pt;}
.x39_c00177{left:351.546252pt;}
.x3a_c00177{left:356.146534pt;}
.x3b_c00177{left:358.639645pt;}
.x43_c00177{left:402.019318pt;}
.x26_c00177{left:413.241039pt;}
.x3c_c00177{left:601.669479pt;}
.x1_c00177{left:619.840748pt;}
.x27_c00177{left:652.036124pt;}
.x25_c00177{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54d2e05b75b7ed356ab226ea.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.171387;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.006348;font-style:normal;font-weight:normal;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_06f325f03c14c6345a74e957.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.000000;font-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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00178{vertical-align:0.000000px;}
.ls0_c00178{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00178{word-spacing:0.000000px;}
._1_c00178{width:1.674590px;}
._8_c00178{width:3.629198px;}
._c_c00178{width:4.702832px;}
._0_c00178{width:6.641784px;}
._5_c00178{width:7.777501px;}
._7_c00178{width:8.789279px;}
._6_c00178{width:10.525175px;}
._9_c00178{width:11.749740px;}
._e_c00178{width:13.129073px;}
._d_c00178{width:15.036050px;}
._3_c00178{width:16.136718px;}
._a_c00178{width:19.730758px;}
._2_c00178{width:20.749946px;}
._4_c00178{width:31.499998px;}
._f_c00178{width:32.625001px;}
._b_c00178{width:41.829482px;}
.fc1_c00178{color:rgb(67,91,56);}
.fc0_c00178{color:rgb(0,0,0);}
.fs0_c00178{font-size:71.999997px;}
.y0_c00178{bottom:0.000000px;}
.y1_c00178{bottom:0.000008px;}
.y24_c00178{bottom:29.401163px;}
.y23_c00178{bottom:78.880065px;}
.y22_c00178{bottom:109.255063px;}
.y21_c00178{bottom:139.630062px;}
.y20_c00178{bottom:170.005061px;}
.y1f_c00178{bottom:200.380060px;}
.y1e_c00178{bottom:233.455058px;}
.y18_c00178{bottom:277.780056px;}
.y17_c00178{bottom:308.155055px;}
.y16_c00178{bottom:339.681442px;}
.yd_c00178{bottom:387.308306px;}
.yc_c00178{bottom:417.683305px;}
.yb_c00178{bottom:448.058303px;}
.ya_c00178{bottom:478.433302px;}
.y9_c00178{bottom:508.808301px;}
.y8_c00178{bottom:539.183300px;}
.y7_c00178{bottom:569.558298px;}
.y6_c00178{bottom:599.933297px;}
.y5_c00178{bottom:630.308296px;}
.y4_c00178{bottom:660.683294px;}
.y3_c00178{bottom:691.058293px;}
.y2_c00178{bottom:721.433292px;}
.ye_c00178{bottom:757.539811px;}
.y1d_c00178{bottom:805.409614px;}
.y1c_c00178{bottom:835.784612px;}
.y1b_c00178{bottom:866.159611px;}
.y1a_c00178{bottom:896.534610px;}
.y19_c00178{bottom:934.986406px;}
.y15_c00178{bottom:979.468552px;}
.y14_c00178{bottom:1009.843550px;}
.y13_c00178{bottom:1040.218549px;}
.y12_c00178{bottom:1070.593548px;}
.y11_c00178{bottom:1100.968547px;}
.y10_c00178{bottom:1131.343545px;}
.yf_c00178{bottom:1161.718544px;}
.h4_c00178{height:55.160154px;}
.h3_c00178{height:67.042966px;}
.h2_c00178{height:1304.999946px;}
.h0_c00178{height:1304.999953px;}
.h1_c00178{height:1305.000000px;}
.w2_c00178{width:934.874961px;}
.w0_c00178{width:934.875000px;}
.w1_c00178{width:935.250000px;}
.x0_c00178{left:0.000000px;}
.x1_c00178{left:93.543307px;}
.x2_c00178{left:96.363630px;}
.x3_c00178{left:452.271732px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls0_c00178{letter-spacing:0.000000pt;}
.ws0_c00178{word-spacing:0.000000pt;}
._1_c00178{width:1.488524pt;}
._8_c00178{width:3.225954pt;}
._c_c00178{width:4.180295pt;}
._0_c00178{width:5.903808pt;}
._5_c00178{width:6.913334pt;}
._7_c00178{width:7.812692pt;}
._6_c00178{width:9.355711pt;}
._9_c00178{width:10.444213pt;}
._e_c00178{width:11.670287pt;}
._d_c00178{width:13.365378pt;}
._3_c00178{width:14.343749pt;}
._a_c00178{width:17.538452pt;}
._2_c00178{width:18.444396pt;}
._4_c00178{width:27.999998pt;}
._f_c00178{width:29.000001pt;}
._b_c00178{width:37.181762pt;}
.fs0_c00178{font-size:63.999997pt;}
.y0_c00178{bottom:0.000000pt;}
.y1_c00178{bottom:0.000007pt;}
.y24_c00178{bottom:26.134367pt;}
.y23_c00178{bottom:70.115613pt;}
.y22_c00178{bottom:97.115612pt;}
.y21_c00178{bottom:124.115611pt;}
.y20_c00178{bottom:151.115610pt;}
.y1f_c00178{bottom:178.115609pt;}
.y1e_c00178{bottom:207.515607pt;}
.y18_c00178{bottom:246.915606pt;}
.y17_c00178{bottom:273.915605pt;}
.y16_c00178{bottom:301.939059pt;}
.yd_c00178{bottom:344.274050pt;}
.yc_c00178{bottom:371.274049pt;}
.yb_c00178{bottom:398.274047pt;}
.ya_c00178{bottom:425.274046pt;}
.y9_c00178{bottom:452.274045pt;}
.y8_c00178{bottom:479.274044pt;}
.y7_c00178{bottom:506.274043pt;}
.y6_c00178{bottom:533.274042pt;}
.y5_c00178{bottom:560.274041pt;}
.y4_c00178{bottom:587.274040pt;}
.y3_c00178{bottom:614.274038pt;}
.y2_c00178{bottom:641.274037pt;}
.ye_c00178{bottom:673.368721pt;}
.y1d_c00178{bottom:715.919657pt;}
.y1c_c00178{bottom:742.919655pt;}
.y1b_c00178{bottom:769.919654pt;}
.y1a_c00178{bottom:796.919653pt;}
.y19_c00178{bottom:831.099028pt;}
.y15_c00178{bottom:870.638713pt;}
.y14_c00178{bottom:897.638711pt;}
.y13_c00178{bottom:924.638710pt;}
.y12_c00178{bottom:951.638709pt;}
.y11_c00178{bottom:978.638708pt;}
.y10_c00178{bottom:1005.638707pt;}
.yf_c00178{bottom:1032.638706pt;}
.h4_c00178{height:49.031248pt;}
.h3_c00178{height:59.593748pt;}
.h2_c00178{height:1159.999952pt;}
.h0_c00178{height:1159.999959pt;}
.h1_c00178{height:1160.000000pt;}
.w2_c00178{width:830.999965pt;}
.w0_c00178{width:831.000000pt;}
.w1_c00178{width:831.333333pt;}
.x0_c00178{left:0.000000pt;}
.x1_c00178{left:83.149606pt;}
.x2_c00178{left:85.656560pt;}
.x3_c00178{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.000000;font-style:normal;font-weight:normal;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_63af4946b28a338cd2374f27.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.171387;font-style:normal;font-weight:normal;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_903b956122f7df97f12ccce7.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.171387;font-style:normal;font-weight:normal;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_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.006348;font-style:normal;font-weight: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_c00179;src:url('chunks/assets/font_cbba9c901ca426d52b8ec392.woff2')format("woff");}.ff5_c00179{font-family:ff5_c00179;line-height:1.000000;font-style:normal;font-weight: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_c00179;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff6_c00179{font-family:ff6_c00179;line-height:0.734863;font-style:normal;font-weight: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_c00179;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00179{font-family:ff7_c00179;line-height:0.769531;font-style:normal;font-weight: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_c00179;src:url('chunks/assets/font_05037262d069117e8424b630.woff2')format("woff");}.ff8_c00179{font-family:ff8_c00179;line-height:0.743000;font-style:normal;font-weight: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_c00179;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00179{font-family:ff9_c00179;line-height:0.940000;font-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_c00179{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00179{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00179{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00179{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00179{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00179{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00179{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00179{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00179{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00179{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00179{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00179{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00179{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00179{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00179{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00179{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00179{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00179{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00179{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00179{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00179{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00179{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00179{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00179{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00179{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00179{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00179{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00179{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00179{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00179{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00179{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00179{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00179{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00179{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00179{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00179{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00179{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00179{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00179{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00179{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00179{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00179{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00179{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00179{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00179{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00179{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00179{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00179{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00179{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00179{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00179{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00179{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00179{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00179{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00179{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00179{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00179{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00179{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00179{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00179{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00179{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00179{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v1_c00179{vertical-align:-1.326986px;}
.v0_c00179{vertical-align:0.000000px;}
.ls0_c00179{letter-spacing:0.000000px;}
.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;}
}
.ws6_c00179{word-spacing:-41.689573px;}
.ws4_c00179{word-spacing:-15.171263px;}
.ws2_c00179{word-spacing:-14.183999px;}
.ws5_c00179{word-spacing:-13.590044px;}
.ws1_c00179{word-spacing:-0.089985px;}
.ws0_c00179{word-spacing:-0.055755px;}
.ws7_c00179{word-spacing:0.000000px;}
.ws3_c00179{word-spacing:278.467527px;}
._1_c00179{width:2.671874px;}
._0_c00179{width:15.580055px;}
._4_c00179{width:20.806044px;}
._2_c00179{width:26.162083px;}
._3_c00179{width:28.431790px;}
.fc4_c00179{color:transparent;}
.fc3_c00179{color:rgb(9,71,81);}
.fc2_c00179{color:rgb(67,91,56);}
.fc1_c00179{color:rgb(0,0,0);}
.fc0_c00179{color:rgb(255,255,255);}
.fs5_c00179{font-size:39.757786px;}
.fse_c00179{font-size:41.999830px;}
.fs4_c00179{font-size:42.000118px;}
.fsc_c00179{font-size:47.368230px;}
.fs9_c00179{font-size:47.368231px;}
.fsd_c00179{font-size:47.368232px;}
.fsa_c00179{font-size:47.368233px;}
.fsb_c00179{font-size:47.368235px;}
.fs8_c00179{font-size:51.661596px;}
.fs7_c00179{font-size:53.999998px;}
.fs0_c00179{font-size:55.754999px;}
.fs11_c00179{font-size:59.984997px;}
.fs10_c00179{font-size:68.984997px;}
.fs1_c00179{font-size:71.999997px;}
.fs2_c00179{font-size:74.424240px;}
.fsf_c00179{font-size:77.011488px;}
.fs3_c00179{font-size:89.985250px;}
.fs6_c00179{font-size:95.984996px;}
.y0_c00179{bottom:0.000000px;}
.y1_c00179{bottom:0.000008px;}
.y55_c00179{bottom:29.401163px;}
.y8_c00179{bottom:147.399618px;}
.y7_c00179{bottom:177.774617px;}
.y6_c00179{bottom:208.149615px;}
.y5_c00179{bottom:238.524614px;}
.y4_c00179{bottom:268.899613px;}
.y3_c00179{bottom:299.274612px;}
.y9_c00179{bottom:340.353374px;}
.y10_c00179{bottom:401.525233px;}
.y3c_c00179{bottom:486.888550px;}
.y1e_c00179{bottom:493.328193px;}
.y32_c00179{bottom:493.343399px;}
.y1d_c00179{bottom:493.853349px;}
.y33_c00179{bottom:493.873061px;}
.y4a_c00179{bottom:493.958987px;}
.y31_c00179{bottom:494.588444px;}
.y4b_c00179{bottom:494.792564px;}
.y49_c00179{bottom:494.812470px;}
.y1c_c00179{bottom:494.919675px;}
.y30_c00179{bottom:495.839509px;}
.y48_c00179{bottom:495.847333px;}
.y1b_c00179{bottom:495.993006px;}
.y34_c00179{bottom:496.289992px;}
.y1f_c00179{bottom:496.353113px;}
.y4c_c00179{bottom:496.973447px;}
.y2f_c00179{bottom:497.484020px;}
.y1a_c00179{bottom:497.644926px;}
.y47_c00179{bottom:498.050705px;}
.y4d_c00179{bottom:498.365140px;}
.y2e_c00179{bottom:499.172711px;}
.y19_c00179{bottom:499.338107px;}
.y4e_c00179{bottom:500.063439px;}
.y20_c00179{bottom:500.630691px;}
.y2d_c00179{bottom:501.037949px;}
.y18_c00179{bottom:501.208280px;}
.y35_c00179{bottom:501.390523px;}
.y46_c00179{bottom:501.842247px;}
.y4f_c00179{bottom:502.505484px;}
.y21_c00179{bottom:503.149881px;}
.y50_c00179{bottom:504.764265px;}
.y36_c00179{bottom:505.018723px;}
.y2c_c00179{bottom:505.692124px;}
.y17_c00179{bottom:505.872210px;}
.y45_c00179{bottom:507.310818px;}
.y51_c00179{bottom:508.033427px;}
.y22_c00179{bottom:509.102244px;}
.y37_c00179{bottom:510.653024px;}
.y44_c00179{bottom:511.777229px;}
.y2b_c00179{bottom:512.093421px;}
.y16_c00179{bottom:512.281650px;}
.y23_c00179{bottom:513.850725px;}
.y52_c00179{bottom:516.430791px;}
.y38_c00179{bottom:517.310602px;}
.y43_c00179{bottom:518.202280px;}
.y2a_c00179{bottom:519.400384px;}
.y15_c00179{bottom:519.490765px;}
.y42_c00179{bottom:522.772118px;}
.y14_c00179{bottom:522.949612px;}
.y53_c00179{bottom:524.479945px;}
.y24_c00179{bottom:525.634963px;}
.y29_c00179{bottom:526.562252px;}
.y13_c00179{bottom:528.960471px;}
.y39_c00179{bottom:529.273050px;}
.y41_c00179{bottom:530.544173px;}
.y28_c00179{bottom:531.331047px;}
.y3b_c00179{bottom:533.599430px;}
.y3f_c00179{bottom:534.293402px;}
.y40_c00179{bottom:534.438127px;}
.y54_c00179{bottom:534.795458px;}
.y12_c00179{bottom:536.219702px;}
.y27_c00179{bottom:537.503874px;}
.y25_c00179{bottom:537.875309px;}
.y3a_c00179{bottom:538.238502px;}
.y3d_c00179{bottom:539.975192px;}
.y26_c00179{bottom:544.566810px;}
.y11_c00179{bottom:545.753758px;}
.y3e_c00179{bottom:577.436970px;}
.y2_c00179{bottom:639.092781px;}
.y56_c00179{bottom:1021.440190px;}
.yd_c00179{bottom:1119.625265px;}
.yb_c00179{bottom:1133.738410px;}
.yf_c00179{bottom:1146.639325px;}
.ya_c00179{bottom:1147.738449px;}
.ye_c00179{bottom:1164.256825px;}
.yc_c00179{bottom:1171.082693px;}
.h11_c00179{height:35.988753px;}
.h12_c00179{height:35.988755px;}
.h13_c00179{height:35.988756px;}
.h8_c00179{height:37.020556px;}
.hb_c00179{height:37.459702px;}
.h15_c00179{height:39.108240px;}
.h7_c00179{height:39.108509px;}
.hf_c00179{height:44.107038px;}
.hc_c00179{height:44.107039px;}
.h10_c00179{height:44.107040px;}
.hd_c00179{height:44.107042px;}
.he_c00179{height:44.107043px;}
.h18_c00179{height:45.588598px;}
.ha_c00179{height:50.282224px;}
.h17_c00179{height:50.428033px;}
.h3_c00179{height:51.916398px;}
.h14_c00179{height:52.631998px;}
.h16_c00179{height:54.968411px;}
.h5_c00179{height:57.017399px;}
.h4_c00179{height:67.042966px;}
.h6_c00179{height:68.367700px;}
.h9_c00179{height:72.926100px;}
.h2_c00179{height:1304.999946px;}
.h0_c00179{height:1304.999953px;}
.h1_c00179{height:1305.000000px;}
.w2_c00179{width:934.874961px;}
.w0_c00179{width:934.875000px;}
.w1_c00179{width:935.250000px;}
.x0_c00179{left:0.000000px;}
.x2_c00179{left:87.902647px;}
.x3_c00179{left:89.260034px;}
.x4_c00179{left:107.230262px;}
.x5_c00179{left:108.827167px;}
.x41_c00179{left:130.690629px;}
.x19_c00179{left:134.974838px;}
.x18_c00179{left:136.648279px;}
.x1a_c00179{left:140.021272px;}
.x1b_c00179{left:144.871714px;}
.x1c_c00179{left:150.237526px;}
.x1d_c00179{left:152.990336px;}
.x1e_c00179{left:156.000220px;}
.x1f_c00179{left:159.847713px;}
.x29_c00179{left:161.443962px;}
.x20_c00179{left:163.301377px;}
.x21_c00179{left:171.586339px;}
.x22_c00179{left:179.855997px;}
.x23_c00179{left:188.287487px;}
.x24_c00179{left:196.673970px;}
.x25_c00179{left:200.841336px;}
.x26_c00179{left:205.399483px;}
.x27_c00179{left:209.208896px;}
.x28_c00179{left:211.795693px;}
.x9_c00179{left:230.398389px;}
.x8_c00179{left:232.534609px;}
.xa_c00179{left:235.623324px;}
.xb_c00179{left:240.462566px;}
.xc_c00179{left:245.820252px;}
.xd_c00179{left:248.569815px;}
.xe_c00179{left:251.576732px;}
.xf_c00179{left:255.421336px;}
.x10_c00179{left:258.708042px;}
.x11_c00179{left:263.145298px;}
.x12_c00179{left:271.763354px;}
.x13_c00179{left:283.603990px;}
.x14_c00179{left:291.041304px;}
.x6_c00179{left:295.177092px;}
.x15_c00179{left:299.775542px;}
.x16_c00179{left:303.165014px;}
.x17_c00179{left:307.176807px;}
.x2d_c00179{left:327.047435px;}
.x2e_c00179{left:328.264734px;}
.x2f_c00179{left:329.685747px;}
.x30_c00179{left:333.082971px;}
.x31_c00179{left:336.307511px;}
.x32_c00179{left:342.189757px;}
.x33_c00179{left:348.376740px;}
.x34_c00179{left:354.069743px;}
.x35_c00179{left:357.479743px;}
.x36_c00179{left:365.386869px;}
.x37_c00179{left:373.375785px;}
.x38_c00179{left:380.135498px;}
.x39_c00179{left:383.155707px;}
.x3a_c00179{left:386.159935px;}
.x3b_c00179{left:389.557910px;}
.x3c_c00179{left:392.174988px;}
.x3d_c00179{left:395.489533px;}
.x3e_c00179{left:400.664851px;}
.x3f_c00179{left:403.469600px;}
.x40_c00179{left:452.271732px;}
.x2b_c00179{left:464.896169px;}
.x1_c00179{left:676.878164px;}
.x7_c00179{left:697.320842px;}
.x2c_c00179{left:733.540639px;}
.x2a_c00179{left:757.088990px;}
@media print{
.v1_c00179{vertical-align:-1.179544pt;}
.v0_c00179{vertical-align:0.000000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws6_c00179{word-spacing:-37.057398pt;}
.ws4_c00179{word-spacing:-13.485567pt;}
.ws2_c00179{word-spacing:-12.607999pt;}
.ws5_c00179{word-spacing:-12.080039pt;}
.ws1_c00179{word-spacing:-0.079987pt;}
.ws0_c00179{word-spacing:-0.049560pt;}
.ws7_c00179{word-spacing:0.000000pt;}
.ws3_c00179{word-spacing:247.526691pt;}
._1_c00179{width:2.374999pt;}
._0_c00179{width:13.848937pt;}
._4_c00179{width:18.494261pt;}
._2_c00179{width:23.255185pt;}
._3_c00179{width:25.272702pt;}
.fs5_c00179{font-size:35.340254pt;}
.fse_c00179{font-size:37.333182pt;}
.fs4_c00179{font-size:37.333438pt;}
.fsc_c00179{font-size:42.105093pt;}
.fs9_c00179{font-size:42.105094pt;}
.fsd_c00179{font-size:42.105095pt;}
.fsa_c00179{font-size:42.105096pt;}
.fsb_c00179{font-size:42.105098pt;}
.fs8_c00179{font-size:45.921418pt;}
.fs7_c00179{font-size:47.999998pt;}
.fs0_c00179{font-size:49.559999pt;}
.fs11_c00179{font-size:53.319997pt;}
.fs10_c00179{font-size:61.319997pt;}
.fs1_c00179{font-size:63.999997pt;}
.fs2_c00179{font-size:66.154880pt;}
.fsf_c00179{font-size:68.454656pt;}
.fs3_c00179{font-size:79.986889pt;}
.fs6_c00179{font-size:85.319996pt;}
.y0_c00179{bottom:0.000000pt;}
.y1_c00179{bottom:0.000007pt;}
.y55_c00179{bottom:26.134367pt;}
.y8_c00179{bottom:131.021883pt;}
.y7_c00179{bottom:158.021881pt;}
.y6_c00179{bottom:185.021880pt;}
.y5_c00179{bottom:212.021879pt;}
.y4_c00179{bottom:239.021878pt;}
.y3_c00179{bottom:266.021877pt;}
.y9_c00179{bottom:302.536333pt;}
.y10_c00179{bottom:356.911319pt;}
.y3c_c00179{bottom:432.789822pt;}
.y1e_c00179{bottom:438.513950pt;}
.y32_c00179{bottom:438.527466pt;}
.y1d_c00179{bottom:438.980754pt;}
.y33_c00179{bottom:438.998276pt;}
.y4a_c00179{bottom:439.074655pt;}
.y31_c00179{bottom:439.634173pt;}
.y4b_c00179{bottom:439.815613pt;}
.y49_c00179{bottom:439.833307pt;}
.y1c_c00179{bottom:439.928600pt;}
.y30_c00179{bottom:440.746230pt;}
.y48_c00179{bottom:440.753185pt;}
.y1b_c00179{bottom:440.882672pt;}
.y34_c00179{bottom:441.146660pt;}
.y1f_c00179{bottom:441.202767pt;}
.y4c_c00179{bottom:441.754175pt;}
.y2f_c00179{bottom:442.208018pt;}
.y1a_c00179{bottom:442.351046pt;}
.y47_c00179{bottom:442.711737pt;}
.y4d_c00179{bottom:442.991236pt;}
.y2e_c00179{bottom:443.709077pt;}
.y19_c00179{bottom:443.856095pt;}
.y4e_c00179{bottom:444.500834pt;}
.y20_c00179{bottom:445.005059pt;}
.y2d_c00179{bottom:445.367066pt;}
.y18_c00179{bottom:445.518471pt;}
.y35_c00179{bottom:445.680465pt;}
.y46_c00179{bottom:446.081997pt;}
.y4f_c00179{bottom:446.671541pt;}
.y21_c00179{bottom:447.244339pt;}
.y50_c00179{bottom:448.679347pt;}
.y36_c00179{bottom:448.905531pt;}
.y2c_c00179{bottom:449.504110pt;}
.y17_c00179{bottom:449.664187pt;}
.y45_c00179{bottom:450.942950pt;}
.y51_c00179{bottom:451.585269pt;}
.y22_c00179{bottom:452.535328pt;}
.y37_c00179{bottom:453.913799pt;}
.y44_c00179{bottom:454.913093pt;}
.y2b_c00179{bottom:455.194152pt;}
.y16_c00179{bottom:455.361467pt;}
.y23_c00179{bottom:456.756200pt;}
.y52_c00179{bottom:459.049592pt;}
.y38_c00179{bottom:459.831647pt;}
.y43_c00179{bottom:460.624248pt;}
.y2a_c00179{bottom:461.689230pt;}
.y15_c00179{bottom:461.769569pt;}
.y42_c00179{bottom:464.686327pt;}
.y14_c00179{bottom:464.844100pt;}
.y53_c00179{bottom:466.204395pt;}
.y24_c00179{bottom:467.231078pt;}
.y29_c00179{bottom:468.055335pt;}
.y13_c00179{bottom:470.187085pt;}
.y39_c00179{bottom:470.464933pt;}
.y41_c00179{bottom:471.594820pt;}
.y28_c00179{bottom:472.294264pt;}
.y3b_c00179{bottom:474.310604pt;}
.y3f_c00179{bottom:474.927468pt;}
.y40_c00179{bottom:475.056113pt;}
.y54_c00179{bottom:475.373740pt;}
.y12_c00179{bottom:476.639735pt;}
.y27_c00179{bottom:477.781221pt;}
.y25_c00179{bottom:478.111386pt;}
.y3a_c00179{bottom:478.434224pt;}
.y3d_c00179{bottom:479.977948pt;}
.y26_c00179{bottom:484.059387pt;}
.y11_c00179{bottom:485.114452pt;}
.y3e_c00179{bottom:513.277307pt;}
.y2_c00179{bottom:568.082472pt;}
.y56_c00179{bottom:907.946836pt;}
.yd_c00179{bottom:995.222458pt;}
.yb_c00179{bottom:1007.767476pt;}
.yf_c00179{bottom:1019.234956pt;}
.ya_c00179{bottom:1020.211955pt;}
.ye_c00179{bottom:1034.894955pt;}
.yc_c00179{bottom:1040.962393pt;}
.h11_c00179{height:31.990003pt;}
.h12_c00179{height:31.990004pt;}
.h13_c00179{height:31.990006pt;}
.h8_c00179{height:32.907161pt;}
.hb_c00179{height:33.297513pt;}
.h15_c00179{height:34.762880pt;}
.h7_c00179{height:34.763119pt;}
.hf_c00179{height:39.206256pt;}
.hc_c00179{height:39.206257pt;}
.h10_c00179{height:39.206258pt;}
.hd_c00179{height:39.206259pt;}
.he_c00179{height:39.206261pt;}
.h18_c00179{height:40.523198pt;}
.ha_c00179{height:44.695311pt;}
.h17_c00179{height:44.824918pt;}
.h3_c00179{height:46.147909pt;}
.h14_c00179{height:46.783998pt;}
.h16_c00179{height:48.860810pt;}
.h5_c00179{height:50.682132pt;}
.h4_c00179{height:59.593748pt;}
.h6_c00179{height:60.771289pt;}
.h9_c00179{height:64.823200pt;}
.h2_c00179{height:1159.999952pt;}
.h0_c00179{height:1159.999959pt;}
.h1_c00179{height:1160.000000pt;}
.w2_c00179{width:830.999965pt;}
.w0_c00179{width:831.000000pt;}
.w1_c00179{width:831.333333pt;}
.x0_c00179{left:0.000000pt;}
.x2_c00179{left:78.135686pt;}
.x3_c00179{left:79.342253pt;}
.x4_c00179{left:95.315788pt;}
.x5_c00179{left:96.735260pt;}
.x41_c00179{left:116.169448pt;}
.x19_c00179{left:119.977634pt;}
.x18_c00179{left:121.465137pt;}
.x1a_c00179{left:124.463353pt;}
.x1b_c00179{left:128.774857pt;}
.x1c_c00179{left:133.544468pt;}
.x1d_c00179{left:135.991410pt;}
.x1e_c00179{left:138.666862pt;}
.x1f_c00179{left:142.086856pt;}
.x29_c00179{left:143.505744pt;}
.x20_c00179{left:145.156780pt;}
.x21_c00179{left:152.521190pt;}
.x22_c00179{left:159.871997pt;}
.x23_c00179{left:167.366655pt;}
.x24_c00179{left:174.821307pt;}
.x25_c00179{left:178.525632pt;}
.x26_c00179{left:182.577318pt;}
.x27_c00179{left:185.963463pt;}
.x28_c00179{left:188.262839pt;}
.x9_c00179{left:204.798568pt;}
.x8_c00179{left:206.697430pt;}
.xa_c00179{left:209.442955pt;}
.xb_c00179{left:213.744503pt;}
.xc_c00179{left:218.506891pt;}
.xd_c00179{left:220.950947pt;}
.xe_c00179{left:223.623762pt;}
.xf_c00179{left:227.041187pt;}
.x10_c00179{left:229.962704pt;}
.x11_c00179{left:233.906932pt;}
.x12_c00179{left:241.567426pt;}
.x13_c00179{left:252.092435pt;}
.x14_c00179{left:258.703382pt;}
.x6_c00179{left:262.379637pt;}
.x15_c00179{left:266.467148pt;}
.x16_c00179{left:269.480012pt;}
.x17_c00179{left:273.046051pt;}
.x2d_c00179{left:290.708831pt;}
.x2e_c00179{left:291.790874pt;}
.x2f_c00179{left:293.053997pt;}
.x30_c00179{left:296.073752pt;}
.x31_c00179{left:298.940009pt;}
.x32_c00179{left:304.168673pt;}
.x33_c00179{left:309.668213pt;}
.x34_c00179{left:314.728661pt;}
.x35_c00179{left:317.759772pt;}
.x36_c00179{left:324.788328pt;}
.x37_c00179{left:331.889587pt;}
.x38_c00179{left:337.898220pt;}
.x39_c00179{left:340.582851pt;}
.x3a_c00179{left:343.253275pt;}
.x3b_c00179{left:346.273697pt;}
.x3c_c00179{left:348.599989pt;}
.x3d_c00179{left:351.546252pt;}
.x3e_c00179{left:356.146534pt;}
.x3f_c00179{left:358.639645pt;}
.x40_c00179{left:402.019318pt;}
.x2b_c00179{left:413.241039pt;}
.x1_c00179{left:601.669479pt;}
.x7_c00179{left:619.840748pt;}
.x2c_c00179{left:652.036124pt;}
.x2a_c00179{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aaa4714b0c405d24c52bf9ad.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.171387;font-style:normal;font-weight:normal;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_28f7ddadff35289e8c3395d1.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_2bb18ff4942ac9808dacc983.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.000000;font-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_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;}
.ls0_c00180{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00180{word-spacing:-19.320776px;}
.ws1_c00180{word-spacing:0.000000px;}
._4_c00180{width:2.114044px;}
._b_c00180{width:3.506286px;}
._c_c00180{width:4.603545px;}
._2_c00180{width:6.054634px;}
._0_c00180{width:7.720298px;}
._5_c00180{width:10.305791px;}
._3_c00180{width:11.784344px;}
._6_c00180{width:12.902344px;}
._1_c00180{width:24.358200px;}
._a_c00180{width:34.031249px;}
._7_c00180{width:38.067142px;}
._8_c00180{width:41.723391px;}
._9_c00180{width:49.710937px;}
.fc1_c00180{color:rgb(67,91,56);}
.fc0_c00180{color:rgb(0,0,0);}
.fs0_c00180{font-size:71.999997px;}
.fs1_c00180{font-size:74.377724px;}
.y0_c00180{bottom:0.000000px;}
.y1_c00180{bottom:0.000008px;}
.y1e_c00180{bottom:29.401163px;}
.y1d_c00180{bottom:70.338525px;}
.y1c_c00180{bottom:106.338524px;}
.y1b_c00180{bottom:142.338522px;}
.y1a_c00180{bottom:178.338521px;}
.y19_c00180{bottom:214.338519px;}
.y18_c00180{bottom:260.257129px;}
.y17_c00180{bottom:340.671622px;}
.y16_c00180{bottom:376.671620px;}
.y15_c00180{bottom:416.271619px;}
.yc_c00180{bottom:496.371558px;}
.yb_c00180{bottom:532.371556px;}
.ya_c00180{bottom:568.371555px;}
.y9_c00180{bottom:604.371553px;}
.y8_c00180{bottom:640.371552px;}
.y7_c00180{bottom:676.371550px;}
.y6_c00180{bottom:712.371549px;}
.y5_c00180{bottom:748.371547px;}
.y4_c00180{bottom:784.371546px;}
.y3_c00180{bottom:820.371544px;}
.y2_c00180{bottom:856.371543px;}
.yd_c00180{bottom:895.890591px;}
.y14_c00180{bottom:974.683997px;}
.y13_c00180{bottom:1010.683995px;}
.y12_c00180{bottom:1046.683994px;}
.y11_c00180{bottom:1082.683992px;}
.y10_c00180{bottom:1118.683991px;}
.yf_c00180{bottom:1154.683989px;}
.ye_c00180{bottom:1199.188955px;}
.h4_c00180{height:55.160154px;}
.h5_c00180{height:56.981762px;}
.h3_c00180{height:67.042966px;}
.h2_c00180{height:1304.999946px;}
.h0_c00180{height:1304.999953px;}
.h1_c00180{height:1305.000000px;}
.w2_c00180{width:934.874961px;}
.w0_c00180{width:934.875000px;}
.w1_c00180{width:935.250000px;}
.x0_c00180{left:0.000000px;}
.x1_c00180{left:87.902647px;}
.x2_c00180{left:89.260034px;}
.x3_c00180{left:452.271732px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls0_c00180{letter-spacing:0.000000pt;}
.ws0_c00180{word-spacing:-17.174023pt;}
.ws1_c00180{word-spacing:0.000000pt;}
._4_c00180{width:1.879150pt;}
._b_c00180{width:3.116698pt;}
._c_c00180{width:4.092040pt;}
._2_c00180{width:5.381897pt;}
._0_c00180{width:6.862487pt;}
._5_c00180{width:9.160703pt;}
._3_c00180{width:10.474972pt;}
._6_c00180{width:11.468750pt;}
._1_c00180{width:21.651733pt;}
._a_c00180{width:30.249999pt;}
._7_c00180{width:33.837460pt;}
._8_c00180{width:37.087459pt;}
._9_c00180{width:44.187499pt;}
.fs0_c00180{font-size:63.999997pt;}
.fs1_c00180{font-size:66.113533pt;}
.y0_c00180{bottom:0.000000pt;}
.y1_c00180{bottom:0.000007pt;}
.y1e_c00180{bottom:26.134367pt;}
.y1d_c00180{bottom:62.523133pt;}
.y1c_c00180{bottom:94.523132pt;}
.y1b_c00180{bottom:126.523131pt;}
.y1a_c00180{bottom:158.523129pt;}
.y19_c00180{bottom:190.523128pt;}
.y18_c00180{bottom:231.339670pt;}
.y17_c00180{bottom:302.819219pt;}
.y16_c00180{bottom:334.819218pt;}
.y15_c00180{bottom:370.019217pt;}
.yc_c00180{bottom:441.219162pt;}
.yb_c00180{bottom:473.219161pt;}
.ya_c00180{bottom:505.219160pt;}
.y9_c00180{bottom:537.219158pt;}
.y8_c00180{bottom:569.219157pt;}
.y7_c00180{bottom:601.219156pt;}
.y6_c00180{bottom:633.219154pt;}
.y5_c00180{bottom:665.219153pt;}
.y4_c00180{bottom:697.219152pt;}
.y3_c00180{bottom:729.219150pt;}
.y2_c00180{bottom:761.219149pt;}
.yd_c00180{bottom:796.347192pt;}
.y14_c00180{bottom:866.385775pt;}
.y13_c00180{bottom:898.385774pt;}
.y12_c00180{bottom:930.385772pt;}
.y11_c00180{bottom:962.385771pt;}
.y10_c00180{bottom:994.385770pt;}
.yf_c00180{bottom:1026.385768pt;}
.ye_c00180{bottom:1065.945738pt;}
.h4_c00180{height:49.031248pt;}
.h5_c00180{height:50.650455pt;}
.h3_c00180{height:59.593748pt;}
.h2_c00180{height:1159.999952pt;}
.h0_c00180{height:1159.999959pt;}
.h1_c00180{height:1160.000000pt;}
.w2_c00180{width:830.999965pt;}
.w0_c00180{width:831.000000pt;}
.w1_c00180{width:831.333333pt;}
.x0_c00180{left:0.000000pt;}
.x1_c00180{left:78.135686pt;}
.x2_c00180{left:79.342253pt;}
.x3_c00180{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76a39358a0cd7b4fc2291916.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.006348;font-style:normal;font-weight:normal;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_f2cce9c0a52c8dde733bdbd2.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.171387;font-style:normal;font-weight:normal;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_3430fb8f076823f1cddf62e2.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.000000;font-style:normal;font-weight:normal;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_73ad054d81bf5a3e6fb62363.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:1.000000;font-style:normal;font-weight: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_c00181;src:url('chunks/assets/font_921b2addf9c94080ca4071e2.woff2')format("woff");}.ff5_c00181{font-family:ff5_c00181;line-height:1.171387;font-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_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);}
.v0_c00181{vertical-align:0.000000px;}
.ls0_c00181{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00181{word-spacing:-0.055755px;}
.ws1_c00181{word-spacing:0.000000px;}
._4_c00181{width:5.919432px;}
._0_c00181{width:10.374250px;}
._1_c00181{width:12.566711px;}
._2_c00181{width:13.843045px;}
._3_c00181{width:22.839818px;}
._5_c00181{width:48.882770px;}
.fc2_c00181{color:rgb(255,255,255);}
.fc1_c00181{color:rgb(0,0,0);}
.fc0_c00181{color:rgb(67,91,56);}
.fs1_c00181{font-size:55.754999px;}
.fs0_c00181{font-size:71.999997px;}
.y0_c00181{bottom:0.000000px;}
.y1_c00181{bottom:0.000008px;}
.yb_c00181{bottom:29.400983px;}
.yc_c00181{bottom:685.860451px;}
.ya_c00181{bottom:874.615129px;}
.y9_c00181{bottom:910.615127px;}
.y8_c00181{bottom:946.615126px;}
.y7_c00181{bottom:982.615124px;}
.y6_c00181{bottom:1018.615123px;}
.y5_c00181{bottom:1054.615121px;}
.y4_c00181{bottom:1090.615120px;}
.y3_c00181{bottom:1126.615118px;}
.y2_c00181{bottom:1181.315604px;}
.h5_c00181{height:51.916398px;}
.h3_c00181{height:55.160154px;}
.h4_c00181{height:67.042966px;}
.h2_c00181{height:1304.999946px;}
.h0_c00181{height:1304.999953px;}
.h1_c00181{height:1305.000000px;}
.w2_c00181{width:934.874961px;}
.w0_c00181{width:934.875000px;}
.w1_c00181{width:935.250000px;}
.x0_c00181{left:0.000000px;}
.x1_c00181{left:93.543307px;}
.x3_c00181{left:105.703833px;}
.x2_c00181{left:452.271732px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ws0_c00181{word-spacing:-0.049560pt;}
.ws1_c00181{word-spacing:0.000000pt;}
._4_c00181{width:5.261717pt;}
._0_c00181{width:9.221556pt;}
._1_c00181{width:11.170410pt;}
._2_c00181{width:12.304929pt;}
._3_c00181{width:20.302061pt;}
._5_c00181{width:43.451351pt;}
.fs1_c00181{font-size:49.559999pt;}
.fs0_c00181{font-size:63.999997pt;}
.y0_c00181{bottom:0.000000pt;}
.y1_c00181{bottom:0.000007pt;}
.yb_c00181{bottom:26.134207pt;}
.yc_c00181{bottom:609.653735pt;}
.ya_c00181{bottom:777.435670pt;}
.y9_c00181{bottom:809.435669pt;}
.y8_c00181{bottom:841.435667pt;}
.y7_c00181{bottom:873.435666pt;}
.y6_c00181{bottom:905.435665pt;}
.y5_c00181{bottom:937.435663pt;}
.y4_c00181{bottom:969.435662pt;}
.y3_c00181{bottom:1001.435661pt;}
.y2_c00181{bottom:1050.058315pt;}
.h5_c00181{height:46.147909pt;}
.h3_c00181{height:49.031248pt;}
.h4_c00181{height:59.593748pt;}
.h2_c00181{height:1159.999952pt;}
.h0_c00181{height:1159.999959pt;}
.h1_c00181{height:1160.000000pt;}
.w2_c00181{width:830.999965pt;}
.w0_c00181{width:831.000000pt;}
.w1_c00181{width:831.333333pt;}
.x0_c00181{left:0.000000pt;}
.x1_c00181{left:83.149606pt;}
.x3_c00181{left:93.958962pt;}
.x2_c00181{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:0.734863;font-style:normal;font-weight:normal;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_24dbb2da2b9f008c278c76f2.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00182;src:url('chunks/assets/font_3fd3d68ddd33f9bdc60f53e5.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:0.744000;font-style:normal;font-weight: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_c00182;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:0.940000;font-style:normal;font-weight: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_c00182;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff6_c00182{font-family:ff6_c00182;line-height:1.000000;font-style:normal;font-weight: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_c00182;src:url('chunks/assets/font_12edb3c674525e7dc46a7a84.woff2')format("woff");}.ff7_c00182{font-family:ff7_c00182;line-height:1.171387;font-style:normal;font-weight: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_c00182;src:url('chunks/assets/font_ef75ac09ec0bee8008350615.woff2')format("woff");}.ff8_c00182{font-family:ff8_c00182;line-height:0.713867;font-style:normal;font-weight: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_c00182;src:url('chunks/assets/font_848f191217e92f1261b9a8d7.woff2')format("woff");}.ff9_c00182{font-family:ff9_c00182;line-height:1.006348;font-style:normal;font-weight: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_c00182;src:url('chunks/assets/font_ea212bcc4d6895a31585d115.woff2')format("woff");}.ffa_c00182{font-family:ffa_c00182;line-height:1.000000;font-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_c00182{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00182{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00182{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00182{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00182{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00182{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00182{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00182{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00182{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00182{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00182{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00182{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00182{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00182{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00182{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00182{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00182{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00182{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00182{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00182{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00182{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00182{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00182{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00182{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00182{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00182{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00182{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00182{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00182{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00182{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00182{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00182{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00182{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00182{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00182{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00182{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00182{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00182{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00182{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00182{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00182{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00182{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00182{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00182{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00182{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00182{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00182{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00182{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00182{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00182{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00182{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00182{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00182{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00182{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00182{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00182{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00182{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00182{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00182{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00182{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00182{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00182{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00182{vertical-align:0.000000px;}
.v1_c00182{vertical-align:1.279584px;}
.ls1_c00182{letter-spacing:0.000000px;}
.ls0_c00182{letter-spacing:2.179710px;}
.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;}
}
.ws1_c00182{word-spacing:-41.689573px;}
.ws0_c00182{word-spacing:-15.171263px;}
.ws3_c00182{word-spacing:-0.089985px;}
.ws2_c00182{word-spacing:-0.055755px;}
.ws5_c00182{word-spacing:0.000000px;}
.ws4_c00182{word-spacing:288.058683px;}
._0_c00182{width:1.874954px;}
._1_c00182{width:3.044172px;}
._2_c00182{width:7.593749px;}
.fc5_c00182{color:transparent;}
.fc4_c00182{color:rgb(67,91,56);}
.fc3_c00182{color:rgb(255,10,10);}
.fc2_c00182{color:rgb(255,255,255);}
.fc1_c00182{color:rgb(0,0,0);}
.fc0_c00182{color:rgb(9,71,81);}
.fse_c00182{font-size:39.757786px;}
.fs7_c00182{font-size:41.999830px;}
.fsd_c00182{font-size:42.000118px;}
.fs4_c00182{font-size:47.368230px;}
.fs1_c00182{font-size:47.368231px;}
.fs5_c00182{font-size:47.368232px;}
.fs2_c00182{font-size:47.368233px;}
.fs3_c00182{font-size:47.368235px;}
.fs0_c00182{font-size:51.661596px;}
.fs10_c00182{font-size:53.999998px;}
.fs9_c00182{font-size:55.754999px;}
.fs8_c00182{font-size:59.984997px;}
.fsa_c00182{font-size:71.999997px;}
.fsb_c00182{font-size:74.424240px;}
.fs6_c00182{font-size:77.011488px;}
.fsc_c00182{font-size:89.985250px;}
.fsf_c00182{font-size:95.984996px;}
.y0_c00182{bottom:0.000000px;}
.y1_c00182{bottom:0.000008px;}
.y54_c00182{bottom:29.401163px;}
.y4c_c00182{bottom:163.380593px;}
.y4b_c00182{bottom:193.755592px;}
.y4a_c00182{bottom:224.130591px;}
.y49_c00182{bottom:254.505589px;}
.y48_c00182{bottom:284.880588px;}
.y4d_c00182{bottom:325.959351px;}
.y2_c00182{bottom:401.525233px;}
.y2e_c00182{bottom:486.888550px;}
.y10_c00182{bottom:493.328193px;}
.y24_c00182{bottom:493.343399px;}
.yf_c00182{bottom:493.853709px;}
.y25_c00182{bottom:493.873421px;}
.y3c_c00182{bottom:493.959311px;}
.y23_c00182{bottom:494.588120px;}
.y3d_c00182{bottom:494.792564px;}
.y3b_c00182{bottom:494.812830px;}
.ye_c00182{bottom:494.919675px;}
.y22_c00182{bottom:495.839509px;}
.y3a_c00182{bottom:495.847693px;}
.yd_c00182{bottom:495.993006px;}
.y26_c00182{bottom:496.289992px;}
.y11_c00182{bottom:496.353473px;}
.y3e_c00182{bottom:496.974167px;}
.y21_c00182{bottom:497.484380px;}
.yc_c00182{bottom:497.644566px;}
.y39_c00182{bottom:498.050345px;}
.y3f_c00182{bottom:498.364816px;}
.y20_c00182{bottom:499.172711px;}
.yb_c00182{bottom:499.338107px;}
.y40_c00182{bottom:500.063439px;}
.y12_c00182{bottom:500.630691px;}
.y1f_c00182{bottom:501.037625px;}
.ya_c00182{bottom:501.208280px;}
.y27_c00182{bottom:501.390523px;}
.y38_c00182{bottom:501.841887px;}
.y41_c00182{bottom:502.505484px;}
.y13_c00182{bottom:503.149521px;}
.y42_c00182{bottom:504.764625px;}
.y28_c00182{bottom:505.019047px;}
.y1e_c00182{bottom:505.692124px;}
.y9_c00182{bottom:505.871886px;}
.y37_c00182{bottom:507.310818px;}
.y43_c00182{bottom:508.033427px;}
.y14_c00182{bottom:509.101920px;}
.y29_c00182{bottom:510.652700px;}
.y36_c00182{bottom:511.777229px;}
.y1d_c00182{bottom:512.093421px;}
.y8_c00182{bottom:512.281650px;}
.y15_c00182{bottom:513.850725px;}
.y44_c00182{bottom:516.430791px;}
.y2a_c00182{bottom:517.310242px;}
.y35_c00182{bottom:518.201920px;}
.y1c_c00182{bottom:519.400744px;}
.y7_c00182{bottom:519.490765px;}
.y34_c00182{bottom:522.772118px;}
.y6_c00182{bottom:522.949612px;}
.y45_c00182{bottom:524.479585px;}
.y16_c00182{bottom:525.634639px;}
.y1b_c00182{bottom:526.562252px;}
.y5_c00182{bottom:528.959751px;}
.y2b_c00182{bottom:529.273374px;}
.y33_c00182{bottom:530.544173px;}
.y1a_c00182{bottom:531.331731px;}
.y2d_c00182{bottom:533.268367px;}
.y31_c00182{bottom:533.962015px;}
.y32_c00182{bottom:534.438127px;}
.y4_c00182{bottom:536.219342px;}
.y19_c00182{bottom:537.503874px;}
.y17_c00182{bottom:537.875309px;}
.y2c_c00182{bottom:538.238862px;}
.y2f_c00182{bottom:539.974832px;}
.y18_c00182{bottom:544.567530px;}
.y3_c00182{bottom:545.754118px;}
.y30_c00182{bottom:577.436970px;}
.y47_c00182{bottom:639.092421px;}
.y46_c00182{bottom:1021.439841px;}
.y51_c00182{bottom:1113.540423px;}
.y4f_c00182{bottom:1133.738586px;}
.y53_c00182{bottom:1134.015422px;}
.y4e_c00182{bottom:1147.738626px;}
.y52_c00182{bottom:1155.641085px;}
.y50_c00182{bottom:1171.082869px;}
.h9_c00182{height:35.988753px;}
.ha_c00182{height:35.988755px;}
.hb_c00182{height:35.988756px;}
.h14_c00182{height:37.020556px;}
.h3_c00182{height:37.459702px;}
.hd_c00182{height:39.108240px;}
.h13_c00182{height:39.108509px;}
.h7_c00182{height:44.107038px;}
.h4_c00182{height:44.107039px;}
.h8_c00182{height:44.107040px;}
.h5_c00182{height:44.107042px;}
.h6_c00182{height:44.107043px;}
.he_c00182{height:45.588598px;}
.h17_c00182{height:50.282224px;}
.hf_c00182{height:51.916398px;}
.hc_c00182{height:56.295398px;}
.h11_c00182{height:57.017399px;}
.h16_c00182{height:57.574982px;}
.h10_c00182{height:67.042966px;}
.h12_c00182{height:68.367700px;}
.h15_c00182{height:72.926100px;}
.h2_c00182{height:1304.999946px;}
.h0_c00182{height:1304.999953px;}
.h1_c00182{height:1305.000000px;}
.w2_c00182{width:934.874961px;}
.w0_c00182{width:934.875000px;}
.w1_c00182{width:935.250000px;}
.x0_c00182{left:0.000000px;}
.x3e_c00182{left:89.487450px;}
.x3f_c00182{left:90.844844px;}
.x40_c00182{left:107.230262px;}
.x41_c00182{left:108.827167px;}
.x3c_c00182{left:130.690629px;}
.x14_c00182{left:134.974838px;}
.x13_c00182{left:136.648279px;}
.x15_c00182{left:140.021272px;}
.x16_c00182{left:144.871714px;}
.x17_c00182{left:150.237526px;}
.x18_c00182{left:152.990336px;}
.x19_c00182{left:156.000220px;}
.x1a_c00182{left:159.847713px;}
.x24_c00182{left:161.443962px;}
.x1b_c00182{left:163.301377px;}
.x1c_c00182{left:171.586339px;}
.x1d_c00182{left:179.855997px;}
.x1e_c00182{left:188.287487px;}
.x1f_c00182{left:196.673970px;}
.x20_c00182{left:200.841336px;}
.x21_c00182{left:205.399483px;}
.x22_c00182{left:209.208896px;}
.x23_c00182{left:211.795693px;}
.x3_c00182{left:230.398389px;}
.x2_c00182{left:232.534609px;}
.x4_c00182{left:235.623324px;}
.x5_c00182{left:240.462566px;}
.x6_c00182{left:245.820252px;}
.x7_c00182{left:248.569815px;}
.x8_c00182{left:251.576732px;}
.x9_c00182{left:255.421336px;}
.x43_c00182{left:256.622047px;}
.xa_c00182{left:258.708042px;}
.xb_c00182{left:263.145298px;}
.xc_c00182{left:271.763354px;}
.xd_c00182{left:283.603990px;}
.xe_c00182{left:291.041304px;}
.xf_c00182{left:294.435991px;}
.x42_c00182{left:295.615161px;}
.x10_c00182{left:299.775542px;}
.x11_c00182{left:303.165014px;}
.x12_c00182{left:307.176807px;}
.x29_c00182{left:327.047435px;}
.x2a_c00182{left:328.264734px;}
.x2b_c00182{left:329.685747px;}
.x2c_c00182{left:333.082971px;}
.x2d_c00182{left:336.307511px;}
.x2e_c00182{left:342.189757px;}
.x2f_c00182{left:348.376740px;}
.x28_c00182{left:351.731739px;}
.x30_c00182{left:354.069743px;}
.x31_c00182{left:357.479743px;}
.x32_c00182{left:365.386869px;}
.x33_c00182{left:373.375785px;}
.x34_c00182{left:380.135498px;}
.x35_c00182{left:383.155707px;}
.x36_c00182{left:386.159935px;}
.x37_c00182{left:389.557910px;}
.x38_c00182{left:392.174988px;}
.x39_c00182{left:395.489533px;}
.x3a_c00182{left:400.664851px;}
.x3b_c00182{left:403.469600px;}
.x44_c00182{left:452.271732px;}
.x26_c00182{left:464.896169px;}
.x3d_c00182{left:676.878164px;}
.x1_c00182{left:697.320842px;}
.x27_c00182{left:733.540639px;}
.x25_c00182{left:757.088990px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.v1_c00182{vertical-align:1.137408pt;}
.ls1_c00182{letter-spacing:0.000000pt;}
.ls0_c00182{letter-spacing:1.937520pt;}
.ws1_c00182{word-spacing:-37.057398pt;}
.ws0_c00182{word-spacing:-13.485567pt;}
.ws3_c00182{word-spacing:-0.079987pt;}
.ws2_c00182{word-spacing:-0.049560pt;}
.ws5_c00182{word-spacing:0.000000pt;}
.ws4_c00182{word-spacing:256.052163pt;}
._0_c00182{width:1.666626pt;}
._1_c00182{width:2.705931pt;}
._2_c00182{width:6.749999pt;}
.fse_c00182{font-size:35.340254pt;}
.fs7_c00182{font-size:37.333182pt;}
.fsd_c00182{font-size:37.333438pt;}
.fs4_c00182{font-size:42.105093pt;}
.fs1_c00182{font-size:42.105094pt;}
.fs5_c00182{font-size:42.105095pt;}
.fs2_c00182{font-size:42.105096pt;}
.fs3_c00182{font-size:42.105098pt;}
.fs0_c00182{font-size:45.921418pt;}
.fs10_c00182{font-size:47.999998pt;}
.fs9_c00182{font-size:49.559999pt;}
.fs8_c00182{font-size:53.319997pt;}
.fsa_c00182{font-size:63.999997pt;}
.fsb_c00182{font-size:66.154880pt;}
.fs6_c00182{font-size:68.454656pt;}
.fsc_c00182{font-size:79.986889pt;}
.fsf_c00182{font-size:85.319996pt;}
.y0_c00182{bottom:0.000000pt;}
.y1_c00182{bottom:0.000007pt;}
.y54_c00182{bottom:26.134367pt;}
.y4c_c00182{bottom:145.227194pt;}
.y4b_c00182{bottom:172.227193pt;}
.y4a_c00182{bottom:199.227192pt;}
.y49_c00182{bottom:226.227191pt;}
.y48_c00182{bottom:253.227189pt;}
.y4d_c00182{bottom:289.741645pt;}
.y2_c00182{bottom:356.911319pt;}
.y2e_c00182{bottom:432.789822pt;}
.y10_c00182{bottom:438.513950pt;}
.y24_c00182{bottom:438.527466pt;}
.yf_c00182{bottom:438.981074pt;}
.y25_c00182{bottom:438.998596pt;}
.y3c_c00182{bottom:439.074943pt;}
.y23_c00182{bottom:439.633885pt;}
.y3d_c00182{bottom:439.815613pt;}
.y3b_c00182{bottom:439.833627pt;}
.ye_c00182{bottom:439.928600pt;}
.y22_c00182{bottom:440.746230pt;}
.y3a_c00182{bottom:440.753505pt;}
.yd_c00182{bottom:440.882672pt;}
.y26_c00182{bottom:441.146660pt;}
.y11_c00182{bottom:441.203087pt;}
.y3e_c00182{bottom:441.754815pt;}
.y21_c00182{bottom:442.208338pt;}
.yc_c00182{bottom:442.350726pt;}
.y39_c00182{bottom:442.711417pt;}
.y3f_c00182{bottom:442.990948pt;}
.y20_c00182{bottom:443.709077pt;}
.yb_c00182{bottom:443.856095pt;}
.y40_c00182{bottom:444.500834pt;}
.y12_c00182{bottom:445.005059pt;}
.y1f_c00182{bottom:445.366778pt;}
.ya_c00182{bottom:445.518471pt;}
.y27_c00182{bottom:445.680465pt;}
.y38_c00182{bottom:446.081677pt;}
.y41_c00182{bottom:446.671541pt;}
.y13_c00182{bottom:447.244019pt;}
.y42_c00182{bottom:448.679667pt;}
.y28_c00182{bottom:448.905819pt;}
.y1e_c00182{bottom:449.504110pt;}
.y9_c00182{bottom:449.663899pt;}
.y37_c00182{bottom:450.942950pt;}
.y43_c00182{bottom:451.585269pt;}
.y14_c00182{bottom:452.535040pt;}
.y29_c00182{bottom:453.913511pt;}
.y36_c00182{bottom:454.913093pt;}
.y1d_c00182{bottom:455.194152pt;}
.y8_c00182{bottom:455.361467pt;}
.y15_c00182{bottom:456.756200pt;}
.y44_c00182{bottom:459.049592pt;}
.y2a_c00182{bottom:459.831327pt;}
.y35_c00182{bottom:460.623928pt;}
.y1c_c00182{bottom:461.689550pt;}
.y7_c00182{bottom:461.769569pt;}
.y34_c00182{bottom:464.686327pt;}
.y6_c00182{bottom:464.844100pt;}
.y45_c00182{bottom:466.204075pt;}
.y16_c00182{bottom:467.230790pt;}
.y1b_c00182{bottom:468.055335pt;}
.y5_c00182{bottom:470.186445pt;}
.y2b_c00182{bottom:470.465221pt;}
.y33_c00182{bottom:471.594820pt;}
.y1a_c00182{bottom:472.294872pt;}
.y2d_c00182{bottom:474.016326pt;}
.y31_c00182{bottom:474.632902pt;}
.y32_c00182{bottom:475.056113pt;}
.y4_c00182{bottom:476.639415pt;}
.y19_c00182{bottom:477.781221pt;}
.y17_c00182{bottom:478.111386pt;}
.y2c_c00182{bottom:478.434544pt;}
.y2f_c00182{bottom:479.977628pt;}
.y18_c00182{bottom:484.060027pt;}
.y3_c00182{bottom:485.114772pt;}
.y30_c00182{bottom:513.277307pt;}
.y47_c00182{bottom:568.082152pt;}
.y46_c00182{bottom:907.946525pt;}
.y51_c00182{bottom:989.813709pt;}
.y4f_c00182{bottom:1007.767632pt;}
.y53_c00182{bottom:1008.013708pt;}
.y4e_c00182{bottom:1020.212112pt;}
.y52_c00182{bottom:1027.236520pt;}
.y50_c00182{bottom:1040.962550pt;}
.h9_c00182{height:31.990003pt;}
.ha_c00182{height:31.990004pt;}
.hb_c00182{height:31.990006pt;}
.h14_c00182{height:32.907161pt;}
.h3_c00182{height:33.297513pt;}
.hd_c00182{height:34.762880pt;}
.h13_c00182{height:34.763119pt;}
.h7_c00182{height:39.206256pt;}
.h4_c00182{height:39.206257pt;}
.h8_c00182{height:39.206258pt;}
.h5_c00182{height:39.206259pt;}
.h6_c00182{height:39.206261pt;}
.he_c00182{height:40.523198pt;}
.h17_c00182{height:44.695311pt;}
.hf_c00182{height:46.147909pt;}
.hc_c00182{height:50.040354pt;}
.h11_c00182{height:50.682132pt;}
.h16_c00182{height:51.177761pt;}
.h10_c00182{height:59.593748pt;}
.h12_c00182{height:60.771289pt;}
.h15_c00182{height:64.823200pt;}
.h2_c00182{height:1159.999952pt;}
.h0_c00182{height:1159.999959pt;}
.h1_c00182{height:1160.000000pt;}
.w2_c00182{width:830.999965pt;}
.w0_c00182{width:831.000000pt;}
.w1_c00182{width:831.333333pt;}
.x0_c00182{left:0.000000pt;}
.x3e_c00182{left:79.544400pt;}
.x3f_c00182{left:80.750973pt;}
.x40_c00182{left:95.315788pt;}
.x41_c00182{left:96.735260pt;}
.x3c_c00182{left:116.169448pt;}
.x14_c00182{left:119.977634pt;}
.x13_c00182{left:121.465137pt;}
.x15_c00182{left:124.463353pt;}
.x16_c00182{left:128.774857pt;}
.x17_c00182{left:133.544468pt;}
.x18_c00182{left:135.991410pt;}
.x19_c00182{left:138.666862pt;}
.x1a_c00182{left:142.086856pt;}
.x24_c00182{left:143.505744pt;}
.x1b_c00182{left:145.156780pt;}
.x1c_c00182{left:152.521190pt;}
.x1d_c00182{left:159.871997pt;}
.x1e_c00182{left:167.366655pt;}
.x1f_c00182{left:174.821307pt;}
.x20_c00182{left:178.525632pt;}
.x21_c00182{left:182.577318pt;}
.x22_c00182{left:185.963463pt;}
.x23_c00182{left:188.262839pt;}
.x3_c00182{left:204.798568pt;}
.x2_c00182{left:206.697430pt;}
.x4_c00182{left:209.442955pt;}
.x5_c00182{left:213.744503pt;}
.x6_c00182{left:218.506891pt;}
.x7_c00182{left:220.950947pt;}
.x8_c00182{left:223.623762pt;}
.x9_c00182{left:227.041187pt;}
.x43_c00182{left:228.108486pt;}
.xa_c00182{left:229.962704pt;}
.xb_c00182{left:233.906932pt;}
.xc_c00182{left:241.567426pt;}
.xd_c00182{left:252.092435pt;}
.xe_c00182{left:258.703382pt;}
.xf_c00182{left:261.720880pt;}
.x42_c00182{left:262.769032pt;}
.x10_c00182{left:266.467148pt;}
.x11_c00182{left:269.480012pt;}
.x12_c00182{left:273.046051pt;}
.x29_c00182{left:290.708831pt;}
.x2a_c00182{left:291.790874pt;}
.x2b_c00182{left:293.053997pt;}
.x2c_c00182{left:296.073752pt;}
.x2d_c00182{left:298.940009pt;}
.x2e_c00182{left:304.168673pt;}
.x2f_c00182{left:309.668213pt;}
.x28_c00182{left:312.650435pt;}
.x30_c00182{left:314.728661pt;}
.x31_c00182{left:317.759772pt;}
.x32_c00182{left:324.788328pt;}
.x33_c00182{left:331.889587pt;}
.x34_c00182{left:337.898220pt;}
.x35_c00182{left:340.582851pt;}
.x36_c00182{left:343.253275pt;}
.x37_c00182{left:346.273697pt;}
.x38_c00182{left:348.599989pt;}
.x39_c00182{left:351.546252pt;}
.x3a_c00182{left:356.146534pt;}
.x3b_c00182{left:358.639645pt;}
.x44_c00182{left:402.019318pt;}
.x26_c00182{left:413.241039pt;}
.x3d_c00182{left:601.669479pt;}
.x1_c00182{left:619.840748pt;}
.x27_c00182{left:652.036124pt;}
.x25_c00182{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59e4d7958ae9fe022b04c581.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.171387;font-style:normal;font-weight:normal;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_28f7ddadff35289e8c3395d1.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.006348;font-style:normal;font-weight:normal;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_10f18b08abdd6c410d94f96c.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.000000;font-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_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);}
.v0_c00183{vertical-align:0.000000px;}
.ls0_c00183{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00183{word-spacing:-19.320776px;}
.ws1_c00183{word-spacing:0.000000px;}
._a_c00183{width:1.113045px;}
._7_c00183{width:3.803604px;}
._0_c00183{width:5.748047px;}
._6_c00183{width:9.533177px;}
._3_c00183{width:11.309462px;}
._2_c00183{width:15.574220px;}
._4_c00183{width:16.737053px;}
._8_c00183{width:20.296828px;}
._1_c00183{width:22.617138px;}
._5_c00183{width:29.707029px;}
._9_c00183{width:36.449957px;}
.fc1_c00183{color:rgb(67,91,56);}
.fc0_c00183{color:rgb(0,0,0);}
.fs0_c00183{font-size:71.999997px;}
.fs1_c00183{font-size:74.377724px;}
.y0_c00183{bottom:0.000000px;}
.y1_c00183{bottom:0.000008px;}
.y1a_c00183{bottom:29.401163px;}
.y16_c00183{bottom:401.119435px;}
.y15_c00183{bottom:431.494434px;}
.y14_c00183{bottom:461.869433px;}
.y13_c00183{bottom:492.244431px;}
.y12_c00183{bottom:522.619430px;}
.y11_c00183{bottom:555.695149px;}
.y10_c00183{bottom:618.019786px;}
.yf_c00183{bottom:651.041685px;}
.yd_c00183{bottom:712.807001px;}
.yc_c00183{bottom:743.182000px;}
.yb_c00183{bottom:773.556999px;}
.ya_c00183{bottom:803.931997px;}
.y9_c00183{bottom:834.306996px;}
.y8_c00183{bottom:864.681995px;}
.y7_c00183{bottom:895.056994px;}
.y6_c00183{bottom:925.431992px;}
.y5_c00183{bottom:955.806991px;}
.y4_c00183{bottom:986.181990px;}
.y3_c00183{bottom:1016.556988px;}
.y2_c00183{bottom:1046.931987px;}
.ye_c00183{bottom:1081.748979px;}
.y19_c00183{bottom:1140.698976px;}
.y18_c00183{bottom:1171.073975px;}
.y17_c00183{bottom:1199.188901px;}
.h4_c00183{height:55.160154px;}
.h5_c00183{height:56.981762px;}
.h3_c00183{height:67.042966px;}
.h2_c00183{height:1304.999946px;}
.h0_c00183{height:1304.999953px;}
.h1_c00183{height:1305.000000px;}
.w2_c00183{width:934.874961px;}
.w0_c00183{width:934.875000px;}
.w1_c00183{width:935.250000px;}
.x0_c00183{left:0.000000px;}
.x2_c00183{left:87.902647px;}
.x1_c00183{left:89.487450px;}
.x3_c00183{left:452.271732px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ws0_c00183{word-spacing:-17.174023pt;}
.ws1_c00183{word-spacing:0.000000pt;}
._a_c00183{width:0.989373pt;}
._7_c00183{width:3.380982pt;}
._0_c00183{width:5.109375pt;}
._6_c00183{width:8.473935pt;}
._3_c00183{width:10.052855pt;}
._2_c00183{width:13.843751pt;}
._4_c00183{width:14.877380pt;}
._8_c00183{width:18.041625pt;}
._1_c00183{width:20.104122pt;}
._5_c00183{width:26.406248pt;}
._9_c00183{width:32.399962pt;}
.fs0_c00183{font-size:63.999997pt;}
.fs1_c00183{font-size:66.113533pt;}
.y0_c00183{bottom:0.000000pt;}
.y1_c00183{bottom:0.000007pt;}
.y1a_c00183{bottom:26.134367pt;}
.y16_c00183{bottom:356.550609pt;}
.y15_c00183{bottom:383.550608pt;}
.y14_c00183{bottom:410.550607pt;}
.y13_c00183{bottom:437.550606pt;}
.y12_c00183{bottom:464.550605pt;}
.y11_c00183{bottom:493.951243pt;}
.y10_c00183{bottom:549.350921pt;}
.yf_c00183{bottom:578.703720pt;}
.yd_c00183{bottom:633.606223pt;}
.yc_c00183{bottom:660.606222pt;}
.yb_c00183{bottom:687.606221pt;}
.ya_c00183{bottom:714.606220pt;}
.y9_c00183{bottom:741.606219pt;}
.y8_c00183{bottom:768.606218pt;}
.y7_c00183{bottom:795.606216pt;}
.y6_c00183{bottom:822.606215pt;}
.y5_c00183{bottom:849.606214pt;}
.y4_c00183{bottom:876.606213pt;}
.y3_c00183{bottom:903.606212pt;}
.y2_c00183{bottom:930.606211pt;}
.ye_c00183{bottom:961.554648pt;}
.y19_c00183{bottom:1013.954646pt;}
.y18_c00183{bottom:1040.954645pt;}
.y17_c00183{bottom:1065.945690pt;}
.h4_c00183{height:49.031248pt;}
.h5_c00183{height:50.650455pt;}
.h3_c00183{height:59.593748pt;}
.h2_c00183{height:1159.999952pt;}
.h0_c00183{height:1159.999959pt;}
.h1_c00183{height:1160.000000pt;}
.w2_c00183{width:830.999965pt;}
.w0_c00183{width:831.000000pt;}
.w1_c00183{width:831.333333pt;}
.x0_c00183{left:0.000000pt;}
.x2_c00183{left:78.135686pt;}
.x1_c00183{left:79.544400pt;}
.x3_c00183{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.000000;font-style:normal;font-weight:normal;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_20a0381fc3db0cd6d4882d06.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.171387;font-style:normal;font-weight:normal;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_7663f16e769245329819abd9.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.171387;font-style:normal;font-weight:normal;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_848f191217e92f1261b9a8d7.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:1.006348;font-style:normal;font-weight: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_55546a7683242e3b5404df5f.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:1.000000;font-style:normal;font-weight: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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff6_c00184{font-family:ff6_c00184;line-height:0.734863;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00184{font-family:ff7_c00184;line-height:0.769531;font-style:normal;font-weight: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_c00184;src:url('chunks/assets/font_7616de49c392b56c5d70188c.woff2')format("woff");}.ff8_c00184{font-family:ff8_c00184;line-height:0.744000;font-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_c00184{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00184{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00184{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00184{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00184{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00184{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00184{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00184{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00184{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00184{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00184{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00184{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00184{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00184{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00184{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00184{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00184{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00184{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00184{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00184{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00184{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00184{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00184{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00184{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00184{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00184{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00184{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00184{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00184{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00184{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00184{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00184{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00184{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00184{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00184{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00184{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00184{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00184{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00184{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00184{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00184{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00184{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00184{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00184{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00184{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00184{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00184{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00184{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00184{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00184{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00184{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00184{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00184{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00184{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00184{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00184{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00184{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00184{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00184{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00184{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00184{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00184{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00184{vertical-align:0.000000px;}
.ls0_c00184{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00184{word-spacing:-15.171263px;}
.ws1_c00184{word-spacing:-0.089985px;}
.ws0_c00184{word-spacing:-0.055755px;}
.ws4_c00184{word-spacing:0.000000px;}
.ws3_c00184{word-spacing:281.638789px;}
._0_c00184{width:1.348709px;}
._1_c00184{width:6.609375px;}
.fc4_c00184{color:transparent;}
.fc3_c00184{color:rgb(9,71,81);}
.fc2_c00184{color:rgb(67,91,56);}
.fc1_c00184{color:rgb(0,0,0);}
.fc0_c00184{color:rgb(255,255,255);}
.fs5_c00184{font-size:39.757786px;}
.fse_c00184{font-size:41.999830px;}
.fs4_c00184{font-size:42.000118px;}
.fsb_c00184{font-size:47.368230px;}
.fs8_c00184{font-size:47.368231px;}
.fsc_c00184{font-size:47.368232px;}
.fs9_c00184{font-size:47.368233px;}
.fsa_c00184{font-size:47.368235px;}
.fs7_c00184{font-size:51.661596px;}
.fs0_c00184{font-size:55.754999px;}
.fs1_c00184{font-size:71.999997px;}
.fs2_c00184{font-size:74.424240px;}
.fsd_c00184{font-size:77.011488px;}
.fs3_c00184{font-size:89.985250px;}
.fs6_c00184{font-size:95.984996px;}
.y0_c00184{bottom:0.000000px;}
.y1_c00184{bottom:0.000008px;}
.y4f_c00184{bottom:29.401163px;}
.y5_c00184{bottom:247.524614px;}
.y4_c00184{bottom:277.899612px;}
.y3_c00184{bottom:308.274611px;}
.y6_c00184{bottom:340.353374px;}
.yc_c00184{bottom:401.525233px;}
.y38_c00184{bottom:486.888550px;}
.y1a_c00184{bottom:493.328193px;}
.y2e_c00184{bottom:493.343399px;}
.y19_c00184{bottom:493.853349px;}
.y2f_c00184{bottom:493.873061px;}
.y44_c00184{bottom:493.958987px;}
.y2d_c00184{bottom:494.588444px;}
.y45_c00184{bottom:494.792564px;}
.y43_c00184{bottom:494.812470px;}
.y18_c00184{bottom:494.919675px;}
.y2c_c00184{bottom:495.839509px;}
.y42_c00184{bottom:495.847333px;}
.y17_c00184{bottom:495.993006px;}
.y30_c00184{bottom:496.289992px;}
.y1b_c00184{bottom:496.353113px;}
.y46_c00184{bottom:496.973447px;}
.y2b_c00184{bottom:497.484020px;}
.y16_c00184{bottom:497.644926px;}
.y41_c00184{bottom:498.050705px;}
.y47_c00184{bottom:498.365140px;}
.y2a_c00184{bottom:499.172711px;}
.y15_c00184{bottom:499.338107px;}
.y48_c00184{bottom:500.063439px;}
.y1c_c00184{bottom:500.630691px;}
.y29_c00184{bottom:501.037949px;}
.y14_c00184{bottom:501.208280px;}
.y31_c00184{bottom:501.390523px;}
.y40_c00184{bottom:501.842247px;}
.y49_c00184{bottom:502.505484px;}
.y1d_c00184{bottom:503.149881px;}
.y4a_c00184{bottom:504.764265px;}
.y32_c00184{bottom:505.018723px;}
.y28_c00184{bottom:505.692124px;}
.y13_c00184{bottom:505.872210px;}
.y3f_c00184{bottom:507.310818px;}
.y4b_c00184{bottom:508.033427px;}
.y1e_c00184{bottom:509.102244px;}
.y33_c00184{bottom:510.653024px;}
.y3e_c00184{bottom:511.777229px;}
.y27_c00184{bottom:512.093421px;}
.y12_c00184{bottom:512.281650px;}
.y1f_c00184{bottom:513.850725px;}
.y4c_c00184{bottom:516.430791px;}
.y34_c00184{bottom:517.310602px;}
.y3d_c00184{bottom:518.202280px;}
.y26_c00184{bottom:519.400384px;}
.y11_c00184{bottom:519.490765px;}
.y3c_c00184{bottom:522.772118px;}
.y10_c00184{bottom:522.949612px;}
.y4d_c00184{bottom:524.479945px;}
.y20_c00184{bottom:525.634963px;}
.y25_c00184{bottom:526.562252px;}
.yf_c00184{bottom:528.960471px;}
.y35_c00184{bottom:529.273050px;}
.y3b_c00184{bottom:530.544173px;}
.y24_c00184{bottom:531.331047px;}
.y37_c00184{bottom:531.715183px;}
.y39_c00184{bottom:533.961655px;}
.y4e_c00184{bottom:534.281587px;}
.y3a_c00184{bottom:534.438127px;}
.ye_c00184{bottom:536.219702px;}
.y23_c00184{bottom:537.503874px;}
.y21_c00184{bottom:537.875309px;}
.y36_c00184{bottom:538.238502px;}
.y22_c00184{bottom:544.566810px;}
.yd_c00184{bottom:545.753758px;}
.y2_c00184{bottom:639.092781px;}
.ya_c00184{bottom:1128.788039px;}
.y8_c00184{bottom:1133.738410px;}
.y7_c00184{bottom:1147.738449px;}
.yb_c00184{bottom:1153.262414px;}
.y9_c00184{bottom:1171.082693px;}
.h10_c00184{height:35.988753px;}
.h11_c00184{height:35.988755px;}
.h12_c00184{height:35.988756px;}
.h8_c00184{height:37.020556px;}
.ha_c00184{height:37.459702px;}
.h14_c00184{height:39.108240px;}
.h7_c00184{height:39.108509px;}
.he_c00184{height:44.107038px;}
.hb_c00184{height:44.107039px;}
.hf_c00184{height:44.107040px;}
.hc_c00184{height:44.107042px;}
.hd_c00184{height:44.107043px;}
.h3_c00184{height:51.916398px;}
.h13_c00184{height:56.295398px;}
.h5_c00184{height:57.017399px;}
.h4_c00184{height:67.042966px;}
.h6_c00184{height:68.367700px;}
.h9_c00184{height:89.376654px;}
.h2_c00184{height:1304.999946px;}
.h0_c00184{height:1304.999953px;}
.h1_c00184{height:1305.000000px;}
.w2_c00184{width:934.874961px;}
.w0_c00184{width:934.875000px;}
.w1_c00184{width:935.250000px;}
.x0_c00184{left:0.000000px;}
.x2_c00184{left:89.487450px;}
.x3_c00184{left:90.844844px;}
.x4_c00184{left:107.230262px;}
.x5_c00184{left:108.827167px;}
.x19_c00184{left:134.974838px;}
.x18_c00184{left:136.648279px;}
.x1a_c00184{left:140.021272px;}
.x1b_c00184{left:144.871714px;}
.x1c_c00184{left:150.237526px;}
.x1d_c00184{left:152.990336px;}
.x1e_c00184{left:156.000220px;}
.x1f_c00184{left:159.847713px;}
.x20_c00184{left:163.301377px;}
.x21_c00184{left:171.586339px;}
.x22_c00184{left:179.855997px;}
.x23_c00184{left:188.287487px;}
.x24_c00184{left:196.673970px;}
.x25_c00184{left:200.841336px;}
.x26_c00184{left:205.399483px;}
.x27_c00184{left:209.208896px;}
.x28_c00184{left:211.795693px;}
.x9_c00184{left:230.398389px;}
.x8_c00184{left:232.534609px;}
.xa_c00184{left:235.623324px;}
.xb_c00184{left:240.462566px;}
.xc_c00184{left:245.820252px;}
.xd_c00184{left:248.569815px;}
.xe_c00184{left:251.576732px;}
.xf_c00184{left:255.421336px;}
.x2a_c00184{left:256.622047px;}
.x10_c00184{left:258.708042px;}
.x11_c00184{left:263.145298px;}
.x12_c00184{left:271.763354px;}
.x13_c00184{left:283.603990px;}
.x14_c00184{left:291.041304px;}
.x6_c00184{left:295.177092px;}
.x15_c00184{left:299.775542px;}
.x16_c00184{left:303.165014px;}
.x17_c00184{left:307.176807px;}
.x2b_c00184{left:327.047435px;}
.x2c_c00184{left:328.264734px;}
.x2d_c00184{left:329.685747px;}
.x2e_c00184{left:333.082971px;}
.x2f_c00184{left:336.307511px;}
.x30_c00184{left:342.189757px;}
.x31_c00184{left:348.376740px;}
.x32_c00184{left:354.069743px;}
.x33_c00184{left:357.479743px;}
.x34_c00184{left:365.386869px;}
.x35_c00184{left:373.375785px;}
.x36_c00184{left:380.135498px;}
.x37_c00184{left:383.155707px;}
.x38_c00184{left:386.159935px;}
.x39_c00184{left:389.557910px;}
.x3a_c00184{left:392.174988px;}
.x3b_c00184{left:395.489533px;}
.x3c_c00184{left:400.664851px;}
.x3d_c00184{left:403.469600px;}
.x3e_c00184{left:452.271732px;}
.x1_c00184{left:664.443440px;}
.x7_c00184{left:697.320842px;}
.x29_c00184{left:757.088990px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws2_c00184{word-spacing:-13.485567pt;}
.ws1_c00184{word-spacing:-0.079987pt;}
.ws0_c00184{word-spacing:-0.049560pt;}
.ws4_c00184{word-spacing:0.000000pt;}
.ws3_c00184{word-spacing:250.345590pt;}
._0_c00184{width:1.198852pt;}
._1_c00184{width:5.875000pt;}
.fs5_c00184{font-size:35.340254pt;}
.fse_c00184{font-size:37.333182pt;}
.fs4_c00184{font-size:37.333438pt;}
.fsb_c00184{font-size:42.105093pt;}
.fs8_c00184{font-size:42.105094pt;}
.fsc_c00184{font-size:42.105095pt;}
.fs9_c00184{font-size:42.105096pt;}
.fsa_c00184{font-size:42.105098pt;}
.fs7_c00184{font-size:45.921418pt;}
.fs0_c00184{font-size:49.559999pt;}
.fs1_c00184{font-size:63.999997pt;}
.fs2_c00184{font-size:66.154880pt;}
.fsd_c00184{font-size:68.454656pt;}
.fs3_c00184{font-size:79.986889pt;}
.fs6_c00184{font-size:85.319996pt;}
.y0_c00184{bottom:0.000000pt;}
.y1_c00184{bottom:0.000007pt;}
.y4f_c00184{bottom:26.134367pt;}
.y5_c00184{bottom:220.021879pt;}
.y4_c00184{bottom:247.021878pt;}
.y3_c00184{bottom:274.021877pt;}
.y6_c00184{bottom:302.536333pt;}
.yc_c00184{bottom:356.911319pt;}
.y38_c00184{bottom:432.789822pt;}
.y1a_c00184{bottom:438.513950pt;}
.y2e_c00184{bottom:438.527466pt;}
.y19_c00184{bottom:438.980754pt;}
.y2f_c00184{bottom:438.998276pt;}
.y44_c00184{bottom:439.074655pt;}
.y2d_c00184{bottom:439.634173pt;}
.y45_c00184{bottom:439.815613pt;}
.y43_c00184{bottom:439.833307pt;}
.y18_c00184{bottom:439.928600pt;}
.y2c_c00184{bottom:440.746230pt;}
.y42_c00184{bottom:440.753185pt;}
.y17_c00184{bottom:440.882672pt;}
.y30_c00184{bottom:441.146660pt;}
.y1b_c00184{bottom:441.202767pt;}
.y46_c00184{bottom:441.754175pt;}
.y2b_c00184{bottom:442.208018pt;}
.y16_c00184{bottom:442.351046pt;}
.y41_c00184{bottom:442.711737pt;}
.y47_c00184{bottom:442.991236pt;}
.y2a_c00184{bottom:443.709077pt;}
.y15_c00184{bottom:443.856095pt;}
.y48_c00184{bottom:444.500834pt;}
.y1c_c00184{bottom:445.005059pt;}
.y29_c00184{bottom:445.367066pt;}
.y14_c00184{bottom:445.518471pt;}
.y31_c00184{bottom:445.680465pt;}
.y40_c00184{bottom:446.081997pt;}
.y49_c00184{bottom:446.671541pt;}
.y1d_c00184{bottom:447.244339pt;}
.y4a_c00184{bottom:448.679347pt;}
.y32_c00184{bottom:448.905531pt;}
.y28_c00184{bottom:449.504110pt;}
.y13_c00184{bottom:449.664187pt;}
.y3f_c00184{bottom:450.942950pt;}
.y4b_c00184{bottom:451.585269pt;}
.y1e_c00184{bottom:452.535328pt;}
.y33_c00184{bottom:453.913799pt;}
.y3e_c00184{bottom:454.913093pt;}
.y27_c00184{bottom:455.194152pt;}
.y12_c00184{bottom:455.361467pt;}
.y1f_c00184{bottom:456.756200pt;}
.y4c_c00184{bottom:459.049592pt;}
.y34_c00184{bottom:459.831647pt;}
.y3d_c00184{bottom:460.624248pt;}
.y26_c00184{bottom:461.689230pt;}
.y11_c00184{bottom:461.769569pt;}
.y3c_c00184{bottom:464.686327pt;}
.y10_c00184{bottom:464.844100pt;}
.y4d_c00184{bottom:466.204395pt;}
.y20_c00184{bottom:467.231078pt;}
.y25_c00184{bottom:468.055335pt;}
.yf_c00184{bottom:470.187085pt;}
.y35_c00184{bottom:470.464933pt;}
.y3b_c00184{bottom:471.594820pt;}
.y24_c00184{bottom:472.294264pt;}
.y37_c00184{bottom:472.635718pt;}
.y39_c00184{bottom:474.632582pt;}
.y4e_c00184{bottom:474.916966pt;}
.y3a_c00184{bottom:475.056113pt;}
.ye_c00184{bottom:476.639735pt;}
.y23_c00184{bottom:477.781221pt;}
.y21_c00184{bottom:478.111386pt;}
.y36_c00184{bottom:478.434224pt;}
.y22_c00184{bottom:484.059387pt;}
.yd_c00184{bottom:485.114452pt;}
.y2_c00184{bottom:568.082472pt;}
.ya_c00184{bottom:1003.367145pt;}
.y8_c00184{bottom:1007.767476pt;}
.y7_c00184{bottom:1020.211955pt;}
.yb_c00184{bottom:1025.122146pt;}
.y9_c00184{bottom:1040.962393pt;}
.h10_c00184{height:31.990003pt;}
.h11_c00184{height:31.990004pt;}
.h12_c00184{height:31.990006pt;}
.h8_c00184{height:32.907161pt;}
.ha_c00184{height:33.297513pt;}
.h14_c00184{height:34.762880pt;}
.h7_c00184{height:34.763119pt;}
.he_c00184{height:39.206256pt;}
.hb_c00184{height:39.206257pt;}
.hf_c00184{height:39.206258pt;}
.hc_c00184{height:39.206259pt;}
.hd_c00184{height:39.206261pt;}
.h3_c00184{height:46.147909pt;}
.h13_c00184{height:50.040354pt;}
.h5_c00184{height:50.682132pt;}
.h4_c00184{height:59.593748pt;}
.h6_c00184{height:60.771289pt;}
.h9_c00184{height:79.445915pt;}
.h2_c00184{height:1159.999952pt;}
.h0_c00184{height:1159.999959pt;}
.h1_c00184{height:1160.000000pt;}
.w2_c00184{width:830.999965pt;}
.w0_c00184{width:831.000000pt;}
.w1_c00184{width:831.333333pt;}
.x0_c00184{left:0.000000pt;}
.x2_c00184{left:79.544400pt;}
.x3_c00184{left:80.750973pt;}
.x4_c00184{left:95.315788pt;}
.x5_c00184{left:96.735260pt;}
.x19_c00184{left:119.977634pt;}
.x18_c00184{left:121.465137pt;}
.x1a_c00184{left:124.463353pt;}
.x1b_c00184{left:128.774857pt;}
.x1c_c00184{left:133.544468pt;}
.x1d_c00184{left:135.991410pt;}
.x1e_c00184{left:138.666862pt;}
.x1f_c00184{left:142.086856pt;}
.x20_c00184{left:145.156780pt;}
.x21_c00184{left:152.521190pt;}
.x22_c00184{left:159.871997pt;}
.x23_c00184{left:167.366655pt;}
.x24_c00184{left:174.821307pt;}
.x25_c00184{left:178.525632pt;}
.x26_c00184{left:182.577318pt;}
.x27_c00184{left:185.963463pt;}
.x28_c00184{left:188.262839pt;}
.x9_c00184{left:204.798568pt;}
.x8_c00184{left:206.697430pt;}
.xa_c00184{left:209.442955pt;}
.xb_c00184{left:213.744503pt;}
.xc_c00184{left:218.506891pt;}
.xd_c00184{left:220.950947pt;}
.xe_c00184{left:223.623762pt;}
.xf_c00184{left:227.041187pt;}
.x2a_c00184{left:228.108486pt;}
.x10_c00184{left:229.962704pt;}
.x11_c00184{left:233.906932pt;}
.x12_c00184{left:241.567426pt;}
.x13_c00184{left:252.092435pt;}
.x14_c00184{left:258.703382pt;}
.x6_c00184{left:262.379637pt;}
.x15_c00184{left:266.467148pt;}
.x16_c00184{left:269.480012pt;}
.x17_c00184{left:273.046051pt;}
.x2b_c00184{left:290.708831pt;}
.x2c_c00184{left:291.790874pt;}
.x2d_c00184{left:293.053997pt;}
.x2e_c00184{left:296.073752pt;}
.x2f_c00184{left:298.940009pt;}
.x30_c00184{left:304.168673pt;}
.x31_c00184{left:309.668213pt;}
.x32_c00184{left:314.728661pt;}
.x33_c00184{left:317.759772pt;}
.x34_c00184{left:324.788328pt;}
.x35_c00184{left:331.889587pt;}
.x36_c00184{left:337.898220pt;}
.x37_c00184{left:340.582851pt;}
.x38_c00184{left:343.253275pt;}
.x39_c00184{left:346.273697pt;}
.x3a_c00184{left:348.599989pt;}
.x3b_c00184{left:351.546252pt;}
.x3c_c00184{left:356.146534pt;}
.x3d_c00184{left:358.639645pt;}
.x3e_c00184{left:402.019318pt;}
.x1_c00184{left:590.616391pt;}
.x7_c00184{left:619.840748pt;}
.x29_c00184{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_232987485106335c5f1d99bf.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.171387;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.006348;font-style:normal;font-weight:normal;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_eadc1dd569de6b0a11207e52.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.000000;font-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_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;}
.ls0_c00185{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00185{word-spacing:-19.320776px;}
.ws1_c00185{word-spacing:0.000000px;}
._a_c00185{width:1.453079px;}
._0_c00185{width:3.034219px;}
._4_c00185{width:4.938355px;}
._8_c00185{width:6.047966px;}
._9_c00185{width:7.559994px;}
._2_c00185{width:8.613282px;}
._7_c00185{width:9.934929px;}
._5_c00185{width:14.814807px;}
._3_c00185{width:16.722562px;}
._d_c00185{width:19.801758px;}
._b_c00185{width:21.120733px;}
._1_c00185{width:23.437474px;}
._6_c00185{width:24.960867px;}
._c_c00185{width:28.220852px;}
.fc1_c00185{color:rgb(67,91,56);}
.fc0_c00185{color:rgb(0,0,0);}
.fs0_c00185{font-size:71.999997px;}
.fs1_c00185{font-size:74.377724px;}
.y0_c00185{bottom:0.000000px;}
.y1_c00185{bottom:0.000008px;}
.y22_c00185{bottom:29.401163px;}
.y28_c00185{bottom:95.189144px;}
.y27_c00185{bottom:123.314143px;}
.y26_c00185{bottom:151.439142px;}
.y25_c00185{bottom:179.564141px;}
.y24_c00185{bottom:207.689139px;}
.y23_c00185{bottom:240.194510px;}
.y21_c00185{bottom:282.782976px;}
.y20_c00185{bottom:312.939563px;}
.y17_c00185{bottom:361.539608px;}
.y16_c00185{bottom:389.664607px;}
.y15_c00185{bottom:417.789605px;}
.y14_c00185{bottom:445.914604px;}
.y13_c00185{bottom:474.039603px;}
.y12_c00185{bottom:502.164602px;}
.y11_c00185{bottom:530.289601px;}
.y10_c00185{bottom:558.414600px;}
.yf_c00185{bottom:586.539598px;}
.ye_c00185{bottom:614.664597px;}
.yd_c00185{bottom:642.789596px;}
.yc_c00185{bottom:670.914595px;}
.yb_c00185{bottom:699.039594px;}
.ya_c00185{bottom:727.164593px;}
.y9_c00185{bottom:755.289591px;}
.y8_c00185{bottom:783.414590px;}
.y7_c00185{bottom:811.539589px;}
.y6_c00185{bottom:839.664588px;}
.y5_c00185{bottom:867.789587px;}
.y4_c00185{bottom:895.914585px;}
.y3_c00185{bottom:924.039584px;}
.y2_c00185{bottom:952.164583px;}
.y18_c00185{bottom:981.639560px;}
.y1f_c00185{bottom:1030.451047px;}
.y1e_c00185{bottom:1058.576046px;}
.y1d_c00185{bottom:1086.701045px;}
.y1c_c00185{bottom:1114.826044px;}
.y1b_c00185{bottom:1142.951043px;}
.y1a_c00185{bottom:1171.076042px;}
.y19_c00185{bottom:1205.352039px;}
.h4_c00185{height:55.160154px;}
.h5_c00185{height:56.981762px;}
.h3_c00185{height:67.042966px;}
.h2_c00185{height:1304.999946px;}
.h0_c00185{height:1304.999953px;}
.h1_c00185{height:1305.000000px;}
.w2_c00185{width:934.874961px;}
.w0_c00185{width:934.875000px;}
.w1_c00185{width:935.250000px;}
.x0_c00185{left:0.000000px;}
.x1_c00185{left:89.487450px;}
.x3_c00185{left:90.722973px;}
.x2_c00185{left:452.271732px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws0_c00185{word-spacing:-17.174023pt;}
.ws1_c00185{word-spacing:0.000000pt;}
._a_c00185{width:1.291626pt;}
._0_c00185{width:2.697084pt;}
._4_c00185{width:4.389649pt;}
._8_c00185{width:5.375970pt;}
._9_c00185{width:6.719994pt;}
._2_c00185{width:7.656251pt;}
._7_c00185{width:8.831048pt;}
._5_c00185{width:13.168717pt;}
._3_c00185{width:14.864500pt;}
._d_c00185{width:17.601563pt;}
._b_c00185{width:18.773984pt;}
._1_c00185{width:20.833310pt;}
._6_c00185{width:22.187437pt;}
._c_c00185{width:25.085202pt;}
.fs0_c00185{font-size:63.999997pt;}
.fs1_c00185{font-size:66.113533pt;}
.y0_c00185{bottom:0.000000pt;}
.y1_c00185{bottom:0.000007pt;}
.y22_c00185{bottom:26.134367pt;}
.y28_c00185{bottom:84.612572pt;}
.y27_c00185{bottom:109.612571pt;}
.y26_c00185{bottom:134.612570pt;}
.y25_c00185{bottom:159.612569pt;}
.y24_c00185{bottom:184.612568pt;}
.y23_c00185{bottom:213.506231pt;}
.y21_c00185{bottom:251.362646pt;}
.y20_c00185{bottom:278.168500pt;}
.y17_c00185{bottom:321.368540pt;}
.y16_c00185{bottom:346.368539pt;}
.y15_c00185{bottom:371.368538pt;}
.y14_c00185{bottom:396.368537pt;}
.y13_c00185{bottom:421.368536pt;}
.y12_c00185{bottom:446.368535pt;}
.y11_c00185{bottom:471.368534pt;}
.y10_c00185{bottom:496.368533pt;}
.yf_c00185{bottom:521.368532pt;}
.ye_c00185{bottom:546.368531pt;}
.yd_c00185{bottom:571.368530pt;}
.yc_c00185{bottom:596.368529pt;}
.yb_c00185{bottom:621.368528pt;}
.ya_c00185{bottom:646.368527pt;}
.y9_c00185{bottom:671.368526pt;}
.y8_c00185{bottom:696.368525pt;}
.y7_c00185{bottom:721.368524pt;}
.y6_c00185{bottom:746.368523pt;}
.y5_c00185{bottom:771.368521pt;}
.y4_c00185{bottom:796.368520pt;}
.y3_c00185{bottom:821.368519pt;}
.y2_c00185{bottom:846.368518pt;}
.y18_c00185{bottom:872.568498pt;}
.y1f_c00185{bottom:915.956487pt;}
.y1e_c00185{bottom:940.956486pt;}
.y1d_c00185{bottom:965.956485pt;}
.y1c_c00185{bottom:990.956484pt;}
.y1b_c00185{bottom:1015.956482pt;}
.y1a_c00185{bottom:1040.956481pt;}
.y19_c00185{bottom:1071.424035pt;}
.h4_c00185{height:49.031248pt;}
.h5_c00185{height:50.650455pt;}
.h3_c00185{height:59.593748pt;}
.h2_c00185{height:1159.999952pt;}
.h0_c00185{height:1159.999959pt;}
.h1_c00185{height:1160.000000pt;}
.w2_c00185{width:830.999965pt;}
.w0_c00185{width:831.000000pt;}
.w1_c00185{width:831.333333pt;}
.x0_c00185{left:0.000000pt;}
.x1_c00185{left:79.544400pt;}
.x3_c00185{left:80.642643pt;}
.x2_c00185{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:0.734863;font-style:normal;font-weight:normal;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_387be579e5d32a7781217e98.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:0.769531;font-style:normal;font-weight:normal;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_6af50d622657189b80877400.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:0.743000;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_502503fd6fc9d247d13dddb2.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:1.000000;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_1af3c6c9bdef9e68a1589a5e.woff2')format("woff");}.ff6_c00186{font-family:ff6_c00186;line-height:1.171387;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_7a1fd883917c096d81049495.woff2')format("woff");}.ff7_c00186{font-family:ff7_c00186;line-height:1.000000;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff8_c00186{font-family:ff8_c00186;line-height:1.006348;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_4973a0421d561262d9ee2698.woff2')format("woff");}.ff9_c00186{font-family:ff9_c00186;line-height:1.000000;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00186{font-family:ffa_c00186;line-height:0.940000;font-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_c00186{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00186{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00186{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00186{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00186{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00186{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00186{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00186{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00186{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00186{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00186{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00186{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00186{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00186{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00186{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00186{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00186{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00186{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00186{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00186{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00186{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00186{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00186{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00186{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00186{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00186{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00186{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00186{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00186{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00186{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00186{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00186{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00186{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00186{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00186{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00186{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00186{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00186{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00186{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00186{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00186{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00186{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00186{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00186{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00186{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00186{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00186{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00186{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00186{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00186{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00186{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00186{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00186{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00186{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00186{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00186{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00186{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00186{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00186{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00186{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00186{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00186{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00186{vertical-align:0.000000px;}
.ls0_c00186{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00186{word-spacing:-41.689573px;}
.ws2_c00186{word-spacing:-23.375075px;}
.ws0_c00186{word-spacing:-15.171263px;}
.ws1_c00186{word-spacing:-14.483232px;}
.ws5_c00186{word-spacing:0.000000px;}
.ws3_c00186{word-spacing:279.285353px;}
._0_c00186{width:4.132163px;}
._3_c00186{width:5.972644px;}
._4_c00186{width:8.296876px;}
._1_c00186{width:17.329285px;}
._2_c00186{width:20.639394px;}
._5_c00186{width:298.007930px;}
.fc4_c00186{color:transparent;}
.fc3_c00186{color:rgb(67,91,56);}
.fc2_c00186{color:rgb(255,255,255);}
.fc1_c00186{color:rgb(0,0,0);}
.fc0_c00186{color:rgb(9,71,81);}
.fsd_c00186{font-size:39.757786px;}
.fs6_c00186{font-size:41.999830px;}
.fsc_c00186{font-size:42.000118px;}
.fs4_c00186{font-size:47.368230px;}
.fs1_c00186{font-size:47.368231px;}
.fs5_c00186{font-size:47.368232px;}
.fs2_c00186{font-size:47.368233px;}
.fs3_c00186{font-size:47.368235px;}
.fs0_c00186{font-size:51.661596px;}
.fs8_c00186{font-size:55.754999px;}
.fsf_c00186{font-size:59.984997px;}
.fs9_c00186{font-size:71.999997px;}
.fsa_c00186{font-size:74.424240px;}
.fs7_c00186{font-size:77.011488px;}
.fsb_c00186{font-size:89.985250px;}
.fse_c00186{font-size:95.984996px;}
.y0_c00186{bottom:0.000000px;}
.y1_c00186{bottom:0.000008px;}
.y56_c00186{bottom:29.400983px;}
.y4d_c00186{bottom:95.649620px;}
.y4c_c00186{bottom:126.024619px;}
.y4b_c00186{bottom:156.399617px;}
.y4a_c00186{bottom:186.774616px;}
.y49_c00186{bottom:217.149615px;}
.y48_c00186{bottom:247.524614px;}
.y47_c00186{bottom:277.899612px;}
.y46_c00186{bottom:308.274611px;}
.y4e_c00186{bottom:340.353230px;}
.y2_c00186{bottom:401.525233px;}
.y2d_c00186{bottom:486.888550px;}
.y10_c00186{bottom:493.328373px;}
.y24_c00186{bottom:493.343399px;}
.yf_c00186{bottom:493.853709px;}
.y25_c00186{bottom:493.873241px;}
.y3b_c00186{bottom:493.959311px;}
.y23_c00186{bottom:494.588120px;}
.y3c_c00186{bottom:494.792744px;}
.y3a_c00186{bottom:494.812830px;}
.ye_c00186{bottom:494.919675px;}
.y22_c00186{bottom:495.839329px;}
.y39_c00186{bottom:495.847693px;}
.yd_c00186{bottom:495.993006px;}
.y26_c00186{bottom:496.289812px;}
.y11_c00186{bottom:496.353473px;}
.y3d_c00186{bottom:496.973987px;}
.y21_c00186{bottom:497.484200px;}
.yc_c00186{bottom:497.644566px;}
.y38_c00186{bottom:498.050345px;}
.y3e_c00186{bottom:498.364996px;}
.y20_c00186{bottom:499.172711px;}
.yb_c00186{bottom:499.338251px;}
.y3f_c00186{bottom:500.063079px;}
.y12_c00186{bottom:500.630691px;}
.y1f_c00186{bottom:501.037769px;}
.ya_c00186{bottom:501.208100px;}
.y27_c00186{bottom:501.390523px;}
.y37_c00186{bottom:501.842067px;}
.y40_c00186{bottom:502.505484px;}
.y13_c00186{bottom:503.149521px;}
.y41_c00186{bottom:504.764445px;}
.y28_c00186{bottom:505.018723px;}
.y1e_c00186{bottom:505.692124px;}
.y9_c00186{bottom:505.871886px;}
.y36_c00186{bottom:507.310818px;}
.y42_c00186{bottom:508.033247px;}
.y14_c00186{bottom:509.101920px;}
.y29_c00186{bottom:510.652700px;}
.y35_c00186{bottom:511.777409px;}
.y1d_c00186{bottom:512.093601px;}
.y8_c00186{bottom:512.281830px;}
.y15_c00186{bottom:513.850725px;}
.y43_c00186{bottom:516.430791px;}
.y2a_c00186{bottom:517.310242px;}
.y34_c00186{bottom:518.202100px;}
.y1c_c00186{bottom:519.400564px;}
.y7_c00186{bottom:519.490909px;}
.y33_c00186{bottom:522.772118px;}
.y6_c00186{bottom:522.949612px;}
.y44_c00186{bottom:524.479585px;}
.y16_c00186{bottom:525.634639px;}
.y1b_c00186{bottom:526.562252px;}
.y5_c00186{bottom:528.959931px;}
.y2b_c00186{bottom:529.273374px;}
.y32_c00186{bottom:530.544173px;}
.y1a_c00186{bottom:531.331551px;}
.y55_c00186{bottom:531.715003px;}
.y30_c00186{bottom:533.961835px;}
.y31_c00186{bottom:534.437983px;}
.y4_c00186{bottom:536.219342px;}
.y19_c00186{bottom:537.503874px;}
.y17_c00186{bottom:537.875309px;}
.y2c_c00186{bottom:538.238862px;}
.y2e_c00186{bottom:539.974832px;}
.y18_c00186{bottom:544.567170px;}
.y3_c00186{bottom:545.754118px;}
.y2f_c00186{bottom:577.437150px;}
.y45_c00186{bottom:639.092601px;}
.y57_c00186{bottom:1021.439841px;}
.y52_c00186{bottom:1118.110911px;}
.y50_c00186{bottom:1133.738410px;}
.y54_c00186{bottom:1143.024123px;}
.y4f_c00186{bottom:1147.738449px;}
.y53_c00186{bottom:1166.649122px;}
.y51_c00186{bottom:1171.082779px;}
.h9_c00186{height:35.988753px;}
.ha_c00186{height:35.988755px;}
.hb_c00186{height:35.988756px;}
.h13_c00186{height:37.020556px;}
.h3_c00186{height:37.459702px;}
.hc_c00186{height:39.108240px;}
.h12_c00186{height:39.108509px;}
.h7_c00186{height:44.107038px;}
.h4_c00186{height:44.107039px;}
.h8_c00186{height:44.107040px;}
.h5_c00186{height:44.107042px;}
.h6_c00186{height:44.107043px;}
.h16_c00186{height:45.588598px;}
.he_c00186{height:51.916398px;}
.h15_c00186{height:55.855171px;}
.hd_c00186{height:56.295398px;}
.h10_c00186{height:57.017399px;}
.hf_c00186{height:67.042966px;}
.h11_c00186{height:68.367700px;}
.h14_c00186{height:72.926100px;}
.h2_c00186{height:1304.999946px;}
.h0_c00186{height:1304.999953px;}
.h1_c00186{height:1305.000000px;}
.w2_c00186{width:934.874961px;}
.w0_c00186{width:934.875000px;}
.w1_c00186{width:935.250000px;}
.x0_c00186{left:0.000000px;}
.x3c_c00186{left:87.902647px;}
.x3d_c00186{left:89.260034px;}
.x3e_c00186{left:107.230262px;}
.x3f_c00186{left:108.827167px;}
.x41_c00186{left:130.690629px;}
.x14_c00186{left:134.974838px;}
.x13_c00186{left:136.648279px;}
.x15_c00186{left:140.021272px;}
.x16_c00186{left:144.871714px;}
.x17_c00186{left:150.237526px;}
.x18_c00186{left:152.990336px;}
.x19_c00186{left:156.000220px;}
.x1a_c00186{left:159.847713px;}
.x1b_c00186{left:163.301377px;}
.x1c_c00186{left:171.586339px;}
.x1d_c00186{left:179.855997px;}
.x1e_c00186{left:188.287487px;}
.x1f_c00186{left:196.673970px;}
.x20_c00186{left:200.841336px;}
.x21_c00186{left:205.399483px;}
.x22_c00186{left:209.208896px;}
.x23_c00186{left:211.795693px;}
.x3_c00186{left:230.398389px;}
.x2_c00186{left:232.534609px;}
.x4_c00186{left:235.623324px;}
.x5_c00186{left:240.462566px;}
.x6_c00186{left:245.820252px;}
.x7_c00186{left:248.569815px;}
.x8_c00186{left:251.576732px;}
.x9_c00186{left:255.421336px;}
.xa_c00186{left:258.708042px;}
.xb_c00186{left:263.145298px;}
.xc_c00186{left:271.763354px;}
.xd_c00186{left:283.603990px;}
.xe_c00186{left:291.041304px;}
.xf_c00186{left:294.435991px;}
.x10_c00186{left:299.775542px;}
.x11_c00186{left:303.165014px;}
.x12_c00186{left:307.176807px;}
.x28_c00186{left:327.047435px;}
.x29_c00186{left:328.264734px;}
.x2a_c00186{left:329.685747px;}
.x2b_c00186{left:333.082971px;}
.x2c_c00186{left:336.307511px;}
.x2d_c00186{left:342.189757px;}
.x2e_c00186{left:348.376740px;}
.x27_c00186{left:351.731739px;}
.x2f_c00186{left:354.069743px;}
.x30_c00186{left:357.479743px;}
.x31_c00186{left:365.386869px;}
.x32_c00186{left:373.375785px;}
.x33_c00186{left:380.135498px;}
.x34_c00186{left:383.155707px;}
.x35_c00186{left:386.159935px;}
.x36_c00186{left:389.557910px;}
.x37_c00186{left:392.174988px;}
.x38_c00186{left:395.489533px;}
.x39_c00186{left:400.664851px;}
.x3a_c00186{left:403.469600px;}
.x40_c00186{left:452.271732px;}
.x25_c00186{left:464.896169px;}
.x1_c00186{left:697.320842px;}
.x3b_c00186{left:723.979554px;}
.x26_c00186{left:733.540639px;}
.x24_c00186{left:757.088990px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws4_c00186{word-spacing:-37.057398pt;}
.ws2_c00186{word-spacing:-20.777845pt;}
.ws0_c00186{word-spacing:-13.485567pt;}
.ws1_c00186{word-spacing:-12.873984pt;}
.ws5_c00186{word-spacing:0.000000pt;}
.ws3_c00186{word-spacing:248.253647pt;}
._0_c00186{width:3.673033pt;}
._3_c00186{width:5.309017pt;}
._4_c00186{width:7.375001pt;}
._1_c00186{width:15.403809pt;}
._2_c00186{width:18.346128pt;}
._5_c00186{width:264.895937pt;}
.fsd_c00186{font-size:35.340254pt;}
.fs6_c00186{font-size:37.333182pt;}
.fsc_c00186{font-size:37.333438pt;}
.fs4_c00186{font-size:42.105093pt;}
.fs1_c00186{font-size:42.105094pt;}
.fs5_c00186{font-size:42.105095pt;}
.fs2_c00186{font-size:42.105096pt;}
.fs3_c00186{font-size:42.105098pt;}
.fs0_c00186{font-size:45.921418pt;}
.fs8_c00186{font-size:49.559999pt;}
.fsf_c00186{font-size:53.319997pt;}
.fs9_c00186{font-size:63.999997pt;}
.fsa_c00186{font-size:66.154880pt;}
.fs7_c00186{font-size:68.454656pt;}
.fsb_c00186{font-size:79.986889pt;}
.fse_c00186{font-size:85.319996pt;}
.y0_c00186{bottom:0.000000pt;}
.y1_c00186{bottom:0.000007pt;}
.y56_c00186{bottom:26.134207pt;}
.y4d_c00186{bottom:85.021884pt;}
.y4c_c00186{bottom:112.021883pt;}
.y4b_c00186{bottom:139.021882pt;}
.y4a_c00186{bottom:166.021881pt;}
.y49_c00186{bottom:193.021880pt;}
.y48_c00186{bottom:220.021879pt;}
.y47_c00186{bottom:247.021878pt;}
.y46_c00186{bottom:274.021877pt;}
.y4e_c00186{bottom:302.536205pt;}
.y2_c00186{bottom:356.911319pt;}
.y2d_c00186{bottom:432.789822pt;}
.y10_c00186{bottom:438.514110pt;}
.y24_c00186{bottom:438.527466pt;}
.yf_c00186{bottom:438.981074pt;}
.y25_c00186{bottom:438.998436pt;}
.y3b_c00186{bottom:439.074943pt;}
.y23_c00186{bottom:439.633885pt;}
.y3c_c00186{bottom:439.815773pt;}
.y3a_c00186{bottom:439.833627pt;}
.ye_c00186{bottom:439.928600pt;}
.y22_c00186{bottom:440.746070pt;}
.y39_c00186{bottom:440.753505pt;}
.yd_c00186{bottom:440.882672pt;}
.y26_c00186{bottom:441.146500pt;}
.y11_c00186{bottom:441.203087pt;}
.y3d_c00186{bottom:441.754655pt;}
.y21_c00186{bottom:442.208178pt;}
.yc_c00186{bottom:442.350726pt;}
.y38_c00186{bottom:442.711417pt;}
.y3e_c00186{bottom:442.991108pt;}
.y20_c00186{bottom:443.709077pt;}
.yb_c00186{bottom:443.856223pt;}
.y3f_c00186{bottom:444.500514pt;}
.y12_c00186{bottom:445.005059pt;}
.y1f_c00186{bottom:445.366906pt;}
.ya_c00186{bottom:445.518311pt;}
.y27_c00186{bottom:445.680465pt;}
.y37_c00186{bottom:446.081837pt;}
.y40_c00186{bottom:446.671541pt;}
.y13_c00186{bottom:447.244019pt;}
.y41_c00186{bottom:448.679507pt;}
.y28_c00186{bottom:448.905531pt;}
.y1e_c00186{bottom:449.504110pt;}
.y9_c00186{bottom:449.663899pt;}
.y36_c00186{bottom:450.942950pt;}
.y42_c00186{bottom:451.585109pt;}
.y14_c00186{bottom:452.535040pt;}
.y29_c00186{bottom:453.913511pt;}
.y35_c00186{bottom:454.913253pt;}
.y1d_c00186{bottom:455.194312pt;}
.y8_c00186{bottom:455.361627pt;}
.y15_c00186{bottom:456.756200pt;}
.y43_c00186{bottom:459.049592pt;}
.y2a_c00186{bottom:459.831327pt;}
.y34_c00186{bottom:460.624088pt;}
.y1c_c00186{bottom:461.689390pt;}
.y7_c00186{bottom:461.769697pt;}
.y33_c00186{bottom:464.686327pt;}
.y6_c00186{bottom:464.844100pt;}
.y44_c00186{bottom:466.204075pt;}
.y16_c00186{bottom:467.230790pt;}
.y1b_c00186{bottom:468.055335pt;}
.y5_c00186{bottom:470.186605pt;}
.y2b_c00186{bottom:470.465221pt;}
.y32_c00186{bottom:471.594820pt;}
.y1a_c00186{bottom:472.294712pt;}
.y55_c00186{bottom:472.635558pt;}
.y30_c00186{bottom:474.632742pt;}
.y31_c00186{bottom:475.055985pt;}
.y4_c00186{bottom:476.639415pt;}
.y19_c00186{bottom:477.781221pt;}
.y17_c00186{bottom:478.111386pt;}
.y2c_c00186{bottom:478.434544pt;}
.y2e_c00186{bottom:479.977628pt;}
.y18_c00186{bottom:484.059707pt;}
.y3_c00186{bottom:485.114772pt;}
.y2f_c00186{bottom:513.277467pt;}
.y45_c00186{bottom:568.082312pt;}
.y57_c00186{bottom:907.946525pt;}
.y52_c00186{bottom:993.876365pt;}
.y50_c00186{bottom:1007.767476pt;}
.y54_c00186{bottom:1016.021442pt;}
.y4f_c00186{bottom:1020.211955pt;}
.y53_c00186{bottom:1037.021442pt;}
.y51_c00186{bottom:1040.962470pt;}
.h9_c00186{height:31.990003pt;}
.ha_c00186{height:31.990004pt;}
.hb_c00186{height:31.990006pt;}
.h13_c00186{height:32.907161pt;}
.h3_c00186{height:33.297513pt;}
.hc_c00186{height:34.762880pt;}
.h12_c00186{height:34.763119pt;}
.h7_c00186{height:39.206256pt;}
.h4_c00186{height:39.206257pt;}
.h8_c00186{height:39.206258pt;}
.h5_c00186{height:39.206259pt;}
.h6_c00186{height:39.206261pt;}
.h16_c00186{height:40.523198pt;}
.he_c00186{height:46.147909pt;}
.h15_c00186{height:49.649041pt;}
.hd_c00186{height:50.040354pt;}
.h10_c00186{height:50.682132pt;}
.hf_c00186{height:59.593748pt;}
.h11_c00186{height:60.771289pt;}
.h14_c00186{height:64.823200pt;}
.h2_c00186{height:1159.999952pt;}
.h0_c00186{height:1159.999959pt;}
.h1_c00186{height:1160.000000pt;}
.w2_c00186{width:830.999965pt;}
.w0_c00186{width:831.000000pt;}
.w1_c00186{width:831.333333pt;}
.x0_c00186{left:0.000000pt;}
.x3c_c00186{left:78.135686pt;}
.x3d_c00186{left:79.342253pt;}
.x3e_c00186{left:95.315788pt;}
.x3f_c00186{left:96.735260pt;}
.x41_c00186{left:116.169448pt;}
.x14_c00186{left:119.977634pt;}
.x13_c00186{left:121.465137pt;}
.x15_c00186{left:124.463353pt;}
.x16_c00186{left:128.774857pt;}
.x17_c00186{left:133.544468pt;}
.x18_c00186{left:135.991410pt;}
.x19_c00186{left:138.666862pt;}
.x1a_c00186{left:142.086856pt;}
.x1b_c00186{left:145.156780pt;}
.x1c_c00186{left:152.521190pt;}
.x1d_c00186{left:159.871997pt;}
.x1e_c00186{left:167.366655pt;}
.x1f_c00186{left:174.821307pt;}
.x20_c00186{left:178.525632pt;}
.x21_c00186{left:182.577318pt;}
.x22_c00186{left:185.963463pt;}
.x23_c00186{left:188.262839pt;}
.x3_c00186{left:204.798568pt;}
.x2_c00186{left:206.697430pt;}
.x4_c00186{left:209.442955pt;}
.x5_c00186{left:213.744503pt;}
.x6_c00186{left:218.506891pt;}
.x7_c00186{left:220.950947pt;}
.x8_c00186{left:223.623762pt;}
.x9_c00186{left:227.041187pt;}
.xa_c00186{left:229.962704pt;}
.xb_c00186{left:233.906932pt;}
.xc_c00186{left:241.567426pt;}
.xd_c00186{left:252.092435pt;}
.xe_c00186{left:258.703382pt;}
.xf_c00186{left:261.720880pt;}
.x10_c00186{left:266.467148pt;}
.x11_c00186{left:269.480012pt;}
.x12_c00186{left:273.046051pt;}
.x28_c00186{left:290.708831pt;}
.x29_c00186{left:291.790874pt;}
.x2a_c00186{left:293.053997pt;}
.x2b_c00186{left:296.073752pt;}
.x2c_c00186{left:298.940009pt;}
.x2d_c00186{left:304.168673pt;}
.x2e_c00186{left:309.668213pt;}
.x27_c00186{left:312.650435pt;}
.x2f_c00186{left:314.728661pt;}
.x30_c00186{left:317.759772pt;}
.x31_c00186{left:324.788328pt;}
.x32_c00186{left:331.889587pt;}
.x33_c00186{left:337.898220pt;}
.x34_c00186{left:340.582851pt;}
.x35_c00186{left:343.253275pt;}
.x36_c00186{left:346.273697pt;}
.x37_c00186{left:348.599989pt;}
.x38_c00186{left:351.546252pt;}
.x39_c00186{left:356.146534pt;}
.x3a_c00186{left:358.639645pt;}
.x40_c00186{left:402.019318pt;}
.x25_c00186{left:413.241039pt;}
.x1_c00186{left:619.840748pt;}
.x3b_c00186{left:643.537381pt;}
.x26_c00186{left:652.036124pt;}
.x24_c00186{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b74eb325b70f4d2a38d5b03.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.171387;font-style:normal;font-weight:normal;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_c2fb4e56f9332639e6db91aa.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.000000;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:1.006348;font-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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00187{vertical-align:0.000000px;}
.ls0_c00187{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00187{word-spacing:-18.703125px;}
.ws1_c00187{word-spacing:0.000000px;}
._15_c00187{width:1.471140px;}
._a_c00187{width:3.016363px;}
._4_c00187{width:4.404072px;}
._16_c00187{width:5.437477px;}
._10_c00187{width:7.214032px;}
._f_c00187{width:8.905372px;}
._1_c00187{width:10.281213px;}
._6_c00187{width:11.602180px;}
._7_c00187{width:13.970490px;}
._0_c00187{width:15.468751px;}
._b_c00187{width:17.567272px;}
._12_c00187{width:19.757801px;}
._9_c00187{width:20.770270px;}
._5_c00187{width:21.771262px;}
._c_c00187{width:23.315594px;}
._e_c00187{width:24.468748px;}
._3_c00187{width:26.676518px;}
._2_c00187{width:29.179686px;}
._17_c00187{width:31.615011px;}
._8_c00187{width:34.958081px;}
._14_c00187{width:39.951506px;}
._11_c00187{width:47.101545px;}
._13_c00187{width:49.806789px;}
._d_c00187{width:56.496091px;}
.fc1_c00187{color:rgb(67,91,56);}
.fc0_c00187{color:rgb(0,0,0);}
.fs0_c00187{font-size:71.999997px;}
.y0_c00187{bottom:0.000000px;}
.y1_c00187{bottom:0.000008px;}
.y23_c00187{bottom:29.401163px;}
.y29_c00187{bottom:59.904142px;}
.y28_c00187{bottom:88.029140px;}
.y27_c00187{bottom:116.154139px;}
.y26_c00187{bottom:144.279138px;}
.y25_c00187{bottom:172.404137px;}
.y24_c00187{bottom:206.379135px;}
.y1d_c00187{bottom:252.714733px;}
.y1c_c00187{bottom:280.839732px;}
.y1b_c00187{bottom:308.964731px;}
.y1a_c00187{bottom:337.089730px;}
.y19_c00187{bottom:365.214729px;}
.y18_c00187{bottom:393.339728px;}
.y17_c00187{bottom:421.464726px;}
.y16_c00187{bottom:449.589725px;}
.y15_c00187{bottom:477.714724px;}
.y14_c00187{bottom:505.839723px;}
.y13_c00187{bottom:533.964722px;}
.y12_c00187{bottom:564.989376px;}
.y10_c00187{bottom:609.089389px;}
.yf_c00187{bottom:637.214388px;}
.ye_c00187{bottom:665.339387px;}
.yd_c00187{bottom:693.464386px;}
.yc_c00187{bottom:721.589384px;}
.yb_c00187{bottom:749.714383px;}
.ya_c00187{bottom:777.839382px;}
.y9_c00187{bottom:805.964381px;}
.y8_c00187{bottom:834.089380px;}
.y7_c00187{bottom:862.214378px;}
.y6_c00187{bottom:890.339377px;}
.y5_c00187{bottom:918.464376px;}
.y4_c00187{bottom:946.589375px;}
.y3_c00187{bottom:974.714374px;}
.y2_c00187{bottom:1002.839373px;}
.y11_c00187{bottom:1036.814371px;}
.y22_c00187{bottom:1081.046205px;}
.y21_c00187{bottom:1109.171204px;}
.y20_c00187{bottom:1137.296203px;}
.y1f_c00187{bottom:1165.421201px;}
.y1e_c00187{bottom:1199.772371px;}
.h4_c00187{height:55.160154px;}
.h3_c00187{height:67.042966px;}
.h2_c00187{height:1304.999946px;}
.h0_c00187{height:1304.999953px;}
.h1_c00187{height:1305.000000px;}
.w2_c00187{width:934.874961px;}
.w0_c00187{width:934.875000px;}
.w1_c00187{width:935.250000px;}
.x0_c00187{left:0.000000px;}
.x3_c00187{left:84.761744px;}
.x1_c00187{left:87.223950px;}
.x2_c00187{left:89.487450px;}
.x4_c00187{left:452.271732px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls0_c00187{letter-spacing:0.000000pt;}
.ws0_c00187{word-spacing:-16.625000pt;}
.ws1_c00187{word-spacing:0.000000pt;}
._15_c00187{width:1.307680pt;}
._a_c00187{width:2.681212pt;}
._4_c00187{width:3.914730pt;}
._16_c00187{width:4.833313pt;}
._10_c00187{width:6.412473pt;}
._f_c00187{width:7.915886pt;}
._1_c00187{width:9.138856pt;}
._6_c00187{width:10.313049pt;}
._7_c00187{width:12.418213pt;}
._0_c00187{width:13.750001pt;}
._b_c00187{width:15.615353pt;}
._12_c00187{width:17.562490pt;}
._9_c00187{width:18.462463pt;}
._5_c00187{width:19.352233pt;}
._c_c00187{width:20.724973pt;}
._e_c00187{width:21.749998pt;}
._3_c00187{width:23.712461pt;}
._2_c00187{width:25.937499pt;}
._17_c00187{width:28.102232pt;}
._8_c00187{width:31.073850pt;}
._14_c00187{width:35.512449pt;}
._11_c00187{width:41.868040pt;}
._13_c00187{width:44.272701pt;}
._d_c00187{width:50.218748pt;}
.fs0_c00187{font-size:63.999997pt;}
.y0_c00187{bottom:0.000000pt;}
.y1_c00187{bottom:0.000007pt;}
.y23_c00187{bottom:26.134367pt;}
.y29_c00187{bottom:53.248126pt;}
.y28_c00187{bottom:78.248125pt;}
.y27_c00187{bottom:103.248124pt;}
.y26_c00187{bottom:128.248123pt;}
.y25_c00187{bottom:153.248122pt;}
.y24_c00187{bottom:183.448120pt;}
.y1d_c00187{bottom:224.635319pt;}
.y1c_c00187{bottom:249.635318pt;}
.y1b_c00187{bottom:274.635317pt;}
.y1a_c00187{bottom:299.635316pt;}
.y19_c00187{bottom:324.635314pt;}
.y18_c00187{bottom:349.635313pt;}
.y17_c00187{bottom:374.635312pt;}
.y16_c00187{bottom:399.635311pt;}
.y15_c00187{bottom:424.635310pt;}
.y14_c00187{bottom:449.635309pt;}
.y13_c00187{bottom:474.635308pt;}
.y12_c00187{bottom:502.212779pt;}
.y10_c00187{bottom:541.412790pt;}
.yf_c00187{bottom:566.412789pt;}
.ye_c00187{bottom:591.412788pt;}
.yd_c00187{bottom:616.412787pt;}
.yc_c00187{bottom:641.412786pt;}
.yb_c00187{bottom:666.412785pt;}
.ya_c00187{bottom:691.412784pt;}
.y9_c00187{bottom:716.412783pt;}
.y8_c00187{bottom:741.412782pt;}
.y7_c00187{bottom:766.412781pt;}
.y6_c00187{bottom:791.412780pt;}
.y5_c00187{bottom:816.412779pt;}
.y4_c00187{bottom:841.412778pt;}
.y3_c00187{bottom:866.412777pt;}
.y2_c00187{bottom:891.412776pt;}
.y11_c00187{bottom:921.612774pt;}
.y22_c00187{bottom:960.929960pt;}
.y21_c00187{bottom:985.929959pt;}
.y20_c00187{bottom:1010.929958pt;}
.y1f_c00187{bottom:1035.929957pt;}
.y1e_c00187{bottom:1066.464330pt;}
.h4_c00187{height:49.031248pt;}
.h3_c00187{height:59.593748pt;}
.h2_c00187{height:1159.999952pt;}
.h0_c00187{height:1159.999959pt;}
.h1_c00187{height:1160.000000pt;}
.w2_c00187{width:830.999965pt;}
.w0_c00187{width:831.000000pt;}
.w1_c00187{width:831.333333pt;}
.x0_c00187{left:0.000000pt;}
.x3_c00187{left:75.343773pt;}
.x1_c00187{left:77.532400pt;}
.x2_c00187{left:79.544400pt;}
.x4_c00187{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45c6238565e4e4f94e85fc0d.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.000000;font-style:normal;font-weight:normal;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_0a5e0a31c7ac9cd914bc50fe.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00188;src:url('chunks/assets/font_8a884d6e622a1d2d9fe74a38.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00188;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.006348;font-style:normal;font-weight: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_c00188;src:url('chunks/assets/font_1b986e1e1d3c06ab4109ef38.woff2')format("woff");}.ff5_c00188{font-family:ff5_c00188;line-height:1.000000;font-style:normal;font-weight: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_c00188;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff6_c00188{font-family:ff6_c00188;line-height:0.734863;font-style:normal;font-weight: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_c00188;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00188{font-family:ff7_c00188;line-height:0.769531;font-style:normal;font-weight: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_c00188;src:url('chunks/assets/font_d434da321b3f635d76d440fe.woff2')format("woff");}.ff8_c00188{font-family:ff8_c00188;line-height:0.743000;font-style:normal;font-weight: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_c00188;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00188{font-family:ff9_c00188;line-height:0.940000;font-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_c00188{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00188{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00188{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00188{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00188{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00188{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00188{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00188{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00188{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00188{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00188{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00188{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00188{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00188{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00188{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00188{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00188{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00188{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00188{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00188{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00188{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00188{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00188{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00188{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00188{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00188{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00188{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00188{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00188{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00188{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00188{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00188{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00188{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00188{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00188{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00188{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00188{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00188{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00188{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00188{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00188{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00188{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00188{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00188{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00188{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00188{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00188{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00188{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00188{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00188{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00188{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00188{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00188{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00188{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00188{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00188{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00188{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00188{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00188{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00188{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00188{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00188{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00188{vertical-align:0.000000px;}
.ls0_c00188{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00188{word-spacing:-41.689573px;}
.ws2_c00188{word-spacing:-15.171263px;}
.ws1_c00188{word-spacing:-0.089985px;}
.ws0_c00188{word-spacing:-0.055755px;}
.ws5_c00188{word-spacing:0.000000px;}
.ws3_c00188{word-spacing:281.638789px;}
._2_c00188{width:7.157797px;}
._1_c00188{width:9.331444px;}
._0_c00188{width:22.763670px;}
.fc4_c00188{color:transparent;}
.fc3_c00188{color:rgb(9,71,81);}
.fc2_c00188{color:rgb(67,91,56);}
.fc1_c00188{color:rgb(0,0,0);}
.fc0_c00188{color:rgb(255,255,255);}
.fs5_c00188{font-size:39.757786px;}
.fse_c00188{font-size:41.999830px;}
.fs4_c00188{font-size:42.000118px;}
.fsb_c00188{font-size:47.368230px;}
.fs8_c00188{font-size:47.368231px;}
.fsc_c00188{font-size:47.368232px;}
.fs9_c00188{font-size:47.368233px;}
.fsa_c00188{font-size:47.368235px;}
.fs7_c00188{font-size:51.661596px;}
.fs0_c00188{font-size:55.754999px;}
.fsf_c00188{font-size:59.984997px;}
.fs1_c00188{font-size:71.999997px;}
.fs2_c00188{font-size:74.424240px;}
.fsd_c00188{font-size:77.011488px;}
.fs3_c00188{font-size:89.985250px;}
.fs6_c00188{font-size:95.984996px;}
.y0_c00188{bottom:0.000000px;}
.y1_c00188{bottom:0.000008px;}
.y52_c00188{bottom:29.401163px;}
.y6_c00188{bottom:185.995180px;}
.y5_c00188{bottom:216.370179px;}
.y4_c00188{bottom:246.745178px;}
.y3_c00188{bottom:277.120176px;}
.y7_c00188{bottom:318.198975px;}
.yd_c00188{bottom:401.525233px;}
.y39_c00188{bottom:486.888550px;}
.y1b_c00188{bottom:493.328193px;}
.y2f_c00188{bottom:493.343723px;}
.y1a_c00188{bottom:493.853349px;}
.y30_c00188{bottom:493.873061px;}
.y47_c00188{bottom:493.959311px;}
.y2e_c00188{bottom:494.588120px;}
.y48_c00188{bottom:494.792564px;}
.y46_c00188{bottom:494.812830px;}
.y19_c00188{bottom:494.919675px;}
.y2d_c00188{bottom:495.839509px;}
.y45_c00188{bottom:495.847693px;}
.y18_c00188{bottom:495.992682px;}
.y31_c00188{bottom:496.289992px;}
.y1c_c00188{bottom:496.353473px;}
.y49_c00188{bottom:496.973807px;}
.y2c_c00188{bottom:497.484380px;}
.y17_c00188{bottom:497.644566px;}
.y44_c00188{bottom:498.050705px;}
.y4a_c00188{bottom:498.365140px;}
.y2b_c00188{bottom:499.172711px;}
.y16_c00188{bottom:499.338107px;}
.y4b_c00188{bottom:500.063439px;}
.y1d_c00188{bottom:500.630691px;}
.y2a_c00188{bottom:501.037949px;}
.y15_c00188{bottom:501.207920px;}
.y32_c00188{bottom:501.390163px;}
.y43_c00188{bottom:501.841887px;}
.y4c_c00188{bottom:502.505484px;}
.y1e_c00188{bottom:503.149881px;}
.y4d_c00188{bottom:504.764625px;}
.y33_c00188{bottom:505.018723px;}
.y29_c00188{bottom:505.692484px;}
.y14_c00188{bottom:505.872210px;}
.y42_c00188{bottom:507.311178px;}
.y4e_c00188{bottom:508.033427px;}
.y1f_c00188{bottom:509.101920px;}
.y34_c00188{bottom:510.652700px;}
.y41_c00188{bottom:511.777589px;}
.y28_c00188{bottom:512.093421px;}
.y13_c00188{bottom:512.281650px;}
.y20_c00188{bottom:513.850725px;}
.y4f_c00188{bottom:516.430791px;}
.y35_c00188{bottom:517.310242px;}
.y40_c00188{bottom:518.201920px;}
.y27_c00188{bottom:519.400744px;}
.y12_c00188{bottom:519.491089px;}
.y3f_c00188{bottom:522.772118px;}
.y11_c00188{bottom:522.949612px;}
.y50_c00188{bottom:524.479585px;}
.y21_c00188{bottom:525.634963px;}
.y26_c00188{bottom:526.562252px;}
.y10_c00188{bottom:528.960111px;}
.y36_c00188{bottom:529.273374px;}
.y3e_c00188{bottom:530.544173px;}
.y25_c00188{bottom:531.331371px;}
.y38_c00188{bottom:533.268367px;}
.y3c_c00188{bottom:533.962015px;}
.y51_c00188{bottom:534.281587px;}
.y3d_c00188{bottom:534.438127px;}
.yf_c00188{bottom:536.219342px;}
.y24_c00188{bottom:537.504234px;}
.y22_c00188{bottom:537.874949px;}
.y37_c00188{bottom:538.238862px;}
.y3a_c00188{bottom:539.974832px;}
.y23_c00188{bottom:544.567170px;}
.ye_c00188{bottom:545.754118px;}
.y3b_c00188{bottom:577.437330px;}
.y2_c00188{bottom:639.092421px;}
.y53_c00188{bottom:1021.439841px;}
.yb_c00188{bottom:1128.788391px;}
.y9_c00188{bottom:1133.738410px;}
.y8_c00188{bottom:1147.738449px;}
.yc_c00188{bottom:1153.262414px;}
.ya_c00188{bottom:1171.082693px;}
.h10_c00188{height:35.988753px;}
.h11_c00188{height:35.988755px;}
.h12_c00188{height:35.988756px;}
.h8_c00188{height:37.020556px;}
.ha_c00188{height:37.459702px;}
.h14_c00188{height:39.108240px;}
.h7_c00188{height:39.108509px;}
.he_c00188{height:44.107038px;}
.hb_c00188{height:44.107039px;}
.hf_c00188{height:44.107040px;}
.hc_c00188{height:44.107042px;}
.hd_c00188{height:44.107043px;}
.h15_c00188{height:45.588598px;}
.h3_c00188{height:51.916398px;}
.h13_c00188{height:56.295398px;}
.h5_c00188{height:57.017399px;}
.h4_c00188{height:67.042966px;}
.h6_c00188{height:68.367700px;}
.h9_c00188{height:89.376654px;}
.h2_c00188{height:1304.999946px;}
.h0_c00188{height:1304.999953px;}
.h1_c00188{height:1305.000000px;}
.w2_c00188{width:934.874961px;}
.w0_c00188{width:934.875000px;}
.w1_c00188{width:935.250000px;}
.x0_c00188{left:0.000000px;}
.x2_c00188{left:89.487450px;}
.x3_c00188{left:90.844844px;}
.x4_c00188{left:107.230262px;}
.x5_c00188{left:108.827167px;}
.x42_c00188{left:130.690629px;}
.x19_c00188{left:134.974838px;}
.x18_c00188{left:136.648279px;}
.x1a_c00188{left:140.021272px;}
.x1b_c00188{left:144.871714px;}
.x1c_c00188{left:150.237526px;}
.x1d_c00188{left:152.990336px;}
.x1e_c00188{left:156.000220px;}
.x1f_c00188{left:159.847713px;}
.x29_c00188{left:161.443962px;}
.x20_c00188{left:163.301377px;}
.x21_c00188{left:171.586339px;}
.x22_c00188{left:179.855997px;}
.x23_c00188{left:188.287487px;}
.x24_c00188{left:196.673970px;}
.x25_c00188{left:200.841336px;}
.x26_c00188{left:205.399483px;}
.x27_c00188{left:209.208896px;}
.x28_c00188{left:211.795693px;}
.x9_c00188{left:230.398389px;}
.x8_c00188{left:232.534609px;}
.xa_c00188{left:235.623324px;}
.xb_c00188{left:240.462566px;}
.xc_c00188{left:245.820252px;}
.xd_c00188{left:248.569815px;}
.xe_c00188{left:251.576732px;}
.xf_c00188{left:255.421336px;}
.x2d_c00188{left:256.622047px;}
.x10_c00188{left:258.708042px;}
.x11_c00188{left:263.145298px;}
.x12_c00188{left:271.763354px;}
.x13_c00188{left:283.603990px;}
.x14_c00188{left:291.041304px;}
.x6_c00188{left:295.177092px;}
.x15_c00188{left:299.775542px;}
.x16_c00188{left:303.165014px;}
.x17_c00188{left:307.176807px;}
.x2e_c00188{left:327.047435px;}
.x2f_c00188{left:328.264734px;}
.x30_c00188{left:329.685747px;}
.x31_c00188{left:333.082971px;}
.x32_c00188{left:336.307511px;}
.x33_c00188{left:342.189757px;}
.x34_c00188{left:348.376740px;}
.x35_c00188{left:354.069743px;}
.x36_c00188{left:357.479743px;}
.x37_c00188{left:365.386869px;}
.x38_c00188{left:373.375785px;}
.x39_c00188{left:380.135498px;}
.x3a_c00188{left:383.155707px;}
.x3b_c00188{left:386.159935px;}
.x3c_c00188{left:389.557910px;}
.x3d_c00188{left:392.174988px;}
.x3e_c00188{left:395.489533px;}
.x3f_c00188{left:400.664851px;}
.x40_c00188{left:403.469600px;}
.x41_c00188{left:452.271732px;}
.x2b_c00188{left:464.896169px;}
.x1_c00188{left:664.443440px;}
.x7_c00188{left:697.320842px;}
.x2c_c00188{left:733.540639px;}
.x2a_c00188{left:757.088990px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls0_c00188{letter-spacing:0.000000pt;}
.ws4_c00188{word-spacing:-37.057398pt;}
.ws2_c00188{word-spacing:-13.485567pt;}
.ws1_c00188{word-spacing:-0.079987pt;}
.ws0_c00188{word-spacing:-0.049560pt;}
.ws5_c00188{word-spacing:0.000000pt;}
.ws3_c00188{word-spacing:250.345590pt;}
._2_c00188{width:6.362487pt;}
._1_c00188{width:8.294617pt;}
._0_c00188{width:20.234373pt;}
.fs5_c00188{font-size:35.340254pt;}
.fse_c00188{font-size:37.333182pt;}
.fs4_c00188{font-size:37.333438pt;}
.fsb_c00188{font-size:42.105093pt;}
.fs8_c00188{font-size:42.105094pt;}
.fsc_c00188{font-size:42.105095pt;}
.fs9_c00188{font-size:42.105096pt;}
.fsa_c00188{font-size:42.105098pt;}
.fs7_c00188{font-size:45.921418pt;}
.fs0_c00188{font-size:49.559999pt;}
.fsf_c00188{font-size:53.319997pt;}
.fs1_c00188{font-size:63.999997pt;}
.fs2_c00188{font-size:66.154880pt;}
.fsd_c00188{font-size:68.454656pt;}
.fs3_c00188{font-size:79.986889pt;}
.fs6_c00188{font-size:85.319996pt;}
.y0_c00188{bottom:0.000000pt;}
.y1_c00188{bottom:0.000007pt;}
.y52_c00188{bottom:26.134367pt;}
.y6_c00188{bottom:165.329049pt;}
.y5_c00188{bottom:192.329048pt;}
.y4_c00188{bottom:219.329047pt;}
.y3_c00188{bottom:246.329046pt;}
.y7_c00188{bottom:282.843533pt;}
.yd_c00188{bottom:356.911319pt;}
.y39_c00188{bottom:432.789822pt;}
.y1b_c00188{bottom:438.513950pt;}
.y2f_c00188{bottom:438.527754pt;}
.y1a_c00188{bottom:438.980754pt;}
.y30_c00188{bottom:438.998276pt;}
.y47_c00188{bottom:439.074943pt;}
.y2e_c00188{bottom:439.633885pt;}
.y48_c00188{bottom:439.815613pt;}
.y46_c00188{bottom:439.833627pt;}
.y19_c00188{bottom:439.928600pt;}
.y2d_c00188{bottom:440.746230pt;}
.y45_c00188{bottom:440.753505pt;}
.y18_c00188{bottom:440.882384pt;}
.y31_c00188{bottom:441.146660pt;}
.y1c_c00188{bottom:441.203087pt;}
.y49_c00188{bottom:441.754495pt;}
.y2c_c00188{bottom:442.208338pt;}
.y17_c00188{bottom:442.350726pt;}
.y44_c00188{bottom:442.711737pt;}
.y4a_c00188{bottom:442.991236pt;}
.y2b_c00188{bottom:443.709077pt;}
.y16_c00188{bottom:443.856095pt;}
.y4b_c00188{bottom:444.500834pt;}
.y1d_c00188{bottom:445.005059pt;}
.y2a_c00188{bottom:445.367066pt;}
.y15_c00188{bottom:445.518151pt;}
.y32_c00188{bottom:445.680145pt;}
.y43_c00188{bottom:446.081677pt;}
.y4c_c00188{bottom:446.671541pt;}
.y1e_c00188{bottom:447.244339pt;}
.y4d_c00188{bottom:448.679667pt;}
.y33_c00188{bottom:448.905531pt;}
.y29_c00188{bottom:449.504430pt;}
.y14_c00188{bottom:449.664187pt;}
.y42_c00188{bottom:450.943270pt;}
.y4e_c00188{bottom:451.585269pt;}
.y1f_c00188{bottom:452.535040pt;}
.y34_c00188{bottom:453.913511pt;}
.y41_c00188{bottom:454.913413pt;}
.y28_c00188{bottom:455.194152pt;}
.y13_c00188{bottom:455.361467pt;}
.y20_c00188{bottom:456.756200pt;}
.y4f_c00188{bottom:459.049592pt;}
.y35_c00188{bottom:459.831327pt;}
.y40_c00188{bottom:460.623928pt;}
.y27_c00188{bottom:461.689550pt;}
.y12_c00188{bottom:461.769857pt;}
.y3f_c00188{bottom:464.686327pt;}
.y11_c00188{bottom:464.844100pt;}
.y50_c00188{bottom:466.204075pt;}
.y21_c00188{bottom:467.231078pt;}
.y26_c00188{bottom:468.055335pt;}
.y10_c00188{bottom:470.186765pt;}
.y36_c00188{bottom:470.465221pt;}
.y3e_c00188{bottom:471.594820pt;}
.y25_c00188{bottom:472.294552pt;}
.y38_c00188{bottom:474.016326pt;}
.y3c_c00188{bottom:474.632902pt;}
.y51_c00188{bottom:474.916966pt;}
.y3d_c00188{bottom:475.056113pt;}
.yf_c00188{bottom:476.639415pt;}
.y24_c00188{bottom:477.781541pt;}
.y22_c00188{bottom:478.111066pt;}
.y37_c00188{bottom:478.434544pt;}
.y3a_c00188{bottom:479.977628pt;}
.y23_c00188{bottom:484.059707pt;}
.ye_c00188{bottom:485.114772pt;}
.y3b_c00188{bottom:513.277627pt;}
.y2_c00188{bottom:568.082152pt;}
.y53_c00188{bottom:907.946525pt;}
.yb_c00188{bottom:1003.367459pt;}
.y9_c00188{bottom:1007.767476pt;}
.y8_c00188{bottom:1020.211955pt;}
.yc_c00188{bottom:1025.122146pt;}
.ya_c00188{bottom:1040.962393pt;}
.h10_c00188{height:31.990003pt;}
.h11_c00188{height:31.990004pt;}
.h12_c00188{height:31.990006pt;}
.h8_c00188{height:32.907161pt;}
.ha_c00188{height:33.297513pt;}
.h14_c00188{height:34.762880pt;}
.h7_c00188{height:34.763119pt;}
.he_c00188{height:39.206256pt;}
.hb_c00188{height:39.206257pt;}
.hf_c00188{height:39.206258pt;}
.hc_c00188{height:39.206259pt;}
.hd_c00188{height:39.206261pt;}
.h15_c00188{height:40.523198pt;}
.h3_c00188{height:46.147909pt;}
.h13_c00188{height:50.040354pt;}
.h5_c00188{height:50.682132pt;}
.h4_c00188{height:59.593748pt;}
.h6_c00188{height:60.771289pt;}
.h9_c00188{height:79.445915pt;}
.h2_c00188{height:1159.999952pt;}
.h0_c00188{height:1159.999959pt;}
.h1_c00188{height:1160.000000pt;}
.w2_c00188{width:830.999965pt;}
.w0_c00188{width:831.000000pt;}
.w1_c00188{width:831.333333pt;}
.x0_c00188{left:0.000000pt;}
.x2_c00188{left:79.544400pt;}
.x3_c00188{left:80.750973pt;}
.x4_c00188{left:95.315788pt;}
.x5_c00188{left:96.735260pt;}
.x42_c00188{left:116.169448pt;}
.x19_c00188{left:119.977634pt;}
.x18_c00188{left:121.465137pt;}
.x1a_c00188{left:124.463353pt;}
.x1b_c00188{left:128.774857pt;}
.x1c_c00188{left:133.544468pt;}
.x1d_c00188{left:135.991410pt;}
.x1e_c00188{left:138.666862pt;}
.x1f_c00188{left:142.086856pt;}
.x29_c00188{left:143.505744pt;}
.x20_c00188{left:145.156780pt;}
.x21_c00188{left:152.521190pt;}
.x22_c00188{left:159.871997pt;}
.x23_c00188{left:167.366655pt;}
.x24_c00188{left:174.821307pt;}
.x25_c00188{left:178.525632pt;}
.x26_c00188{left:182.577318pt;}
.x27_c00188{left:185.963463pt;}
.x28_c00188{left:188.262839pt;}
.x9_c00188{left:204.798568pt;}
.x8_c00188{left:206.697430pt;}
.xa_c00188{left:209.442955pt;}
.xb_c00188{left:213.744503pt;}
.xc_c00188{left:218.506891pt;}
.xd_c00188{left:220.950947pt;}
.xe_c00188{left:223.623762pt;}
.xf_c00188{left:227.041187pt;}
.x2d_c00188{left:228.108486pt;}
.x10_c00188{left:229.962704pt;}
.x11_c00188{left:233.906932pt;}
.x12_c00188{left:241.567426pt;}
.x13_c00188{left:252.092435pt;}
.x14_c00188{left:258.703382pt;}
.x6_c00188{left:262.379637pt;}
.x15_c00188{left:266.467148pt;}
.x16_c00188{left:269.480012pt;}
.x17_c00188{left:273.046051pt;}
.x2e_c00188{left:290.708831pt;}
.x2f_c00188{left:291.790874pt;}
.x30_c00188{left:293.053997pt;}
.x31_c00188{left:296.073752pt;}
.x32_c00188{left:298.940009pt;}
.x33_c00188{left:304.168673pt;}
.x34_c00188{left:309.668213pt;}
.x35_c00188{left:314.728661pt;}
.x36_c00188{left:317.759772pt;}
.x37_c00188{left:324.788328pt;}
.x38_c00188{left:331.889587pt;}
.x39_c00188{left:337.898220pt;}
.x3a_c00188{left:340.582851pt;}
.x3b_c00188{left:343.253275pt;}
.x3c_c00188{left:346.273697pt;}
.x3d_c00188{left:348.599989pt;}
.x3e_c00188{left:351.546252pt;}
.x3f_c00188{left:356.146534pt;}
.x40_c00188{left:358.639645pt;}
.x41_c00188{left:402.019318pt;}
.x2b_c00188{left:413.241039pt;}
.x1_c00188{left:590.616391pt;}
.x7_c00188{left:619.840748pt;}
.x2c_c00188{left:652.036124pt;}
.x2a_c00188{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60195966c254df06a063059c.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.000000;font-style:normal;font-weight:normal;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_d52f43ed44c6cc81b7d8cfc8.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00189;src:url('chunks/assets/font_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.006348;font-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_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);}
.v0_c00189{vertical-align:0.000000px;}
.ls0_c00189{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00189{word-spacing:-19.320776px;}
.ws1_c00189{word-spacing:0.000000px;}
._1_c00189{width:2.027322px;}
._3_c00189{width:3.462891px;}
._6_c00189{width:4.754194px;}
._a_c00189{width:5.765624px;}
._b_c00189{width:7.101563px;}
._d_c00189{width:9.256945px;}
._4_c00189{width:10.325086px;}
._c_c00189{width:11.428395px;}
._2_c00189{width:13.366379px;}
._0_c00189{width:14.660155px;}
._7_c00189{width:20.639480px;}
._5_c00189{width:21.707334px;}
._e_c00189{width:24.173422px;}
._8_c00189{width:36.364331px;}
._f_c00189{width:40.726520px;}
._9_c00189{width:44.617121px;}
.fc1_c00189{color:rgb(67,91,56);}
.fc0_c00189{color:rgb(0,0,0);}
.fs0_c00189{font-size:71.999997px;}
.fs1_c00189{font-size:74.377724px;}
.y0_c00189{bottom:0.000000px;}
.y1_c00189{bottom:0.000008px;}
.y22_c00189{bottom:29.401163px;}
.y1d_c00189{bottom:127.899139px;}
.y1c_c00189{bottom:158.274137px;}
.y1b_c00189{bottom:188.649136px;}
.y1a_c00189{bottom:219.024135px;}
.y19_c00189{bottom:249.399134px;}
.y18_c00189{bottom:279.774132px;}
.y17_c00189{bottom:310.149131px;}
.y16_c00189{bottom:340.524130px;}
.y15_c00189{bottom:370.899129px;}
.y14_c00189{bottom:409.599127px;}
.y13_c00189{bottom:476.424124px;}
.y12_c00189{bottom:509.445699px;}
.y10_c00189{bottom:576.271384px;}
.yf_c00189{bottom:606.646382px;}
.ye_c00189{bottom:637.021381px;}
.yd_c00189{bottom:667.396380px;}
.yc_c00189{bottom:697.771379px;}
.yb_c00189{bottom:728.146377px;}
.ya_c00189{bottom:758.521376px;}
.y9_c00189{bottom:788.896375px;}
.y8_c00189{bottom:819.271373px;}
.y7_c00189{bottom:849.646372px;}
.y6_c00189{bottom:880.021371px;}
.y5_c00189{bottom:910.396370px;}
.y4_c00189{bottom:940.771368px;}
.y3_c00189{bottom:971.146367px;}
.y2_c00189{bottom:1001.521366px;}
.y11_c00189{bottom:1040.590505px;}
.y20_c00189{bottom:1107.437296px;}
.y1f_c00189{bottom:1137.812295px;}
.y1e_c00189{bottom:1168.187294px;}
.y21_c00189{bottom:1199.188901px;}
.h4_c00189{height:55.160154px;}
.h5_c00189{height:56.981762px;}
.h3_c00189{height:67.042966px;}
.h2_c00189{height:1304.999946px;}
.h0_c00189{height:1304.999953px;}
.h1_c00189{height:1305.000000px;}
.w2_c00189{width:934.874961px;}
.w0_c00189{width:934.875000px;}
.w1_c00189{width:935.250000px;}
.x0_c00189{left:0.000000px;}
.x2_c00189{left:88.130063px;}
.x1_c00189{left:89.487450px;}
.x3_c00189{left:452.271732px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws0_c00189{word-spacing:-17.174023pt;}
.ws1_c00189{word-spacing:0.000000pt;}
._1_c00189{width:1.802064pt;}
._3_c00189{width:3.078125pt;}
._6_c00189{width:4.225951pt;}
._a_c00189{width:5.124999pt;}
._b_c00189{width:6.312500pt;}
._d_c00189{width:8.228396pt;}
._4_c00189{width:9.177854pt;}
._c_c00189{width:10.158573pt;}
._2_c00189{width:11.881226pt;}
._0_c00189{width:13.031249pt;}
._7_c00189{width:18.346204pt;}
._5_c00189{width:19.295408pt;}
._e_c00189{width:21.487486pt;}
._8_c00189{width:32.323849pt;}
._f_c00189{width:36.201351pt;}
._9_c00189{width:39.659663pt;}
.fs0_c00189{font-size:63.999997pt;}
.fs1_c00189{font-size:66.113533pt;}
.y0_c00189{bottom:0.000000pt;}
.y1_c00189{bottom:0.000007pt;}
.y22_c00189{bottom:26.134367pt;}
.y1d_c00189{bottom:113.688123pt;}
.y1c_c00189{bottom:140.688122pt;}
.y1b_c00189{bottom:167.688121pt;}
.y1a_c00189{bottom:194.688120pt;}
.y19_c00189{bottom:221.688119pt;}
.y18_c00189{bottom:248.688118pt;}
.y17_c00189{bottom:275.688117pt;}
.y16_c00189{bottom:302.688115pt;}
.y15_c00189{bottom:329.688114pt;}
.y14_c00189{bottom:364.088113pt;}
.y13_c00189{bottom:423.488110pt;}
.y12_c00189{bottom:452.840621pt;}
.y10_c00189{bottom:512.241230pt;}
.yf_c00189{bottom:539.241229pt;}
.ye_c00189{bottom:566.241228pt;}
.yd_c00189{bottom:593.241226pt;}
.yc_c00189{bottom:620.241225pt;}
.yb_c00189{bottom:647.241224pt;}
.ya_c00189{bottom:674.241223pt;}
.y9_c00189{bottom:701.241222pt;}
.y8_c00189{bottom:728.241221pt;}
.y7_c00189{bottom:755.241220pt;}
.y6_c00189{bottom:782.241219pt;}
.y5_c00189{bottom:809.241217pt;}
.y4_c00189{bottom:836.241216pt;}
.y3_c00189{bottom:863.241215pt;}
.y2_c00189{bottom:890.241214pt;}
.y11_c00189{bottom:924.969337pt;}
.y20_c00189{bottom:984.388708pt;}
.y1f_c00189{bottom:1011.388707pt;}
.y1e_c00189{bottom:1038.388706pt;}
.y21_c00189{bottom:1065.945690pt;}
.h4_c00189{height:49.031248pt;}
.h5_c00189{height:50.650455pt;}
.h3_c00189{height:59.593748pt;}
.h2_c00189{height:1159.999952pt;}
.h0_c00189{height:1159.999959pt;}
.h1_c00189{height:1160.000000pt;}
.w2_c00189{width:830.999965pt;}
.w0_c00189{width:831.000000pt;}
.w1_c00189{width:831.333333pt;}
.x0_c00189{left:0.000000pt;}
.x2_c00189{left:78.337834pt;}
.x1_c00189{left:79.544400pt;}
.x3_c00189{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.000000;font-style:normal;font-weight:normal;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_8bcc623e3e789f1777241f4d.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.171387;font-style:normal;font-weight:normal;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_bfcecd403280c97a62254a08.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:1.006348;font-style:normal;font-weight: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_c00190;src:url('chunks/assets/font_76598e3eb889ba18cf3badaa.woff2')format("woff");}.ff5_c00190{font-family:ff5_c00190;line-height:0.769531;font-style:normal;font-weight: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_c00190;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff6_c00190{font-family:ff6_c00190;line-height:0.734863;font-style:normal;font-weight: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_c00190;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00190{font-family:ff7_c00190;line-height:0.769531;font-style:normal;font-weight: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_c00190;src:url('chunks/assets/font_248cc758d20b04c8c43c7e5e.woff2')format("woff");}.ff8_c00190{font-family:ff8_c00190;line-height:0.743000;font-style:normal;font-weight: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_c00190;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00190{font-family:ff9_c00190;line-height:0.940000;font-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_c00190{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00190{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00190{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00190{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00190{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00190{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00190{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00190{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00190{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00190{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00190{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00190{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00190{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00190{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00190{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00190{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00190{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00190{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00190{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00190{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00190{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00190{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00190{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00190{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00190{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00190{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00190{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00190{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00190{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00190{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00190{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00190{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00190{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00190{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00190{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00190{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00190{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00190{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00190{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00190{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00190{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00190{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00190{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00190{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00190{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00190{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00190{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00190{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00190{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00190{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00190{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00190{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00190{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00190{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00190{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00190{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00190{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00190{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00190{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00190{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00190{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00190{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00190{vertical-align:0.000000px;}
.v1_c00190{vertical-align:8.987328px;}
.ls0_c00190{letter-spacing:0.000000px;}
.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:-41.689573px;}
.ws2_c00190{word-spacing:-15.171263px;}
.ws1_c00190{word-spacing:-0.089985px;}
.ws0_c00190{word-spacing:-0.055755px;}
.ws5_c00190{word-spacing:0.000000px;}
.ws3_c00190{word-spacing:281.638789px;}
._3_c00190{width:6.334510px;}
._1_c00190{width:10.591572px;}
._0_c00190{width:15.058546px;}
._2_c00190{width:16.400390px;}
.fc4_c00190{color:transparent;}
.fc3_c00190{color:rgb(9,71,81);}
.fc2_c00190{color:rgb(67,91,56);}
.fc1_c00190{color:rgb(0,0,0);}
.fc0_c00190{color:rgb(255,255,255);}
.fs5_c00190{font-size:39.757786px;}
.fse_c00190{font-size:41.999830px;}
.fs4_c00190{font-size:42.000118px;}
.fsb_c00190{font-size:47.368230px;}
.fs8_c00190{font-size:47.368231px;}
.fsc_c00190{font-size:47.368232px;}
.fs9_c00190{font-size:47.368233px;}
.fsa_c00190{font-size:47.368235px;}
.fs7_c00190{font-size:51.661596px;}
.fs0_c00190{font-size:55.754999px;}
.fsf_c00190{font-size:59.984997px;}
.fs1_c00190{font-size:71.999997px;}
.fs2_c00190{font-size:74.424240px;}
.fsd_c00190{font-size:77.011488px;}
.fs3_c00190{font-size:89.985250px;}
.fs6_c00190{font-size:95.984996px;}
.y0_c00190{bottom:0.000000px;}
.y1_c00190{bottom:0.000008px;}
.y53_c00190{bottom:29.401163px;}
.y7_c00190{bottom:175.139273px;}
.y6_c00190{bottom:205.514271px;}
.y5_c00190{bottom:235.889270px;}
.y4_c00190{bottom:266.264269px;}
.y3_c00190{bottom:296.639268px;}
.y8_c00190{bottom:337.221950px;}
.ye_c00190{bottom:401.525233px;}
.y3a_c00190{bottom:486.888370px;}
.y1c_c00190{bottom:493.328373px;}
.y30_c00190{bottom:493.343471px;}
.y1b_c00190{bottom:493.853637px;}
.y31_c00190{bottom:493.873313px;}
.y48_c00190{bottom:493.959419px;}
.y2f_c00190{bottom:494.588192px;}
.y49_c00190{bottom:494.792744px;}
.y47_c00190{bottom:494.812830px;}
.y1a_c00190{bottom:494.919783px;}
.y2e_c00190{bottom:495.839509px;}
.y46_c00190{bottom:495.847621px;}
.y19_c00190{bottom:495.993006px;}
.y32_c00190{bottom:496.289920px;}
.y1d_c00190{bottom:496.353473px;}
.y4a_c00190{bottom:496.973987px;}
.y2d_c00190{bottom:497.484380px;}
.y18_c00190{bottom:497.644566px;}
.y45_c00190{bottom:498.050345px;}
.y4b_c00190{bottom:498.364888px;}
.y2c_c00190{bottom:499.172603px;}
.y17_c00190{bottom:499.338107px;}
.y4c_c00190{bottom:500.063187px;}
.y1e_c00190{bottom:500.630691px;}
.y2b_c00190{bottom:501.037877px;}
.y16_c00190{bottom:501.208172px;}
.y33_c00190{bottom:501.390703px;}
.y44_c00190{bottom:501.842067px;}
.y4d_c00190{bottom:502.505484px;}
.y1f_c00190{bottom:503.149449px;}
.y4e_c00190{bottom:504.764445px;}
.y34_c00190{bottom:505.018903px;}
.y2a_c00190{bottom:505.692196px;}
.y15_c00190{bottom:505.871886px;}
.y43_c00190{bottom:507.310818px;}
.y4f_c00190{bottom:508.033427px;}
.y20_c00190{bottom:509.101992px;}
.y35_c00190{bottom:510.652700px;}
.y42_c00190{bottom:511.777409px;}
.y29_c00190{bottom:512.093601px;}
.y14_c00190{bottom:512.281758px;}
.y21_c00190{bottom:513.850725px;}
.y50_c00190{bottom:516.430683px;}
.y36_c00190{bottom:517.310422px;}
.y41_c00190{bottom:518.202172px;}
.y28_c00190{bottom:519.400744px;}
.y13_c00190{bottom:519.490837px;}
.y40_c00190{bottom:522.772046px;}
.y12_c00190{bottom:522.949612px;}
.y51_c00190{bottom:524.479585px;}
.y22_c00190{bottom:525.634639px;}
.y27_c00190{bottom:526.562360px;}
.y11_c00190{bottom:528.959931px;}
.y37_c00190{bottom:529.273482px;}
.y3f_c00190{bottom:530.544173px;}
.y26_c00190{bottom:531.331551px;}
.y3d_c00190{bottom:531.715003px;}
.y39_c00190{bottom:533.268115px;}
.y52_c00190{bottom:533.961835px;}
.y3e_c00190{bottom:534.437983px;}
.y10_c00190{bottom:536.219342px;}
.y25_c00190{bottom:537.503874px;}
.y23_c00190{bottom:537.875201px;}
.y38_c00190{bottom:538.239006px;}
.y3b_c00190{bottom:539.974724px;}
.y24_c00190{bottom:544.567278px;}
.yf_c00190{bottom:545.754118px;}
.y3c_c00190{bottom:577.437042px;}
.y2_c00190{bottom:639.092601px;}
.y54_c00190{bottom:1021.439863px;}
.yc_c00190{bottom:1128.788247px;}
.ya_c00190{bottom:1133.738464px;}
.y9_c00190{bottom:1147.738503px;}
.yd_c00190{bottom:1153.262281px;}
.yb_c00190{bottom:1171.082779px;}
.h10_c00190{height:35.988753px;}
.h11_c00190{height:35.988755px;}
.h12_c00190{height:35.988756px;}
.h8_c00190{height:37.020556px;}
.ha_c00190{height:37.459702px;}
.h14_c00190{height:39.108240px;}
.h7_c00190{height:39.108509px;}
.he_c00190{height:44.107038px;}
.hb_c00190{height:44.107039px;}
.hf_c00190{height:44.107040px;}
.hc_c00190{height:44.107042px;}
.hd_c00190{height:44.107043px;}
.h16_c00190{height:45.588598px;}
.h3_c00190{height:51.916398px;}
.h13_c00190{height:56.295398px;}
.h5_c00190{height:57.017399px;}
.h15_c00190{height:65.282725px;}
.h4_c00190{height:67.042966px;}
.h6_c00190{height:68.367700px;}
.h9_c00190{height:89.376654px;}
.h2_c00190{height:1304.999946px;}
.h0_c00190{height:1304.999953px;}
.h1_c00190{height:1305.000000px;}
.w2_c00190{width:934.874961px;}
.w0_c00190{width:934.875000px;}
.w1_c00190{width:935.250000px;}
.x0_c00190{left:0.000000px;}
.x2_c00190{left:89.487450px;}
.x3_c00190{left:90.844844px;}
.x4_c00190{left:107.230262px;}
.x5_c00190{left:108.827167px;}
.x41_c00190{left:130.690629px;}
.x19_c00190{left:134.975717px;}
.x18_c00190{left:136.649157px;}
.x1a_c00190{left:140.022151px;}
.x1b_c00190{left:144.872582px;}
.x1c_c00190{left:150.238394px;}
.x1d_c00190{left:152.991215px;}
.x1e_c00190{left:156.001098px;}
.x1f_c00190{left:159.848580px;}
.x20_c00190{left:163.302255px;}
.x21_c00190{left:171.587218px;}
.x22_c00190{left:179.856864px;}
.x23_c00190{left:188.288365px;}
.x24_c00190{left:196.674849px;}
.x25_c00190{left:200.842215px;}
.x26_c00190{left:205.400361px;}
.x27_c00190{left:209.209774px;}
.x28_c00190{left:211.796572px;}
.x9_c00190{left:230.398389px;}
.x8_c00190{left:232.534609px;}
.xa_c00190{left:235.623324px;}
.xb_c00190{left:240.462566px;}
.xc_c00190{left:245.820252px;}
.xd_c00190{left:248.569815px;}
.xe_c00190{left:251.576732px;}
.xf_c00190{left:255.421336px;}
.x2c_c00190{left:256.622047px;}
.x10_c00190{left:258.708042px;}
.x11_c00190{left:263.145298px;}
.x12_c00190{left:271.763354px;}
.x13_c00190{left:283.603990px;}
.x14_c00190{left:291.041304px;}
.x6_c00190{left:295.177092px;}
.x15_c00190{left:299.775542px;}
.x16_c00190{left:303.165014px;}
.x17_c00190{left:307.176807px;}
.x2d_c00190{left:327.047435px;}
.x2e_c00190{left:328.264734px;}
.x2f_c00190{left:329.685747px;}
.x30_c00190{left:333.082971px;}
.x31_c00190{left:336.307511px;}
.x32_c00190{left:342.189757px;}
.x33_c00190{left:348.376740px;}
.x34_c00190{left:354.069743px;}
.x35_c00190{left:357.479743px;}
.x36_c00190{left:365.386869px;}
.x37_c00190{left:373.375785px;}
.x38_c00190{left:380.135498px;}
.x39_c00190{left:383.155707px;}
.x3a_c00190{left:386.159935px;}
.x3b_c00190{left:389.557910px;}
.x3c_c00190{left:392.174988px;}
.x3d_c00190{left:395.489533px;}
.x3e_c00190{left:400.664851px;}
.x3f_c00190{left:403.469600px;}
.x40_c00190{left:452.271732px;}
.x2a_c00190{left:464.896169px;}
.x1_c00190{left:664.443440px;}
.x7_c00190{left:697.320842px;}
.x2b_c00190{left:733.540639px;}
.x29_c00190{left:757.088990px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.v1_c00190{vertical-align:7.988736pt;}
.ls0_c00190{letter-spacing:0.000000pt;}
.ws4_c00190{word-spacing:-37.057398pt;}
.ws2_c00190{word-spacing:-13.485567pt;}
.ws1_c00190{word-spacing:-0.079987pt;}
.ws0_c00190{word-spacing:-0.049560pt;}
.ws5_c00190{word-spacing:0.000000pt;}
.ws3_c00190{word-spacing:250.345590pt;}
._3_c00190{width:5.630675pt;}
._1_c00190{width:9.414731pt;}
._0_c00190{width:13.385375pt;}
._2_c00190{width:14.578125pt;}
.fs5_c00190{font-size:35.340254pt;}
.fse_c00190{font-size:37.333182pt;}
.fs4_c00190{font-size:37.333438pt;}
.fsb_c00190{font-size:42.105093pt;}
.fs8_c00190{font-size:42.105094pt;}
.fsc_c00190{font-size:42.105095pt;}
.fs9_c00190{font-size:42.105096pt;}
.fsa_c00190{font-size:42.105098pt;}
.fs7_c00190{font-size:45.921418pt;}
.fs0_c00190{font-size:49.559999pt;}
.fsf_c00190{font-size:53.319997pt;}
.fs1_c00190{font-size:63.999997pt;}
.fs2_c00190{font-size:66.154880pt;}
.fsd_c00190{font-size:68.454656pt;}
.fs3_c00190{font-size:79.986889pt;}
.fs6_c00190{font-size:85.319996pt;}
.y0_c00190{bottom:0.000000pt;}
.y1_c00190{bottom:0.000007pt;}
.y53_c00190{bottom:26.134367pt;}
.y7_c00190{bottom:155.679354pt;}
.y6_c00190{bottom:182.679352pt;}
.y5_c00190{bottom:209.679351pt;}
.y4_c00190{bottom:236.679350pt;}
.y3_c00190{bottom:263.679349pt;}
.y8_c00190{bottom:299.752845pt;}
.ye_c00190{bottom:356.911319pt;}
.y3a_c00190{bottom:432.789662pt;}
.y1c_c00190{bottom:438.514110pt;}
.y30_c00190{bottom:438.527530pt;}
.y1b_c00190{bottom:438.981010pt;}
.y31_c00190{bottom:438.998500pt;}
.y48_c00190{bottom:439.075039pt;}
.y2f_c00190{bottom:439.633949pt;}
.y49_c00190{bottom:439.815773pt;}
.y47_c00190{bottom:439.833627pt;}
.y1a_c00190{bottom:439.928696pt;}
.y2e_c00190{bottom:440.746230pt;}
.y46_c00190{bottom:440.753441pt;}
.y19_c00190{bottom:440.882672pt;}
.y32_c00190{bottom:441.146596pt;}
.y1d_c00190{bottom:441.203087pt;}
.y4a_c00190{bottom:441.754655pt;}
.y2d_c00190{bottom:442.208338pt;}
.y18_c00190{bottom:442.350726pt;}
.y45_c00190{bottom:442.711417pt;}
.y4b_c00190{bottom:442.991012pt;}
.y2c_c00190{bottom:443.708981pt;}
.y17_c00190{bottom:443.856095pt;}
.y4c_c00190{bottom:444.500610pt;}
.y1e_c00190{bottom:445.005059pt;}
.y2b_c00190{bottom:445.367002pt;}
.y16_c00190{bottom:445.518375pt;}
.y33_c00190{bottom:445.680625pt;}
.y44_c00190{bottom:446.081837pt;}
.y4d_c00190{bottom:446.671541pt;}
.y1f_c00190{bottom:447.243955pt;}
.y4e_c00190{bottom:448.679507pt;}
.y34_c00190{bottom:448.905691pt;}
.y2a_c00190{bottom:449.504174pt;}
.y15_c00190{bottom:449.663899pt;}
.y43_c00190{bottom:450.942950pt;}
.y4f_c00190{bottom:451.585269pt;}
.y20_c00190{bottom:452.535104pt;}
.y35_c00190{bottom:453.913511pt;}
.y42_c00190{bottom:454.913253pt;}
.y29_c00190{bottom:455.194312pt;}
.y14_c00190{bottom:455.361563pt;}
.y21_c00190{bottom:456.756200pt;}
.y50_c00190{bottom:459.049496pt;}
.y36_c00190{bottom:459.831487pt;}
.y41_c00190{bottom:460.624152pt;}
.y28_c00190{bottom:461.689550pt;}
.y13_c00190{bottom:461.769633pt;}
.y40_c00190{bottom:464.686263pt;}
.y12_c00190{bottom:464.844100pt;}
.y51_c00190{bottom:466.204075pt;}
.y22_c00190{bottom:467.230790pt;}
.y27_c00190{bottom:468.055431pt;}
.y11_c00190{bottom:470.186605pt;}
.y37_c00190{bottom:470.465317pt;}
.y3f_c00190{bottom:471.594820pt;}
.y26_c00190{bottom:472.294712pt;}
.y3d_c00190{bottom:472.635558pt;}
.y39_c00190{bottom:474.016102pt;}
.y52_c00190{bottom:474.632742pt;}
.y3e_c00190{bottom:475.055985pt;}
.y10_c00190{bottom:476.639415pt;}
.y25_c00190{bottom:477.781221pt;}
.y23_c00190{bottom:478.111290pt;}
.y38_c00190{bottom:478.434672pt;}
.y3b_c00190{bottom:479.977532pt;}
.y24_c00190{bottom:484.059803pt;}
.yf_c00190{bottom:485.114772pt;}
.y3c_c00190{bottom:513.277371pt;}
.y2_c00190{bottom:568.082312pt;}
.y54_c00190{bottom:907.946545pt;}
.yc_c00190{bottom:1003.367331pt;}
.ya_c00190{bottom:1007.767524pt;}
.y9_c00190{bottom:1020.212003pt;}
.yd_c00190{bottom:1025.122028pt;}
.yb_c00190{bottom:1040.962470pt;}
.h10_c00190{height:31.990003pt;}
.h11_c00190{height:31.990004pt;}
.h12_c00190{height:31.990006pt;}
.h8_c00190{height:32.907161pt;}
.ha_c00190{height:33.297513pt;}
.h14_c00190{height:34.762880pt;}
.h7_c00190{height:34.763119pt;}
.he_c00190{height:39.206256pt;}
.hb_c00190{height:39.206257pt;}
.hf_c00190{height:39.206258pt;}
.hc_c00190{height:39.206259pt;}
.hd_c00190{height:39.206261pt;}
.h16_c00190{height:40.523198pt;}
.h3_c00190{height:46.147909pt;}
.h13_c00190{height:50.040354pt;}
.h5_c00190{height:50.682132pt;}
.h15_c00190{height:58.029089pt;}
.h4_c00190{height:59.593748pt;}
.h6_c00190{height:60.771289pt;}
.h9_c00190{height:79.445915pt;}
.h2_c00190{height:1159.999952pt;}
.h0_c00190{height:1159.999959pt;}
.h1_c00190{height:1160.000000pt;}
.w2_c00190{width:830.999965pt;}
.w0_c00190{width:831.000000pt;}
.w1_c00190{width:831.333333pt;}
.x0_c00190{left:0.000000pt;}
.x2_c00190{left:79.544400pt;}
.x3_c00190{left:80.750973pt;}
.x4_c00190{left:95.315788pt;}
.x5_c00190{left:96.735260pt;}
.x41_c00190{left:116.169448pt;}
.x19_c00190{left:119.978415pt;}
.x18_c00190{left:121.465918pt;}
.x1a_c00190{left:124.464134pt;}
.x1b_c00190{left:128.775628pt;}
.x1c_c00190{left:133.545239pt;}
.x1d_c00190{left:135.992191pt;}
.x1e_c00190{left:138.667643pt;}
.x1f_c00190{left:142.087627pt;}
.x20_c00190{left:145.157560pt;}
.x21_c00190{left:152.521971pt;}
.x22_c00190{left:159.872768pt;}
.x23_c00190{left:167.367436pt;}
.x24_c00190{left:174.822088pt;}
.x25_c00190{left:178.526413pt;}
.x26_c00190{left:182.578099pt;}
.x27_c00190{left:185.964244pt;}
.x28_c00190{left:188.263619pt;}
.x9_c00190{left:204.798568pt;}
.x8_c00190{left:206.697430pt;}
.xa_c00190{left:209.442955pt;}
.xb_c00190{left:213.744503pt;}
.xc_c00190{left:218.506891pt;}
.xd_c00190{left:220.950947pt;}
.xe_c00190{left:223.623762pt;}
.xf_c00190{left:227.041187pt;}
.x2c_c00190{left:228.108486pt;}
.x10_c00190{left:229.962704pt;}
.x11_c00190{left:233.906932pt;}
.x12_c00190{left:241.567426pt;}
.x13_c00190{left:252.092435pt;}
.x14_c00190{left:258.703382pt;}
.x6_c00190{left:262.379637pt;}
.x15_c00190{left:266.467148pt;}
.x16_c00190{left:269.480012pt;}
.x17_c00190{left:273.046051pt;}
.x2d_c00190{left:290.708831pt;}
.x2e_c00190{left:291.790874pt;}
.x2f_c00190{left:293.053997pt;}
.x30_c00190{left:296.073752pt;}
.x31_c00190{left:298.940009pt;}
.x32_c00190{left:304.168673pt;}
.x33_c00190{left:309.668213pt;}
.x34_c00190{left:314.728661pt;}
.x35_c00190{left:317.759772pt;}
.x36_c00190{left:324.788328pt;}
.x37_c00190{left:331.889587pt;}
.x38_c00190{left:337.898220pt;}
.x39_c00190{left:340.582851pt;}
.x3a_c00190{left:343.253275pt;}
.x3b_c00190{left:346.273697pt;}
.x3c_c00190{left:348.599989pt;}
.x3d_c00190{left:351.546252pt;}
.x3e_c00190{left:356.146534pt;}
.x3f_c00190{left:358.639645pt;}
.x40_c00190{left:402.019318pt;}
.x2a_c00190{left:413.241039pt;}
.x1_c00190{left:590.616391pt;}
.x7_c00190{left:619.840748pt;}
.x2b_c00190{left:652.036124pt;}
.x29_c00190{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0be0cdc81bb60d7ee4803b9c.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.171387;font-style:normal;font-weight:normal;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_5984e0338183fa1df7a2f7df.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.000000;font-style:normal;font-weight:normal;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_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.006348;font-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_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);}
.v0_c00191{vertical-align:0.000000px;}
.ls0_c00191{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00191{word-spacing:-19.320776px;}
.ws1_c00191{word-spacing:0.000000px;}
._1_c00191{width:1.295700px;}
._11_c00191{width:2.809342px;}
._9_c00191{width:3.878859px;}
._f_c00191{width:5.332007px;}
._7_c00191{width:6.622553px;}
._6_c00191{width:7.994888px;}
._2_c00191{width:9.367836px;}
._0_c00191{width:10.882164px;}
._5_c00191{width:11.981753px;}
._10_c00191{width:13.083107px;}
._8_c00191{width:14.343752px;}
._a_c00191{width:16.350335px;}
._4_c00191{width:17.524015px;}
._13_c00191{width:20.075871px;}
._e_c00191{width:21.079603px;}
._c_c00191{width:22.429687px;}
._12_c00191{width:24.907862px;}
._b_c00191{width:26.126102px;}
._3_c00191{width:31.468000px;}
._d_c00191{width:33.276970px;}
.fc1_c00191{color:rgb(67,91,56);}
.fc0_c00191{color:rgb(0,0,0);}
.fs0_c00191{font-size:71.999997px;}
.fs1_c00191{font-size:74.377724px;}
.y0_c00191{bottom:0.000000px;}
.y1_c00191{bottom:0.000008px;}
.y24_c00191{bottom:29.400983px;}
.y1f_c00191{bottom:114.810817px;}
.y1e_c00191{bottom:145.185816px;}
.y1d_c00191{bottom:175.560815px;}
.y1c_c00191{bottom:205.935813px;}
.y1b_c00191{bottom:236.310812px;}
.y1a_c00191{bottom:266.685811px;}
.y19_c00191{bottom:297.060810px;}
.y18_c00191{bottom:327.435808px;}
.y17_c00191{bottom:357.810807px;}
.y16_c00191{bottom:388.185806px;}
.y15_c00191{bottom:418.560805px;}
.y14_c00191{bottom:448.935803px;}
.y13_c00191{bottom:479.310802px;}
.y12_c00191{bottom:509.685801px;}
.y11_c00191{bottom:540.060799px;}
.y10_c00191{bottom:570.435798px;}
.yf_c00191{bottom:631.185796px;}
.ye_c00191{bottom:661.560794px;}
.yd_c00191{bottom:691.935793px;}
.yc_c00191{bottom:722.310792px;}
.yb_c00191{bottom:752.685791px;}
.ya_c00191{bottom:783.060789px;}
.y9_c00191{bottom:813.435788px;}
.y8_c00191{bottom:843.810787px;}
.y7_c00191{bottom:874.185786px;}
.y6_c00191{bottom:904.560784px;}
.y5_c00191{bottom:934.935783px;}
.y4_c00191{bottom:965.310782px;}
.y3_c00191{bottom:995.685781px;}
.y2_c00191{bottom:1026.060779px;}
.y20_c00191{bottom:1063.200894px;}
.y23_c00191{bottom:1136.345403px;}
.y22_c00191{bottom:1166.720402px;}
.y21_c00191{bottom:1199.188987px;}
.h4_c00191{height:55.160154px;}
.h5_c00191{height:56.981762px;}
.h3_c00191{height:67.042966px;}
.h2_c00191{height:1304.999946px;}
.h0_c00191{height:1304.999953px;}
.h1_c00191{height:1305.000000px;}
.w2_c00191{width:934.874961px;}
.w0_c00191{width:934.875000px;}
.w1_c00191{width:935.250000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:87.902647px;}
.x2_c00191{left:89.487450px;}
.x3_c00191{left:452.271732px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws0_c00191{word-spacing:-17.174023pt;}
.ws1_c00191{word-spacing:0.000000pt;}
._1_c00191{width:1.151733pt;}
._11_c00191{width:2.497193pt;}
._9_c00191{width:3.447874pt;}
._f_c00191{width:4.739562pt;}
._7_c00191{width:5.886714pt;}
._6_c00191{width:7.106568pt;}
._2_c00191{width:8.326966pt;}
._0_c00191{width:9.673034pt;}
._5_c00191{width:10.650447pt;}
._10_c00191{width:11.629428pt;}
._8_c00191{width:12.750002pt;}
._a_c00191{width:14.533631pt;}
._4_c00191{width:15.576903pt;}
._13_c00191{width:17.845218pt;}
._e_c00191{width:18.737425pt;}
._c_c00191{width:19.937499pt;}
._12_c00191{width:22.140322pt;}
._b_c00191{width:23.223201pt;}
._3_c00191{width:27.971556pt;}
._d_c00191{width:29.579529pt;}
.fs0_c00191{font-size:63.999997pt;}
.fs1_c00191{font-size:66.113533pt;}
.y0_c00191{bottom:0.000000pt;}
.y1_c00191{bottom:0.000007pt;}
.y24_c00191{bottom:26.134207pt;}
.y1f_c00191{bottom:102.054060pt;}
.y1e_c00191{bottom:129.054059pt;}
.y1d_c00191{bottom:156.054057pt;}
.y1c_c00191{bottom:183.054056pt;}
.y1b_c00191{bottom:210.054055pt;}
.y1a_c00191{bottom:237.054054pt;}
.y19_c00191{bottom:264.054053pt;}
.y18_c00191{bottom:291.054052pt;}
.y17_c00191{bottom:318.054051pt;}
.y16_c00191{bottom:345.054050pt;}
.y15_c00191{bottom:372.054048pt;}
.y14_c00191{bottom:399.054047pt;}
.y13_c00191{bottom:426.054046pt;}
.y12_c00191{bottom:453.054045pt;}
.y11_c00191{bottom:480.054044pt;}
.y10_c00191{bottom:507.054043pt;}
.yf_c00191{bottom:561.054041pt;}
.ye_c00191{bottom:588.054039pt;}
.yd_c00191{bottom:615.054038pt;}
.yc_c00191{bottom:642.054037pt;}
.yb_c00191{bottom:669.054036pt;}
.ya_c00191{bottom:696.054035pt;}
.y9_c00191{bottom:723.054034pt;}
.y8_c00191{bottom:750.054033pt;}
.y7_c00191{bottom:777.054032pt;}
.y6_c00191{bottom:804.054030pt;}
.y5_c00191{bottom:831.054029pt;}
.y4_c00191{bottom:858.054028pt;}
.y3_c00191{bottom:885.054027pt;}
.y2_c00191{bottom:912.054026pt;}
.y20_c00191{bottom:945.067461pt;}
.y23_c00191{bottom:1010.084803pt;}
.y22_c00191{bottom:1037.084802pt;}
.y21_c00191{bottom:1065.945766pt;}
.h4_c00191{height:49.031248pt;}
.h5_c00191{height:50.650455pt;}
.h3_c00191{height:59.593748pt;}
.h2_c00191{height:1159.999952pt;}
.h0_c00191{height:1159.999959pt;}
.h1_c00191{height:1160.000000pt;}
.w2_c00191{width:830.999965pt;}
.w0_c00191{width:831.000000pt;}
.w1_c00191{width:831.333333pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:78.135686pt;}
.x2_c00191{left:79.544400pt;}
.x3_c00191{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26953d62db9fa79b56f99d7d.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.171387;font-style:normal;font-weight:normal;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_0393fa4954baad7ad9eea277.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.000000;font-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_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);}
.v0_c00192{vertical-align:0.000000px;}
.ls0_c00192{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00192{word-spacing:0.000000px;}
._6_c00192{width:2.154555px;}
._2_c00192{width:3.779297px;}
._9_c00192{width:5.806616px;}
._4_c00192{width:7.393590px;}
._8_c00192{width:8.482197px;}
._5_c00192{width:10.513850px;}
._1_c00192{width:11.871071px;}
._3_c00192{width:13.054708px;}
._0_c00192{width:14.593000px;}
._f_c00192{width:15.614319px;}
._e_c00192{width:16.707321px;}
._b_c00192{width:20.416166px;}
._a_c00192{width:24.164013px;}
._10_c00192{width:28.773397px;}
._11_c00192{width:30.297610px;}
._c_c00192{width:32.524952px;}
._7_c00192{width:34.117146px;}
._d_c00192{width:35.867133px;}
.fc0_c00192{color:rgb(0,0,0);}
.fs0_c00192{font-size:71.999997px;}
.y0_c00192{bottom:0.000000px;}
.y1_c00192{bottom:0.000008px;}
.y27_c00192{bottom:29.401163px;}
.y26_c00192{bottom:146.952239px;}
.y25_c00192{bottom:176.202237px;}
.y24_c00192{bottom:205.452236px;}
.y23_c00192{bottom:234.702235px;}
.y22_c00192{bottom:263.952234px;}
.y21_c00192{bottom:293.202233px;}
.y20_c00192{bottom:322.452231px;}
.y1f_c00192{bottom:351.702230px;}
.y1e_c00192{bottom:380.952229px;}
.y1d_c00192{bottom:410.202228px;}
.y1c_c00192{bottom:439.452226px;}
.y1b_c00192{bottom:468.702225px;}
.y1a_c00192{bottom:497.952224px;}
.y19_c00192{bottom:527.202223px;}
.y18_c00192{bottom:556.452222px;}
.y17_c00192{bottom:585.702220px;}
.y16_c00192{bottom:614.952219px;}
.y15_c00192{bottom:644.202218px;}
.y14_c00192{bottom:673.452217px;}
.y13_c00192{bottom:702.702216px;}
.y12_c00192{bottom:731.952214px;}
.y11_c00192{bottom:761.202213px;}
.y10_c00192{bottom:790.452212px;}
.yf_c00192{bottom:819.702211px;}
.ye_c00192{bottom:848.952209px;}
.yd_c00192{bottom:878.202208px;}
.yc_c00192{bottom:907.452207px;}
.yb_c00192{bottom:936.702206px;}
.ya_c00192{bottom:965.952205px;}
.y9_c00192{bottom:995.202203px;}
.y8_c00192{bottom:1024.452202px;}
.y7_c00192{bottom:1053.702201px;}
.y6_c00192{bottom:1082.952200px;}
.y5_c00192{bottom:1112.202198px;}
.y4_c00192{bottom:1141.452197px;}
.y3_c00192{bottom:1170.702196px;}
.y2_c00192{bottom:1199.952195px;}
.h3_c00192{height:67.042966px;}
.h2_c00192{height:1304.999946px;}
.h0_c00192{height:1304.999953px;}
.h1_c00192{height:1305.000000px;}
.w2_c00192{width:934.874961px;}
.w0_c00192{width:934.875000px;}
.w1_c00192{width:935.250000px;}
.x0_c00192{left:0.000000px;}
.x1_c00192{left:89.487450px;}
.x2_c00192{left:452.271732px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ws0_c00192{word-spacing:0.000000pt;}
._6_c00192{width:1.915160pt;}
._2_c00192{width:3.359375pt;}
._9_c00192{width:5.161437pt;}
._4_c00192{width:6.572080pt;}
._8_c00192{width:7.539730pt;}
._5_c00192{width:9.345644pt;}
._1_c00192{width:10.552063pt;}
._3_c00192{width:11.604185pt;}
._0_c00192{width:12.971555pt;}
._f_c00192{width:13.879395pt;}
._e_c00192{width:14.850952pt;}
._b_c00192{width:18.147703pt;}
._a_c00192{width:21.479123pt;}
._10_c00192{width:25.576353pt;}
._11_c00192{width:26.931209pt;}
._c_c00192{width:28.911069pt;}
._7_c00192{width:30.326352pt;}
._d_c00192{width:31.881896pt;}
.fs0_c00192{font-size:63.999997pt;}
.y0_c00192{bottom:0.000000pt;}
.y1_c00192{bottom:0.000007pt;}
.y27_c00192{bottom:26.134367pt;}
.y26_c00192{bottom:130.624212pt;}
.y25_c00192{bottom:156.624211pt;}
.y24_c00192{bottom:182.624210pt;}
.y23_c00192{bottom:208.624209pt;}
.y22_c00192{bottom:234.624208pt;}
.y21_c00192{bottom:260.624207pt;}
.y20_c00192{bottom:286.624206pt;}
.y1f_c00192{bottom:312.624205pt;}
.y1e_c00192{bottom:338.624203pt;}
.y1d_c00192{bottom:364.624202pt;}
.y1c_c00192{bottom:390.624201pt;}
.y1b_c00192{bottom:416.624200pt;}
.y1a_c00192{bottom:442.624199pt;}
.y19_c00192{bottom:468.624198pt;}
.y18_c00192{bottom:494.624197pt;}
.y17_c00192{bottom:520.624196pt;}
.y16_c00192{bottom:546.624195pt;}
.y15_c00192{bottom:572.624194pt;}
.y14_c00192{bottom:598.624193pt;}
.y13_c00192{bottom:624.624192pt;}
.y12_c00192{bottom:650.624190pt;}
.y11_c00192{bottom:676.624189pt;}
.y10_c00192{bottom:702.624188pt;}
.yf_c00192{bottom:728.624187pt;}
.ye_c00192{bottom:754.624186pt;}
.yd_c00192{bottom:780.624185pt;}
.yc_c00192{bottom:806.624184pt;}
.yb_c00192{bottom:832.624183pt;}
.ya_c00192{bottom:858.624182pt;}
.y9_c00192{bottom:884.624181pt;}
.y8_c00192{bottom:910.624180pt;}
.y7_c00192{bottom:936.624179pt;}
.y6_c00192{bottom:962.624177pt;}
.y5_c00192{bottom:988.624176pt;}
.y4_c00192{bottom:1014.624175pt;}
.y3_c00192{bottom:1040.624174pt;}
.y2_c00192{bottom:1066.624173pt;}
.h3_c00192{height:59.593748pt;}
.h2_c00192{height:1159.999952pt;}
.h0_c00192{height:1159.999959pt;}
.h1_c00192{height:1160.000000pt;}
.w2_c00192{width:830.999965pt;}
.w0_c00192{width:831.000000pt;}
.w1_c00192{width:831.333333pt;}
.x0_c00192{left:0.000000pt;}
.x1_c00192{left:79.544400pt;}
.x2_c00192{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a55f1f4be146ad5c6c9a538e.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.171387;font-style:normal;font-weight:normal;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_ece2fca28f006b180dff8050.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.000000;font-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_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);}
.v0_c00193{vertical-align:0.000000px;}
.ls0_c00193{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00193{word-spacing:-18.703125px;}
.ws1_c00193{word-spacing:0.000000px;}
._4_c00193{width:1.692171px;}
._d_c00193{width:2.758599px;}
._6_c00193{width:3.914014px;}
._9_c00193{width:5.223162px;}
._7_c00193{width:6.328127px;}
._8_c00193{width:8.091220px;}
._2_c00193{width:9.498576px;}
._f_c00193{width:11.144531px;}
._e_c00193{width:12.236225px;}
._1_c00193{width:13.485923px;}
._5_c00193{width:14.972170px;}
._a_c00193{width:15.993691px;}
._3_c00193{width:17.150343px;}
._0_c00193{width:19.741469px;}
._b_c00193{width:20.784347px;}
._c_c00193{width:21.975812px;}
._10_c00193{width:23.295068px;}
.fc0_c00193{color:rgb(0,0,0);}
.fs0_c00193{font-size:71.999997px;}
.y0_c00193{bottom:0.000000px;}
.y1_c00193{bottom:0.000008px;}
.y21_c00193{bottom:29.401163px;}
.y20_c00193{bottom:254.997411px;}
.y1f_c00193{bottom:286.497409px;}
.y1e_c00193{bottom:317.997408px;}
.y1d_c00193{bottom:349.497407px;}
.y1c_c00193{bottom:380.997405px;}
.y1b_c00193{bottom:412.497404px;}
.y1a_c00193{bottom:443.997403px;}
.y19_c00193{bottom:475.497401px;}
.y18_c00193{bottom:506.997400px;}
.y17_c00193{bottom:538.497399px;}
.y16_c00193{bottom:569.997397px;}
.y15_c00193{bottom:601.497396px;}
.y14_c00193{bottom:632.997395px;}
.y13_c00193{bottom:664.497394px;}
.y12_c00193{bottom:695.997392px;}
.y11_c00193{bottom:727.497391px;}
.y10_c00193{bottom:758.997390px;}
.yf_c00193{bottom:790.497388px;}
.ye_c00193{bottom:821.997387px;}
.yd_c00193{bottom:853.497386px;}
.yc_c00193{bottom:884.997384px;}
.yb_c00193{bottom:916.497383px;}
.ya_c00193{bottom:947.997382px;}
.y9_c00193{bottom:979.497380px;}
.y8_c00193{bottom:1010.997379px;}
.y7_c00193{bottom:1042.497378px;}
.y6_c00193{bottom:1073.997376px;}
.y5_c00193{bottom:1105.497375px;}
.y4_c00193{bottom:1136.997374px;}
.y3_c00193{bottom:1168.497373px;}
.y2_c00193{bottom:1199.997371px;}
.h3_c00193{height:67.042966px;}
.h2_c00193{height:1304.999946px;}
.h0_c00193{height:1304.999953px;}
.h1_c00193{height:1305.000000px;}
.w2_c00193{width:934.874961px;}
.w0_c00193{width:934.875000px;}
.w1_c00193{width:935.250000px;}
.x0_c00193{left:0.000000px;}
.x1_c00193{left:87.902647px;}
.x2_c00193{left:452.271732px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws0_c00193{word-spacing:-16.625000pt;}
.ws1_c00193{word-spacing:0.000000pt;}
._4_c00193{width:1.504152pt;}
._d_c00193{width:2.452088pt;}
._6_c00193{width:3.479124pt;}
._9_c00193{width:4.642811pt;}
._7_c00193{width:5.625002pt;}
._8_c00193{width:7.192196pt;}
._2_c00193{width:8.443178pt;}
._f_c00193{width:9.906250pt;}
._e_c00193{width:10.876644pt;}
._1_c00193{width:11.987487pt;}
._5_c00193{width:13.308596pt;}
._a_c00193{width:14.216614pt;}
._3_c00193{width:15.244749pt;}
._0_c00193{width:17.547972pt;}
._b_c00193{width:18.474975pt;}
._c_c00193{width:19.534055pt;}
._10_c00193{width:20.706727pt;}
.fs0_c00193{font-size:63.999997pt;}
.y0_c00193{bottom:0.000000pt;}
.y1_c00193{bottom:0.000007pt;}
.y21_c00193{bottom:26.134367pt;}
.y20_c00193{bottom:226.664365pt;}
.y1f_c00193{bottom:254.664364pt;}
.y1e_c00193{bottom:282.664363pt;}
.y1d_c00193{bottom:310.664361pt;}
.y1c_c00193{bottom:338.664360pt;}
.y1b_c00193{bottom:366.664359pt;}
.y1a_c00193{bottom:394.664358pt;}
.y19_c00193{bottom:422.664357pt;}
.y18_c00193{bottom:450.664356pt;}
.y17_c00193{bottom:478.664354pt;}
.y16_c00193{bottom:506.664353pt;}
.y15_c00193{bottom:534.664352pt;}
.y14_c00193{bottom:562.664351pt;}
.y13_c00193{bottom:590.664350pt;}
.y12_c00193{bottom:618.664349pt;}
.y11_c00193{bottom:646.664347pt;}
.y10_c00193{bottom:674.664346pt;}
.yf_c00193{bottom:702.664345pt;}
.ye_c00193{bottom:730.664344pt;}
.yd_c00193{bottom:758.664343pt;}
.yc_c00193{bottom:786.664342pt;}
.yb_c00193{bottom:814.664340pt;}
.ya_c00193{bottom:842.664339pt;}
.y9_c00193{bottom:870.664338pt;}
.y8_c00193{bottom:898.664337pt;}
.y7_c00193{bottom:926.664336pt;}
.y6_c00193{bottom:954.664335pt;}
.y5_c00193{bottom:982.664333pt;}
.y4_c00193{bottom:1010.664332pt;}
.y3_c00193{bottom:1038.664331pt;}
.y2_c00193{bottom:1066.664330pt;}
.h3_c00193{height:59.593748pt;}
.h2_c00193{height:1159.999952pt;}
.h0_c00193{height:1159.999959pt;}
.h1_c00193{height:1160.000000pt;}
.w2_c00193{width:830.999965pt;}
.w0_c00193{width:831.000000pt;}
.w1_c00193{width:831.333333pt;}
.x0_c00193{left:0.000000pt;}
.x1_c00193{left:78.135686pt;}
.x2_c00193{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.006348;font-style:normal;font-weight:normal;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_26819bd70b770f67e16d5f2e.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.171387;font-style:normal;font-weight:normal;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_4b4e9f2ba0052e6d4c37818b.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_73ad054d81bf5a3e6fb62363.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.000000;font-style:normal;font-weight: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_c00194;src:url('chunks/assets/font_aa2fbe5beb1dee9c99702b8d.woff2')format("woff");}.ff5_c00194{font-family:ff5_c00194;line-height:1.171387;font-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_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;}
.ls0_c00194{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00194{word-spacing:-18.703125px;}
.ws1_c00194{word-spacing:-0.055755px;}
.ws2_c00194{word-spacing:0.000000px;}
._4_c00194{width:1.171686px;}
._1_c00194{width:4.435042px;}
._2_c00194{width:6.360534px;}
._9_c00194{width:7.402046px;}
._8_c00194{width:8.978300px;}
._5_c00194{width:10.389977px;}
._6_c00194{width:21.192143px;}
._3_c00194{width:27.731205px;}
._a_c00194{width:30.299536px;}
._7_c00194{width:31.308217px;}
._0_c00194{width:64.938601px;}
.fc2_c00194{color:rgb(255,255,255);}
.fc1_c00194{color:rgb(0,0,0);}
.fc0_c00194{color:rgb(67,91,56);}
.fs1_c00194{font-size:55.754999px;}
.fs0_c00194{font-size:71.999997px;}
.y0_c00194{bottom:0.000000px;}
.y1_c00194{bottom:0.000008px;}
.y16_c00194{bottom:29.401163px;}
.y17_c00194{bottom:440.807310px;}
.yc_c00194{bottom:556.098727px;}
.yb_c00194{bottom:586.473726px;}
.ya_c00194{bottom:616.848724px;}
.y9_c00194{bottom:647.223723px;}
.y8_c00194{bottom:677.598722px;}
.y7_c00194{bottom:707.973721px;}
.y6_c00194{bottom:738.348719px;}
.y5_c00194{bottom:777.048718px;}
.y4_c00194{bottom:835.221763px;}
.y3_c00194{bottom:865.596762px;}
.y2_c00194{bottom:899.048987px;}
.y15_c00194{bottom:957.222381px;}
.y14_c00194{bottom:987.597380px;}
.y13_c00194{bottom:1017.972379px;}
.y12_c00194{bottom:1048.347378px;}
.y11_c00194{bottom:1078.722376px;}
.y10_c00194{bottom:1109.097375px;}
.yf_c00194{bottom:1139.472374px;}
.ye_c00194{bottom:1169.847372px;}
.yd_c00194{bottom:1200.222371px;}
.h5_c00194{height:51.916398px;}
.h3_c00194{height:55.160154px;}
.h4_c00194{height:67.042966px;}
.h2_c00194{height:1304.999946px;}
.h0_c00194{height:1304.999953px;}
.h1_c00194{height:1305.000000px;}
.w2_c00194{width:934.874961px;}
.w0_c00194{width:934.875000px;}
.w1_c00194{width:935.250000px;}
.x0_c00194{left:0.000000px;}
.x4_c00194{left:87.902647px;}
.x1_c00194{left:89.487450px;}
.x2_c00194{left:90.722973px;}
.x3_c00194{left:452.271732px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws0_c00194{word-spacing:-16.625000pt;}
.ws1_c00194{word-spacing:-0.049560pt;}
.ws2_c00194{word-spacing:0.000000pt;}
._4_c00194{width:1.041498pt;}
._1_c00194{width:3.942260pt;}
._2_c00194{width:5.653808pt;}
._9_c00194{width:6.579597pt;}
._8_c00194{width:7.980711pt;}
._5_c00194{width:9.235535pt;}
._6_c00194{width:18.837460pt;}
._3_c00194{width:24.649960pt;}
._a_c00194{width:26.932921pt;}
._7_c00194{width:27.829526pt;}
._0_c00194{width:57.723201pt;}
.fs1_c00194{font-size:49.559999pt;}
.fs0_c00194{font-size:63.999997pt;}
.y0_c00194{bottom:0.000000pt;}
.y1_c00194{bottom:0.000007pt;}
.y16_c00194{bottom:26.134367pt;}
.y17_c00194{bottom:391.828720pt;}
.yc_c00194{bottom:494.309979pt;}
.yb_c00194{bottom:521.309978pt;}
.ya_c00194{bottom:548.309977pt;}
.y9_c00194{bottom:575.309976pt;}
.y8_c00194{bottom:602.309975pt;}
.y7_c00194{bottom:629.309974pt;}
.y6_c00194{bottom:656.309973pt;}
.y5_c00194{bottom:690.709971pt;}
.y4_c00194{bottom:742.419345pt;}
.y3_c00194{bottom:769.419344pt;}
.y2_c00194{bottom:799.154655pt;}
.y15_c00194{bottom:850.864339pt;}
.y14_c00194{bottom:877.864338pt;}
.y13_c00194{bottom:904.864337pt;}
.y12_c00194{bottom:931.864336pt;}
.y11_c00194{bottom:958.864334pt;}
.y10_c00194{bottom:985.864333pt;}
.yf_c00194{bottom:1012.864332pt;}
.ye_c00194{bottom:1039.864331pt;}
.yd_c00194{bottom:1066.864330pt;}
.h5_c00194{height:46.147909pt;}
.h3_c00194{height:49.031248pt;}
.h4_c00194{height:59.593748pt;}
.h2_c00194{height:1159.999952pt;}
.h0_c00194{height:1159.999959pt;}
.h1_c00194{height:1160.000000pt;}
.w2_c00194{width:830.999965pt;}
.w0_c00194{width:831.000000pt;}
.w1_c00194{width:831.333333pt;}
.x0_c00194{left:0.000000pt;}
.x4_c00194{left:78.135686pt;}
.x1_c00194{left:79.544400pt;}
.x2_c00194{left:80.642643pt;}
.x3_c00194{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:0.734863;font-style:normal;font-weight:normal;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_12afe216c3347d697c992a91.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00195;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:0.743000;font-style:normal;font-weight: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_c00195;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff5_c00195{font-family:ff5_c00195;line-height:1.000000;font-style:normal;font-weight: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_c00195;src:url('chunks/assets/font_1f97bea23beb53681a6b0329.woff2')format("woff");}.ff6_c00195{font-family:ff6_c00195;line-height:1.171387;font-style:normal;font-weight: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_c00195;src:url('chunks/assets/font_d5d77a2d074f9d346fa8be10.woff2')format("woff");}.ff7_c00195{font-family:ff7_c00195;line-height:1.005371;font-style:normal;font-weight: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_c00195;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff8_c00195{font-family:ff8_c00195;line-height:1.006348;font-style:normal;font-weight: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_c00195;src:url('chunks/assets/font_15244891f0e0cdcfab17eb35.woff2')format("woff");}.ff9_c00195{font-family:ff9_c00195;line-height:1.000000;font-style:normal;font-weight: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_c00195;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00195{font-family:ffa_c00195;line-height:0.940000;font-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_c00195{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00195{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00195{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00195{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00195{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00195{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00195{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00195{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00195{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00195{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00195{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00195{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00195{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00195{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00195{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00195{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00195{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00195{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00195{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00195{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00195{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00195{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00195{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00195{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00195{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00195{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00195{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00195{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00195{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00195{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00195{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00195{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00195{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00195{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00195{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00195{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00195{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00195{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00195{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00195{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00195{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00195{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00195{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00195{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00195{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00195{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00195{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00195{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00195{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00195{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00195{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00195{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00195{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00195{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00195{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00195{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00195{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00195{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00195{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00195{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00195{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00195{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00195{vertical-align:0.000000px;}
.ls0_c00195{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00195{word-spacing:-41.689573px;}
.ws0_c00195{word-spacing:-15.171263px;}
.ws2_c00195{word-spacing:-0.089985px;}
.ws1_c00195{word-spacing:-0.055755px;}
.ws5_c00195{word-spacing:0.000000px;}
.ws3_c00195{word-spacing:294.478649px;}
._3_c00195{width:1.798804px;}
._1_c00195{width:4.564886px;}
._4_c00195{width:10.811849px;}
._0_c00195{width:13.392125px;}
._2_c00195{width:23.609341px;}
.fc5_c00195{color:transparent;}
.fc4_c00195{color:rgb(67,91,56);}
.fc3_c00195{color:rgb(8,1,0);}
.fc2_c00195{color:rgb(255,255,255);}
.fc1_c00195{color:rgb(0,0,0);}
.fc0_c00195{color:rgb(9,71,81);}
.fsc_c00195{font-size:39.757786px;}
.fs7_c00195{font-size:41.999830px;}
.fsb_c00195{font-size:42.000118px;}
.fs4_c00195{font-size:47.368230px;}
.fs1_c00195{font-size:47.368231px;}
.fs5_c00195{font-size:47.368232px;}
.fs2_c00195{font-size:47.368233px;}
.fs3_c00195{font-size:47.368235px;}
.fs0_c00195{font-size:51.661596px;}
.fs8_c00195{font-size:55.754999px;}
.fse_c00195{font-size:59.984997px;}
.fs9_c00195{font-size:71.999997px;}
.fs6_c00195{font-size:77.011488px;}
.fsa_c00195{font-size:89.985250px;}
.fsd_c00195{font-size:95.984996px;}
.y0_c00195{bottom:0.000000px;}
.y1_c00195{bottom:0.000008px;}
.y54_c00195{bottom:29.401163px;}
.y4c_c00195{bottom:157.252493px;}
.y4b_c00195{bottom:187.627492px;}
.y4a_c00195{bottom:218.002491px;}
.y49_c00195{bottom:248.377490px;}
.y48_c00195{bottom:278.752488px;}
.y47_c00195{bottom:309.127487px;}
.y4d_c00195{bottom:339.539566px;}
.y2_c00195{bottom:401.525233px;}
.y2e_c00195{bottom:486.888370px;}
.y10_c00195{bottom:493.328373px;}
.y24_c00195{bottom:493.343471px;}
.yf_c00195{bottom:493.853637px;}
.y25_c00195{bottom:493.873313px;}
.y3c_c00195{bottom:493.959419px;}
.y23_c00195{bottom:494.588120px;}
.y3d_c00195{bottom:494.792744px;}
.y3b_c00195{bottom:494.812830px;}
.ye_c00195{bottom:494.919783px;}
.y22_c00195{bottom:495.839401px;}
.y3a_c00195{bottom:495.847621px;}
.yd_c00195{bottom:495.993006px;}
.y26_c00195{bottom:496.289812px;}
.y11_c00195{bottom:496.353473px;}
.y3e_c00195{bottom:496.973987px;}
.y21_c00195{bottom:497.484272px;}
.yc_c00195{bottom:497.644566px;}
.y39_c00195{bottom:498.050345px;}
.y3f_c00195{bottom:498.364888px;}
.y20_c00195{bottom:499.172531px;}
.yb_c00195{bottom:499.338107px;}
.y40_c00195{bottom:500.063187px;}
.y12_c00195{bottom:500.630691px;}
.y1f_c00195{bottom:501.037769px;}
.ya_c00195{bottom:501.208172px;}
.y27_c00195{bottom:501.390631px;}
.y38_c00195{bottom:501.842067px;}
.y41_c00195{bottom:502.505484px;}
.y13_c00195{bottom:503.149449px;}
.y42_c00195{bottom:504.764445px;}
.y28_c00195{bottom:505.018795px;}
.y1e_c00195{bottom:505.692124px;}
.y9_c00195{bottom:505.871886px;}
.y37_c00195{bottom:507.310818px;}
.y43_c00195{bottom:508.033427px;}
.y14_c00195{bottom:509.101992px;}
.y29_c00195{bottom:510.652700px;}
.y36_c00195{bottom:511.777409px;}
.y1d_c00195{bottom:512.093493px;}
.y8_c00195{bottom:512.281758px;}
.y15_c00195{bottom:513.850725px;}
.y44_c00195{bottom:516.430683px;}
.y2a_c00195{bottom:517.310350px;}
.y35_c00195{bottom:518.202172px;}
.y1c_c00195{bottom:519.400636px;}
.y7_c00195{bottom:519.490837px;}
.y34_c00195{bottom:522.772046px;}
.y6_c00195{bottom:522.949612px;}
.y45_c00195{bottom:524.479585px;}
.y16_c00195{bottom:525.634639px;}
.y1b_c00195{bottom:526.562252px;}
.y5_c00195{bottom:528.959931px;}
.y2b_c00195{bottom:529.273374px;}
.y33_c00195{bottom:530.544173px;}
.y1a_c00195{bottom:531.331479px;}
.y53_c00195{bottom:531.715003px;}
.y2d_c00195{bottom:533.268115px;}
.y31_c00195{bottom:533.961835px;}
.y32_c00195{bottom:534.437983px;}
.y4_c00195{bottom:536.219342px;}
.y19_c00195{bottom:537.503802px;}
.y17_c00195{bottom:537.875201px;}
.y2c_c00195{bottom:538.238934px;}
.y2f_c00195{bottom:539.974724px;}
.y18_c00195{bottom:544.567278px;}
.y3_c00195{bottom:545.754118px;}
.y30_c00195{bottom:577.437042px;}
.y46_c00195{bottom:639.092601px;}
.y55_c00195{bottom:1021.439863px;}
.y51_c00195{bottom:1128.788247px;}
.y4f_c00195{bottom:1133.738464px;}
.y4e_c00195{bottom:1147.738503px;}
.y52_c00195{bottom:1153.262281px;}
.y50_c00195{bottom:1171.082779px;}
.hc_c00195{height:32.176627px;}
.h8_c00195{height:35.988753px;}
.h9_c00195{height:35.988755px;}
.ha_c00195{height:35.988756px;}
.h7_c00195{height:36.289430px;}
.h4_c00195{height:36.289431px;}
.h5_c00195{height:36.289433px;}
.h6_c00195{height:36.289434px;}
.h11_c00195{height:37.020556px;}
.h3_c00195{height:37.459702px;}
.h10_c00195{height:39.108509px;}
.h14_c00195{height:45.588598px;}
.hd_c00195{height:51.916398px;}
.he_c00195{height:55.160154px;}
.hb_c00195{height:56.295398px;}
.h12_c00195{height:67.042966px;}
.hf_c00195{height:68.367700px;}
.h13_c00195{height:89.376654px;}
.h2_c00195{height:1304.999946px;}
.h0_c00195{height:1304.999953px;}
.h1_c00195{height:1305.000000px;}
.w2_c00195{width:934.874961px;}
.w0_c00195{width:934.875000px;}
.w1_c00195{width:935.250000px;}
.x0_c00195{left:0.000000px;}
.x3d_c00195{left:89.487450px;}
.x3e_c00195{left:107.230262px;}
.x3f_c00195{left:108.827167px;}
.x43_c00195{left:130.690629px;}
.x14_c00195{left:134.974838px;}
.x13_c00195{left:136.648279px;}
.x15_c00195{left:140.021272px;}
.x16_c00195{left:144.871714px;}
.x17_c00195{left:150.237526px;}
.x18_c00195{left:152.990336px;}
.x19_c00195{left:156.000220px;}
.x1a_c00195{left:159.847713px;}
.x24_c00195{left:161.443962px;}
.x1b_c00195{left:163.301377px;}
.x1c_c00195{left:171.586339px;}
.x1d_c00195{left:179.855997px;}
.x1e_c00195{left:188.287487px;}
.x1f_c00195{left:196.673970px;}
.x20_c00195{left:200.841336px;}
.x21_c00195{left:205.399483px;}
.x22_c00195{left:209.208896px;}
.x23_c00195{left:211.795693px;}
.x3_c00195{left:230.398389px;}
.x2_c00195{left:232.534609px;}
.x4_c00195{left:235.623324px;}
.x5_c00195{left:240.462566px;}
.x6_c00195{left:245.820252px;}
.x7_c00195{left:248.569815px;}
.x8_c00195{left:251.576732px;}
.x9_c00195{left:255.421336px;}
.x41_c00195{left:256.622047px;}
.xa_c00195{left:258.708042px;}
.xb_c00195{left:263.145298px;}
.xc_c00195{left:271.763354px;}
.xd_c00195{left:283.603990px;}
.xe_c00195{left:291.041304px;}
.xf_c00195{left:294.435991px;}
.x40_c00195{left:295.615161px;}
.x10_c00195{left:299.775542px;}
.x11_c00195{left:303.165014px;}
.x12_c00195{left:307.176807px;}
.x29_c00195{left:327.047435px;}
.x2a_c00195{left:328.264734px;}
.x2b_c00195{left:329.685747px;}
.x2c_c00195{left:333.082971px;}
.x2d_c00195{left:336.307511px;}
.x2e_c00195{left:342.189757px;}
.x2f_c00195{left:348.376740px;}
.x28_c00195{left:351.731739px;}
.x30_c00195{left:354.069743px;}
.x31_c00195{left:357.479743px;}
.x32_c00195{left:365.386869px;}
.x33_c00195{left:373.375785px;}
.x34_c00195{left:380.135498px;}
.x35_c00195{left:383.155707px;}
.x36_c00195{left:386.159935px;}
.x37_c00195{left:389.557910px;}
.x38_c00195{left:392.174988px;}
.x39_c00195{left:395.489533px;}
.x3a_c00195{left:400.664851px;}
.x3b_c00195{left:403.469600px;}
.x42_c00195{left:452.271732px;}
.x26_c00195{left:464.896169px;}
.x3c_c00195{left:664.443440px;}
.x1_c00195{left:697.320842px;}
.x27_c00195{left:733.540639px;}
.x25_c00195{left:757.088990px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws4_c00195{word-spacing:-37.057398pt;}
.ws0_c00195{word-spacing:-13.485567pt;}
.ws2_c00195{word-spacing:-0.079987pt;}
.ws1_c00195{word-spacing:-0.049560pt;}
.ws5_c00195{word-spacing:0.000000pt;}
.ws3_c00195{word-spacing:261.758799pt;}
._3_c00195{width:1.598937pt;}
._1_c00195{width:4.057677pt;}
._4_c00195{width:9.610532pt;}
._0_c00195{width:11.904111pt;}
._2_c00195{width:20.986081pt;}
.fsc_c00195{font-size:35.340254pt;}
.fs7_c00195{font-size:37.333182pt;}
.fsb_c00195{font-size:37.333438pt;}
.fs4_c00195{font-size:42.105093pt;}
.fs1_c00195{font-size:42.105094pt;}
.fs5_c00195{font-size:42.105095pt;}
.fs2_c00195{font-size:42.105096pt;}
.fs3_c00195{font-size:42.105098pt;}
.fs0_c00195{font-size:45.921418pt;}
.fs8_c00195{font-size:49.559999pt;}
.fse_c00195{font-size:53.319997pt;}
.fs9_c00195{font-size:63.999997pt;}
.fs6_c00195{font-size:68.454656pt;}
.fsa_c00195{font-size:79.986889pt;}
.fsd_c00195{font-size:85.319996pt;}
.y0_c00195{bottom:0.000000pt;}
.y1_c00195{bottom:0.000007pt;}
.y54_c00195{bottom:26.134367pt;}
.y4c_c00195{bottom:139.779994pt;}
.y4b_c00195{bottom:166.779993pt;}
.y4a_c00195{bottom:193.779992pt;}
.y49_c00195{bottom:220.779991pt;}
.y48_c00195{bottom:247.779990pt;}
.y47_c00195{bottom:274.779989pt;}
.y4d_c00195{bottom:301.812947pt;}
.y2_c00195{bottom:356.911319pt;}
.y2e_c00195{bottom:432.789662pt;}
.y10_c00195{bottom:438.514110pt;}
.y24_c00195{bottom:438.527530pt;}
.yf_c00195{bottom:438.981010pt;}
.y25_c00195{bottom:438.998500pt;}
.y3c_c00195{bottom:439.075039pt;}
.y23_c00195{bottom:439.633885pt;}
.y3d_c00195{bottom:439.815773pt;}
.y3b_c00195{bottom:439.833627pt;}
.ye_c00195{bottom:439.928696pt;}
.y22_c00195{bottom:440.746134pt;}
.y3a_c00195{bottom:440.753441pt;}
.yd_c00195{bottom:440.882672pt;}
.y26_c00195{bottom:441.146500pt;}
.y11_c00195{bottom:441.203087pt;}
.y3e_c00195{bottom:441.754655pt;}
.y21_c00195{bottom:442.208242pt;}
.yc_c00195{bottom:442.350726pt;}
.y39_c00195{bottom:442.711417pt;}
.y3f_c00195{bottom:442.991012pt;}
.y20_c00195{bottom:443.708917pt;}
.yb_c00195{bottom:443.856095pt;}
.y40_c00195{bottom:444.500610pt;}
.y12_c00195{bottom:445.005059pt;}
.y1f_c00195{bottom:445.366906pt;}
.ya_c00195{bottom:445.518375pt;}
.y27_c00195{bottom:445.680561pt;}
.y38_c00195{bottom:446.081837pt;}
.y41_c00195{bottom:446.671541pt;}
.y13_c00195{bottom:447.243955pt;}
.y42_c00195{bottom:448.679507pt;}
.y28_c00195{bottom:448.905595pt;}
.y1e_c00195{bottom:449.504110pt;}
.y9_c00195{bottom:449.663899pt;}
.y37_c00195{bottom:450.942950pt;}
.y43_c00195{bottom:451.585269pt;}
.y14_c00195{bottom:452.535104pt;}
.y29_c00195{bottom:453.913511pt;}
.y36_c00195{bottom:454.913253pt;}
.y1d_c00195{bottom:455.194216pt;}
.y8_c00195{bottom:455.361563pt;}
.y15_c00195{bottom:456.756200pt;}
.y44_c00195{bottom:459.049496pt;}
.y2a_c00195{bottom:459.831423pt;}
.y35_c00195{bottom:460.624152pt;}
.y1c_c00195{bottom:461.689454pt;}
.y7_c00195{bottom:461.769633pt;}
.y34_c00195{bottom:464.686263pt;}
.y6_c00195{bottom:464.844100pt;}
.y45_c00195{bottom:466.204075pt;}
.y16_c00195{bottom:467.230790pt;}
.y1b_c00195{bottom:468.055335pt;}
.y5_c00195{bottom:470.186605pt;}
.y2b_c00195{bottom:470.465221pt;}
.y33_c00195{bottom:471.594820pt;}
.y1a_c00195{bottom:472.294648pt;}
.y53_c00195{bottom:472.635558pt;}
.y2d_c00195{bottom:474.016102pt;}
.y31_c00195{bottom:474.632742pt;}
.y32_c00195{bottom:475.055985pt;}
.y4_c00195{bottom:476.639415pt;}
.y19_c00195{bottom:477.781157pt;}
.y17_c00195{bottom:478.111290pt;}
.y2c_c00195{bottom:478.434608pt;}
.y2f_c00195{bottom:479.977532pt;}
.y18_c00195{bottom:484.059803pt;}
.y3_c00195{bottom:485.114772pt;}
.y30_c00195{bottom:513.277371pt;}
.y46_c00195{bottom:568.082312pt;}
.y55_c00195{bottom:907.946545pt;}
.y51_c00195{bottom:1003.367331pt;}
.y4f_c00195{bottom:1007.767524pt;}
.y4e_c00195{bottom:1020.212003pt;}
.y52_c00195{bottom:1025.122028pt;}
.y50_c00195{bottom:1040.962470pt;}
.hc_c00195{height:28.601447pt;}
.h8_c00195{height:31.990003pt;}
.h9_c00195{height:31.990004pt;}
.ha_c00195{height:31.990006pt;}
.h7_c00195{height:32.257271pt;}
.h4_c00195{height:32.257272pt;}
.h5_c00195{height:32.257274pt;}
.h6_c00195{height:32.257275pt;}
.h11_c00195{height:32.907161pt;}
.h3_c00195{height:33.297513pt;}
.h10_c00195{height:34.763119pt;}
.h14_c00195{height:40.523198pt;}
.hd_c00195{height:46.147909pt;}
.he_c00195{height:49.031248pt;}
.hb_c00195{height:50.040354pt;}
.h12_c00195{height:59.593748pt;}
.hf_c00195{height:60.771289pt;}
.h13_c00195{height:79.445915pt;}
.h2_c00195{height:1159.999952pt;}
.h0_c00195{height:1159.999959pt;}
.h1_c00195{height:1160.000000pt;}
.w2_c00195{width:830.999965pt;}
.w0_c00195{width:831.000000pt;}
.w1_c00195{width:831.333333pt;}
.x0_c00195{left:0.000000pt;}
.x3d_c00195{left:79.544400pt;}
.x3e_c00195{left:95.315788pt;}
.x3f_c00195{left:96.735260pt;}
.x43_c00195{left:116.169448pt;}
.x14_c00195{left:119.977634pt;}
.x13_c00195{left:121.465137pt;}
.x15_c00195{left:124.463353pt;}
.x16_c00195{left:128.774857pt;}
.x17_c00195{left:133.544468pt;}
.x18_c00195{left:135.991410pt;}
.x19_c00195{left:138.666862pt;}
.x1a_c00195{left:142.086856pt;}
.x24_c00195{left:143.505744pt;}
.x1b_c00195{left:145.156780pt;}
.x1c_c00195{left:152.521190pt;}
.x1d_c00195{left:159.871997pt;}
.x1e_c00195{left:167.366655pt;}
.x1f_c00195{left:174.821307pt;}
.x20_c00195{left:178.525632pt;}
.x21_c00195{left:182.577318pt;}
.x22_c00195{left:185.963463pt;}
.x23_c00195{left:188.262839pt;}
.x3_c00195{left:204.798568pt;}
.x2_c00195{left:206.697430pt;}
.x4_c00195{left:209.442955pt;}
.x5_c00195{left:213.744503pt;}
.x6_c00195{left:218.506891pt;}
.x7_c00195{left:220.950947pt;}
.x8_c00195{left:223.623762pt;}
.x9_c00195{left:227.041187pt;}
.x41_c00195{left:228.108486pt;}
.xa_c00195{left:229.962704pt;}
.xb_c00195{left:233.906932pt;}
.xc_c00195{left:241.567426pt;}
.xd_c00195{left:252.092435pt;}
.xe_c00195{left:258.703382pt;}
.xf_c00195{left:261.720880pt;}
.x40_c00195{left:262.769032pt;}
.x10_c00195{left:266.467148pt;}
.x11_c00195{left:269.480012pt;}
.x12_c00195{left:273.046051pt;}
.x29_c00195{left:290.708831pt;}
.x2a_c00195{left:291.790874pt;}
.x2b_c00195{left:293.053997pt;}
.x2c_c00195{left:296.073752pt;}
.x2d_c00195{left:298.940009pt;}
.x2e_c00195{left:304.168673pt;}
.x2f_c00195{left:309.668213pt;}
.x28_c00195{left:312.650435pt;}
.x30_c00195{left:314.728661pt;}
.x31_c00195{left:317.759772pt;}
.x32_c00195{left:324.788328pt;}
.x33_c00195{left:331.889587pt;}
.x34_c00195{left:337.898220pt;}
.x35_c00195{left:340.582851pt;}
.x36_c00195{left:343.253275pt;}
.x37_c00195{left:346.273697pt;}
.x38_c00195{left:348.599989pt;}
.x39_c00195{left:351.546252pt;}
.x3a_c00195{left:356.146534pt;}
.x3b_c00195{left:358.639645pt;}
.x42_c00195{left:402.019318pt;}
.x26_c00195{left:413.241039pt;}
.x3c_c00195{left:590.616391pt;}
.x1_c00195{left:619.840748pt;}
.x27_c00195{left:652.036124pt;}
.x25_c00195{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6ebecf6b261c844c1618028.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.006348;font-style:normal;font-weight:normal;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_b762444e6c7617814fe90a11.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.005371;font-style:normal;font-weight:normal;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_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.006348;font-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_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);}
.v0_c00196{vertical-align:0.000000px;}
.ls0_c00196{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00196{word-spacing:0.000000px;}
._d_c00196{width:1.200667px;}
._a_c00196{width:2.857682px;}
._9_c00196{width:4.193616px;}
._2_c00196{width:5.343750px;}
._7_c00196{width:6.355155px;}
._4_c00196{width:7.531196px;}
._6_c00196{width:9.502213px;}
._b_c00196{width:11.250001px;}
._8_c00196{width:13.095701px;}
._f_c00196{width:14.387007px;}
._0_c00196{width:15.440598px;}
._5_c00196{width:16.910152px;}
._c_c00196{width:22.907795px;}
._1_c00196{width:26.680364px;}
._e_c00196{width:28.388671px;}
._3_c00196{width:55.054685px;}
.fc1_c00196{color:rgb(67,91,56);}
.fc0_c00196{color:rgb(0,0,0);}
.fs0_c00196{font-size:71.999997px;}
.y0_c00196{bottom:0.000000px;}
.y1_c00196{bottom:0.000008px;}
.y23_c00196{bottom:29.400983px;}
.y1d_c00196{bottom:188.159759px;}
.y1c_c00196{bottom:218.534758px;}
.y1b_c00196{bottom:248.909757px;}
.y1a_c00196{bottom:279.284756px;}
.y19_c00196{bottom:309.659754px;}
.y18_c00196{bottom:340.034753px;}
.y17_c00196{bottom:370.409752px;}
.y16_c00196{bottom:400.784751px;}
.y15_c00196{bottom:431.159749px;}
.y14_c00196{bottom:461.534748px;}
.y13_c00196{bottom:491.909747px;}
.y12_c00196{bottom:522.284745px;}
.y11_c00196{bottom:552.659744px;}
.y10_c00196{bottom:583.034743px;}
.yf_c00196{bottom:613.409742px;}
.ye_c00196{bottom:643.784740px;}
.yd_c00196{bottom:674.159739px;}
.yc_c00196{bottom:704.534738px;}
.yb_c00196{bottom:734.909737px;}
.ya_c00196{bottom:765.284735px;}
.y9_c00196{bottom:795.659734px;}
.y8_c00196{bottom:826.034733px;}
.y7_c00196{bottom:856.409732px;}
.y6_c00196{bottom:886.784730px;}
.y5_c00196{bottom:917.159729px;}
.y4_c00196{bottom:947.534728px;}
.y3_c00196{bottom:977.909726px;}
.y2_c00196{bottom:1008.284725px;}
.y1e_c00196{bottom:1043.163590px;}
.y22_c00196{bottom:1108.610111px;}
.y21_c00196{bottom:1138.985110px;}
.y20_c00196{bottom:1169.360109px;}
.y1f_c00196{bottom:1199.772371px;}
.h3_c00196{height:55.160154px;}
.h2_c00196{height:1304.999946px;}
.h0_c00196{height:1304.999953px;}
.h1_c00196{height:1305.000000px;}
.w2_c00196{width:934.874961px;}
.w0_c00196{width:934.875000px;}
.w1_c00196{width:935.250000px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:87.902647px;}
.x2_c00196{left:90.844844px;}
.x3_c00196{left:452.271732px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls0_c00196{letter-spacing:0.000000pt;}
.ws0_c00196{word-spacing:0.000000pt;}
._d_c00196{width:1.067260pt;}
._a_c00196{width:2.540161pt;}
._9_c00196{width:3.727659pt;}
._2_c00196{width:4.750000pt;}
._7_c00196{width:5.649027pt;}
._4_c00196{width:6.694397pt;}
._6_c00196{width:8.446411pt;}
._b_c00196{width:10.000001pt;}
._8_c00196{width:11.640623pt;}
._f_c00196{width:12.788451pt;}
._0_c00196{width:13.724976pt;}
._5_c00196{width:15.031246pt;}
._c_c00196{width:20.362485pt;}
._1_c00196{width:23.715879pt;}
._e_c00196{width:25.234374pt;}
._3_c00196{width:48.937498pt;}
.fs0_c00196{font-size:63.999997pt;}
.y0_c00196{bottom:0.000000pt;}
.y1_c00196{bottom:0.000007pt;}
.y23_c00196{bottom:26.134207pt;}
.y1d_c00196{bottom:167.253119pt;}
.y1c_c00196{bottom:194.253118pt;}
.y1b_c00196{bottom:221.253117pt;}
.y1a_c00196{bottom:248.253116pt;}
.y19_c00196{bottom:275.253115pt;}
.y18_c00196{bottom:302.253114pt;}
.y17_c00196{bottom:329.253113pt;}
.y16_c00196{bottom:356.253112pt;}
.y15_c00196{bottom:383.253110pt;}
.y14_c00196{bottom:410.253109pt;}
.y13_c00196{bottom:437.253108pt;}
.y12_c00196{bottom:464.253107pt;}
.y11_c00196{bottom:491.253106pt;}
.y10_c00196{bottom:518.253105pt;}
.yf_c00196{bottom:545.253104pt;}
.ye_c00196{bottom:572.253103pt;}
.yd_c00196{bottom:599.253101pt;}
.yc_c00196{bottom:626.253100pt;}
.yb_c00196{bottom:653.253099pt;}
.ya_c00196{bottom:680.253098pt;}
.y9_c00196{bottom:707.253097pt;}
.y8_c00196{bottom:734.253096pt;}
.y7_c00196{bottom:761.253095pt;}
.y6_c00196{bottom:788.253094pt;}
.y5_c00196{bottom:815.253092pt;}
.y4_c00196{bottom:842.253091pt;}
.y3_c00196{bottom:869.253090pt;}
.y2_c00196{bottom:896.253089pt;}
.y1e_c00196{bottom:927.256525pt;}
.y22_c00196{bottom:985.431210pt;}
.y21_c00196{bottom:1012.431209pt;}
.y20_c00196{bottom:1039.431208pt;}
.y1f_c00196{bottom:1066.464330pt;}
.h3_c00196{height:49.031248pt;}
.h2_c00196{height:1159.999952pt;}
.h0_c00196{height:1159.999959pt;}
.h1_c00196{height:1160.000000pt;}
.w2_c00196{width:830.999965pt;}
.w0_c00196{width:831.000000pt;}
.w1_c00196{width:831.333333pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:78.135686pt;}
.x2_c00196{left:80.750973pt;}
.x3_c00196{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.006348;font-style:normal;font-weight:normal;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_cf425125e3bf2d1891b1ebd5.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_9e5a9957681c53c7b2795cf5.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.005371;font-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_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);}
.v0_c00197{vertical-align:0.000000px;}
.ls0_c00197{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00197{word-spacing:0.000000px;}
._0_c00197{width:2.936853px;}
._5_c00197{width:3.937283px;}
._1_c00197{width:5.397788px;}
._8_c00197{width:6.431601px;}
._a_c00197{width:13.042968px;}
._6_c00197{width:14.790684px;}
._9_c00197{width:16.631582px;}
._4_c00197{width:20.194723px;}
._2_c00197{width:24.360053px;}
._3_c00197{width:34.178875px;}
._7_c00197{width:44.603666px;}
.fc1_c00197{color:rgb(0,0,0);}
.fc0_c00197{color:rgb(67,91,56);}
.fs0_c00197{font-size:71.999997px;}
.y0_c00197{bottom:0.000000px;}
.y1_c00197{bottom:0.000008px;}
.y12_c00197{bottom:29.401163px;}
.y9_c00197{bottom:706.257043px;}
.y8_c00197{bottom:736.632041px;}
.y7_c00197{bottom:767.007040px;}
.y6_c00197{bottom:797.382039px;}
.y5_c00197{bottom:827.757038px;}
.y4_c00197{bottom:858.582036px;}
.y3_c00197{bottom:912.007229px;}
.y2_c00197{bottom:943.029454px;}
.y11_c00197{bottom:1003.662203px;}
.y10_c00197{bottom:1031.787202px;}
.yf_c00197{bottom:1059.912201px;}
.ye_c00197{bottom:1088.037199px;}
.yd_c00197{bottom:1116.162198px;}
.yc_c00197{bottom:1144.287197px;}
.yb_c00197{bottom:1172.412196px;}
.ya_c00197{bottom:1200.537195px;}
.h3_c00197{height:55.160154px;}
.h2_c00197{height:1304.999946px;}
.h0_c00197{height:1304.999953px;}
.h1_c00197{height:1305.000000px;}
.w2_c00197{width:934.874961px;}
.w0_c00197{width:934.875000px;}
.w1_c00197{width:935.250000px;}
.x0_c00197{left:0.000000px;}
.x2_c00197{left:88.695050px;}
.x1_c00197{left:90.279857px;}
.x3_c00197{left:452.271732px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.ws0_c00197{word-spacing:0.000000pt;}
._0_c00197{width:2.610536pt;}
._5_c00197{width:3.499807pt;}
._1_c00197{width:4.798034pt;}
._8_c00197{width:5.716978pt;}
._a_c00197{width:11.593750pt;}
._6_c00197{width:13.147275pt;}
._9_c00197{width:14.783629pt;}
._4_c00197{width:17.950865pt;}
._2_c00197{width:21.653380pt;}
._3_c00197{width:30.381222pt;}
._7_c00197{width:39.647703pt;}
.fs0_c00197{font-size:63.999997pt;}
.y0_c00197{bottom:0.000000pt;}
.y1_c00197{bottom:0.000007pt;}
.y12_c00197{bottom:26.134367pt;}
.y9_c00197{bottom:627.784038pt;}
.y8_c00197{bottom:654.784037pt;}
.y7_c00197{bottom:681.784036pt;}
.y6_c00197{bottom:708.784034pt;}
.y5_c00197{bottom:735.784033pt;}
.y4_c00197{bottom:763.184032pt;}
.y3_c00197{bottom:810.673093pt;}
.y2_c00197{bottom:838.248403pt;}
.y11_c00197{bottom:892.144180pt;}
.y10_c00197{bottom:917.144179pt;}
.yf_c00197{bottom:942.144178pt;}
.ye_c00197{bottom:967.144177pt;}
.yd_c00197{bottom:992.144176pt;}
.yc_c00197{bottom:1017.144175pt;}
.yb_c00197{bottom:1042.144174pt;}
.ya_c00197{bottom:1067.144173pt;}
.h3_c00197{height:49.031248pt;}
.h2_c00197{height:1159.999952pt;}
.h0_c00197{height:1159.999959pt;}
.h1_c00197{height:1160.000000pt;}
.w2_c00197{width:830.999965pt;}
.w0_c00197{width:831.000000pt;}
.w1_c00197{width:831.333333pt;}
.x0_c00197{left:0.000000pt;}
.x2_c00197{left:78.840045pt;}
.x1_c00197{left:80.248761pt;}
.x3_c00197{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:0.734863;font-style:normal;font-weight:normal;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_131127ea57b644ab86a13174.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:0.743000;font-style:normal;font-weight: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_c00198;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:1.000000;font-style:normal;font-weight: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_c00198;src:url('chunks/assets/font_d1407983708001bd2c8c9655.woff2')format("woff");}.ff6_c00198{font-family:ff6_c00198;line-height:1.171387;font-style:normal;font-weight: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_c00198;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff7_c00198{font-family:ff7_c00198;line-height:1.006348;font-style:normal;font-weight: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_c00198;src:url('chunks/assets/font_c6474dfec12d2b5ccb5179cf.woff2')format("woff");}.ff8_c00198{font-family:ff8_c00198;line-height:1.000000;font-style:normal;font-weight: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_c00198;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00198{font-family:ff9_c00198;line-height:0.940000;font-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_c00198{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00198{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00198{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00198{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00198{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00198{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00198{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00198{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00198{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00198{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00198{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00198{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00198{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00198{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00198{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00198{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00198{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00198{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00198{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00198{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00198{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00198{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00198{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00198{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00198{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00198{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00198{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00198{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00198{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00198{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00198{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00198{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00198{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00198{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00198{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00198{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00198{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00198{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00198{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00198{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00198{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00198{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00198{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00198{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00198{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00198{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00198{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00198{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00198{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00198{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00198{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00198{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00198{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00198{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00198{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00198{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00198{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00198{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00198{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00198{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00198{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00198{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00198{vertical-align:0.000000px;}
.v1_c00198{vertical-align:1.278288px;}
.ls0_c00198{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00198{word-spacing:-41.689573px;}
.ws0_c00198{word-spacing:-15.171263px;}
.ws2_c00198{word-spacing:-0.089985px;}
.ws1_c00198{word-spacing:-0.055755px;}
.ws5_c00198{word-spacing:0.000000px;}
.ws3_c00198{word-spacing:288.058683px;}
._2_c00198{width:6.737161px;}
._0_c00198{width:7.828100px;}
._1_c00198{width:14.751547px;}
.fc4_c00198{color:transparent;}
.fc3_c00198{color:rgb(67,91,56);}
.fc2_c00198{color:rgb(255,255,255);}
.fc1_c00198{color:rgb(0,0,0);}
.fc0_c00198{color:rgb(9,71,81);}
.fsd_c00198{font-size:39.757786px;}
.fs7_c00198{font-size:41.999830px;}
.fsc_c00198{font-size:42.000118px;}
.fs4_c00198{font-size:47.368230px;}
.fs1_c00198{font-size:47.368231px;}
.fs5_c00198{font-size:47.368232px;}
.fs2_c00198{font-size:47.368233px;}
.fs3_c00198{font-size:47.368235px;}
.fs0_c00198{font-size:51.661596px;}
.fs8_c00198{font-size:55.754999px;}
.fsf_c00198{font-size:59.984997px;}
.fs9_c00198{font-size:71.999997px;}
.fsa_c00198{font-size:74.424240px;}
.fs6_c00198{font-size:77.011488px;}
.fsb_c00198{font-size:89.985250px;}
.fse_c00198{font-size:95.984996px;}
.y0_c00198{bottom:0.000000px;}
.y1_c00198{bottom:0.000008px;}
.y51_c00198{bottom:29.401163px;}
.y4a_c00198{bottom:194.995180px;}
.y49_c00198{bottom:225.370179px;}
.y48_c00198{bottom:255.745177px;}
.y47_c00198{bottom:286.120176px;}
.y4b_c00198{bottom:322.698975px;}
.y2_c00198{bottom:401.525233px;}
.y2e_c00198{bottom:486.888550px;}
.y10_c00198{bottom:493.328193px;}
.y24_c00198{bottom:493.343723px;}
.yf_c00198{bottom:493.853349px;}
.y25_c00198{bottom:493.873061px;}
.y3c_c00198{bottom:493.959311px;}
.y23_c00198{bottom:494.588120px;}
.y3d_c00198{bottom:494.792564px;}
.y3b_c00198{bottom:494.812830px;}
.ye_c00198{bottom:494.919675px;}
.y22_c00198{bottom:495.839509px;}
.y3a_c00198{bottom:495.847693px;}
.yd_c00198{bottom:495.992682px;}
.y26_c00198{bottom:496.289992px;}
.y11_c00198{bottom:496.353473px;}
.y3e_c00198{bottom:496.973807px;}
.y21_c00198{bottom:497.484380px;}
.yc_c00198{bottom:497.644566px;}
.y39_c00198{bottom:498.050705px;}
.y3f_c00198{bottom:498.365140px;}
.y20_c00198{bottom:499.172711px;}
.yb_c00198{bottom:499.338107px;}
.y40_c00198{bottom:500.063439px;}
.y12_c00198{bottom:500.630691px;}
.y1f_c00198{bottom:501.037949px;}
.ya_c00198{bottom:501.207920px;}
.y27_c00198{bottom:501.390163px;}
.y38_c00198{bottom:501.841887px;}
.y41_c00198{bottom:502.505484px;}
.y13_c00198{bottom:503.149881px;}
.y42_c00198{bottom:504.764625px;}
.y28_c00198{bottom:505.018723px;}
.y1e_c00198{bottom:505.692484px;}
.y9_c00198{bottom:505.872210px;}
.y37_c00198{bottom:507.311178px;}
.y43_c00198{bottom:508.033427px;}
.y14_c00198{bottom:509.101920px;}
.y29_c00198{bottom:510.652700px;}
.y36_c00198{bottom:511.777589px;}
.y1d_c00198{bottom:512.093421px;}
.y8_c00198{bottom:512.281650px;}
.y15_c00198{bottom:513.850725px;}
.y44_c00198{bottom:516.430791px;}
.y2a_c00198{bottom:517.310242px;}
.y35_c00198{bottom:518.201920px;}
.y1c_c00198{bottom:519.400744px;}
.y7_c00198{bottom:519.491089px;}
.y34_c00198{bottom:522.772118px;}
.y6_c00198{bottom:522.949612px;}
.y45_c00198{bottom:524.479585px;}
.y16_c00198{bottom:525.634963px;}
.y1b_c00198{bottom:526.562252px;}
.y5_c00198{bottom:528.960111px;}
.y2b_c00198{bottom:529.273374px;}
.y33_c00198{bottom:530.544173px;}
.y1a_c00198{bottom:531.331371px;}
.y2d_c00198{bottom:533.268367px;}
.y31_c00198{bottom:533.962015px;}
.y32_c00198{bottom:534.438127px;}
.y4_c00198{bottom:536.219342px;}
.y19_c00198{bottom:537.504234px;}
.y17_c00198{bottom:537.874949px;}
.y2c_c00198{bottom:538.238862px;}
.y2f_c00198{bottom:539.974832px;}
.y18_c00198{bottom:544.567170px;}
.y3_c00198{bottom:545.754118px;}
.y30_c00198{bottom:577.437330px;}
.y46_c00198{bottom:639.092421px;}
.y52_c00198{bottom:1021.439841px;}
.y4f_c00198{bottom:1128.788391px;}
.y4d_c00198{bottom:1133.738410px;}
.y4c_c00198{bottom:1147.738449px;}
.y50_c00198{bottom:1153.262414px;}
.y4e_c00198{bottom:1171.082693px;}
.hc_c00198{height:32.176627px;}
.h8_c00198{height:35.988753px;}
.h9_c00198{height:35.988755px;}
.ha_c00198{height:35.988756px;}
.h7_c00198{height:36.289430px;}
.h4_c00198{height:36.289431px;}
.h5_c00198{height:36.289433px;}
.h6_c00198{height:36.289434px;}
.h12_c00198{height:37.020556px;}
.h3_c00198{height:37.459702px;}
.h11_c00198{height:39.108509px;}
.h16_c00198{height:45.588598px;}
.hd_c00198{height:51.916398px;}
.he_c00198{height:55.160154px;}
.hb_c00198{height:56.295398px;}
.hf_c00198{height:57.017399px;}
.h15_c00198{height:57.573686px;}
.h13_c00198{height:67.042966px;}
.h10_c00198{height:68.367700px;}
.h14_c00198{height:89.376654px;}
.h2_c00198{height:1304.999946px;}
.h0_c00198{height:1304.999953px;}
.h1_c00198{height:1305.000000px;}
.w2_c00198{width:934.874961px;}
.w0_c00198{width:934.875000px;}
.w1_c00198{width:935.250000px;}
.x0_c00198{left:0.000000px;}
.x3d_c00198{left:87.010859px;}
.x3e_c00198{left:107.230262px;}
.x3f_c00198{left:108.827167px;}
.x43_c00198{left:130.690629px;}
.x14_c00198{left:134.974838px;}
.x13_c00198{left:136.648279px;}
.x15_c00198{left:140.021272px;}
.x16_c00198{left:144.871714px;}
.x17_c00198{left:150.237526px;}
.x18_c00198{left:152.990336px;}
.x19_c00198{left:156.000220px;}
.x1a_c00198{left:159.847713px;}
.x24_c00198{left:161.443962px;}
.x1b_c00198{left:163.301377px;}
.x1c_c00198{left:171.586339px;}
.x1d_c00198{left:179.855997px;}
.x1e_c00198{left:188.287487px;}
.x1f_c00198{left:196.673970px;}
.x20_c00198{left:200.841336px;}
.x21_c00198{left:205.399483px;}
.x22_c00198{left:209.208896px;}
.x23_c00198{left:211.795693px;}
.x3_c00198{left:230.398389px;}
.x2_c00198{left:232.534609px;}
.x4_c00198{left:235.623324px;}
.x5_c00198{left:240.462566px;}
.x6_c00198{left:245.820252px;}
.x7_c00198{left:248.569815px;}
.x8_c00198{left:251.576732px;}
.x9_c00198{left:255.421336px;}
.x41_c00198{left:256.622047px;}
.xa_c00198{left:258.708042px;}
.xb_c00198{left:263.145298px;}
.xc_c00198{left:271.763354px;}
.xd_c00198{left:283.603990px;}
.xe_c00198{left:291.041304px;}
.xf_c00198{left:294.435991px;}
.x40_c00198{left:295.615161px;}
.x10_c00198{left:299.775542px;}
.x11_c00198{left:303.165014px;}
.x12_c00198{left:307.176807px;}
.x29_c00198{left:327.047435px;}
.x2a_c00198{left:328.264734px;}
.x2b_c00198{left:329.685747px;}
.x2c_c00198{left:333.082971px;}
.x2d_c00198{left:336.307511px;}
.x2e_c00198{left:342.189757px;}
.x2f_c00198{left:348.376740px;}
.x28_c00198{left:351.731739px;}
.x30_c00198{left:354.069743px;}
.x31_c00198{left:357.479743px;}
.x32_c00198{left:365.386869px;}
.x33_c00198{left:373.375785px;}
.x34_c00198{left:380.135498px;}
.x35_c00198{left:383.155707px;}
.x36_c00198{left:386.159935px;}
.x37_c00198{left:389.557910px;}
.x38_c00198{left:392.174988px;}
.x39_c00198{left:395.489533px;}
.x3a_c00198{left:400.664851px;}
.x3b_c00198{left:403.469600px;}
.x42_c00198{left:452.271732px;}
.x26_c00198{left:464.896169px;}
.x3c_c00198{left:664.443440px;}
.x1_c00198{left:697.320842px;}
.x27_c00198{left:733.540639px;}
.x25_c00198{left:757.088990px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.v1_c00198{vertical-align:1.136256pt;}
.ls0_c00198{letter-spacing:0.000000pt;}
.ws4_c00198{word-spacing:-37.057398pt;}
.ws0_c00198{word-spacing:-13.485567pt;}
.ws2_c00198{word-spacing:-0.079987pt;}
.ws1_c00198{word-spacing:-0.049560pt;}
.ws5_c00198{word-spacing:0.000000pt;}
.ws3_c00198{word-spacing:256.052163pt;}
._2_c00198{width:5.988587pt;}
._0_c00198{width:6.958311pt;}
._1_c00198{width:13.112486pt;}
.fsd_c00198{font-size:35.340254pt;}
.fs7_c00198{font-size:37.333182pt;}
.fsc_c00198{font-size:37.333438pt;}
.fs4_c00198{font-size:42.105093pt;}
.fs1_c00198{font-size:42.105094pt;}
.fs5_c00198{font-size:42.105095pt;}
.fs2_c00198{font-size:42.105096pt;}
.fs3_c00198{font-size:42.105098pt;}
.fs0_c00198{font-size:45.921418pt;}
.fs8_c00198{font-size:49.559999pt;}
.fsf_c00198{font-size:53.319997pt;}
.fs9_c00198{font-size:63.999997pt;}
.fsa_c00198{font-size:66.154880pt;}
.fs6_c00198{font-size:68.454656pt;}
.fsb_c00198{font-size:79.986889pt;}
.fse_c00198{font-size:85.319996pt;}
.y0_c00198{bottom:0.000000pt;}
.y1_c00198{bottom:0.000007pt;}
.y51_c00198{bottom:26.134367pt;}
.y4a_c00198{bottom:173.329049pt;}
.y49_c00198{bottom:200.329048pt;}
.y48_c00198{bottom:227.329047pt;}
.y47_c00198{bottom:254.329045pt;}
.y4b_c00198{bottom:286.843533pt;}
.y2_c00198{bottom:356.911319pt;}
.y2e_c00198{bottom:432.789822pt;}
.y10_c00198{bottom:438.513950pt;}
.y24_c00198{bottom:438.527754pt;}
.yf_c00198{bottom:438.980754pt;}
.y25_c00198{bottom:438.998276pt;}
.y3c_c00198{bottom:439.074943pt;}
.y23_c00198{bottom:439.633885pt;}
.y3d_c00198{bottom:439.815613pt;}
.y3b_c00198{bottom:439.833627pt;}
.ye_c00198{bottom:439.928600pt;}
.y22_c00198{bottom:440.746230pt;}
.y3a_c00198{bottom:440.753505pt;}
.yd_c00198{bottom:440.882384pt;}
.y26_c00198{bottom:441.146660pt;}
.y11_c00198{bottom:441.203087pt;}
.y3e_c00198{bottom:441.754495pt;}
.y21_c00198{bottom:442.208338pt;}
.yc_c00198{bottom:442.350726pt;}
.y39_c00198{bottom:442.711737pt;}
.y3f_c00198{bottom:442.991236pt;}
.y20_c00198{bottom:443.709077pt;}
.yb_c00198{bottom:443.856095pt;}
.y40_c00198{bottom:444.500834pt;}
.y12_c00198{bottom:445.005059pt;}
.y1f_c00198{bottom:445.367066pt;}
.ya_c00198{bottom:445.518151pt;}
.y27_c00198{bottom:445.680145pt;}
.y38_c00198{bottom:446.081677pt;}
.y41_c00198{bottom:446.671541pt;}
.y13_c00198{bottom:447.244339pt;}
.y42_c00198{bottom:448.679667pt;}
.y28_c00198{bottom:448.905531pt;}
.y1e_c00198{bottom:449.504430pt;}
.y9_c00198{bottom:449.664187pt;}
.y37_c00198{bottom:450.943270pt;}
.y43_c00198{bottom:451.585269pt;}
.y14_c00198{bottom:452.535040pt;}
.y29_c00198{bottom:453.913511pt;}
.y36_c00198{bottom:454.913413pt;}
.y1d_c00198{bottom:455.194152pt;}
.y8_c00198{bottom:455.361467pt;}
.y15_c00198{bottom:456.756200pt;}
.y44_c00198{bottom:459.049592pt;}
.y2a_c00198{bottom:459.831327pt;}
.y35_c00198{bottom:460.623928pt;}
.y1c_c00198{bottom:461.689550pt;}
.y7_c00198{bottom:461.769857pt;}
.y34_c00198{bottom:464.686327pt;}
.y6_c00198{bottom:464.844100pt;}
.y45_c00198{bottom:466.204075pt;}
.y16_c00198{bottom:467.231078pt;}
.y1b_c00198{bottom:468.055335pt;}
.y5_c00198{bottom:470.186765pt;}
.y2b_c00198{bottom:470.465221pt;}
.y33_c00198{bottom:471.594820pt;}
.y1a_c00198{bottom:472.294552pt;}
.y2d_c00198{bottom:474.016326pt;}
.y31_c00198{bottom:474.632902pt;}
.y32_c00198{bottom:475.056113pt;}
.y4_c00198{bottom:476.639415pt;}
.y19_c00198{bottom:477.781541pt;}
.y17_c00198{bottom:478.111066pt;}
.y2c_c00198{bottom:478.434544pt;}
.y2f_c00198{bottom:479.977628pt;}
.y18_c00198{bottom:484.059707pt;}
.y3_c00198{bottom:485.114772pt;}
.y30_c00198{bottom:513.277627pt;}
.y46_c00198{bottom:568.082152pt;}
.y52_c00198{bottom:907.946525pt;}
.y4f_c00198{bottom:1003.367459pt;}
.y4d_c00198{bottom:1007.767476pt;}
.y4c_c00198{bottom:1020.211955pt;}
.y50_c00198{bottom:1025.122146pt;}
.y4e_c00198{bottom:1040.962393pt;}
.hc_c00198{height:28.601447pt;}
.h8_c00198{height:31.990003pt;}
.h9_c00198{height:31.990004pt;}
.ha_c00198{height:31.990006pt;}
.h7_c00198{height:32.257271pt;}
.h4_c00198{height:32.257272pt;}
.h5_c00198{height:32.257274pt;}
.h6_c00198{height:32.257275pt;}
.h12_c00198{height:32.907161pt;}
.h3_c00198{height:33.297513pt;}
.h11_c00198{height:34.763119pt;}
.h16_c00198{height:40.523198pt;}
.hd_c00198{height:46.147909pt;}
.he_c00198{height:49.031248pt;}
.hb_c00198{height:50.040354pt;}
.hf_c00198{height:50.682132pt;}
.h15_c00198{height:51.176609pt;}
.h13_c00198{height:59.593748pt;}
.h10_c00198{height:60.771289pt;}
.h14_c00198{height:79.445915pt;}
.h2_c00198{height:1159.999952pt;}
.h0_c00198{height:1159.999959pt;}
.h1_c00198{height:1160.000000pt;}
.w2_c00198{width:830.999965pt;}
.w0_c00198{width:831.000000pt;}
.w1_c00198{width:831.333333pt;}
.x0_c00198{left:0.000000pt;}
.x3d_c00198{left:77.342986pt;}
.x3e_c00198{left:95.315788pt;}
.x3f_c00198{left:96.735260pt;}
.x43_c00198{left:116.169448pt;}
.x14_c00198{left:119.977634pt;}
.x13_c00198{left:121.465137pt;}
.x15_c00198{left:124.463353pt;}
.x16_c00198{left:128.774857pt;}
.x17_c00198{left:133.544468pt;}
.x18_c00198{left:135.991410pt;}
.x19_c00198{left:138.666862pt;}
.x1a_c00198{left:142.086856pt;}
.x24_c00198{left:143.505744pt;}
.x1b_c00198{left:145.156780pt;}
.x1c_c00198{left:152.521190pt;}
.x1d_c00198{left:159.871997pt;}
.x1e_c00198{left:167.366655pt;}
.x1f_c00198{left:174.821307pt;}
.x20_c00198{left:178.525632pt;}
.x21_c00198{left:182.577318pt;}
.x22_c00198{left:185.963463pt;}
.x23_c00198{left:188.262839pt;}
.x3_c00198{left:204.798568pt;}
.x2_c00198{left:206.697430pt;}
.x4_c00198{left:209.442955pt;}
.x5_c00198{left:213.744503pt;}
.x6_c00198{left:218.506891pt;}
.x7_c00198{left:220.950947pt;}
.x8_c00198{left:223.623762pt;}
.x9_c00198{left:227.041187pt;}
.x41_c00198{left:228.108486pt;}
.xa_c00198{left:229.962704pt;}
.xb_c00198{left:233.906932pt;}
.xc_c00198{left:241.567426pt;}
.xd_c00198{left:252.092435pt;}
.xe_c00198{left:258.703382pt;}
.xf_c00198{left:261.720880pt;}
.x40_c00198{left:262.769032pt;}
.x10_c00198{left:266.467148pt;}
.x11_c00198{left:269.480012pt;}
.x12_c00198{left:273.046051pt;}
.x29_c00198{left:290.708831pt;}
.x2a_c00198{left:291.790874pt;}
.x2b_c00198{left:293.053997pt;}
.x2c_c00198{left:296.073752pt;}
.x2d_c00198{left:298.940009pt;}
.x2e_c00198{left:304.168673pt;}
.x2f_c00198{left:309.668213pt;}
.x28_c00198{left:312.650435pt;}
.x30_c00198{left:314.728661pt;}
.x31_c00198{left:317.759772pt;}
.x32_c00198{left:324.788328pt;}
.x33_c00198{left:331.889587pt;}
.x34_c00198{left:337.898220pt;}
.x35_c00198{left:340.582851pt;}
.x36_c00198{left:343.253275pt;}
.x37_c00198{left:346.273697pt;}
.x38_c00198{left:348.599989pt;}
.x39_c00198{left:351.546252pt;}
.x3a_c00198{left:356.146534pt;}
.x3b_c00198{left:358.639645pt;}
.x42_c00198{left:402.019318pt;}
.x26_c00198{left:413.241039pt;}
.x3c_c00198{left:590.616391pt;}
.x1_c00198{left:619.840748pt;}
.x27_c00198{left:652.036124pt;}
.x25_c00198{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ab02fe238156c5e9b0c2a21.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.006348;font-style:normal;font-weight:normal;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_d1277c5c3a6dceeb3529e896.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.006348;font-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_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);}
.v0_c00199{vertical-align:0.000000px;}
.ls0_c00199{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00199{word-spacing:-19.320776px;}
.ws0_c00199{word-spacing:-18.703125px;}
.ws2_c00199{word-spacing:0.000000px;}
._4_c00199{width:1.242140px;}
._1_c00199{width:2.903480px;}
._9_c00199{width:4.615010px;}
._a_c00199{width:7.414739px;}
._7_c00199{width:8.537064px;}
._0_c00199{width:12.807654px;}
._3_c00199{width:17.332028px;}
._2_c00199{width:22.499999px;}
._6_c00199{width:31.576147px;}
._8_c00199{width:33.035204px;}
._5_c00199{width:37.382762px;}
.fc1_c00199{color:rgb(67,91,56);}
.fc0_c00199{color:rgb(0,0,0);}
.fs0_c00199{font-size:71.999997px;}
.fs1_c00199{font-size:74.377724px;}
.y0_c00199{bottom:0.000000px;}
.y1_c00199{bottom:0.000008px;}
.y19_c00199{bottom:29.401163px;}
.y12_c00199{bottom:435.049434px;}
.y11_c00199{bottom:465.424433px;}
.y10_c00199{bottom:495.799431px;}
.yf_c00199{bottom:526.174430px;}
.ye_c00199{bottom:556.549429px;}
.yd_c00199{bottom:589.624427px;}
.yc_c00199{bottom:645.204346px;}
.yb_c00199{bottom:675.579345px;}
.ya_c00199{bottom:705.954344px;}
.y9_c00199{bottom:739.020555px;}
.y7_c00199{bottom:797.970552px;}
.y6_c00199{bottom:828.345551px;}
.y5_c00199{bottom:858.720550px;}
.y4_c00199{bottom:889.095549px;}
.y3_c00199{bottom:919.470547px;}
.y2_c00199{bottom:949.845546px;}
.y8_c00199{bottom:983.112147px;}
.y18_c00199{bottom:1043.608316px;}
.y17_c00199{bottom:1073.983315px;}
.y16_c00199{bottom:1104.358314px;}
.y15_c00199{bottom:1134.733312px;}
.y14_c00199{bottom:1165.108311px;}
.y13_c00199{bottom:1199.188901px;}
.h3_c00199{height:55.160154px;}
.h4_c00199{height:56.981762px;}
.h2_c00199{height:1304.999946px;}
.h0_c00199{height:1304.999953px;}
.h1_c00199{height:1305.000000px;}
.w2_c00199{width:934.874961px;}
.w0_c00199{width:934.875000px;}
.w1_c00199{width:935.250000px;}
.x0_c00199{left:0.000000px;}
.x1_c00199{left:89.487450px;}
.x2_c00199{left:91.072263px;}
.x3_c00199{left:92.429654px;}
.x4_c00199{left:452.271732px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws1_c00199{word-spacing:-17.174023pt;}
.ws0_c00199{word-spacing:-16.625000pt;}
.ws2_c00199{word-spacing:0.000000pt;}
._4_c00199{width:1.104124pt;}
._1_c00199{width:2.580871pt;}
._9_c00199{width:4.102231pt;}
._a_c00199{width:6.590879pt;}
._7_c00199{width:7.588501pt;}
._0_c00199{width:11.384581pt;}
._3_c00199{width:15.406247pt;}
._2_c00199{width:19.999999pt;}
._6_c00199{width:28.067687pt;}
._8_c00199{width:29.364626pt;}
._5_c00199{width:33.229122pt;}
.fs0_c00199{font-size:63.999997pt;}
.fs1_c00199{font-size:66.113533pt;}
.y0_c00199{bottom:0.000000pt;}
.y1_c00199{bottom:0.000007pt;}
.y19_c00199{bottom:26.134367pt;}
.y12_c00199{bottom:386.710608pt;}
.y11_c00199{bottom:413.710607pt;}
.y10_c00199{bottom:440.710606pt;}
.yf_c00199{bottom:467.710605pt;}
.ye_c00199{bottom:494.710603pt;}
.yd_c00199{bottom:524.110602pt;}
.yc_c00199{bottom:573.514975pt;}
.yb_c00199{bottom:600.514973pt;}
.ya_c00199{bottom:627.514972pt;}
.y9_c00199{bottom:656.907160pt;}
.y7_c00199{bottom:709.307158pt;}
.y6_c00199{bottom:736.307157pt;}
.y5_c00199{bottom:763.307155pt;}
.y4_c00199{bottom:790.307154pt;}
.y3_c00199{bottom:817.307153pt;}
.y2_c00199{bottom:844.307152pt;}
.y8_c00199{bottom:873.877464pt;}
.y18_c00199{bottom:927.651837pt;}
.y17_c00199{bottom:954.651835pt;}
.y16_c00199{bottom:981.651834pt;}
.y15_c00199{bottom:1008.651833pt;}
.y14_c00199{bottom:1035.651832pt;}
.y13_c00199{bottom:1065.945690pt;}
.h3_c00199{height:49.031248pt;}
.h4_c00199{height:50.650455pt;}
.h2_c00199{height:1159.999952pt;}
.h0_c00199{height:1159.999959pt;}
.h1_c00199{height:1160.000000pt;}
.w2_c00199{width:830.999965pt;}
.w0_c00199{width:831.000000pt;}
.w1_c00199{width:831.333333pt;}
.x0_c00199{left:0.000000pt;}
.x1_c00199{left:79.544400pt;}
.x2_c00199{left:80.953123pt;}
.x3_c00199{left:82.159693pt;}
.x4_c00199{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:0.734863;font-style:normal;font-weight:normal;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_679af3e9ac7b1a75a3201c88.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:0.743000;font-style:normal;font-weight: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_c00200;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;line-height:1.000000;font-style:normal;font-weight: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_c00200;src:url('chunks/assets/font_1b041a54afde8a6282712f98.woff2')format("woff");}.ff6_c00200{font-family:ff6_c00200;line-height:1.171387;font-style:normal;font-weight: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_c00200;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff7_c00200{font-family:ff7_c00200;line-height:1.006348;font-style:normal;font-weight: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_c00200;src:url('chunks/assets/font_e785d4161a9cd5ad55316aeb.woff2')format("woff");}.ff8_c00200{font-family:ff8_c00200;line-height:1.000000;font-style:normal;font-weight: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_c00200;src:url('chunks/assets/font_f5fbcf3ce11959614ff9b1ef.woff2')format("woff");}.ff9_c00200{font-family:ff9_c00200;line-height:1.119000;font-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_c00200{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00200{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00200{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00200{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00200{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00200{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00200{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00200{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00200{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00200{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00200{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00200{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00200{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00200{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00200{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00200{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00200{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00200{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00200{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00200{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00200{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00200{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00200{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00200{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00200{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00200{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00200{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00200{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00200{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00200{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00200{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00200{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00200{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00200{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00200{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00200{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00200{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00200{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00200{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00200{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00200{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00200{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00200{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00200{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00200{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00200{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00200{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00200{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00200{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00200{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00200{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00200{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00200{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00200{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00200{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00200{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00200{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00200{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00200{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00200{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00200{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00200{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00200{vertical-align:0.000000px;}
.v1_c00200{vertical-align:1.280304px;}
.ls0_c00200{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00200{word-spacing:-41.689573px;}
.ws0_c00200{word-spacing:-15.171263px;}
.ws2_c00200{word-spacing:-0.089985px;}
.ws1_c00200{word-spacing:-0.055755px;}
.ws5_c00200{word-spacing:0.000000px;}
.ws3_c00200{word-spacing:288.058683px;}
._1_c00200{width:4.602241px;}
._0_c00200{width:17.465583px;}
.fc4_c00200{color:transparent;}
.fc3_c00200{color:rgb(67,91,56);}
.fc2_c00200{color:rgb(255,255,255);}
.fc1_c00200{color:rgb(0,0,0);}
.fc0_c00200{color:rgb(9,71,81);}
.fsd_c00200{font-size:39.757786px;}
.fs7_c00200{font-size:41.999830px;}
.fsc_c00200{font-size:42.000118px;}
.fs4_c00200{font-size:47.368230px;}
.fs1_c00200{font-size:47.368231px;}
.fs5_c00200{font-size:47.368232px;}
.fs2_c00200{font-size:47.368233px;}
.fs3_c00200{font-size:47.368235px;}
.fs0_c00200{font-size:51.661596px;}
.fs8_c00200{font-size:55.754999px;}
.fsf_c00200{font-size:59.984997px;}
.fs9_c00200{font-size:71.999997px;}
.fsa_c00200{font-size:74.424240px;}
.fs6_c00200{font-size:77.011488px;}
.fsb_c00200{font-size:89.985250px;}
.fse_c00200{font-size:95.984996px;}
.y0_c00200{bottom:0.000000px;}
.y1_c00200{bottom:0.000008px;}
.y51_c00200{bottom:29.401163px;}
.y4a_c00200{bottom:205.368579px;}
.y49_c00200{bottom:235.743578px;}
.y48_c00200{bottom:266.118577px;}
.y47_c00200{bottom:296.493576px;}
.y4b_c00200{bottom:333.072266px;}
.y2_c00200{bottom:401.525233px;}
.y2e_c00200{bottom:486.888370px;}
.y10_c00200{bottom:493.328373px;}
.y24_c00200{bottom:493.343471px;}
.yf_c00200{bottom:493.853637px;}
.y25_c00200{bottom:493.873313px;}
.y3c_c00200{bottom:493.959419px;}
.y23_c00200{bottom:494.588120px;}
.y3d_c00200{bottom:494.792744px;}
.y3b_c00200{bottom:494.812830px;}
.ye_c00200{bottom:494.919783px;}
.y22_c00200{bottom:495.839401px;}
.y3a_c00200{bottom:495.847621px;}
.yd_c00200{bottom:495.993006px;}
.y26_c00200{bottom:496.289812px;}
.y11_c00200{bottom:496.353473px;}
.y3e_c00200{bottom:496.973987px;}
.y21_c00200{bottom:497.484272px;}
.yc_c00200{bottom:497.644566px;}
.y39_c00200{bottom:498.050345px;}
.y3f_c00200{bottom:498.364888px;}
.y20_c00200{bottom:499.172531px;}
.yb_c00200{bottom:499.338107px;}
.y40_c00200{bottom:500.063187px;}
.y12_c00200{bottom:500.630691px;}
.y1f_c00200{bottom:501.037769px;}
.ya_c00200{bottom:501.208172px;}
.y27_c00200{bottom:501.390631px;}
.y38_c00200{bottom:501.842067px;}
.y41_c00200{bottom:502.505484px;}
.y13_c00200{bottom:503.149449px;}
.y42_c00200{bottom:504.764445px;}
.y28_c00200{bottom:505.018795px;}
.y1e_c00200{bottom:505.692124px;}
.y9_c00200{bottom:505.871886px;}
.y37_c00200{bottom:507.310818px;}
.y43_c00200{bottom:508.033427px;}
.y14_c00200{bottom:509.101992px;}
.y29_c00200{bottom:510.652700px;}
.y36_c00200{bottom:511.777409px;}
.y1d_c00200{bottom:512.093493px;}
.y8_c00200{bottom:512.281758px;}
.y15_c00200{bottom:513.850725px;}
.y44_c00200{bottom:516.430683px;}
.y2a_c00200{bottom:517.310350px;}
.y35_c00200{bottom:518.202172px;}
.y1c_c00200{bottom:519.400636px;}
.y7_c00200{bottom:519.490837px;}
.y34_c00200{bottom:522.772046px;}
.y6_c00200{bottom:522.949612px;}
.y45_c00200{bottom:524.479585px;}
.y16_c00200{bottom:525.634639px;}
.y1b_c00200{bottom:526.562252px;}
.y5_c00200{bottom:528.959931px;}
.y2b_c00200{bottom:529.273374px;}
.y33_c00200{bottom:530.544173px;}
.y1a_c00200{bottom:531.331479px;}
.y2d_c00200{bottom:533.268115px;}
.y31_c00200{bottom:533.961835px;}
.y32_c00200{bottom:534.437983px;}
.y4_c00200{bottom:536.219342px;}
.y19_c00200{bottom:537.503802px;}
.y17_c00200{bottom:537.875201px;}
.y2c_c00200{bottom:538.238934px;}
.y2f_c00200{bottom:539.974724px;}
.y18_c00200{bottom:544.567278px;}
.y3_c00200{bottom:545.754118px;}
.y30_c00200{bottom:577.437042px;}
.y46_c00200{bottom:639.092601px;}
.y52_c00200{bottom:1021.439863px;}
.y4f_c00200{bottom:1128.788247px;}
.y4d_c00200{bottom:1133.738464px;}
.y4c_c00200{bottom:1147.738503px;}
.y50_c00200{bottom:1153.262281px;}
.y4e_c00200{bottom:1171.082779px;}
.hc_c00200{height:32.176627px;}
.h8_c00200{height:35.988753px;}
.h9_c00200{height:35.988755px;}
.ha_c00200{height:35.988756px;}
.h7_c00200{height:36.289430px;}
.h4_c00200{height:36.289431px;}
.h5_c00200{height:36.289433px;}
.h6_c00200{height:36.289434px;}
.h12_c00200{height:37.020556px;}
.h3_c00200{height:37.459702px;}
.h11_c00200{height:39.108509px;}
.hd_c00200{height:51.916398px;}
.he_c00200{height:55.160154px;}
.hb_c00200{height:56.295398px;}
.h16_c00200{height:56.325912px;}
.hf_c00200{height:57.017399px;}
.h15_c00200{height:57.575702px;}
.h13_c00200{height:67.042966px;}
.h10_c00200{height:68.367700px;}
.h14_c00200{height:89.376654px;}
.h2_c00200{height:1304.999946px;}
.h0_c00200{height:1304.999953px;}
.h1_c00200{height:1305.000000px;}
.w2_c00200{width:934.874961px;}
.w0_c00200{width:934.875000px;}
.w1_c00200{width:935.250000px;}
.x0_c00200{left:0.000000px;}
.x3e_c00200{left:87.010859px;}
.x3d_c00200{left:89.487450px;}
.x3f_c00200{left:107.230262px;}
.x40_c00200{left:108.827167px;}
.x44_c00200{left:130.690629px;}
.x14_c00200{left:134.974838px;}
.x13_c00200{left:136.648279px;}
.x15_c00200{left:140.021272px;}
.x16_c00200{left:144.871714px;}
.x17_c00200{left:150.237526px;}
.x18_c00200{left:152.990336px;}
.x19_c00200{left:156.000220px;}
.x1a_c00200{left:159.847713px;}
.x24_c00200{left:161.443962px;}
.x1b_c00200{left:163.301377px;}
.x1c_c00200{left:171.586339px;}
.x1d_c00200{left:179.855997px;}
.x1e_c00200{left:188.287487px;}
.x1f_c00200{left:196.673970px;}
.x20_c00200{left:200.841336px;}
.x21_c00200{left:205.399483px;}
.x22_c00200{left:209.208896px;}
.x23_c00200{left:211.795693px;}
.x3_c00200{left:230.398389px;}
.x2_c00200{left:232.534609px;}
.x4_c00200{left:235.623324px;}
.x5_c00200{left:240.462566px;}
.x6_c00200{left:245.820252px;}
.x7_c00200{left:248.569815px;}
.x8_c00200{left:251.576732px;}
.x9_c00200{left:255.421336px;}
.x42_c00200{left:256.622047px;}
.xa_c00200{left:258.708042px;}
.xb_c00200{left:263.145298px;}
.xc_c00200{left:271.763354px;}
.xd_c00200{left:283.603990px;}
.xe_c00200{left:291.041304px;}
.xf_c00200{left:294.435991px;}
.x41_c00200{left:295.615161px;}
.x10_c00200{left:299.775542px;}
.x11_c00200{left:303.165014px;}
.x12_c00200{left:307.176807px;}
.x29_c00200{left:327.047435px;}
.x2a_c00200{left:328.264734px;}
.x2b_c00200{left:329.685747px;}
.x2c_c00200{left:333.082971px;}
.x2d_c00200{left:336.307511px;}
.x2e_c00200{left:342.189757px;}
.x2f_c00200{left:348.376740px;}
.x28_c00200{left:351.731739px;}
.x30_c00200{left:354.069743px;}
.x31_c00200{left:357.479743px;}
.x32_c00200{left:365.386869px;}
.x33_c00200{left:373.375785px;}
.x34_c00200{left:380.135498px;}
.x35_c00200{left:383.155707px;}
.x36_c00200{left:386.159935px;}
.x37_c00200{left:389.557910px;}
.x38_c00200{left:392.174988px;}
.x39_c00200{left:395.489533px;}
.x3a_c00200{left:400.664851px;}
.x3b_c00200{left:403.469600px;}
.x43_c00200{left:452.271732px;}
.x26_c00200{left:464.896169px;}
.x3c_c00200{left:664.443440px;}
.x1_c00200{left:697.320842px;}
.x27_c00200{left:733.540639px;}
.x25_c00200{left:757.088990px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.v1_c00200{vertical-align:1.138048pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws4_c00200{word-spacing:-37.057398pt;}
.ws0_c00200{word-spacing:-13.485567pt;}
.ws2_c00200{word-spacing:-0.079987pt;}
.ws1_c00200{word-spacing:-0.049560pt;}
.ws5_c00200{word-spacing:0.000000pt;}
.ws3_c00200{word-spacing:256.052163pt;}
._1_c00200{width:4.090881pt;}
._0_c00200{width:15.524962pt;}
.fsd_c00200{font-size:35.340254pt;}
.fs7_c00200{font-size:37.333182pt;}
.fsc_c00200{font-size:37.333438pt;}
.fs4_c00200{font-size:42.105093pt;}
.fs1_c00200{font-size:42.105094pt;}
.fs5_c00200{font-size:42.105095pt;}
.fs2_c00200{font-size:42.105096pt;}
.fs3_c00200{font-size:42.105098pt;}
.fs0_c00200{font-size:45.921418pt;}
.fs8_c00200{font-size:49.559999pt;}
.fsf_c00200{font-size:53.319997pt;}
.fs9_c00200{font-size:63.999997pt;}
.fsa_c00200{font-size:66.154880pt;}
.fs6_c00200{font-size:68.454656pt;}
.fsb_c00200{font-size:79.986889pt;}
.fse_c00200{font-size:85.319996pt;}
.y0_c00200{bottom:0.000000pt;}
.y1_c00200{bottom:0.000007pt;}
.y51_c00200{bottom:26.134367pt;}
.y4a_c00200{bottom:182.549848pt;}
.y49_c00200{bottom:209.549847pt;}
.y48_c00200{bottom:236.549846pt;}
.y47_c00200{bottom:263.549845pt;}
.y4b_c00200{bottom:296.064237pt;}
.y2_c00200{bottom:356.911319pt;}
.y2e_c00200{bottom:432.789662pt;}
.y10_c00200{bottom:438.514110pt;}
.y24_c00200{bottom:438.527530pt;}
.yf_c00200{bottom:438.981010pt;}
.y25_c00200{bottom:438.998500pt;}
.y3c_c00200{bottom:439.075039pt;}
.y23_c00200{bottom:439.633885pt;}
.y3d_c00200{bottom:439.815773pt;}
.y3b_c00200{bottom:439.833627pt;}
.ye_c00200{bottom:439.928696pt;}
.y22_c00200{bottom:440.746134pt;}
.y3a_c00200{bottom:440.753441pt;}
.yd_c00200{bottom:440.882672pt;}
.y26_c00200{bottom:441.146500pt;}
.y11_c00200{bottom:441.203087pt;}
.y3e_c00200{bottom:441.754655pt;}
.y21_c00200{bottom:442.208242pt;}
.yc_c00200{bottom:442.350726pt;}
.y39_c00200{bottom:442.711417pt;}
.y3f_c00200{bottom:442.991012pt;}
.y20_c00200{bottom:443.708917pt;}
.yb_c00200{bottom:443.856095pt;}
.y40_c00200{bottom:444.500610pt;}
.y12_c00200{bottom:445.005059pt;}
.y1f_c00200{bottom:445.366906pt;}
.ya_c00200{bottom:445.518375pt;}
.y27_c00200{bottom:445.680561pt;}
.y38_c00200{bottom:446.081837pt;}
.y41_c00200{bottom:446.671541pt;}
.y13_c00200{bottom:447.243955pt;}
.y42_c00200{bottom:448.679507pt;}
.y28_c00200{bottom:448.905595pt;}
.y1e_c00200{bottom:449.504110pt;}
.y9_c00200{bottom:449.663899pt;}
.y37_c00200{bottom:450.942950pt;}
.y43_c00200{bottom:451.585269pt;}
.y14_c00200{bottom:452.535104pt;}
.y29_c00200{bottom:453.913511pt;}
.y36_c00200{bottom:454.913253pt;}
.y1d_c00200{bottom:455.194216pt;}
.y8_c00200{bottom:455.361563pt;}
.y15_c00200{bottom:456.756200pt;}
.y44_c00200{bottom:459.049496pt;}
.y2a_c00200{bottom:459.831423pt;}
.y35_c00200{bottom:460.624152pt;}
.y1c_c00200{bottom:461.689454pt;}
.y7_c00200{bottom:461.769633pt;}
.y34_c00200{bottom:464.686263pt;}
.y6_c00200{bottom:464.844100pt;}
.y45_c00200{bottom:466.204075pt;}
.y16_c00200{bottom:467.230790pt;}
.y1b_c00200{bottom:468.055335pt;}
.y5_c00200{bottom:470.186605pt;}
.y2b_c00200{bottom:470.465221pt;}
.y33_c00200{bottom:471.594820pt;}
.y1a_c00200{bottom:472.294648pt;}
.y2d_c00200{bottom:474.016102pt;}
.y31_c00200{bottom:474.632742pt;}
.y32_c00200{bottom:475.055985pt;}
.y4_c00200{bottom:476.639415pt;}
.y19_c00200{bottom:477.781157pt;}
.y17_c00200{bottom:478.111290pt;}
.y2c_c00200{bottom:478.434608pt;}
.y2f_c00200{bottom:479.977532pt;}
.y18_c00200{bottom:484.059803pt;}
.y3_c00200{bottom:485.114772pt;}
.y30_c00200{bottom:513.277371pt;}
.y46_c00200{bottom:568.082312pt;}
.y52_c00200{bottom:907.946545pt;}
.y4f_c00200{bottom:1003.367331pt;}
.y4d_c00200{bottom:1007.767524pt;}
.y4c_c00200{bottom:1020.212003pt;}
.y50_c00200{bottom:1025.122028pt;}
.y4e_c00200{bottom:1040.962470pt;}
.hc_c00200{height:28.601447pt;}
.h8_c00200{height:31.990003pt;}
.h9_c00200{height:31.990004pt;}
.ha_c00200{height:31.990006pt;}
.h7_c00200{height:32.257271pt;}
.h4_c00200{height:32.257272pt;}
.h5_c00200{height:32.257274pt;}
.h6_c00200{height:32.257275pt;}
.h12_c00200{height:32.907161pt;}
.h3_c00200{height:33.297513pt;}
.h11_c00200{height:34.763119pt;}
.hd_c00200{height:46.147909pt;}
.he_c00200{height:49.031248pt;}
.hb_c00200{height:50.040354pt;}
.h16_c00200{height:50.067478pt;}
.hf_c00200{height:50.682132pt;}
.h15_c00200{height:51.178401pt;}
.h13_c00200{height:59.593748pt;}
.h10_c00200{height:60.771289pt;}
.h14_c00200{height:79.445915pt;}
.h2_c00200{height:1159.999952pt;}
.h0_c00200{height:1159.999959pt;}
.h1_c00200{height:1160.000000pt;}
.w2_c00200{width:830.999965pt;}
.w0_c00200{width:831.000000pt;}
.w1_c00200{width:831.333333pt;}
.x0_c00200{left:0.000000pt;}
.x3e_c00200{left:77.342986pt;}
.x3d_c00200{left:79.544400pt;}
.x3f_c00200{left:95.315788pt;}
.x40_c00200{left:96.735260pt;}
.x44_c00200{left:116.169448pt;}
.x14_c00200{left:119.977634pt;}
.x13_c00200{left:121.465137pt;}
.x15_c00200{left:124.463353pt;}
.x16_c00200{left:128.774857pt;}
.x17_c00200{left:133.544468pt;}
.x18_c00200{left:135.991410pt;}
.x19_c00200{left:138.666862pt;}
.x1a_c00200{left:142.086856pt;}
.x24_c00200{left:143.505744pt;}
.x1b_c00200{left:145.156780pt;}
.x1c_c00200{left:152.521190pt;}
.x1d_c00200{left:159.871997pt;}
.x1e_c00200{left:167.366655pt;}
.x1f_c00200{left:174.821307pt;}
.x20_c00200{left:178.525632pt;}
.x21_c00200{left:182.577318pt;}
.x22_c00200{left:185.963463pt;}
.x23_c00200{left:188.262839pt;}
.x3_c00200{left:204.798568pt;}
.x2_c00200{left:206.697430pt;}
.x4_c00200{left:209.442955pt;}
.x5_c00200{left:213.744503pt;}
.x6_c00200{left:218.506891pt;}
.x7_c00200{left:220.950947pt;}
.x8_c00200{left:223.623762pt;}
.x9_c00200{left:227.041187pt;}
.x42_c00200{left:228.108486pt;}
.xa_c00200{left:229.962704pt;}
.xb_c00200{left:233.906932pt;}
.xc_c00200{left:241.567426pt;}
.xd_c00200{left:252.092435pt;}
.xe_c00200{left:258.703382pt;}
.xf_c00200{left:261.720880pt;}
.x41_c00200{left:262.769032pt;}
.x10_c00200{left:266.467148pt;}
.x11_c00200{left:269.480012pt;}
.x12_c00200{left:273.046051pt;}
.x29_c00200{left:290.708831pt;}
.x2a_c00200{left:291.790874pt;}
.x2b_c00200{left:293.053997pt;}
.x2c_c00200{left:296.073752pt;}
.x2d_c00200{left:298.940009pt;}
.x2e_c00200{left:304.168673pt;}
.x2f_c00200{left:309.668213pt;}
.x28_c00200{left:312.650435pt;}
.x30_c00200{left:314.728661pt;}
.x31_c00200{left:317.759772pt;}
.x32_c00200{left:324.788328pt;}
.x33_c00200{left:331.889587pt;}
.x34_c00200{left:337.898220pt;}
.x35_c00200{left:340.582851pt;}
.x36_c00200{left:343.253275pt;}
.x37_c00200{left:346.273697pt;}
.x38_c00200{left:348.599989pt;}
.x39_c00200{left:351.546252pt;}
.x3a_c00200{left:356.146534pt;}
.x3b_c00200{left:358.639645pt;}
.x43_c00200{left:402.019318pt;}
.x26_c00200{left:413.241039pt;}
.x3c_c00200{left:590.616391pt;}
.x1_c00200{left:619.840748pt;}
.x27_c00200{left:652.036124pt;}
.x25_c00200{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea464c4ff64df62de26098cb.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.006348;font-style:normal;font-weight:normal;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_c044be07b6ee12d75ae73fd0.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.000000;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.006348;font-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_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);}
.v0_c00201{vertical-align:0.000000px;}
.ls0_c00201{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00201{word-spacing:-19.320776px;}
.ws1_c00201{word-spacing:0.000000px;}
._f_c00201{width:1.395400px;}
._7_c00201{width:3.982954px;}
._3_c00201{width:5.173805px;}
._8_c00201{width:7.321288px;}
._b_c00201{width:8.537064px;}
._6_c00201{width:10.416274px;}
._5_c00201{width:14.273438px;}
._e_c00201{width:15.914037px;}
._9_c00201{width:17.402345px;}
._2_c00201{width:19.847343px;}
._d_c00201{width:21.183220px;}
._1_c00201{width:23.589844px;}
._10_c00201{width:24.717999px;}
._4_c00201{width:29.337888px;}
._a_c00201{width:31.517575px;}
._c_c00201{width:32.607423px;}
._0_c00201{width:43.684111px;}
.fc1_c00201{color:rgb(67,91,56);}
.fc0_c00201{color:rgb(0,0,0);}
.fs0_c00201{font-size:71.999997px;}
.fs1_c00201{font-size:74.377724px;}
.y0_c00201{bottom:0.000000px;}
.y1_c00201{bottom:0.000008px;}
.y1e_c00201{bottom:29.400983px;}
.y19_c00201{bottom:267.384733px;}
.y18_c00201{bottom:297.759732px;}
.y17_c00201{bottom:328.134730px;}
.y16_c00201{bottom:358.509729px;}
.y15_c00201{bottom:388.884728px;}
.y14_c00201{bottom:419.259727px;}
.y13_c00201{bottom:449.634725px;}
.y12_c00201{bottom:480.009724px;}
.y11_c00201{bottom:510.384723px;}
.y10_c00201{bottom:553.336501px;}
.yf_c00201{bottom:610.913639px;}
.ye_c00201{bottom:643.935573px;}
.yc_c00201{bottom:705.253507px;}
.yb_c00201{bottom:735.628505px;}
.ya_c00201{bottom:766.003504px;}
.y9_c00201{bottom:796.378503px;}
.y8_c00201{bottom:826.753502px;}
.y7_c00201{bottom:857.128500px;}
.y6_c00201{bottom:887.503499px;}
.y5_c00201{bottom:917.878498px;}
.y4_c00201{bottom:948.253496px;}
.y3_c00201{bottom:978.628495px;}
.y2_c00201{bottom:1009.003494px;}
.yd_c00201{bottom:1048.072456px;}
.y1d_c00201{bottom:1104.249241px;}
.y1c_c00201{bottom:1134.624240px;}
.y1b_c00201{bottom:1164.999238px;}
.y1a_c00201{bottom:1199.188987px;}
.h3_c00201{height:55.160154px;}
.h4_c00201{height:56.981762px;}
.h2_c00201{height:1304.999946px;}
.h0_c00201{height:1304.999953px;}
.h1_c00201{height:1305.000000px;}
.w2_c00201{width:934.874961px;}
.w0_c00201{width:934.875000px;}
.w1_c00201{width:935.250000px;}
.x0_c00201{left:0.000000px;}
.x2_c00201{left:82.261984px;}
.x1_c00201{left:87.902647px;}
.x3_c00201{left:89.260034px;}
.x4_c00201{left:452.271732px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ws0_c00201{word-spacing:-17.174023pt;}
.ws1_c00201{word-spacing:0.000000pt;}
._f_c00201{width:1.240355pt;}
._7_c00201{width:3.540403pt;}
._3_c00201{width:4.598938pt;}
._8_c00201{width:6.507812pt;}
._b_c00201{width:7.588501pt;}
._6_c00201{width:9.258910pt;}
._5_c00201{width:12.687501pt;}
._e_c00201{width:14.145811pt;}
._9_c00201{width:15.468751pt;}
._2_c00201{width:17.642082pt;}
._d_c00201{width:18.829529pt;}
._1_c00201{width:20.968750pt;}
._10_c00201{width:21.971555pt;}
._4_c00201{width:26.078123pt;}
._a_c00201{width:28.015623pt;}
._c_c00201{width:28.984376pt;}
._0_c00201{width:38.830321pt;}
.fs0_c00201{font-size:63.999997pt;}
.fs1_c00201{font-size:66.113533pt;}
.y0_c00201{bottom:0.000000pt;}
.y1_c00201{bottom:0.000007pt;}
.y1e_c00201{bottom:26.134207pt;}
.y19_c00201{bottom:237.675318pt;}
.y18_c00201{bottom:264.675317pt;}
.y17_c00201{bottom:291.675316pt;}
.y16_c00201{bottom:318.675315pt;}
.y15_c00201{bottom:345.675314pt;}
.y14_c00201{bottom:372.675312pt;}
.y13_c00201{bottom:399.675311pt;}
.y12_c00201{bottom:426.675310pt;}
.y11_c00201{bottom:453.675309pt;}
.y10_c00201{bottom:491.854668pt;}
.yf_c00201{bottom:543.034345pt;}
.ye_c00201{bottom:572.387176pt;}
.yc_c00201{bottom:626.892006pt;}
.yb_c00201{bottom:653.892005pt;}
.ya_c00201{bottom:680.892004pt;}
.y9_c00201{bottom:707.892003pt;}
.y8_c00201{bottom:734.892001pt;}
.y7_c00201{bottom:761.892000pt;}
.y6_c00201{bottom:788.891999pt;}
.y5_c00201{bottom:815.891998pt;}
.y4_c00201{bottom:842.891997pt;}
.y3_c00201{bottom:869.891996pt;}
.y2_c00201{bottom:896.891995pt;}
.yd_c00201{bottom:931.619961pt;}
.y1d_c00201{bottom:981.554881pt;}
.y1c_c00201{bottom:1008.554880pt;}
.y1b_c00201{bottom:1035.554878pt;}
.y1a_c00201{bottom:1065.945766pt;}
.h3_c00201{height:49.031248pt;}
.h4_c00201{height:50.650455pt;}
.h2_c00201{height:1159.999952pt;}
.h0_c00201{height:1159.999959pt;}
.h1_c00201{height:1160.000000pt;}
.w2_c00201{width:830.999965pt;}
.w0_c00201{width:831.000000pt;}
.w1_c00201{width:831.333333pt;}
.x0_c00201{left:0.000000pt;}
.x2_c00201{left:73.121763pt;}
.x1_c00201{left:78.135686pt;}
.x3_c00201{left:79.342253pt;}
.x4_c00201{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:0.734863;font-style:normal;font-weight:normal;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_4b44aea0a5bb9df3ecd6e3b2.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:0.743000;font-style:normal;font-weight: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_58a93de6c2c0f58e8604101c.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:0.894000;font-style:normal;font-weight: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_c00202;src:url('chunks/assets/font_6e2905414da2f4c29a41e484.woff2')format("woff");}.ff6_c00202{font-family:ff6_c00202;line-height:1.119000;font-style:normal;font-weight: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_c00202;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff7_c00202{font-family:ff7_c00202;line-height:1.006348;font-style:normal;font-weight: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_c00202;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff8_c00202{font-family:ff8_c00202;line-height:1.000000;font-style:normal;font-weight: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_c00202;src:url('chunks/assets/font_882081c2fdff85b2ccf14ecd.woff2')format("woff");}.ff9_c00202{font-family:ff9_c00202;line-height:1.171387;font-style:normal;font-weight: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_c00202;src:url('chunks/assets/font_9ed672781a640741e4aae278.woff2')format("woff");}.ffa_c00202{font-family:ffa_c00202;line-height:1.000000;font-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_c00202{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00202{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00202{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00202{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00202{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00202{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00202{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00202{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00202{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00202{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00202{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00202{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00202{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00202{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00202{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00202{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00202{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00202{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00202{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00202{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00202{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00202{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00202{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00202{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00202{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00202{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00202{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00202{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00202{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00202{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00202{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00202{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00202{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00202{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00202{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00202{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00202{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00202{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00202{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00202{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00202{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00202{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00202{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00202{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00202{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00202{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00202{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00202{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00202{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00202{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00202{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00202{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00202{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00202{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00202{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00202{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00202{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00202{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00202{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00202{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00202{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00202{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.m3f_c00202{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.v1_c00202{vertical-align:1.279584px;}
.ls0_c00202{letter-spacing:0.000000px;}
.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;}
}
.ws5_c00202{word-spacing:-41.689573px;}
.ws1_c00202{word-spacing:-39.125871px;}
.ws0_c00202{word-spacing:-15.171263px;}
.ws2_c00202{word-spacing:-0.089985px;}
.ws4_c00202{word-spacing:-0.055755px;}
.ws6_c00202{word-spacing:0.000000px;}
.ws3_c00202{word-spacing:288.058683px;}
._1_c00202{width:1.345960px;}
._2_c00202{width:2.572240px;}
._0_c00202{width:6.878883px;}
.fc4_c00202{color:transparent;}
.fc3_c00202{color:rgb(67,91,56);}
.fc2_c00202{color:rgb(255,255,255);}
.fc1_c00202{color:rgb(0,0,0);}
.fc0_c00202{color:rgb(9,71,81);}
.fsd_c00202{font-size:39.757786px;}
.fs7_c00202{font-size:41.999830px;}
.fsc_c00202{font-size:42.000118px;}
.fs4_c00202{font-size:47.368230px;}
.fs1_c00202{font-size:47.368231px;}
.fs5_c00202{font-size:47.368232px;}
.fs2_c00202{font-size:47.368233px;}
.fs3_c00202{font-size:47.368235px;}
.fs0_c00202{font-size:51.661596px;}
.fsf_c00202{font-size:55.754999px;}
.fs8_c00202{font-size:56.296218px;}
.fs10_c00202{font-size:59.984997px;}
.fs9_c00202{font-size:71.999997px;}
.fsa_c00202{font-size:74.424240px;}
.fs6_c00202{font-size:77.011488px;}
.fsb_c00202{font-size:89.985250px;}
.fse_c00202{font-size:95.984996px;}
.y0_c00202{bottom:0.000000px;}
.y1_c00202{bottom:0.000008px;}
.y52_c00202{bottom:29.401163px;}
.y4a_c00202{bottom:190.495540px;}
.y49_c00202{bottom:220.870539px;}
.y48_c00202{bottom:251.245538px;}
.y47_c00202{bottom:281.620536px;}
.y4b_c00202{bottom:318.199335px;}
.y2_c00202{bottom:401.525233px;}
.y2e_c00202{bottom:486.888550px;}
.y10_c00202{bottom:493.328193px;}
.y24_c00202{bottom:493.343399px;}
.yf_c00202{bottom:493.853709px;}
.y25_c00202{bottom:493.873421px;}
.y3c_c00202{bottom:493.959311px;}
.y23_c00202{bottom:494.588120px;}
.y3d_c00202{bottom:494.792564px;}
.y3b_c00202{bottom:494.812830px;}
.ye_c00202{bottom:494.919675px;}
.y22_c00202{bottom:495.839509px;}
.y3a_c00202{bottom:495.847693px;}
.yd_c00202{bottom:495.993006px;}
.y26_c00202{bottom:496.289992px;}
.y11_c00202{bottom:496.353473px;}
.y3e_c00202{bottom:496.974167px;}
.y21_c00202{bottom:497.484380px;}
.yc_c00202{bottom:497.644566px;}
.y39_c00202{bottom:498.050345px;}
.y3f_c00202{bottom:498.364816px;}
.y20_c00202{bottom:499.172711px;}
.yb_c00202{bottom:499.338107px;}
.y40_c00202{bottom:500.063439px;}
.y12_c00202{bottom:500.630691px;}
.y1f_c00202{bottom:501.037625px;}
.ya_c00202{bottom:501.208280px;}
.y27_c00202{bottom:501.390523px;}
.y38_c00202{bottom:501.841887px;}
.y41_c00202{bottom:502.505484px;}
.y13_c00202{bottom:503.149521px;}
.y42_c00202{bottom:504.764625px;}
.y28_c00202{bottom:505.019047px;}
.y1e_c00202{bottom:505.692124px;}
.y9_c00202{bottom:505.871886px;}
.y37_c00202{bottom:507.310818px;}
.y43_c00202{bottom:508.033427px;}
.y14_c00202{bottom:509.101920px;}
.y29_c00202{bottom:510.652700px;}
.y36_c00202{bottom:511.777229px;}
.y1d_c00202{bottom:512.093421px;}
.y8_c00202{bottom:512.281650px;}
.y15_c00202{bottom:513.850725px;}
.y44_c00202{bottom:516.430791px;}
.y2a_c00202{bottom:517.310242px;}
.y35_c00202{bottom:518.201920px;}
.y1c_c00202{bottom:519.400744px;}
.y7_c00202{bottom:519.490765px;}
.y34_c00202{bottom:522.772118px;}
.y6_c00202{bottom:522.949612px;}
.y45_c00202{bottom:524.479585px;}
.y16_c00202{bottom:525.634639px;}
.y1b_c00202{bottom:526.562252px;}
.y5_c00202{bottom:528.959751px;}
.y2b_c00202{bottom:529.273374px;}
.y33_c00202{bottom:530.544173px;}
.y1a_c00202{bottom:531.331731px;}
.y2d_c00202{bottom:533.268367px;}
.y31_c00202{bottom:533.962015px;}
.y32_c00202{bottom:534.438127px;}
.y4_c00202{bottom:536.219342px;}
.y19_c00202{bottom:537.503874px;}
.y17_c00202{bottom:537.875309px;}
.y2c_c00202{bottom:538.238862px;}
.y2f_c00202{bottom:539.974832px;}
.y18_c00202{bottom:544.567530px;}
.y3_c00202{bottom:545.754118px;}
.y30_c00202{bottom:577.436970px;}
.y51_c00202{bottom:639.092421px;}
.y53_c00202{bottom:973.081716px;}
.y46_c00202{bottom:1031.013838px;}
.y4f_c00202{bottom:1128.788391px;}
.y4d_c00202{bottom:1133.738586px;}
.y4c_c00202{bottom:1147.738626px;}
.y50_c00202{bottom:1153.262238px;}
.y4e_c00202{bottom:1171.082869px;}
.hc_c00202{height:32.176627px;}
.h8_c00202{height:35.988753px;}
.h9_c00202{height:35.988755px;}
.ha_c00202{height:35.988756px;}
.h7_c00202{height:36.289430px;}
.h4_c00202{height:36.289431px;}
.h5_c00202{height:36.289433px;}
.h6_c00202{height:36.289434px;}
.h12_c00202{height:37.020556px;}
.h3_c00202{height:37.459702px;}
.h11_c00202{height:39.108509px;}
.h16_c00202{height:51.916398px;}
.hd_c00202{height:52.862148px;}
.he_c00202{height:55.160154px;}
.hb_c00202{height:56.295398px;}
.h17_c00202{height:56.325912px;}
.hf_c00202{height:57.017399px;}
.h15_c00202{height:57.574982px;}
.h13_c00202{height:67.042966px;}
.h10_c00202{height:68.367700px;}
.h14_c00202{height:89.376654px;}
.h2_c00202{height:1304.999946px;}
.h0_c00202{height:1304.999953px;}
.h1_c00202{height:1305.000000px;}
.w2_c00202{width:934.874961px;}
.w0_c00202{width:934.875000px;}
.w1_c00202{width:935.250000px;}
.x0_c00202{left:0.000000px;}
.x3d_c00202{left:89.487450px;}
.x3e_c00202{left:107.230262px;}
.x3f_c00202{left:108.827167px;}
.x3c_c00202{left:111.134274px;}
.x44_c00202{left:130.690629px;}
.x14_c00202{left:134.974838px;}
.x13_c00202{left:136.648279px;}
.x15_c00202{left:140.021272px;}
.x16_c00202{left:144.871714px;}
.x17_c00202{left:150.237526px;}
.x18_c00202{left:152.990336px;}
.x19_c00202{left:156.000220px;}
.x1a_c00202{left:159.847713px;}
.x24_c00202{left:161.443962px;}
.x1b_c00202{left:163.301377px;}
.x1c_c00202{left:171.586339px;}
.x1d_c00202{left:179.855997px;}
.x1e_c00202{left:188.287487px;}
.x1f_c00202{left:196.673970px;}
.x20_c00202{left:200.841336px;}
.x21_c00202{left:205.399483px;}
.x22_c00202{left:209.208896px;}
.x23_c00202{left:211.795693px;}
.x3_c00202{left:230.398389px;}
.x2_c00202{left:232.534609px;}
.x4_c00202{left:235.623324px;}
.x5_c00202{left:240.462566px;}
.x6_c00202{left:245.820252px;}
.x7_c00202{left:248.569815px;}
.x8_c00202{left:251.576732px;}
.x9_c00202{left:255.421336px;}
.x41_c00202{left:256.622047px;}
.xa_c00202{left:258.708042px;}
.xb_c00202{left:263.145298px;}
.xc_c00202{left:271.763354px;}
.xd_c00202{left:283.603990px;}
.xe_c00202{left:291.041304px;}
.xf_c00202{left:294.435991px;}
.x40_c00202{left:295.615161px;}
.x10_c00202{left:299.775542px;}
.x11_c00202{left:303.165014px;}
.x12_c00202{left:307.176807px;}
.x29_c00202{left:327.047435px;}
.x2a_c00202{left:328.264734px;}
.x2b_c00202{left:329.685747px;}
.x2c_c00202{left:333.082971px;}
.x2d_c00202{left:336.307511px;}
.x2e_c00202{left:342.189757px;}
.x2f_c00202{left:348.376740px;}
.x28_c00202{left:351.731739px;}
.x30_c00202{left:354.069743px;}
.x31_c00202{left:357.479743px;}
.x32_c00202{left:365.386869px;}
.x33_c00202{left:373.375785px;}
.x34_c00202{left:380.135498px;}
.x35_c00202{left:383.155707px;}
.x36_c00202{left:386.159935px;}
.x37_c00202{left:389.557910px;}
.x38_c00202{left:392.174988px;}
.x39_c00202{left:395.489533px;}
.x3a_c00202{left:400.664851px;}
.x3b_c00202{left:403.469600px;}
.x43_c00202{left:452.271732px;}
.x26_c00202{left:464.896169px;}
.x42_c00202{left:664.443440px;}
.x1_c00202{left:697.320842px;}
.x27_c00202{left:733.540639px;}
.x25_c00202{left:757.088990px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.v1_c00202{vertical-align:1.137408pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws5_c00202{word-spacing:-37.057398pt;}
.ws1_c00202{word-spacing:-34.778552pt;}
.ws0_c00202{word-spacing:-13.485567pt;}
.ws2_c00202{word-spacing:-0.079987pt;}
.ws4_c00202{word-spacing:-0.049560pt;}
.ws6_c00202{word-spacing:0.000000pt;}
.ws3_c00202{word-spacing:256.052163pt;}
._1_c00202{width:1.196409pt;}
._2_c00202{width:2.286436pt;}
._0_c00202{width:6.114562pt;}
.fsd_c00202{font-size:35.340254pt;}
.fs7_c00202{font-size:37.333182pt;}
.fsc_c00202{font-size:37.333438pt;}
.fs4_c00202{font-size:42.105093pt;}
.fs1_c00202{font-size:42.105094pt;}
.fs5_c00202{font-size:42.105095pt;}
.fs2_c00202{font-size:42.105096pt;}
.fs3_c00202{font-size:42.105098pt;}
.fs0_c00202{font-size:45.921418pt;}
.fsf_c00202{font-size:49.559999pt;}
.fs8_c00202{font-size:50.041082pt;}
.fs10_c00202{font-size:53.319997pt;}
.fs9_c00202{font-size:63.999997pt;}
.fsa_c00202{font-size:66.154880pt;}
.fs6_c00202{font-size:68.454656pt;}
.fsb_c00202{font-size:79.986889pt;}
.fse_c00202{font-size:85.319996pt;}
.y0_c00202{bottom:0.000000pt;}
.y1_c00202{bottom:0.000007pt;}
.y52_c00202{bottom:26.134367pt;}
.y4a_c00202{bottom:169.329369pt;}
.y49_c00202{bottom:196.329368pt;}
.y48_c00202{bottom:223.329367pt;}
.y47_c00202{bottom:250.329366pt;}
.y4b_c00202{bottom:282.843853pt;}
.y2_c00202{bottom:356.911319pt;}
.y2e_c00202{bottom:432.789822pt;}
.y10_c00202{bottom:438.513950pt;}
.y24_c00202{bottom:438.527466pt;}
.yf_c00202{bottom:438.981074pt;}
.y25_c00202{bottom:438.998596pt;}
.y3c_c00202{bottom:439.074943pt;}
.y23_c00202{bottom:439.633885pt;}
.y3d_c00202{bottom:439.815613pt;}
.y3b_c00202{bottom:439.833627pt;}
.ye_c00202{bottom:439.928600pt;}
.y22_c00202{bottom:440.746230pt;}
.y3a_c00202{bottom:440.753505pt;}
.yd_c00202{bottom:440.882672pt;}
.y26_c00202{bottom:441.146660pt;}
.y11_c00202{bottom:441.203087pt;}
.y3e_c00202{bottom:441.754815pt;}
.y21_c00202{bottom:442.208338pt;}
.yc_c00202{bottom:442.350726pt;}
.y39_c00202{bottom:442.711417pt;}
.y3f_c00202{bottom:442.990948pt;}
.y20_c00202{bottom:443.709077pt;}
.yb_c00202{bottom:443.856095pt;}
.y40_c00202{bottom:444.500834pt;}
.y12_c00202{bottom:445.005059pt;}
.y1f_c00202{bottom:445.366778pt;}
.ya_c00202{bottom:445.518471pt;}
.y27_c00202{bottom:445.680465pt;}
.y38_c00202{bottom:446.081677pt;}
.y41_c00202{bottom:446.671541pt;}
.y13_c00202{bottom:447.244019pt;}
.y42_c00202{bottom:448.679667pt;}
.y28_c00202{bottom:448.905819pt;}
.y1e_c00202{bottom:449.504110pt;}
.y9_c00202{bottom:449.663899pt;}
.y37_c00202{bottom:450.942950pt;}
.y43_c00202{bottom:451.585269pt;}
.y14_c00202{bottom:452.535040pt;}
.y29_c00202{bottom:453.913511pt;}
.y36_c00202{bottom:454.913093pt;}
.y1d_c00202{bottom:455.194152pt;}
.y8_c00202{bottom:455.361467pt;}
.y15_c00202{bottom:456.756200pt;}
.y44_c00202{bottom:459.049592pt;}
.y2a_c00202{bottom:459.831327pt;}
.y35_c00202{bottom:460.623928pt;}
.y1c_c00202{bottom:461.689550pt;}
.y7_c00202{bottom:461.769569pt;}
.y34_c00202{bottom:464.686327pt;}
.y6_c00202{bottom:464.844100pt;}
.y45_c00202{bottom:466.204075pt;}
.y16_c00202{bottom:467.230790pt;}
.y1b_c00202{bottom:468.055335pt;}
.y5_c00202{bottom:470.186445pt;}
.y2b_c00202{bottom:470.465221pt;}
.y33_c00202{bottom:471.594820pt;}
.y1a_c00202{bottom:472.294872pt;}
.y2d_c00202{bottom:474.016326pt;}
.y31_c00202{bottom:474.632902pt;}
.y32_c00202{bottom:475.056113pt;}
.y4_c00202{bottom:476.639415pt;}
.y19_c00202{bottom:477.781221pt;}
.y17_c00202{bottom:478.111386pt;}
.y2c_c00202{bottom:478.434544pt;}
.y2f_c00202{bottom:479.977628pt;}
.y18_c00202{bottom:484.060027pt;}
.y3_c00202{bottom:485.114772pt;}
.y30_c00202{bottom:513.277307pt;}
.y51_c00202{bottom:568.082152pt;}
.y53_c00202{bottom:864.961526pt;}
.y46_c00202{bottom:916.456745pt;}
.y4f_c00202{bottom:1003.367459pt;}
.y4d_c00202{bottom:1007.767632pt;}
.y4c_c00202{bottom:1020.212112pt;}
.y50_c00202{bottom:1025.121989pt;}
.y4e_c00202{bottom:1040.962550pt;}
.hc_c00202{height:28.601447pt;}
.h8_c00202{height:31.990003pt;}
.h9_c00202{height:31.990004pt;}
.ha_c00202{height:31.990006pt;}
.h7_c00202{height:32.257271pt;}
.h4_c00202{height:32.257272pt;}
.h5_c00202{height:32.257274pt;}
.h6_c00202{height:32.257275pt;}
.h12_c00202{height:32.907161pt;}
.h3_c00202{height:33.297513pt;}
.h11_c00202{height:34.763119pt;}
.h16_c00202{height:46.147909pt;}
.hd_c00202{height:46.988576pt;}
.he_c00202{height:49.031248pt;}
.hb_c00202{height:50.040354pt;}
.h17_c00202{height:50.067478pt;}
.hf_c00202{height:50.682132pt;}
.h15_c00202{height:51.177761pt;}
.h13_c00202{height:59.593748pt;}
.h10_c00202{height:60.771289pt;}
.h14_c00202{height:79.445915pt;}
.h2_c00202{height:1159.999952pt;}
.h0_c00202{height:1159.999959pt;}
.h1_c00202{height:1160.000000pt;}
.w2_c00202{width:830.999965pt;}
.w0_c00202{width:831.000000pt;}
.w1_c00202{width:831.333333pt;}
.x0_c00202{left:0.000000pt;}
.x3d_c00202{left:79.544400pt;}
.x3e_c00202{left:95.315788pt;}
.x3f_c00202{left:96.735260pt;}
.x3c_c00202{left:98.786021pt;}
.x44_c00202{left:116.169448pt;}
.x14_c00202{left:119.977634pt;}
.x13_c00202{left:121.465137pt;}
.x15_c00202{left:124.463353pt;}
.x16_c00202{left:128.774857pt;}
.x17_c00202{left:133.544468pt;}
.x18_c00202{left:135.991410pt;}
.x19_c00202{left:138.666862pt;}
.x1a_c00202{left:142.086856pt;}
.x24_c00202{left:143.505744pt;}
.x1b_c00202{left:145.156780pt;}
.x1c_c00202{left:152.521190pt;}
.x1d_c00202{left:159.871997pt;}
.x1e_c00202{left:167.366655pt;}
.x1f_c00202{left:174.821307pt;}
.x20_c00202{left:178.525632pt;}
.x21_c00202{left:182.577318pt;}
.x22_c00202{left:185.963463pt;}
.x23_c00202{left:188.262839pt;}
.x3_c00202{left:204.798568pt;}
.x2_c00202{left:206.697430pt;}
.x4_c00202{left:209.442955pt;}
.x5_c00202{left:213.744503pt;}
.x6_c00202{left:218.506891pt;}
.x7_c00202{left:220.950947pt;}
.x8_c00202{left:223.623762pt;}
.x9_c00202{left:227.041187pt;}
.x41_c00202{left:228.108486pt;}
.xa_c00202{left:229.962704pt;}
.xb_c00202{left:233.906932pt;}
.xc_c00202{left:241.567426pt;}
.xd_c00202{left:252.092435pt;}
.xe_c00202{left:258.703382pt;}
.xf_c00202{left:261.720880pt;}
.x40_c00202{left:262.769032pt;}
.x10_c00202{left:266.467148pt;}
.x11_c00202{left:269.480012pt;}
.x12_c00202{left:273.046051pt;}
.x29_c00202{left:290.708831pt;}
.x2a_c00202{left:291.790874pt;}
.x2b_c00202{left:293.053997pt;}
.x2c_c00202{left:296.073752pt;}
.x2d_c00202{left:298.940009pt;}
.x2e_c00202{left:304.168673pt;}
.x2f_c00202{left:309.668213pt;}
.x28_c00202{left:312.650435pt;}
.x30_c00202{left:314.728661pt;}
.x31_c00202{left:317.759772pt;}
.x32_c00202{left:324.788328pt;}
.x33_c00202{left:331.889587pt;}
.x34_c00202{left:337.898220pt;}
.x35_c00202{left:340.582851pt;}
.x36_c00202{left:343.253275pt;}
.x37_c00202{left:346.273697pt;}
.x38_c00202{left:348.599989pt;}
.x39_c00202{left:351.546252pt;}
.x3a_c00202{left:356.146534pt;}
.x3b_c00202{left:358.639645pt;}
.x43_c00202{left:402.019318pt;}
.x26_c00202{left:413.241039pt;}
.x42_c00202{left:590.616391pt;}
.x1_c00202{left:619.840748pt;}
.x27_c00202{left:652.036124pt;}
.x25_c00202{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5a01d185080c41acf9fa707.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.006348;font-style:normal;font-weight:normal;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_d2b7a10d088626a044fc717b.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.000000;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.006348;font-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_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;}
.ls1_c00203{letter-spacing:0.000000px;}
.ls0_c00203{letter-spacing:19.968749px;}
.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:-19.320776px;}
.ws0_c00203{word-spacing:-18.703125px;}
.ws2_c00203{word-spacing:0.000000px;}
._9_c00203{width:1.957087px;}
._1_c00203{width:3.029270px;}
._a_c00203{width:4.151391px;}
._f_c00203{width:5.542250px;}
._4_c00203{width:6.705230px;}
._e_c00203{width:8.537064px;}
._7_c00203{width:10.235481px;}
._8_c00203{width:11.236535px;}
._6_c00203{width:12.568360px;}
._10_c00203{width:13.589245px;}
._3_c00203{width:14.976560px;}
._b_c00203{width:16.073271px;}
._2_c00203{width:19.940596px;}
._0_c00203{width:21.571857px;}
._c_c00203{width:31.218750px;}
._d_c00203{width:32.273436px;}
._5_c00203{width:40.652288px;}
.fc1_c00203{color:rgb(67,91,56);}
.fc0_c00203{color:rgb(0,0,0);}
.fs0_c00203{font-size:71.999997px;}
.fs1_c00203{font-size:74.377724px;}
.y0_c00203{bottom:0.000000px;}
.y1_c00203{bottom:0.000008px;}
.y23_c00203{bottom:29.401163px;}
.y1a_c00203{bottom:122.218591px;}
.y19_c00203{bottom:152.593590px;}
.y18_c00203{bottom:182.968588px;}
.y17_c00203{bottom:213.343587px;}
.y16_c00203{bottom:243.718586px;}
.y15_c00203{bottom:282.418224px;}
.y14_c00203{bottom:344.312554px;}
.y13_c00203{bottom:374.687552px;}
.y12_c00203{bottom:405.062551px;}
.y11_c00203{bottom:438.084126px;}
.yf_c00203{bottom:491.163028px;}
.ye_c00203{bottom:521.538026px;}
.yd_c00203{bottom:551.913025px;}
.yc_c00203{bottom:582.288024px;}
.yb_c00203{bottom:612.663022px;}
.ya_c00203{bottom:643.038021px;}
.y9_c00203{bottom:673.413020px;}
.y8_c00203{bottom:703.788019px;}
.y7_c00203{bottom:734.163017px;}
.y6_c00203{bottom:764.538016px;}
.y5_c00203{bottom:794.913015px;}
.y4_c00203{bottom:825.288014px;}
.y3_c00203{bottom:855.663012px;}
.y2_c00203{bottom:886.038011px;}
.y10_c00203{bottom:925.107150px;}
.y22_c00203{bottom:982.438202px;}
.y21_c00203{bottom:1012.813201px;}
.y20_c00203{bottom:1043.188200px;}
.y1f_c00203{bottom:1073.563198px;}
.y1e_c00203{bottom:1103.938197px;}
.y1d_c00203{bottom:1134.313196px;}
.y1c_c00203{bottom:1164.688195px;}
.y1b_c00203{bottom:1199.188901px;}
.h3_c00203{height:55.160154px;}
.h4_c00203{height:56.981762px;}
.h2_c00203{height:1304.999946px;}
.h0_c00203{height:1304.999953px;}
.h1_c00203{height:1305.000000px;}
.w2_c00203{width:934.874961px;}
.w0_c00203{width:934.875000px;}
.w1_c00203{width:935.250000px;}
.x0_c00203{left:0.000000px;}
.x2_c00203{left:87.902647px;}
.x1_c00203{left:89.487450px;}
.x3_c00203{left:90.722973px;}
.x4_c00203{left:452.271732px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls1_c00203{letter-spacing:0.000000pt;}
.ls0_c00203{letter-spacing:17.749999pt;}
.ws1_c00203{word-spacing:-17.174023pt;}
.ws0_c00203{word-spacing:-16.625000pt;}
.ws2_c00203{word-spacing:0.000000pt;}
._9_c00203{width:1.739633pt;}
._1_c00203{width:2.692685pt;}
._a_c00203{width:3.690126pt;}
._f_c00203{width:4.926445pt;}
._4_c00203{width:5.960205pt;}
._e_c00203{width:7.588501pt;}
._7_c00203{width:9.098205pt;}
._8_c00203{width:9.988031pt;}
._6_c00203{width:11.171876pt;}
._10_c00203{width:12.079329pt;}
._3_c00203{width:13.312498pt;}
._b_c00203{width:14.287352pt;}
._2_c00203{width:17.724974pt;}
._0_c00203{width:19.174984pt;}
._c_c00203{width:27.750000pt;}
._d_c00203{width:28.687499pt;}
._5_c00203{width:36.135367pt;}
.fs0_c00203{font-size:63.999997pt;}
.fs1_c00203{font-size:66.113533pt;}
.y0_c00203{bottom:0.000000pt;}
.y1_c00203{bottom:0.000007pt;}
.y23_c00203{bottom:26.134367pt;}
.y1a_c00203{bottom:108.638747pt;}
.y19_c00203{bottom:135.638746pt;}
.y18_c00203{bottom:162.638745pt;}
.y17_c00203{bottom:189.638744pt;}
.y16_c00203{bottom:216.638743pt;}
.y15_c00203{bottom:251.038422pt;}
.y14_c00203{bottom:306.055603pt;}
.y13_c00203{bottom:333.055602pt;}
.y12_c00203{bottom:360.055601pt;}
.y11_c00203{bottom:389.408112pt;}
.yf_c00203{bottom:436.589358pt;}
.ye_c00203{bottom:463.589357pt;}
.yd_c00203{bottom:490.589356pt;}
.yc_c00203{bottom:517.589354pt;}
.yb_c00203{bottom:544.589353pt;}
.ya_c00203{bottom:571.589352pt;}
.y9_c00203{bottom:598.589351pt;}
.y8_c00203{bottom:625.589350pt;}
.y7_c00203{bottom:652.589349pt;}
.y6_c00203{bottom:679.589348pt;}
.y5_c00203{bottom:706.589347pt;}
.y4_c00203{bottom:733.589345pt;}
.y3_c00203{bottom:760.589344pt;}
.y2_c00203{bottom:787.589343pt;}
.y10_c00203{bottom:822.317467pt;}
.y22_c00203{bottom:873.278402pt;}
.y21_c00203{bottom:900.278401pt;}
.y20_c00203{bottom:927.278400pt;}
.y1f_c00203{bottom:954.278399pt;}
.y1e_c00203{bottom:981.278398pt;}
.y1d_c00203{bottom:1008.278396pt;}
.y1c_c00203{bottom:1035.278395pt;}
.y1b_c00203{bottom:1065.945690pt;}
.h3_c00203{height:49.031248pt;}
.h4_c00203{height:50.650455pt;}
.h2_c00203{height:1159.999952pt;}
.h0_c00203{height:1159.999959pt;}
.h1_c00203{height:1160.000000pt;}
.w2_c00203{width:830.999965pt;}
.w0_c00203{width:831.000000pt;}
.w1_c00203{width:831.333333pt;}
.x0_c00203{left:0.000000pt;}
.x2_c00203{left:78.135686pt;}
.x1_c00203{left:79.544400pt;}
.x3_c00203{left:80.642643pt;}
.x4_c00203{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:0.734863;font-style:normal;font-weight:normal;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_0bd62e715a6745d64c3207e8.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:0.743000;font-style:normal;font-weight: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_f5fbcf3ce11959614ff9b1ef.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:1.119000;font-style:normal;font-weight: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_c00204;src:url('chunks/assets/font_fcbc5c3332067d7d36cf9d96.woff2')format("woff");}.ff6_c00204{font-family:ff6_c00204;line-height:1.000000;font-style:normal;font-weight: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_c00204;src:url('chunks/assets/font_75dfbdd6799d0b19333e0309.woff2')format("woff");}.ff7_c00204{font-family:ff7_c00204;line-height:1.171387;font-style:normal;font-weight: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_c00204;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff8_c00204{font-family:ff8_c00204;line-height:1.006348;font-style:normal;font-weight: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_c00204;src:url('chunks/assets/font_f34810268f8e3906c9ebe8ac.woff2')format("woff");}.ff9_c00204{font-family:ff9_c00204;line-height:1.000000;font-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_c00204{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00204{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00204{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00204{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00204{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00204{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00204{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00204{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00204{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00204{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00204{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00204{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00204{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00204{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00204{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00204{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00204{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00204{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00204{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00204{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00204{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00204{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00204{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00204{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00204{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00204{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00204{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00204{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00204{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00204{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00204{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00204{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00204{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00204{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00204{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00204{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00204{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00204{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00204{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00204{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00204{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00204{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00204{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00204{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00204{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00204{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00204{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00204{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00204{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00204{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00204{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00204{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00204{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00204{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00204{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00204{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00204{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00204{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00204{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00204{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00204{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00204{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.v1_c00204{vertical-align:1.279728px;}
.ls0_c00204{letter-spacing:0.000000px;}
.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:-41.689573px;}
.ws0_c00204{word-spacing:-15.171263px;}
.ws3_c00204{word-spacing:-0.089985px;}
.ws2_c00204{word-spacing:-0.055755px;}
.ws5_c00204{word-spacing:0.000000px;}
.ws4_c00204{word-spacing:288.058683px;}
._0_c00204{width:3.299604px;}
._5_c00204{width:5.684666px;}
._4_c00204{width:6.984352px;}
._1_c00204{width:8.408179px;}
._2_c00204{width:12.107757px;}
._3_c00204{width:20.671874px;}
.fc4_c00204{color:transparent;}
.fc3_c00204{color:rgb(67,91,56);}
.fc2_c00204{color:rgb(255,255,255);}
.fc1_c00204{color:rgb(0,0,0);}
.fc0_c00204{color:rgb(9,71,81);}
.fse_c00204{font-size:39.757786px;}
.fs7_c00204{font-size:41.999830px;}
.fsd_c00204{font-size:42.000118px;}
.fs4_c00204{font-size:47.368230px;}
.fs1_c00204{font-size:47.368231px;}
.fs5_c00204{font-size:47.368232px;}
.fs2_c00204{font-size:47.368233px;}
.fs3_c00204{font-size:47.368235px;}
.fs0_c00204{font-size:51.661596px;}
.fs9_c00204{font-size:55.754999px;}
.fs8_c00204{font-size:59.984997px;}
.fsa_c00204{font-size:71.999997px;}
.fsb_c00204{font-size:74.424240px;}
.fs6_c00204{font-size:77.011488px;}
.fsc_c00204{font-size:89.985250px;}
.fsf_c00204{font-size:95.984996px;}
.y0_c00204{bottom:0.000000px;}
.y1_c00204{bottom:0.000008px;}
.y55_c00204{bottom:29.401163px;}
.y4e_c00204{bottom:117.024619px;}
.y4d_c00204{bottom:147.399618px;}
.y4c_c00204{bottom:177.774617px;}
.y4b_c00204{bottom:208.149615px;}
.y4a_c00204{bottom:238.524614px;}
.y49_c00204{bottom:268.899613px;}
.y48_c00204{bottom:299.274612px;}
.y4f_c00204{bottom:340.353374px;}
.y2_c00204{bottom:401.525233px;}
.y2e_c00204{bottom:486.888550px;}
.y10_c00204{bottom:493.328193px;}
.y24_c00204{bottom:493.343399px;}
.yf_c00204{bottom:493.853349px;}
.y25_c00204{bottom:493.873061px;}
.y3c_c00204{bottom:493.958987px;}
.y23_c00204{bottom:494.588444px;}
.y3d_c00204{bottom:494.792564px;}
.y3b_c00204{bottom:494.812470px;}
.ye_c00204{bottom:494.919675px;}
.y22_c00204{bottom:495.839509px;}
.y3a_c00204{bottom:495.847333px;}
.yd_c00204{bottom:495.993006px;}
.y26_c00204{bottom:496.289992px;}
.y11_c00204{bottom:496.353113px;}
.y3e_c00204{bottom:496.973447px;}
.y21_c00204{bottom:497.484020px;}
.yc_c00204{bottom:497.644926px;}
.y39_c00204{bottom:498.050705px;}
.y3f_c00204{bottom:498.365140px;}
.y20_c00204{bottom:499.172711px;}
.yb_c00204{bottom:499.338107px;}
.y40_c00204{bottom:500.063439px;}
.y12_c00204{bottom:500.630691px;}
.y1f_c00204{bottom:501.037949px;}
.ya_c00204{bottom:501.208280px;}
.y27_c00204{bottom:501.390523px;}
.y38_c00204{bottom:501.842247px;}
.y41_c00204{bottom:502.505484px;}
.y13_c00204{bottom:503.149881px;}
.y42_c00204{bottom:504.764265px;}
.y28_c00204{bottom:505.018723px;}
.y1e_c00204{bottom:505.692124px;}
.y9_c00204{bottom:505.872210px;}
.y37_c00204{bottom:507.310818px;}
.y43_c00204{bottom:508.033427px;}
.y14_c00204{bottom:509.102244px;}
.y29_c00204{bottom:510.653024px;}
.y36_c00204{bottom:511.777229px;}
.y1d_c00204{bottom:512.093421px;}
.y8_c00204{bottom:512.281650px;}
.y15_c00204{bottom:513.850725px;}
.y44_c00204{bottom:516.430791px;}
.y2a_c00204{bottom:517.310602px;}
.y35_c00204{bottom:518.202280px;}
.y1c_c00204{bottom:519.400384px;}
.y7_c00204{bottom:519.490765px;}
.y34_c00204{bottom:522.772118px;}
.y6_c00204{bottom:522.949612px;}
.y45_c00204{bottom:524.479945px;}
.y16_c00204{bottom:525.634963px;}
.y1b_c00204{bottom:526.562252px;}
.y5_c00204{bottom:528.960471px;}
.y2b_c00204{bottom:529.273050px;}
.y33_c00204{bottom:530.544173px;}
.y1a_c00204{bottom:531.331047px;}
.y2d_c00204{bottom:533.268367px;}
.y31_c00204{bottom:533.961655px;}
.y32_c00204{bottom:534.438127px;}
.y4_c00204{bottom:536.219702px;}
.y19_c00204{bottom:537.503874px;}
.y17_c00204{bottom:537.875309px;}
.y2c_c00204{bottom:538.238502px;}
.y2f_c00204{bottom:539.975192px;}
.y18_c00204{bottom:544.566810px;}
.y3_c00204{bottom:545.753758px;}
.y30_c00204{bottom:577.436970px;}
.y47_c00204{bottom:639.092781px;}
.y46_c00204{bottom:1021.440190px;}
.y53_c00204{bottom:1128.788039px;}
.y51_c00204{bottom:1133.738410px;}
.y50_c00204{bottom:1147.738449px;}
.y54_c00204{bottom:1153.262414px;}
.y52_c00204{bottom:1171.082693px;}
.hc_c00204{height:32.176627px;}
.h8_c00204{height:35.988753px;}
.h9_c00204{height:35.988755px;}
.ha_c00204{height:35.988756px;}
.h7_c00204{height:36.289430px;}
.h4_c00204{height:36.289431px;}
.h5_c00204{height:36.289433px;}
.h6_c00204{height:36.289434px;}
.h13_c00204{height:37.020556px;}
.h3_c00204{height:37.459702px;}
.h12_c00204{height:39.108509px;}
.he_c00204{height:51.916398px;}
.hf_c00204{height:55.160154px;}
.hb_c00204{height:56.295398px;}
.hd_c00204{height:56.325912px;}
.h10_c00204{height:57.017399px;}
.h16_c00204{height:57.575126px;}
.h14_c00204{height:67.042966px;}
.h11_c00204{height:68.367700px;}
.h15_c00204{height:89.376654px;}
.h2_c00204{height:1304.999946px;}
.h0_c00204{height:1304.999953px;}
.h1_c00204{height:1305.000000px;}
.w2_c00204{width:934.874961px;}
.w0_c00204{width:934.875000px;}
.w1_c00204{width:935.250000px;}
.x0_c00204{left:0.000000px;}
.x3e_c00204{left:87.902647px;}
.x3f_c00204{left:89.260034px;}
.x40_c00204{left:107.230262px;}
.x41_c00204{left:108.827167px;}
.x3c_c00204{left:130.690629px;}
.x14_c00204{left:134.974838px;}
.x13_c00204{left:136.648279px;}
.x15_c00204{left:140.021272px;}
.x16_c00204{left:144.871714px;}
.x17_c00204{left:150.237526px;}
.x18_c00204{left:152.990336px;}
.x19_c00204{left:156.000220px;}
.x1a_c00204{left:159.847713px;}
.x24_c00204{left:161.443962px;}
.x1b_c00204{left:163.301377px;}
.x1c_c00204{left:171.586339px;}
.x1d_c00204{left:179.855997px;}
.x1e_c00204{left:188.287487px;}
.x1f_c00204{left:196.673970px;}
.x20_c00204{left:200.841336px;}
.x21_c00204{left:205.399483px;}
.x22_c00204{left:209.208896px;}
.x23_c00204{left:211.795693px;}
.x3_c00204{left:230.398389px;}
.x2_c00204{left:232.534609px;}
.x4_c00204{left:235.623324px;}
.x5_c00204{left:240.462566px;}
.x6_c00204{left:245.820252px;}
.x7_c00204{left:248.569815px;}
.x8_c00204{left:251.576732px;}
.x9_c00204{left:255.421336px;}
.x43_c00204{left:256.622047px;}
.xa_c00204{left:258.708042px;}
.xb_c00204{left:263.145298px;}
.xc_c00204{left:271.763354px;}
.xd_c00204{left:283.603990px;}
.xe_c00204{left:291.041304px;}
.xf_c00204{left:294.435991px;}
.x42_c00204{left:295.615161px;}
.x10_c00204{left:299.775542px;}
.x11_c00204{left:303.165014px;}
.x12_c00204{left:307.176807px;}
.x29_c00204{left:327.047435px;}
.x2a_c00204{left:328.264734px;}
.x2b_c00204{left:329.685747px;}
.x2c_c00204{left:333.082971px;}
.x2d_c00204{left:336.307511px;}
.x2e_c00204{left:342.189757px;}
.x2f_c00204{left:348.376740px;}
.x28_c00204{left:351.731739px;}
.x30_c00204{left:354.069743px;}
.x31_c00204{left:357.479743px;}
.x32_c00204{left:365.386869px;}
.x33_c00204{left:373.375785px;}
.x34_c00204{left:380.135498px;}
.x35_c00204{left:383.155707px;}
.x36_c00204{left:386.159935px;}
.x37_c00204{left:389.557910px;}
.x38_c00204{left:392.174988px;}
.x39_c00204{left:395.489533px;}
.x3a_c00204{left:400.664851px;}
.x3b_c00204{left:403.469600px;}
.x44_c00204{left:452.271732px;}
.x26_c00204{left:464.896169px;}
.x3d_c00204{left:664.443440px;}
.x1_c00204{left:697.320842px;}
.x27_c00204{left:733.540639px;}
.x25_c00204{left:757.088990px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.v1_c00204{vertical-align:1.137536pt;}
.ls0_c00204{letter-spacing:0.000000pt;}
.ws1_c00204{word-spacing:-37.057398pt;}
.ws0_c00204{word-spacing:-13.485567pt;}
.ws3_c00204{word-spacing:-0.079987pt;}
.ws2_c00204{word-spacing:-0.049560pt;}
.ws5_c00204{word-spacing:0.000000pt;}
.ws4_c00204{word-spacing:256.052163pt;}
._0_c00204{width:2.932981pt;}
._5_c00204{width:5.053037pt;}
._4_c00204{width:6.208313pt;}
._1_c00204{width:7.473937pt;}
._2_c00204{width:10.762451pt;}
._3_c00204{width:18.374999pt;}
.fse_c00204{font-size:35.340254pt;}
.fs7_c00204{font-size:37.333182pt;}
.fsd_c00204{font-size:37.333438pt;}
.fs4_c00204{font-size:42.105093pt;}
.fs1_c00204{font-size:42.105094pt;}
.fs5_c00204{font-size:42.105095pt;}
.fs2_c00204{font-size:42.105096pt;}
.fs3_c00204{font-size:42.105098pt;}
.fs0_c00204{font-size:45.921418pt;}
.fs9_c00204{font-size:49.559999pt;}
.fs8_c00204{font-size:53.319997pt;}
.fsa_c00204{font-size:63.999997pt;}
.fsb_c00204{font-size:66.154880pt;}
.fs6_c00204{font-size:68.454656pt;}
.fsc_c00204{font-size:79.986889pt;}
.fsf_c00204{font-size:85.319996pt;}
.y0_c00204{bottom:0.000000pt;}
.y1_c00204{bottom:0.000007pt;}
.y55_c00204{bottom:26.134367pt;}
.y4e_c00204{bottom:104.021884pt;}
.y4d_c00204{bottom:131.021883pt;}
.y4c_c00204{bottom:158.021881pt;}
.y4b_c00204{bottom:185.021880pt;}
.y4a_c00204{bottom:212.021879pt;}
.y49_c00204{bottom:239.021878pt;}
.y48_c00204{bottom:266.021877pt;}
.y4f_c00204{bottom:302.536333pt;}
.y2_c00204{bottom:356.911319pt;}
.y2e_c00204{bottom:432.789822pt;}
.y10_c00204{bottom:438.513950pt;}
.y24_c00204{bottom:438.527466pt;}
.yf_c00204{bottom:438.980754pt;}
.y25_c00204{bottom:438.998276pt;}
.y3c_c00204{bottom:439.074655pt;}
.y23_c00204{bottom:439.634173pt;}
.y3d_c00204{bottom:439.815613pt;}
.y3b_c00204{bottom:439.833307pt;}
.ye_c00204{bottom:439.928600pt;}
.y22_c00204{bottom:440.746230pt;}
.y3a_c00204{bottom:440.753185pt;}
.yd_c00204{bottom:440.882672pt;}
.y26_c00204{bottom:441.146660pt;}
.y11_c00204{bottom:441.202767pt;}
.y3e_c00204{bottom:441.754175pt;}
.y21_c00204{bottom:442.208018pt;}
.yc_c00204{bottom:442.351046pt;}
.y39_c00204{bottom:442.711737pt;}
.y3f_c00204{bottom:442.991236pt;}
.y20_c00204{bottom:443.709077pt;}
.yb_c00204{bottom:443.856095pt;}
.y40_c00204{bottom:444.500834pt;}
.y12_c00204{bottom:445.005059pt;}
.y1f_c00204{bottom:445.367066pt;}
.ya_c00204{bottom:445.518471pt;}
.y27_c00204{bottom:445.680465pt;}
.y38_c00204{bottom:446.081997pt;}
.y41_c00204{bottom:446.671541pt;}
.y13_c00204{bottom:447.244339pt;}
.y42_c00204{bottom:448.679347pt;}
.y28_c00204{bottom:448.905531pt;}
.y1e_c00204{bottom:449.504110pt;}
.y9_c00204{bottom:449.664187pt;}
.y37_c00204{bottom:450.942950pt;}
.y43_c00204{bottom:451.585269pt;}
.y14_c00204{bottom:452.535328pt;}
.y29_c00204{bottom:453.913799pt;}
.y36_c00204{bottom:454.913093pt;}
.y1d_c00204{bottom:455.194152pt;}
.y8_c00204{bottom:455.361467pt;}
.y15_c00204{bottom:456.756200pt;}
.y44_c00204{bottom:459.049592pt;}
.y2a_c00204{bottom:459.831647pt;}
.y35_c00204{bottom:460.624248pt;}
.y1c_c00204{bottom:461.689230pt;}
.y7_c00204{bottom:461.769569pt;}
.y34_c00204{bottom:464.686327pt;}
.y6_c00204{bottom:464.844100pt;}
.y45_c00204{bottom:466.204395pt;}
.y16_c00204{bottom:467.231078pt;}
.y1b_c00204{bottom:468.055335pt;}
.y5_c00204{bottom:470.187085pt;}
.y2b_c00204{bottom:470.464933pt;}
.y33_c00204{bottom:471.594820pt;}
.y1a_c00204{bottom:472.294264pt;}
.y2d_c00204{bottom:474.016326pt;}
.y31_c00204{bottom:474.632582pt;}
.y32_c00204{bottom:475.056113pt;}
.y4_c00204{bottom:476.639735pt;}
.y19_c00204{bottom:477.781221pt;}
.y17_c00204{bottom:478.111386pt;}
.y2c_c00204{bottom:478.434224pt;}
.y2f_c00204{bottom:479.977948pt;}
.y18_c00204{bottom:484.059387pt;}
.y3_c00204{bottom:485.114452pt;}
.y30_c00204{bottom:513.277307pt;}
.y47_c00204{bottom:568.082472pt;}
.y46_c00204{bottom:907.946836pt;}
.y53_c00204{bottom:1003.367145pt;}
.y51_c00204{bottom:1007.767476pt;}
.y50_c00204{bottom:1020.211955pt;}
.y54_c00204{bottom:1025.122146pt;}
.y52_c00204{bottom:1040.962393pt;}
.hc_c00204{height:28.601447pt;}
.h8_c00204{height:31.990003pt;}
.h9_c00204{height:31.990004pt;}
.ha_c00204{height:31.990006pt;}
.h7_c00204{height:32.257271pt;}
.h4_c00204{height:32.257272pt;}
.h5_c00204{height:32.257274pt;}
.h6_c00204{height:32.257275pt;}
.h13_c00204{height:32.907161pt;}
.h3_c00204{height:33.297513pt;}
.h12_c00204{height:34.763119pt;}
.he_c00204{height:46.147909pt;}
.hf_c00204{height:49.031248pt;}
.hb_c00204{height:50.040354pt;}
.hd_c00204{height:50.067478pt;}
.h10_c00204{height:50.682132pt;}
.h16_c00204{height:51.177889pt;}
.h14_c00204{height:59.593748pt;}
.h11_c00204{height:60.771289pt;}
.h15_c00204{height:79.445915pt;}
.h2_c00204{height:1159.999952pt;}
.h0_c00204{height:1159.999959pt;}
.h1_c00204{height:1160.000000pt;}
.w2_c00204{width:830.999965pt;}
.w0_c00204{width:831.000000pt;}
.w1_c00204{width:831.333333pt;}
.x0_c00204{left:0.000000pt;}
.x3e_c00204{left:78.135686pt;}
.x3f_c00204{left:79.342253pt;}
.x40_c00204{left:95.315788pt;}
.x41_c00204{left:96.735260pt;}
.x3c_c00204{left:116.169448pt;}
.x14_c00204{left:119.977634pt;}
.x13_c00204{left:121.465137pt;}
.x15_c00204{left:124.463353pt;}
.x16_c00204{left:128.774857pt;}
.x17_c00204{left:133.544468pt;}
.x18_c00204{left:135.991410pt;}
.x19_c00204{left:138.666862pt;}
.x1a_c00204{left:142.086856pt;}
.x24_c00204{left:143.505744pt;}
.x1b_c00204{left:145.156780pt;}
.x1c_c00204{left:152.521190pt;}
.x1d_c00204{left:159.871997pt;}
.x1e_c00204{left:167.366655pt;}
.x1f_c00204{left:174.821307pt;}
.x20_c00204{left:178.525632pt;}
.x21_c00204{left:182.577318pt;}
.x22_c00204{left:185.963463pt;}
.x23_c00204{left:188.262839pt;}
.x3_c00204{left:204.798568pt;}
.x2_c00204{left:206.697430pt;}
.x4_c00204{left:209.442955pt;}
.x5_c00204{left:213.744503pt;}
.x6_c00204{left:218.506891pt;}
.x7_c00204{left:220.950947pt;}
.x8_c00204{left:223.623762pt;}
.x9_c00204{left:227.041187pt;}
.x43_c00204{left:228.108486pt;}
.xa_c00204{left:229.962704pt;}
.xb_c00204{left:233.906932pt;}
.xc_c00204{left:241.567426pt;}
.xd_c00204{left:252.092435pt;}
.xe_c00204{left:258.703382pt;}
.xf_c00204{left:261.720880pt;}
.x42_c00204{left:262.769032pt;}
.x10_c00204{left:266.467148pt;}
.x11_c00204{left:269.480012pt;}
.x12_c00204{left:273.046051pt;}
.x29_c00204{left:290.708831pt;}
.x2a_c00204{left:291.790874pt;}
.x2b_c00204{left:293.053997pt;}
.x2c_c00204{left:296.073752pt;}
.x2d_c00204{left:298.940009pt;}
.x2e_c00204{left:304.168673pt;}
.x2f_c00204{left:309.668213pt;}
.x28_c00204{left:312.650435pt;}
.x30_c00204{left:314.728661pt;}
.x31_c00204{left:317.759772pt;}
.x32_c00204{left:324.788328pt;}
.x33_c00204{left:331.889587pt;}
.x34_c00204{left:337.898220pt;}
.x35_c00204{left:340.582851pt;}
.x36_c00204{left:343.253275pt;}
.x37_c00204{left:346.273697pt;}
.x38_c00204{left:348.599989pt;}
.x39_c00204{left:351.546252pt;}
.x3a_c00204{left:356.146534pt;}
.x3b_c00204{left:358.639645pt;}
.x44_c00204{left:402.019318pt;}
.x26_c00204{left:413.241039pt;}
.x3d_c00204{left:590.616391pt;}
.x1_c00204{left:619.840748pt;}
.x27_c00204{left:652.036124pt;}
.x25_c00204{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ceff914892cf1b470f4751a8.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.171387;font-style:normal;font-weight:normal;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_47de8d93bb79ee0beee2aa6c.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.005371;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.006348;font-style:normal;font-weight:normal;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_fef12f6ecacb492719c06d7d.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.000000;font-style:normal;font-weight: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_c00205;src:url('chunks/assets/font_ea0b479442aa8d345d7bf289.woff2')format("woff");}.ff5_c00205{font-family:ff5_c00205;line-height:1.171387;font-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_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);}
.v0_c00205{vertical-align:0.000000px;}
.ls0_c00205{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00205{word-spacing:-19.320776px;}
.ws1_c00205{word-spacing:-0.055755px;}
.ws2_c00205{word-spacing:0.000000px;}
._3_c00205{width:1.039442px;}
._2_c00205{width:2.520400px;}
._4_c00205{width:4.104492px;}
._5_c00205{width:5.173802px;}
._6_c00205{width:8.537064px;}
._9_c00205{width:12.413314px;}
._0_c00205{width:17.372197px;}
._1_c00205{width:25.867171px;}
._8_c00205{width:30.499349px;}
._7_c00205{width:32.062500px;}
.fc2_c00205{color:rgb(8,1,0);}
.fc1_c00205{color:rgb(67,91,56);}
.fc3_c00205{color:rgb(255,255,255);}
.fc0_c00205{color:rgb(0,0,0);}
.fs2_c00205{font-size:55.754999px;}
.fs0_c00205{font-size:71.999997px;}
.fs1_c00205{font-size:74.377724px;}
.y0_c00205{bottom:0.000000px;}
.y1_c00205{bottom:0.000008px;}
.y15_c00205{bottom:29.401163px;}
.y16_c00205{bottom:385.475528px;}
.y10_c00205{bottom:500.250471px;}
.yf_c00205{bottom:530.625470px;}
.ye_c00205{bottom:561.000469px;}
.yd_c00205{bottom:591.375467px;}
.yc_c00205{bottom:621.750466px;}
.yb_c00205{bottom:660.450500px;}
.ya_c00205{bottom:752.913512px;}
.y9_c00205{bottom:785.935515px;}
.y7_c00205{bottom:848.023514px;}
.y6_c00205{bottom:878.398513px;}
.y5_c00205{bottom:908.773511px;}
.y4_c00205{bottom:939.148510px;}
.y3_c00205{bottom:969.523509px;}
.y2_c00205{bottom:999.898508px;}
.y8_c00205{bottom:1038.967560px;}
.y14_c00205{bottom:1106.839333px;}
.y13_c00205{bottom:1137.214331px;}
.y12_c00205{bottom:1167.589330px;}
.y11_c00205{bottom:1199.188955px;}
.h6_c00205{height:51.916398px;}
.h4_c00205{height:55.160154px;}
.h5_c00205{height:56.981762px;}
.h3_c00205{height:67.042966px;}
.h2_c00205{height:1304.999946px;}
.h0_c00205{height:1304.999953px;}
.h1_c00205{height:1305.000000px;}
.w2_c00205{width:934.874961px;}
.w0_c00205{width:934.875000px;}
.w1_c00205{width:935.250000px;}
.x0_c00205{left:0.000000px;}
.x1_c00205{left:89.487450px;}
.x2_c00205{left:452.271732px;}
.x3_c00205{left:725.232750px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws0_c00205{word-spacing:-17.174023pt;}
.ws1_c00205{word-spacing:-0.049560pt;}
.ws2_c00205{word-spacing:0.000000pt;}
._3_c00205{width:0.923948pt;}
._2_c00205{width:2.240356pt;}
._4_c00205{width:3.648438pt;}
._5_c00205{width:4.598935pt;}
._6_c00205{width:7.588501pt;}
._9_c00205{width:11.034057pt;}
._0_c00205{width:15.441953pt;}
._1_c00205{width:22.993041pt;}
._8_c00205{width:27.110533pt;}
._7_c00205{width:28.500000pt;}
.fs2_c00205{font-size:49.559999pt;}
.fs0_c00205{font-size:63.999997pt;}
.fs1_c00205{font-size:66.113533pt;}
.y0_c00205{bottom:0.000000pt;}
.y1_c00205{bottom:0.000007pt;}
.y15_c00205{bottom:26.134367pt;}
.y16_c00205{bottom:342.644914pt;}
.y10_c00205{bottom:444.667085pt;}
.yf_c00205{bottom:471.667084pt;}
.ye_c00205{bottom:498.667083pt;}
.yd_c00205{bottom:525.667082pt;}
.yc_c00205{bottom:552.667081pt;}
.yb_c00205{bottom:587.067112pt;}
.ya_c00205{bottom:669.256455pt;}
.y9_c00205{bottom:698.609347pt;}
.y7_c00205{bottom:753.798679pt;}
.y6_c00205{bottom:780.798678pt;}
.y5_c00205{bottom:807.798677pt;}
.y4_c00205{bottom:834.798676pt;}
.y3_c00205{bottom:861.798674pt;}
.y2_c00205{bottom:888.798673pt;}
.y8_c00205{bottom:923.526720pt;}
.y14_c00205{bottom:983.857185pt;}
.y13_c00205{bottom:1010.857183pt;}
.y12_c00205{bottom:1037.857182pt;}
.y11_c00205{bottom:1065.945738pt;}
.h6_c00205{height:46.147909pt;}
.h4_c00205{height:49.031248pt;}
.h5_c00205{height:50.650455pt;}
.h3_c00205{height:59.593748pt;}
.h2_c00205{height:1159.999952pt;}
.h0_c00205{height:1159.999959pt;}
.h1_c00205{height:1160.000000pt;}
.w2_c00205{width:830.999965pt;}
.w0_c00205{width:831.000000pt;}
.w1_c00205{width:831.333333pt;}
.x0_c00205{left:0.000000pt;}
.x1_c00205{left:79.544400pt;}
.x2_c00205{left:402.019318pt;}
.x3_c00205{left:644.651333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:0.734863;font-style:normal;font-weight:normal;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_54e279fce4c6fd667f3e3caa.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:0.743000;font-style:normal;font-weight: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_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:1.006348;font-style:normal;font-weight: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_99c9063d6b3debb1c4133855.woff2')format("woff");}.ff6_c00206{font-family:ff6_c00206;line-height:1.000000;font-style:normal;font-weight: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_fe3850c5ec769a984daa32af.woff2')format("woff");}.ff7_c00206{font-family:ff7_c00206;line-height:1.171387;font-style:normal;font-weight: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_f9eed1ba068b8983b1052f9d.woff2')format("woff");}.ff8_c00206{font-family:ff8_c00206;line-height:1.000000;font-style:normal;font-weight: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_c00206;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00206{font-family:ff9_c00206;line-height:0.940000;font-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_c00206{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00206{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00206{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00206{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00206{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00206{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00206{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00206{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00206{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00206{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00206{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00206{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00206{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00206{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00206{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00206{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00206{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00206{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00206{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00206{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00206{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00206{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00206{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00206{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00206{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00206{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00206{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00206{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00206{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00206{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00206{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00206{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00206{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00206{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00206{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00206{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00206{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00206{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00206{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00206{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00206{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00206{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00206{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00206{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00206{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00206{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00206{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00206{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00206{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00206{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00206{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00206{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00206{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00206{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00206{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00206{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00206{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00206{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00206{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00206{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00206{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00206{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00206{vertical-align:0.000000px;}
.v1_c00206{vertical-align:1.280304px;}
.ls0_c00206{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00206{word-spacing:-41.689573px;}
.ws0_c00206{word-spacing:-15.171263px;}
.ws2_c00206{word-spacing:-0.055755px;}
.ws4_c00206{word-spacing:0.000000px;}
.ws1_c00206{word-spacing:288.058683px;}
._0_c00206{width:5.228668px;}
._2_c00206{width:6.457006px;}
._3_c00206{width:12.215150px;}
._5_c00206{width:13.992190px;}
._4_c00206{width:15.284795px;}
._1_c00206{width:17.377139px;}
.fc4_c00206{color:transparent;}
.fc3_c00206{color:rgb(67,91,56);}
.fc2_c00206{color:rgb(255,255,255);}
.fc1_c00206{color:rgb(0,0,0);}
.fc0_c00206{color:rgb(9,71,81);}
.fsb_c00206{font-size:36.000051px;}
.fsc_c00206{font-size:39.757786px;}
.fs7_c00206{font-size:41.999830px;}
.fs4_c00206{font-size:47.368230px;}
.fs1_c00206{font-size:47.368231px;}
.fs5_c00206{font-size:47.368232px;}
.fs2_c00206{font-size:47.368233px;}
.fs3_c00206{font-size:47.368235px;}
.fs0_c00206{font-size:51.661596px;}
.fse_c00206{font-size:55.754999px;}
.fsf_c00206{font-size:59.984997px;}
.fs8_c00206{font-size:71.999997px;}
.fs9_c00206{font-size:74.424240px;}
.fs6_c00206{font-size:77.011488px;}
.fsa_c00206{font-size:84.000120px;}
.fsd_c00206{font-size:95.984996px;}
.y0_c00206{bottom:0.000000px;}
.y1_c00206{bottom:0.000008px;}
.y55_c00206{bottom:29.400983px;}
.y4d_c00206{bottom:92.048360px;}
.y4c_c00206{bottom:122.423359px;}
.y4b_c00206{bottom:152.798358px;}
.y4a_c00206{bottom:183.173356px;}
.y49_c00206{bottom:213.548355px;}
.y48_c00206{bottom:243.923354px;}
.y47_c00206{bottom:274.298353px;}
.y46_c00206{bottom:304.673351px;}
.y4e_c00206{bottom:338.754146px;}
.y2_c00206{bottom:401.525233px;}
.y2e_c00206{bottom:486.888550px;}
.y10_c00206{bottom:493.328373px;}
.y24_c00206{bottom:493.343399px;}
.yf_c00206{bottom:493.853709px;}
.y25_c00206{bottom:493.873241px;}
.y3c_c00206{bottom:493.959311px;}
.y23_c00206{bottom:494.588120px;}
.y3d_c00206{bottom:494.792744px;}
.y3b_c00206{bottom:494.812830px;}
.ye_c00206{bottom:494.919675px;}
.y22_c00206{bottom:495.839329px;}
.y3a_c00206{bottom:495.847693px;}
.yd_c00206{bottom:495.993006px;}
.y26_c00206{bottom:496.289812px;}
.y11_c00206{bottom:496.353473px;}
.y3e_c00206{bottom:496.973987px;}
.y21_c00206{bottom:497.484200px;}
.yc_c00206{bottom:497.644566px;}
.y39_c00206{bottom:498.050345px;}
.y3f_c00206{bottom:498.364996px;}
.y20_c00206{bottom:499.172711px;}
.yb_c00206{bottom:499.338251px;}
.y40_c00206{bottom:500.063079px;}
.y12_c00206{bottom:500.630691px;}
.y1f_c00206{bottom:501.037769px;}
.ya_c00206{bottom:501.208100px;}
.y27_c00206{bottom:501.390523px;}
.y38_c00206{bottom:501.842067px;}
.y41_c00206{bottom:502.505484px;}
.y13_c00206{bottom:503.149521px;}
.y42_c00206{bottom:504.764445px;}
.y28_c00206{bottom:505.018723px;}
.y1e_c00206{bottom:505.692124px;}
.y9_c00206{bottom:505.871886px;}
.y37_c00206{bottom:507.310818px;}
.y43_c00206{bottom:508.033247px;}
.y14_c00206{bottom:509.101920px;}
.y29_c00206{bottom:510.652700px;}
.y36_c00206{bottom:511.777409px;}
.y1d_c00206{bottom:512.093601px;}
.y8_c00206{bottom:512.281830px;}
.y15_c00206{bottom:513.850725px;}
.y44_c00206{bottom:516.430791px;}
.y2a_c00206{bottom:517.310242px;}
.y35_c00206{bottom:518.202100px;}
.y1c_c00206{bottom:519.400564px;}
.y7_c00206{bottom:519.490909px;}
.y34_c00206{bottom:522.772118px;}
.y6_c00206{bottom:522.949612px;}
.y45_c00206{bottom:524.479585px;}
.y16_c00206{bottom:525.634639px;}
.y1b_c00206{bottom:526.562252px;}
.y5_c00206{bottom:528.959931px;}
.y2b_c00206{bottom:529.273374px;}
.y33_c00206{bottom:530.544173px;}
.y1a_c00206{bottom:531.331551px;}
.y2d_c00206{bottom:533.268007px;}
.y31_c00206{bottom:533.961835px;}
.y32_c00206{bottom:534.437983px;}
.y4_c00206{bottom:536.219342px;}
.y19_c00206{bottom:537.503874px;}
.y17_c00206{bottom:537.875309px;}
.y2c_c00206{bottom:538.238862px;}
.y2f_c00206{bottom:539.974832px;}
.y18_c00206{bottom:544.567170px;}
.y3_c00206{bottom:545.754118px;}
.y30_c00206{bottom:577.437150px;}
.y54_c00206{bottom:639.092601px;}
.y56_c00206{bottom:1021.439841px;}
.y52_c00206{bottom:1128.788391px;}
.y50_c00206{bottom:1136.423491px;}
.y4f_c00206{bottom:1149.173509px;}
.y53_c00206{bottom:1153.262238px;}
.y51_c00206{bottom:1171.082779px;}
.h11_c00206{height:33.521532px;}
.h9_c00206{height:35.988753px;}
.ha_c00206{height:35.988755px;}
.hb_c00206{height:35.988756px;}
.h12_c00206{height:37.020556px;}
.h3_c00206{height:37.459702px;}
.hd_c00206{height:39.108240px;}
.h7_c00206{height:44.107038px;}
.h4_c00206{height:44.107039px;}
.h8_c00206{height:44.107040px;}
.h5_c00206{height:44.107042px;}
.h6_c00206{height:44.107043px;}
.h16_c00206{height:45.588598px;}
.h15_c00206{height:51.916398px;}
.hc_c00206{height:56.295398px;}
.hf_c00206{height:57.017399px;}
.h14_c00206{height:57.575702px;}
.h10_c00206{height:63.820404px;}
.he_c00206{height:67.042966px;}
.h13_c00206{height:89.376654px;}
.h2_c00206{height:1304.999946px;}
.h0_c00206{height:1304.999953px;}
.h1_c00206{height:1305.000000px;}
.w2_c00206{width:934.874961px;}
.w0_c00206{width:934.875000px;}
.w1_c00206{width:935.250000px;}
.x0_c00206{left:0.000000px;}
.x3c_c00206{left:89.487450px;}
.x3d_c00206{left:90.844844px;}
.x3e_c00206{left:107.230262px;}
.x3f_c00206{left:108.827167px;}
.x44_c00206{left:130.690629px;}
.x14_c00206{left:134.974838px;}
.x13_c00206{left:136.648279px;}
.x15_c00206{left:140.021272px;}
.x16_c00206{left:144.871714px;}
.x17_c00206{left:150.237526px;}
.x18_c00206{left:152.990336px;}
.x19_c00206{left:156.000220px;}
.x1a_c00206{left:159.847713px;}
.x24_c00206{left:161.443962px;}
.x1b_c00206{left:163.301377px;}
.x1c_c00206{left:171.586339px;}
.x1d_c00206{left:179.855997px;}
.x1e_c00206{left:188.287487px;}
.x1f_c00206{left:196.673970px;}
.x20_c00206{left:200.841336px;}
.x21_c00206{left:205.399483px;}
.x22_c00206{left:209.208896px;}
.x23_c00206{left:211.795693px;}
.x3_c00206{left:230.398389px;}
.x2_c00206{left:232.534609px;}
.x4_c00206{left:235.623324px;}
.x5_c00206{left:240.462566px;}
.x6_c00206{left:245.820252px;}
.x7_c00206{left:248.569815px;}
.x8_c00206{left:251.576732px;}
.x9_c00206{left:255.421336px;}
.x41_c00206{left:256.622047px;}
.xa_c00206{left:258.708042px;}
.xb_c00206{left:263.145298px;}
.xc_c00206{left:271.763354px;}
.xd_c00206{left:283.603990px;}
.xe_c00206{left:291.041304px;}
.xf_c00206{left:294.435991px;}
.x40_c00206{left:295.615161px;}
.x10_c00206{left:299.775542px;}
.x11_c00206{left:303.165014px;}
.x12_c00206{left:307.176807px;}
.x29_c00206{left:327.047435px;}
.x2a_c00206{left:328.264734px;}
.x2b_c00206{left:329.685747px;}
.x2c_c00206{left:333.082971px;}
.x2d_c00206{left:336.307511px;}
.x2e_c00206{left:342.189757px;}
.x2f_c00206{left:348.376740px;}
.x28_c00206{left:351.731739px;}
.x30_c00206{left:354.069743px;}
.x31_c00206{left:357.479743px;}
.x32_c00206{left:365.386869px;}
.x33_c00206{left:373.375785px;}
.x34_c00206{left:380.135498px;}
.x35_c00206{left:383.155707px;}
.x36_c00206{left:386.159935px;}
.x37_c00206{left:389.557910px;}
.x38_c00206{left:392.174988px;}
.x39_c00206{left:395.489533px;}
.x3a_c00206{left:400.664851px;}
.x3b_c00206{left:403.469600px;}
.x43_c00206{left:452.271732px;}
.x26_c00206{left:464.896169px;}
.x42_c00206{left:664.443440px;}
.x1_c00206{left:697.320842px;}
.x27_c00206{left:733.540639px;}
.x25_c00206{left:757.088990px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.v1_c00206{vertical-align:1.138048pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws3_c00206{word-spacing:-37.057398pt;}
.ws0_c00206{word-spacing:-13.485567pt;}
.ws2_c00206{word-spacing:-0.049560pt;}
.ws4_c00206{word-spacing:0.000000pt;}
.ws1_c00206{word-spacing:256.052163pt;}
._0_c00206{width:4.647705pt;}
._2_c00206{width:5.739561pt;}
._3_c00206{width:10.857911pt;}
._5_c00206{width:12.437502pt;}
._4_c00206{width:13.586485pt;}
._1_c00206{width:15.446345pt;}
.fsb_c00206{font-size:32.000046pt;}
.fsc_c00206{font-size:35.340254pt;}
.fs7_c00206{font-size:37.333182pt;}
.fs4_c00206{font-size:42.105093pt;}
.fs1_c00206{font-size:42.105094pt;}
.fs5_c00206{font-size:42.105095pt;}
.fs2_c00206{font-size:42.105096pt;}
.fs3_c00206{font-size:42.105098pt;}
.fs0_c00206{font-size:45.921418pt;}
.fse_c00206{font-size:49.559999pt;}
.fsf_c00206{font-size:53.319997pt;}
.fs8_c00206{font-size:63.999997pt;}
.fs9_c00206{font-size:66.154880pt;}
.fs6_c00206{font-size:68.454656pt;}
.fsa_c00206{font-size:74.666773pt;}
.fsd_c00206{font-size:85.319996pt;}
.y0_c00206{bottom:0.000000pt;}
.y1_c00206{bottom:0.000007pt;}
.y55_c00206{bottom:26.134207pt;}
.y4d_c00206{bottom:81.820765pt;}
.y4c_c00206{bottom:108.820763pt;}
.y4b_c00206{bottom:135.820762pt;}
.y4a_c00206{bottom:162.820761pt;}
.y49_c00206{bottom:189.820760pt;}
.y48_c00206{bottom:216.820759pt;}
.y47_c00206{bottom:243.820758pt;}
.y46_c00206{bottom:270.820757pt;}
.y4e_c00206{bottom:301.114797pt;}
.y2_c00206{bottom:356.911319pt;}
.y2e_c00206{bottom:432.789822pt;}
.y10_c00206{bottom:438.514110pt;}
.y24_c00206{bottom:438.527466pt;}
.yf_c00206{bottom:438.981074pt;}
.y25_c00206{bottom:438.998436pt;}
.y3c_c00206{bottom:439.074943pt;}
.y23_c00206{bottom:439.633885pt;}
.y3d_c00206{bottom:439.815773pt;}
.y3b_c00206{bottom:439.833627pt;}
.ye_c00206{bottom:439.928600pt;}
.y22_c00206{bottom:440.746070pt;}
.y3a_c00206{bottom:440.753505pt;}
.yd_c00206{bottom:440.882672pt;}
.y26_c00206{bottom:441.146500pt;}
.y11_c00206{bottom:441.203087pt;}
.y3e_c00206{bottom:441.754655pt;}
.y21_c00206{bottom:442.208178pt;}
.yc_c00206{bottom:442.350726pt;}
.y39_c00206{bottom:442.711417pt;}
.y3f_c00206{bottom:442.991108pt;}
.y20_c00206{bottom:443.709077pt;}
.yb_c00206{bottom:443.856223pt;}
.y40_c00206{bottom:444.500514pt;}
.y12_c00206{bottom:445.005059pt;}
.y1f_c00206{bottom:445.366906pt;}
.ya_c00206{bottom:445.518311pt;}
.y27_c00206{bottom:445.680465pt;}
.y38_c00206{bottom:446.081837pt;}
.y41_c00206{bottom:446.671541pt;}
.y13_c00206{bottom:447.244019pt;}
.y42_c00206{bottom:448.679507pt;}
.y28_c00206{bottom:448.905531pt;}
.y1e_c00206{bottom:449.504110pt;}
.y9_c00206{bottom:449.663899pt;}
.y37_c00206{bottom:450.942950pt;}
.y43_c00206{bottom:451.585109pt;}
.y14_c00206{bottom:452.535040pt;}
.y29_c00206{bottom:453.913511pt;}
.y36_c00206{bottom:454.913253pt;}
.y1d_c00206{bottom:455.194312pt;}
.y8_c00206{bottom:455.361627pt;}
.y15_c00206{bottom:456.756200pt;}
.y44_c00206{bottom:459.049592pt;}
.y2a_c00206{bottom:459.831327pt;}
.y35_c00206{bottom:460.624088pt;}
.y1c_c00206{bottom:461.689390pt;}
.y7_c00206{bottom:461.769697pt;}
.y34_c00206{bottom:464.686327pt;}
.y6_c00206{bottom:464.844100pt;}
.y45_c00206{bottom:466.204075pt;}
.y16_c00206{bottom:467.230790pt;}
.y1b_c00206{bottom:468.055335pt;}
.y5_c00206{bottom:470.186605pt;}
.y2b_c00206{bottom:470.465221pt;}
.y33_c00206{bottom:471.594820pt;}
.y1a_c00206{bottom:472.294712pt;}
.y2d_c00206{bottom:474.016006pt;}
.y31_c00206{bottom:474.632742pt;}
.y32_c00206{bottom:475.055985pt;}
.y4_c00206{bottom:476.639415pt;}
.y19_c00206{bottom:477.781221pt;}
.y17_c00206{bottom:478.111386pt;}
.y2c_c00206{bottom:478.434544pt;}
.y2f_c00206{bottom:479.977628pt;}
.y18_c00206{bottom:484.059707pt;}
.y3_c00206{bottom:485.114772pt;}
.y30_c00206{bottom:513.277467pt;}
.y54_c00206{bottom:568.082312pt;}
.y56_c00206{bottom:907.946525pt;}
.y52_c00206{bottom:1003.367459pt;}
.y50_c00206{bottom:1010.154214pt;}
.y4f_c00206{bottom:1021.487564pt;}
.y53_c00206{bottom:1025.121989pt;}
.y51_c00206{bottom:1040.962470pt;}
.h11_c00206{height:29.796918pt;}
.h9_c00206{height:31.990003pt;}
.ha_c00206{height:31.990004pt;}
.hb_c00206{height:31.990006pt;}
.h12_c00206{height:32.907161pt;}
.h3_c00206{height:33.297513pt;}
.hd_c00206{height:34.762880pt;}
.h7_c00206{height:39.206256pt;}
.h4_c00206{height:39.206257pt;}
.h8_c00206{height:39.206258pt;}
.h5_c00206{height:39.206259pt;}
.h6_c00206{height:39.206261pt;}
.h16_c00206{height:40.523198pt;}
.h15_c00206{height:46.147909pt;}
.hc_c00206{height:50.040354pt;}
.hf_c00206{height:50.682132pt;}
.h14_c00206{height:51.178401pt;}
.h10_c00206{height:56.729248pt;}
.he_c00206{height:59.593748pt;}
.h13_c00206{height:79.445915pt;}
.h2_c00206{height:1159.999952pt;}
.h0_c00206{height:1159.999959pt;}
.h1_c00206{height:1160.000000pt;}
.w2_c00206{width:830.999965pt;}
.w0_c00206{width:831.000000pt;}
.w1_c00206{width:831.333333pt;}
.x0_c00206{left:0.000000pt;}
.x3c_c00206{left:79.544400pt;}
.x3d_c00206{left:80.750973pt;}
.x3e_c00206{left:95.315788pt;}
.x3f_c00206{left:96.735260pt;}
.x44_c00206{left:116.169448pt;}
.x14_c00206{left:119.977634pt;}
.x13_c00206{left:121.465137pt;}
.x15_c00206{left:124.463353pt;}
.x16_c00206{left:128.774857pt;}
.x17_c00206{left:133.544468pt;}
.x18_c00206{left:135.991410pt;}
.x19_c00206{left:138.666862pt;}
.x1a_c00206{left:142.086856pt;}
.x24_c00206{left:143.505744pt;}
.x1b_c00206{left:145.156780pt;}
.x1c_c00206{left:152.521190pt;}
.x1d_c00206{left:159.871997pt;}
.x1e_c00206{left:167.366655pt;}
.x1f_c00206{left:174.821307pt;}
.x20_c00206{left:178.525632pt;}
.x21_c00206{left:182.577318pt;}
.x22_c00206{left:185.963463pt;}
.x23_c00206{left:188.262839pt;}
.x3_c00206{left:204.798568pt;}
.x2_c00206{left:206.697430pt;}
.x4_c00206{left:209.442955pt;}
.x5_c00206{left:213.744503pt;}
.x6_c00206{left:218.506891pt;}
.x7_c00206{left:220.950947pt;}
.x8_c00206{left:223.623762pt;}
.x9_c00206{left:227.041187pt;}
.x41_c00206{left:228.108486pt;}
.xa_c00206{left:229.962704pt;}
.xb_c00206{left:233.906932pt;}
.xc_c00206{left:241.567426pt;}
.xd_c00206{left:252.092435pt;}
.xe_c00206{left:258.703382pt;}
.xf_c00206{left:261.720880pt;}
.x40_c00206{left:262.769032pt;}
.x10_c00206{left:266.467148pt;}
.x11_c00206{left:269.480012pt;}
.x12_c00206{left:273.046051pt;}
.x29_c00206{left:290.708831pt;}
.x2a_c00206{left:291.790874pt;}
.x2b_c00206{left:293.053997pt;}
.x2c_c00206{left:296.073752pt;}
.x2d_c00206{left:298.940009pt;}
.x2e_c00206{left:304.168673pt;}
.x2f_c00206{left:309.668213pt;}
.x28_c00206{left:312.650435pt;}
.x30_c00206{left:314.728661pt;}
.x31_c00206{left:317.759772pt;}
.x32_c00206{left:324.788328pt;}
.x33_c00206{left:331.889587pt;}
.x34_c00206{left:337.898220pt;}
.x35_c00206{left:340.582851pt;}
.x36_c00206{left:343.253275pt;}
.x37_c00206{left:346.273697pt;}
.x38_c00206{left:348.599989pt;}
.x39_c00206{left:351.546252pt;}
.x3a_c00206{left:356.146534pt;}
.x3b_c00206{left:358.639645pt;}
.x43_c00206{left:402.019318pt;}
.x26_c00206{left:413.241039pt;}
.x42_c00206{left:590.616391pt;}
.x1_c00206{left:619.840748pt;}
.x27_c00206{left:652.036124pt;}
.x25_c00206{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ccaca2d7bcbb399d25123fb.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.171387;font-style:normal;font-weight:normal;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_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.006348;font-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_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);}
.v0_c00207{vertical-align:0.000000px;}
.ls0_c00207{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00207{word-spacing:-19.320776px;}
.ws1_c00207{word-spacing:0.000000px;}
._3_c00207{width:1.771821px;}
._b_c00207{width:2.914670px;}
._2_c00207{width:4.083959px;}
._10_c00207{width:5.136255px;}
._9_c00207{width:6.939237px;}
._5_c00207{width:10.182471px;}
._0_c00207{width:11.981209px;}
._e_c00207{width:13.429687px;}
._1_c00207{width:15.152345px;}
._7_c00207{width:16.350335px;}
._d_c00207{width:17.654751px;}
._4_c00207{width:20.520403px;}
._a_c00207{width:22.429687px;}
._f_c00207{width:23.579954px;}
._8_c00207{width:26.126102px;}
._6_c00207{width:30.656248px;}
._c_c00207{width:35.466751px;}
.fc1_c00207{color:rgb(67,91,56);}
.fc0_c00207{color:rgb(0,0,0);}
.fs0_c00207{font-size:71.999997px;}
.fs1_c00207{font-size:74.377724px;}
.y0_c00207{bottom:0.000000px;}
.y1_c00207{bottom:0.000008px;}
.y21_c00207{bottom:29.401163px;}
.y17_c00207{bottom:205.438704px;}
.y16_c00207{bottom:235.813703px;}
.y15_c00207{bottom:266.188701px;}
.y14_c00207{bottom:296.563700px;}
.y13_c00207{bottom:326.938699px;}
.y12_c00207{bottom:357.313698px;}
.y11_c00207{bottom:387.688696px;}
.y10_c00207{bottom:418.063695px;}
.yf_c00207{bottom:448.438694px;}
.ye_c00207{bottom:478.813692px;}
.yd_c00207{bottom:509.188691px;}
.yc_c00207{bottom:539.563690px;}
.yb_c00207{bottom:569.938689px;}
.ya_c00207{bottom:600.313687px;}
.y9_c00207{bottom:661.063685px;}
.y8_c00207{bottom:691.438684px;}
.y7_c00207{bottom:721.813682px;}
.y6_c00207{bottom:752.188681px;}
.y5_c00207{bottom:782.563680px;}
.y4_c00207{bottom:812.938679px;}
.y3_c00207{bottom:843.313677px;}
.y2_c00207{bottom:873.688676px;}
.y1f_c00207{bottom:910.438205px;}
.y1e_c00207{bottom:982.438026px;}
.y1d_c00207{bottom:1012.813025px;}
.y1c_c00207{bottom:1043.188023px;}
.y1b_c00207{bottom:1073.563022px;}
.y1a_c00207{bottom:1103.938021px;}
.y19_c00207{bottom:1134.313020px;}
.y18_c00207{bottom:1164.688018px;}
.y20_c00207{bottom:1199.188901px;}
.h4_c00207{height:55.160154px;}
.h5_c00207{height:56.981762px;}
.h3_c00207{height:67.042966px;}
.h2_c00207{height:1304.999946px;}
.h0_c00207{height:1304.999953px;}
.h1_c00207{height:1305.000000px;}
.w2_c00207{width:934.874961px;}
.w0_c00207{width:934.875000px;}
.w1_c00207{width:935.250000px;}
.x0_c00207{left:0.000000px;}
.x2_c00207{left:85.993816px;}
.x1_c00207{left:87.902647px;}
.x3_c00207{left:452.271732px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ws0_c00207{word-spacing:-17.174023pt;}
.ws1_c00207{word-spacing:0.000000pt;}
._3_c00207{width:1.574952pt;}
._b_c00207{width:2.590818pt;}
._2_c00207{width:3.630186pt;}
._10_c00207{width:4.565560pt;}
._9_c00207{width:6.168211pt;}
._5_c00207{width:9.051085pt;}
._0_c00207{width:10.649963pt;}
._e_c00207{width:11.937499pt;}
._1_c00207{width:13.468751pt;}
._7_c00207{width:14.533631pt;}
._d_c00207{width:15.693112pt;}
._4_c00207{width:18.240358pt;}
._a_c00207{width:19.937499pt;}
._f_c00207{width:20.959959pt;}
._8_c00207{width:23.223201pt;}
._6_c00207{width:27.249998pt;}
._c_c00207{width:31.526001pt;}
.fs0_c00207{font-size:63.999997pt;}
.fs1_c00207{font-size:66.113533pt;}
.y0_c00207{bottom:0.000000pt;}
.y1_c00207{bottom:0.000007pt;}
.y21_c00207{bottom:26.134367pt;}
.y17_c00207{bottom:182.612181pt;}
.y16_c00207{bottom:209.612180pt;}
.y15_c00207{bottom:236.612179pt;}
.y14_c00207{bottom:263.612178pt;}
.y13_c00207{bottom:290.612177pt;}
.y12_c00207{bottom:317.612176pt;}
.y11_c00207{bottom:344.612174pt;}
.y10_c00207{bottom:371.612173pt;}
.yf_c00207{bottom:398.612172pt;}
.ye_c00207{bottom:425.612171pt;}
.yd_c00207{bottom:452.612170pt;}
.yc_c00207{bottom:479.612169pt;}
.yb_c00207{bottom:506.612168pt;}
.ya_c00207{bottom:533.612167pt;}
.y9_c00207{bottom:587.612164pt;}
.y8_c00207{bottom:614.612163pt;}
.y7_c00207{bottom:641.612162pt;}
.y6_c00207{bottom:668.612161pt;}
.y5_c00207{bottom:695.612160pt;}
.y4_c00207{bottom:722.612159pt;}
.y3_c00207{bottom:749.612158pt;}
.y2_c00207{bottom:776.612156pt;}
.y1f_c00207{bottom:809.278405pt;}
.y1e_c00207{bottom:873.278245pt;}
.y1d_c00207{bottom:900.278244pt;}
.y1c_c00207{bottom:927.278243pt;}
.y1b_c00207{bottom:954.278242pt;}
.y1a_c00207{bottom:981.278241pt;}
.y19_c00207{bottom:1008.278240pt;}
.y18_c00207{bottom:1035.278238pt;}
.y20_c00207{bottom:1065.945690pt;}
.h4_c00207{height:49.031248pt;}
.h5_c00207{height:50.650455pt;}
.h3_c00207{height:59.593748pt;}
.h2_c00207{height:1159.999952pt;}
.h0_c00207{height:1159.999959pt;}
.h1_c00207{height:1160.000000pt;}
.w2_c00207{width:830.999965pt;}
.w0_c00207{width:831.000000pt;}
.w1_c00207{width:831.333333pt;}
.x0_c00207{left:0.000000pt;}
.x2_c00207{left:76.438947pt;}
.x1_c00207{left:78.135686pt;}
.x3_c00207{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d385bca936d13e012fc80668.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.171387;font-style:normal;font-weight:normal;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_d9c08b0b15e0c1cee44cbe49.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.005371;font-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_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;}
.ls0_c00208{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00208{word-spacing:-18.703125px;}
.ws1_c00208{word-spacing:0.000000px;}
._7_c00208{width:1.001952px;}
._5_c00208{width:2.140615px;}
._2_c00208{width:3.699370px;}
._1_c00208{width:5.527772px;}
._0_c00208{width:6.663413px;}
._a_c00208{width:8.736328px;}
._c_c00208{width:9.871901px;}
._9_c00208{width:11.404629px;}
._b_c00208{width:13.555623px;}
._4_c00208{width:14.632001px;}
._3_c00208{width:16.136717px;}
._6_c00208{width:17.332031px;}
._d_c00208{width:19.919932px;}
._8_c00208{width:24.132773px;}
._e_c00208{width:26.859373px;}
._f_c00208{width:57.621093px;}
.fc0_c00208{color:rgb(0,0,0);}
.fs0_c00208{font-size:71.999997px;}
.y0_c00208{bottom:0.000000px;}
.y1_c00208{bottom:0.000008px;}
.y25_c00208{bottom:29.401163px;}
.y24_c00208{bottom:167.472414px;}
.y23_c00208{bottom:197.847413px;}
.y22_c00208{bottom:228.222412px;}
.y21_c00208{bottom:258.597410px;}
.y20_c00208{bottom:288.972409px;}
.y1f_c00208{bottom:319.347408px;}
.y1e_c00208{bottom:349.722407px;}
.y1d_c00208{bottom:380.097405px;}
.y1c_c00208{bottom:410.472404px;}
.y1b_c00208{bottom:440.847403px;}
.y1a_c00208{bottom:471.222402px;}
.y19_c00208{bottom:501.597400px;}
.y18_c00208{bottom:531.972399px;}
.y17_c00208{bottom:562.347398px;}
.y16_c00208{bottom:592.722397px;}
.y15_c00208{bottom:623.097395px;}
.y14_c00208{bottom:653.472394px;}
.y13_c00208{bottom:683.847393px;}
.y12_c00208{bottom:714.222391px;}
.y11_c00208{bottom:744.597390px;}
.y10_c00208{bottom:774.972389px;}
.yf_c00208{bottom:805.347388px;}
.ye_c00208{bottom:835.722386px;}
.yd_c00208{bottom:866.097385px;}
.yc_c00208{bottom:896.472384px;}
.yb_c00208{bottom:926.847383px;}
.ya_c00208{bottom:957.222381px;}
.y9_c00208{bottom:987.597380px;}
.y8_c00208{bottom:1017.972379px;}
.y7_c00208{bottom:1048.347378px;}
.y6_c00208{bottom:1078.722376px;}
.y5_c00208{bottom:1109.097375px;}
.y4_c00208{bottom:1139.472374px;}
.y3_c00208{bottom:1169.847372px;}
.y2_c00208{bottom:1200.222371px;}
.h3_c00208{height:67.042966px;}
.h2_c00208{height:1304.999946px;}
.h0_c00208{height:1304.999953px;}
.h1_c00208{height:1305.000000px;}
.w2_c00208{width:934.874961px;}
.w0_c00208{width:934.875000px;}
.w1_c00208{width:935.250000px;}
.x0_c00208{left:0.000000px;}
.x1_c00208{left:87.902647px;}
.x2_c00208{left:452.271732px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.ws0_c00208{word-spacing:-16.625000pt;}
.ws1_c00208{word-spacing:0.000000pt;}
._7_c00208{width:0.890624pt;}
._5_c00208{width:1.902769pt;}
._2_c00208{width:3.288329pt;}
._1_c00208{width:4.913575pt;}
._0_c00208{width:5.923034pt;}
._a_c00208{width:7.765625pt;}
._c_c00208{width:8.775023pt;}
._9_c00208{width:10.137448pt;}
._b_c00208{width:12.049443pt;}
._4_c00208{width:13.006223pt;}
._3_c00208{width:14.343748pt;}
._6_c00208{width:15.406250pt;}
._d_c00208{width:17.706606pt;}
._8_c00208{width:21.451354pt;}
._e_c00208{width:23.874999pt;}
._f_c00208{width:51.218749pt;}
.fs0_c00208{font-size:63.999997pt;}
.y0_c00208{bottom:0.000000pt;}
.y1_c00208{bottom:0.000007pt;}
.y25_c00208{bottom:26.134367pt;}
.y24_c00208{bottom:148.864368pt;}
.y23_c00208{bottom:175.864367pt;}
.y22_c00208{bottom:202.864366pt;}
.y21_c00208{bottom:229.864365pt;}
.y20_c00208{bottom:256.864364pt;}
.y1f_c00208{bottom:283.864363pt;}
.y1e_c00208{bottom:310.864361pt;}
.y1d_c00208{bottom:337.864360pt;}
.y1c_c00208{bottom:364.864359pt;}
.y1b_c00208{bottom:391.864358pt;}
.y1a_c00208{bottom:418.864357pt;}
.y19_c00208{bottom:445.864356pt;}
.y18_c00208{bottom:472.864355pt;}
.y17_c00208{bottom:499.864354pt;}
.y16_c00208{bottom:526.864352pt;}
.y15_c00208{bottom:553.864351pt;}
.y14_c00208{bottom:580.864350pt;}
.y13_c00208{bottom:607.864349pt;}
.y12_c00208{bottom:634.864348pt;}
.y11_c00208{bottom:661.864347pt;}
.y10_c00208{bottom:688.864346pt;}
.yf_c00208{bottom:715.864345pt;}
.ye_c00208{bottom:742.864343pt;}
.yd_c00208{bottom:769.864342pt;}
.yc_c00208{bottom:796.864341pt;}
.yb_c00208{bottom:823.864340pt;}
.ya_c00208{bottom:850.864339pt;}
.y9_c00208{bottom:877.864338pt;}
.y8_c00208{bottom:904.864337pt;}
.y7_c00208{bottom:931.864336pt;}
.y6_c00208{bottom:958.864334pt;}
.y5_c00208{bottom:985.864333pt;}
.y4_c00208{bottom:1012.864332pt;}
.y3_c00208{bottom:1039.864331pt;}
.y2_c00208{bottom:1066.864330pt;}
.h3_c00208{height:59.593748pt;}
.h2_c00208{height:1159.999952pt;}
.h0_c00208{height:1159.999959pt;}
.h1_c00208{height:1160.000000pt;}
.w2_c00208{width:830.999965pt;}
.w0_c00208{width:831.000000pt;}
.w1_c00208{width:831.333333pt;}
.x0_c00208{left:0.000000pt;}
.x1_c00208{left:78.135686pt;}
.x2_c00208{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6d15c9eca8e1a3faae2358b.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.171387;font-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_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);}
.v0_c00209{vertical-align:0.000000px;}
.ls0_c00209{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00209{word-spacing:0.000000px;}
._7_c00209{width:1.350076px;}
._3_c00209{width:2.491699px;}
._2_c00209{width:4.448433px;}
._c_c00209{width:5.498454px;}
._e_c00209{width:6.704475px;}
._0_c00209{width:8.902633px;}
._10_c00209{width:10.475460px;}
._f_c00209{width:11.613233px;}
._d_c00209{width:13.387459px;}
._5_c00209{width:14.931795px;}
._4_c00209{width:16.747146px;}
._a_c00209{width:19.943135px;}
._8_c00209{width:21.464468px;}
._6_c00209{width:23.407609px;}
._1_c00209{width:25.811074px;}
._b_c00209{width:27.581657px;}
._9_c00209{width:29.960125px;}
._11_c00209{width:36.105467px;}
.fc0_c00209{color:rgb(0,0,0);}
.fs0_c00209{font-size:71.999997px;}
.y0_c00209{bottom:0.000000px;}
.y1_c00209{bottom:0.000008px;}
.y28_c00209{bottom:29.401163px;}
.y27_c00209{bottom:76.347418px;}
.y26_c00209{bottom:106.722417px;}
.y25_c00209{bottom:137.097415px;}
.y24_c00209{bottom:167.472414px;}
.y23_c00209{bottom:197.847413px;}
.y22_c00209{bottom:228.222412px;}
.y21_c00209{bottom:258.597410px;}
.y20_c00209{bottom:288.972409px;}
.y1f_c00209{bottom:319.347408px;}
.y1e_c00209{bottom:349.722407px;}
.y1d_c00209{bottom:380.097405px;}
.y1c_c00209{bottom:410.472404px;}
.y1b_c00209{bottom:440.847403px;}
.y1a_c00209{bottom:471.222402px;}
.y19_c00209{bottom:501.597400px;}
.y18_c00209{bottom:531.972399px;}
.y17_c00209{bottom:562.347398px;}
.y16_c00209{bottom:592.722397px;}
.y15_c00209{bottom:623.097395px;}
.y14_c00209{bottom:653.472394px;}
.y13_c00209{bottom:683.847393px;}
.y12_c00209{bottom:714.222391px;}
.y11_c00209{bottom:744.597390px;}
.y10_c00209{bottom:774.972389px;}
.yf_c00209{bottom:805.347388px;}
.ye_c00209{bottom:835.722386px;}
.yd_c00209{bottom:866.097385px;}
.yc_c00209{bottom:896.472384px;}
.yb_c00209{bottom:926.847383px;}
.ya_c00209{bottom:957.222381px;}
.y9_c00209{bottom:987.597380px;}
.y8_c00209{bottom:1017.972379px;}
.y7_c00209{bottom:1048.347378px;}
.y6_c00209{bottom:1078.722376px;}
.y5_c00209{bottom:1109.097375px;}
.y4_c00209{bottom:1139.472374px;}
.y3_c00209{bottom:1169.847372px;}
.y2_c00209{bottom:1200.222371px;}
.h3_c00209{height:67.042966px;}
.h2_c00209{height:1304.999946px;}
.h0_c00209{height:1304.999953px;}
.h1_c00209{height:1305.000000px;}
.w2_c00209{width:934.874961px;}
.w0_c00209{width:934.875000px;}
.w1_c00209{width:935.250000px;}
.x0_c00209{left:0.000000px;}
.x1_c00209{left:87.902647px;}
.x2_c00209{left:452.271732px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws0_c00209{word-spacing:0.000000pt;}
._7_c00209{width:1.200068pt;}
._3_c00209{width:2.214844pt;}
._2_c00209{width:3.954163pt;}
._c_c00209{width:4.887515pt;}
._e_c00209{width:5.959533pt;}
._0_c00209{width:7.913451pt;}
._10_c00209{width:9.311520pt;}
._f_c00209{width:10.322874pt;}
._d_c00209{width:11.899963pt;}
._5_c00209{width:13.272707pt;}
._4_c00209{width:14.886352pt;}
._a_c00209{width:17.727231pt;}
._8_c00209{width:19.079527pt;}
._6_c00209{width:20.806764pt;}
._1_c00209{width:22.943177pt;}
._b_c00209{width:24.517028pt;}
._9_c00209{width:26.631222pt;}
._11_c00209{width:32.093749pt;}
.fs0_c00209{font-size:63.999997pt;}
.y0_c00209{bottom:0.000000pt;}
.y1_c00209{bottom:0.000007pt;}
.y28_c00209{bottom:26.134367pt;}
.y27_c00209{bottom:67.864372pt;}
.y26_c00209{bottom:94.864370pt;}
.y25_c00209{bottom:121.864369pt;}
.y24_c00209{bottom:148.864368pt;}
.y23_c00209{bottom:175.864367pt;}
.y22_c00209{bottom:202.864366pt;}
.y21_c00209{bottom:229.864365pt;}
.y20_c00209{bottom:256.864364pt;}
.y1f_c00209{bottom:283.864363pt;}
.y1e_c00209{bottom:310.864361pt;}
.y1d_c00209{bottom:337.864360pt;}
.y1c_c00209{bottom:364.864359pt;}
.y1b_c00209{bottom:391.864358pt;}
.y1a_c00209{bottom:418.864357pt;}
.y19_c00209{bottom:445.864356pt;}
.y18_c00209{bottom:472.864355pt;}
.y17_c00209{bottom:499.864354pt;}
.y16_c00209{bottom:526.864352pt;}
.y15_c00209{bottom:553.864351pt;}
.y14_c00209{bottom:580.864350pt;}
.y13_c00209{bottom:607.864349pt;}
.y12_c00209{bottom:634.864348pt;}
.y11_c00209{bottom:661.864347pt;}
.y10_c00209{bottom:688.864346pt;}
.yf_c00209{bottom:715.864345pt;}
.ye_c00209{bottom:742.864343pt;}
.yd_c00209{bottom:769.864342pt;}
.yc_c00209{bottom:796.864341pt;}
.yb_c00209{bottom:823.864340pt;}
.ya_c00209{bottom:850.864339pt;}
.y9_c00209{bottom:877.864338pt;}
.y8_c00209{bottom:904.864337pt;}
.y7_c00209{bottom:931.864336pt;}
.y6_c00209{bottom:958.864334pt;}
.y5_c00209{bottom:985.864333pt;}
.y4_c00209{bottom:1012.864332pt;}
.y3_c00209{bottom:1039.864331pt;}
.y2_c00209{bottom:1066.864330pt;}
.h3_c00209{height:59.593748pt;}
.h2_c00209{height:1159.999952pt;}
.h0_c00209{height:1159.999959pt;}
.h1_c00209{height:1160.000000pt;}
.w2_c00209{width:830.999965pt;}
.w0_c00209{width:831.000000pt;}
.w1_c00209{width:831.333333pt;}
.x0_c00209{left:0.000000pt;}
.x1_c00209{left:78.135686pt;}
.x2_c00209{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5d1ee39d2d2e2b9cbc5abac.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.171387;font-style:normal;font-weight:normal;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_a925f4d4fe077a1026316fb5.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.005371;font-style:normal;font-weight:normal;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_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.006348;font-style:normal;font-weight:normal;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_fef12f6ecacb492719c06d7d.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.000000;font-style:normal;font-weight: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_c00210;src:url('chunks/assets/font_8a4a3d92235686c5ccca2508.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:1.171387;font-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_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);}
.v0_c00210{vertical-align:0.000000px;}
.ls0_c00210{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00210{word-spacing:-18.703125px;}
.ws1_c00210{word-spacing:-0.059985px;}
.ws2_c00210{word-spacing:0.000000px;}
._3_c00210{width:1.132001px;}
._4_c00210{width:2.792657px;}
._6_c00210{width:4.792029px;}
._a_c00210{width:6.359506px;}
._8_c00210{width:7.761838px;}
._2_c00210{width:8.849761px;}
._1_c00210{width:10.891362px;}
._b_c00210{width:12.194480px;}
._0_c00210{width:17.204863px;}
._5_c00210{width:20.273414px;}
._9_c00210{width:26.195248px;}
._c_c00210{width:32.062500px;}
._7_c00210{width:33.862470px;}
.fc1_c00210{color:rgb(67,91,56);}
.fc2_c00210{color:rgb(255,255,255);}
.fc0_c00210{color:rgb(0,0,0);}
.fs1_c00210{font-size:59.984997px;}
.fs0_c00210{font-size:71.999997px;}
.y0_c00210{bottom:0.000000px;}
.y1_c00210{bottom:0.000008px;}
.y1e_c00210{bottom:29.401163px;}
.y1f_c00210{bottom:276.533880px;}
.y1d_c00210{bottom:325.658938px;}
.y1c_c00210{bottom:356.033937px;}
.y1b_c00210{bottom:386.408936px;}
.y1a_c00210{bottom:416.783935px;}
.y19_c00210{bottom:447.158933px;}
.y18_c00210{bottom:485.858932px;}
.y17_c00210{bottom:538.058930px;}
.y16_c00210{bottom:571.080900px;}
.y15_c00210{bottom:623.097323px;}
.y14_c00210{bottom:653.472322px;}
.y13_c00210{bottom:683.847321px;}
.y12_c00210{bottom:714.222319px;}
.y11_c00210{bottom:744.597318px;}
.y10_c00210{bottom:774.972317px;}
.yf_c00210{bottom:805.347316px;}
.ye_c00210{bottom:835.722314px;}
.yd_c00210{bottom:866.097313px;}
.yc_c00210{bottom:896.472312px;}
.yb_c00210{bottom:926.847311px;}
.ya_c00210{bottom:957.222309px;}
.y9_c00210{bottom:987.597308px;}
.y8_c00210{bottom:1017.972307px;}
.y7_c00210{bottom:1048.347306px;}
.y6_c00210{bottom:1078.722304px;}
.y5_c00210{bottom:1109.097303px;}
.y4_c00210{bottom:1139.472302px;}
.y3_c00210{bottom:1169.847300px;}
.y2_c00210{bottom:1200.222299px;}
.h4_c00210{height:55.160154px;}
.h5_c00210{height:55.855171px;}
.h3_c00210{height:67.042966px;}
.h2_c00210{height:1304.999946px;}
.h0_c00210{height:1304.999953px;}
.h1_c00210{height:1305.000000px;}
.w2_c00210{width:934.874961px;}
.w0_c00210{width:934.875000px;}
.w1_c00210{width:935.250000px;}
.x0_c00210{left:0.000000px;}
.x1_c00210{left:89.487450px;}
.x3_c00210{left:217.133847px;}
.x2_c00210{left:452.271732px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws0_c00210{word-spacing:-16.625000pt;}
.ws1_c00210{word-spacing:-0.053320pt;}
.ws2_c00210{word-spacing:0.000000pt;}
._3_c00210{width:1.006223pt;}
._4_c00210{width:2.482362pt;}
._6_c00210{width:4.259582pt;}
._a_c00210{width:5.652894pt;}
._8_c00210{width:6.899411pt;}
._2_c00210{width:7.866454pt;}
._1_c00210{width:9.681211pt;}
._b_c00210{width:10.839538pt;}
._0_c00210{width:15.293212pt;}
._5_c00210{width:18.020813pt;}
._9_c00210{width:23.284664pt;}
._c_c00210{width:28.500000pt;}
._7_c00210{width:30.099974pt;}
.fs1_c00210{font-size:53.319997pt;}
.fs0_c00210{font-size:63.999997pt;}
.y0_c00210{bottom:0.000000pt;}
.y1_c00210{bottom:0.000007pt;}
.y1e_c00210{bottom:26.134367pt;}
.y1f_c00210{bottom:245.807894pt;}
.y1d_c00210{bottom:289.474612pt;}
.y1c_c00210{bottom:316.474611pt;}
.y1b_c00210{bottom:343.474610pt;}
.y1a_c00210{bottom:370.474609pt;}
.y19_c00210{bottom:397.474607pt;}
.y18_c00210{bottom:431.874606pt;}
.y17_c00210{bottom:478.274604pt;}
.y16_c00210{bottom:507.627467pt;}
.y15_c00210{bottom:553.864287pt;}
.y14_c00210{bottom:580.864286pt;}
.y13_c00210{bottom:607.864285pt;}
.y12_c00210{bottom:634.864284pt;}
.y11_c00210{bottom:661.864283pt;}
.y10_c00210{bottom:688.864282pt;}
.yf_c00210{bottom:715.864281pt;}
.ye_c00210{bottom:742.864279pt;}
.yd_c00210{bottom:769.864278pt;}
.yc_c00210{bottom:796.864277pt;}
.yb_c00210{bottom:823.864276pt;}
.ya_c00210{bottom:850.864275pt;}
.y9_c00210{bottom:877.864274pt;}
.y8_c00210{bottom:904.864273pt;}
.y7_c00210{bottom:931.864272pt;}
.y6_c00210{bottom:958.864270pt;}
.y5_c00210{bottom:985.864269pt;}
.y4_c00210{bottom:1012.864268pt;}
.y3_c00210{bottom:1039.864267pt;}
.y2_c00210{bottom:1066.864266pt;}
.h4_c00210{height:49.031248pt;}
.h5_c00210{height:49.649041pt;}
.h3_c00210{height:59.593748pt;}
.h2_c00210{height:1159.999952pt;}
.h0_c00210{height:1159.999959pt;}
.h1_c00210{height:1160.000000pt;}
.w2_c00210{width:830.999965pt;}
.w0_c00210{width:831.000000pt;}
.w1_c00210{width:831.333333pt;}
.x0_c00210{left:0.000000pt;}
.x1_c00210{left:79.544400pt;}
.x3_c00210{left:193.007864pt;}
.x2_c00210{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:0.734863;font-style:normal;font-weight:normal;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_0dd570be96bf6138ce4e7ae8.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00211;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:0.743000;font-style:normal;font-weight: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_c00211;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff5_c00211{font-family:ff5_c00211;line-height:1.006348;font-style:normal;font-weight: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_c00211;src:url('chunks/assets/font_99c9063d6b3debb1c4133855.woff2')format("woff");}.ff6_c00211{font-family:ff6_c00211;line-height:1.000000;font-style:normal;font-weight: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_c00211;src:url('chunks/assets/font_27fa92f96b72f97f023397f9.woff2')format("woff");}.ff7_c00211{font-family:ff7_c00211;line-height:1.171387;font-style:normal;font-weight: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_c00211;src:url('chunks/assets/font_c1841ea22d6538827f4f6524.woff2')format("woff");}.ff8_c00211{font-family:ff8_c00211;line-height:1.005371;font-style:normal;font-weight: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_c00211;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00211{font-family:ff9_c00211;line-height:0.940000;font-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_c00211{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00211{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00211{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00211{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00211{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00211{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00211{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00211{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00211{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00211{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00211{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00211{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00211{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00211{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00211{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00211{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00211{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00211{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00211{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00211{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00211{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00211{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00211{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00211{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00211{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00211{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00211{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00211{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00211{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00211{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00211{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00211{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00211{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00211{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00211{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00211{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00211{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00211{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00211{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00211{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00211{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00211{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00211{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00211{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00211{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00211{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00211{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00211{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00211{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00211{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00211{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00211{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00211{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00211{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00211{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00211{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00211{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00211{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00211{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00211{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00211{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00211{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00211{vertical-align:0.000000px;}
.v1_c00211{vertical-align:1.280304px;}
.ls0_c00211{letter-spacing:0.000000px;}
.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:-41.689573px;}
.ws0_c00211{word-spacing:-15.171263px;}
.ws2_c00211{word-spacing:-0.055755px;}
.ws4_c00211{word-spacing:0.000000px;}
.ws1_c00211{word-spacing:288.058683px;}
._1_c00211{width:7.106917px;}
._2_c00211{width:8.638343px;}
._3_c00211{width:10.714483px;}
._0_c00211{width:14.701699px;}
.fc4_c00211{color:transparent;}
.fc3_c00211{color:rgb(67,91,56);}
.fc2_c00211{color:rgb(255,255,255);}
.fc1_c00211{color:rgb(0,0,0);}
.fc0_c00211{color:rgb(9,71,81);}
.fsb_c00211{font-size:36.000051px;}
.fsc_c00211{font-size:39.757786px;}
.fs7_c00211{font-size:41.999830px;}
.fs4_c00211{font-size:47.368230px;}
.fs1_c00211{font-size:47.368231px;}
.fs5_c00211{font-size:47.368232px;}
.fs2_c00211{font-size:47.368233px;}
.fs3_c00211{font-size:47.368235px;}
.fs0_c00211{font-size:51.661596px;}
.fse_c00211{font-size:55.754999px;}
.fsf_c00211{font-size:59.984997px;}
.fs8_c00211{font-size:71.999997px;}
.fs9_c00211{font-size:74.424240px;}
.fs6_c00211{font-size:77.011488px;}
.fsa_c00211{font-size:84.000120px;}
.fsd_c00211{font-size:95.984996px;}
.y0_c00211{bottom:0.000000px;}
.y1_c00211{bottom:0.000008px;}
.y52_c00211{bottom:29.400983px;}
.y4a_c00211{bottom:182.274616px;}
.y49_c00211{bottom:212.649615px;}
.y48_c00211{bottom:243.024614px;}
.y47_c00211{bottom:273.399613px;}
.y46_c00211{bottom:303.774611px;}
.y4b_c00211{bottom:340.353230px;}
.y2_c00211{bottom:401.525233px;}
.y2e_c00211{bottom:486.888550px;}
.y10_c00211{bottom:493.328373px;}
.y24_c00211{bottom:493.343399px;}
.yf_c00211{bottom:493.853709px;}
.y25_c00211{bottom:493.873241px;}
.y3c_c00211{bottom:493.959311px;}
.y23_c00211{bottom:494.588120px;}
.y3d_c00211{bottom:494.792744px;}
.y3b_c00211{bottom:494.812830px;}
.ye_c00211{bottom:494.919675px;}
.y22_c00211{bottom:495.839329px;}
.y3a_c00211{bottom:495.847693px;}
.yd_c00211{bottom:495.993006px;}
.y26_c00211{bottom:496.289812px;}
.y11_c00211{bottom:496.353473px;}
.y3e_c00211{bottom:496.973987px;}
.y21_c00211{bottom:497.484200px;}
.yc_c00211{bottom:497.644566px;}
.y39_c00211{bottom:498.050345px;}
.y3f_c00211{bottom:498.364996px;}
.y20_c00211{bottom:499.172711px;}
.yb_c00211{bottom:499.338251px;}
.y40_c00211{bottom:500.063079px;}
.y12_c00211{bottom:500.630691px;}
.y1f_c00211{bottom:501.037769px;}
.ya_c00211{bottom:501.208100px;}
.y27_c00211{bottom:501.390523px;}
.y38_c00211{bottom:501.842067px;}
.y41_c00211{bottom:502.505484px;}
.y13_c00211{bottom:503.149521px;}
.y42_c00211{bottom:504.764445px;}
.y28_c00211{bottom:505.018723px;}
.y1e_c00211{bottom:505.692124px;}
.y9_c00211{bottom:505.871886px;}
.y37_c00211{bottom:507.310818px;}
.y43_c00211{bottom:508.033247px;}
.y14_c00211{bottom:509.101920px;}
.y29_c00211{bottom:510.652700px;}
.y36_c00211{bottom:511.777409px;}
.y1d_c00211{bottom:512.093601px;}
.y8_c00211{bottom:512.281830px;}
.y15_c00211{bottom:513.850725px;}
.y44_c00211{bottom:516.430791px;}
.y2a_c00211{bottom:517.310242px;}
.y35_c00211{bottom:518.202100px;}
.y1c_c00211{bottom:519.400564px;}
.y7_c00211{bottom:519.490909px;}
.y34_c00211{bottom:522.772118px;}
.y6_c00211{bottom:522.949612px;}
.y45_c00211{bottom:524.479585px;}
.y16_c00211{bottom:525.634639px;}
.y1b_c00211{bottom:526.562252px;}
.y5_c00211{bottom:528.959931px;}
.y2b_c00211{bottom:529.273374px;}
.y33_c00211{bottom:530.544173px;}
.y1a_c00211{bottom:531.331551px;}
.y2d_c00211{bottom:533.268007px;}
.y31_c00211{bottom:533.961835px;}
.y32_c00211{bottom:534.437983px;}
.y4_c00211{bottom:536.219342px;}
.y19_c00211{bottom:537.503874px;}
.y17_c00211{bottom:537.875309px;}
.y2c_c00211{bottom:538.238862px;}
.y2f_c00211{bottom:539.974832px;}
.y18_c00211{bottom:544.567170px;}
.y3_c00211{bottom:545.754118px;}
.y30_c00211{bottom:577.437150px;}
.y51_c00211{bottom:639.092601px;}
.y53_c00211{bottom:1021.439841px;}
.y4f_c00211{bottom:1128.788391px;}
.y4d_c00211{bottom:1136.423491px;}
.y4c_c00211{bottom:1149.173509px;}
.y50_c00211{bottom:1153.262238px;}
.y4e_c00211{bottom:1171.082779px;}
.h11_c00211{height:33.521532px;}
.h9_c00211{height:35.988753px;}
.ha_c00211{height:35.988755px;}
.hb_c00211{height:35.988756px;}
.h12_c00211{height:37.020556px;}
.h3_c00211{height:37.459702px;}
.hd_c00211{height:39.108240px;}
.h7_c00211{height:44.107038px;}
.h4_c00211{height:44.107039px;}
.h8_c00211{height:44.107040px;}
.h5_c00211{height:44.107042px;}
.h6_c00211{height:44.107043px;}
.h16_c00211{height:45.588598px;}
.h15_c00211{height:51.916398px;}
.hc_c00211{height:56.295398px;}
.hf_c00211{height:57.017399px;}
.h14_c00211{height:57.575702px;}
.h10_c00211{height:63.820404px;}
.he_c00211{height:67.042966px;}
.h13_c00211{height:89.376654px;}
.h2_c00211{height:1304.999946px;}
.h0_c00211{height:1304.999953px;}
.h1_c00211{height:1305.000000px;}
.w2_c00211{width:934.874961px;}
.w0_c00211{width:934.875000px;}
.w1_c00211{width:935.250000px;}
.x0_c00211{left:0.000000px;}
.x3c_c00211{left:87.902647px;}
.x3d_c00211{left:89.260034px;}
.x3e_c00211{left:107.230262px;}
.x3f_c00211{left:108.827167px;}
.x44_c00211{left:130.690629px;}
.x14_c00211{left:134.974838px;}
.x13_c00211{left:136.648279px;}
.x15_c00211{left:140.021272px;}
.x16_c00211{left:144.871714px;}
.x17_c00211{left:150.237526px;}
.x18_c00211{left:152.990336px;}
.x19_c00211{left:156.000220px;}
.x1a_c00211{left:159.847713px;}
.x24_c00211{left:161.443962px;}
.x1b_c00211{left:163.301377px;}
.x1c_c00211{left:171.586339px;}
.x1d_c00211{left:179.855997px;}
.x1e_c00211{left:188.287487px;}
.x1f_c00211{left:196.673970px;}
.x20_c00211{left:200.841336px;}
.x21_c00211{left:205.399483px;}
.x22_c00211{left:209.208896px;}
.x23_c00211{left:211.795693px;}
.x3_c00211{left:230.398389px;}
.x2_c00211{left:232.534609px;}
.x4_c00211{left:235.623324px;}
.x5_c00211{left:240.462566px;}
.x6_c00211{left:245.820252px;}
.x7_c00211{left:248.569815px;}
.x8_c00211{left:251.576732px;}
.x9_c00211{left:255.421336px;}
.x41_c00211{left:256.622047px;}
.xa_c00211{left:258.708042px;}
.xb_c00211{left:263.145298px;}
.xc_c00211{left:271.763354px;}
.xd_c00211{left:283.603990px;}
.xe_c00211{left:291.041304px;}
.xf_c00211{left:294.435991px;}
.x40_c00211{left:295.615161px;}
.x10_c00211{left:299.775542px;}
.x11_c00211{left:303.165014px;}
.x12_c00211{left:307.176807px;}
.x29_c00211{left:327.047435px;}
.x2a_c00211{left:328.264734px;}
.x2b_c00211{left:329.685747px;}
.x2c_c00211{left:333.082971px;}
.x2d_c00211{left:336.307511px;}
.x2e_c00211{left:342.189757px;}
.x2f_c00211{left:348.376740px;}
.x28_c00211{left:351.731739px;}
.x30_c00211{left:354.069743px;}
.x31_c00211{left:357.479743px;}
.x32_c00211{left:365.386869px;}
.x33_c00211{left:373.375785px;}
.x34_c00211{left:380.135498px;}
.x35_c00211{left:383.155707px;}
.x36_c00211{left:386.159935px;}
.x37_c00211{left:389.557910px;}
.x38_c00211{left:392.174988px;}
.x39_c00211{left:395.489533px;}
.x3a_c00211{left:400.664851px;}
.x3b_c00211{left:403.469600px;}
.x43_c00211{left:452.271732px;}
.x26_c00211{left:464.896169px;}
.x42_c00211{left:664.443440px;}
.x1_c00211{left:697.320842px;}
.x27_c00211{left:733.540639px;}
.x25_c00211{left:757.088990px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.v1_c00211{vertical-align:1.138048pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws3_c00211{word-spacing:-37.057398pt;}
.ws0_c00211{word-spacing:-13.485567pt;}
.ws2_c00211{word-spacing:-0.049560pt;}
.ws4_c00211{word-spacing:0.000000pt;}
.ws1_c00211{word-spacing:256.052163pt;}
._1_c00211{width:6.317259pt;}
._2_c00211{width:7.678528pt;}
._3_c00211{width:9.523985pt;}
._0_c00211{width:13.068177pt;}
.fsb_c00211{font-size:32.000046pt;}
.fsc_c00211{font-size:35.340254pt;}
.fs7_c00211{font-size:37.333182pt;}
.fs4_c00211{font-size:42.105093pt;}
.fs1_c00211{font-size:42.105094pt;}
.fs5_c00211{font-size:42.105095pt;}
.fs2_c00211{font-size:42.105096pt;}
.fs3_c00211{font-size:42.105098pt;}
.fs0_c00211{font-size:45.921418pt;}
.fse_c00211{font-size:49.559999pt;}
.fsf_c00211{font-size:53.319997pt;}
.fs8_c00211{font-size:63.999997pt;}
.fs9_c00211{font-size:66.154880pt;}
.fs6_c00211{font-size:68.454656pt;}
.fsa_c00211{font-size:74.666773pt;}
.fsd_c00211{font-size:85.319996pt;}
.y0_c00211{bottom:0.000000pt;}
.y1_c00211{bottom:0.000007pt;}
.y52_c00211{bottom:26.134207pt;}
.y4a_c00211{bottom:162.021881pt;}
.y49_c00211{bottom:189.021880pt;}
.y48_c00211{bottom:216.021879pt;}
.y47_c00211{bottom:243.021878pt;}
.y46_c00211{bottom:270.021877pt;}
.y4b_c00211{bottom:302.536205pt;}
.y2_c00211{bottom:356.911319pt;}
.y2e_c00211{bottom:432.789822pt;}
.y10_c00211{bottom:438.514110pt;}
.y24_c00211{bottom:438.527466pt;}
.yf_c00211{bottom:438.981074pt;}
.y25_c00211{bottom:438.998436pt;}
.y3c_c00211{bottom:439.074943pt;}
.y23_c00211{bottom:439.633885pt;}
.y3d_c00211{bottom:439.815773pt;}
.y3b_c00211{bottom:439.833627pt;}
.ye_c00211{bottom:439.928600pt;}
.y22_c00211{bottom:440.746070pt;}
.y3a_c00211{bottom:440.753505pt;}
.yd_c00211{bottom:440.882672pt;}
.y26_c00211{bottom:441.146500pt;}
.y11_c00211{bottom:441.203087pt;}
.y3e_c00211{bottom:441.754655pt;}
.y21_c00211{bottom:442.208178pt;}
.yc_c00211{bottom:442.350726pt;}
.y39_c00211{bottom:442.711417pt;}
.y3f_c00211{bottom:442.991108pt;}
.y20_c00211{bottom:443.709077pt;}
.yb_c00211{bottom:443.856223pt;}
.y40_c00211{bottom:444.500514pt;}
.y12_c00211{bottom:445.005059pt;}
.y1f_c00211{bottom:445.366906pt;}
.ya_c00211{bottom:445.518311pt;}
.y27_c00211{bottom:445.680465pt;}
.y38_c00211{bottom:446.081837pt;}
.y41_c00211{bottom:446.671541pt;}
.y13_c00211{bottom:447.244019pt;}
.y42_c00211{bottom:448.679507pt;}
.y28_c00211{bottom:448.905531pt;}
.y1e_c00211{bottom:449.504110pt;}
.y9_c00211{bottom:449.663899pt;}
.y37_c00211{bottom:450.942950pt;}
.y43_c00211{bottom:451.585109pt;}
.y14_c00211{bottom:452.535040pt;}
.y29_c00211{bottom:453.913511pt;}
.y36_c00211{bottom:454.913253pt;}
.y1d_c00211{bottom:455.194312pt;}
.y8_c00211{bottom:455.361627pt;}
.y15_c00211{bottom:456.756200pt;}
.y44_c00211{bottom:459.049592pt;}
.y2a_c00211{bottom:459.831327pt;}
.y35_c00211{bottom:460.624088pt;}
.y1c_c00211{bottom:461.689390pt;}
.y7_c00211{bottom:461.769697pt;}
.y34_c00211{bottom:464.686327pt;}
.y6_c00211{bottom:464.844100pt;}
.y45_c00211{bottom:466.204075pt;}
.y16_c00211{bottom:467.230790pt;}
.y1b_c00211{bottom:468.055335pt;}
.y5_c00211{bottom:470.186605pt;}
.y2b_c00211{bottom:470.465221pt;}
.y33_c00211{bottom:471.594820pt;}
.y1a_c00211{bottom:472.294712pt;}
.y2d_c00211{bottom:474.016006pt;}
.y31_c00211{bottom:474.632742pt;}
.y32_c00211{bottom:475.055985pt;}
.y4_c00211{bottom:476.639415pt;}
.y19_c00211{bottom:477.781221pt;}
.y17_c00211{bottom:478.111386pt;}
.y2c_c00211{bottom:478.434544pt;}
.y2f_c00211{bottom:479.977628pt;}
.y18_c00211{bottom:484.059707pt;}
.y3_c00211{bottom:485.114772pt;}
.y30_c00211{bottom:513.277467pt;}
.y51_c00211{bottom:568.082312pt;}
.y53_c00211{bottom:907.946525pt;}
.y4f_c00211{bottom:1003.367459pt;}
.y4d_c00211{bottom:1010.154214pt;}
.y4c_c00211{bottom:1021.487564pt;}
.y50_c00211{bottom:1025.121989pt;}
.y4e_c00211{bottom:1040.962470pt;}
.h11_c00211{height:29.796918pt;}
.h9_c00211{height:31.990003pt;}
.ha_c00211{height:31.990004pt;}
.hb_c00211{height:31.990006pt;}
.h12_c00211{height:32.907161pt;}
.h3_c00211{height:33.297513pt;}
.hd_c00211{height:34.762880pt;}
.h7_c00211{height:39.206256pt;}
.h4_c00211{height:39.206257pt;}
.h8_c00211{height:39.206258pt;}
.h5_c00211{height:39.206259pt;}
.h6_c00211{height:39.206261pt;}
.h16_c00211{height:40.523198pt;}
.h15_c00211{height:46.147909pt;}
.hc_c00211{height:50.040354pt;}
.hf_c00211{height:50.682132pt;}
.h14_c00211{height:51.178401pt;}
.h10_c00211{height:56.729248pt;}
.he_c00211{height:59.593748pt;}
.h13_c00211{height:79.445915pt;}
.h2_c00211{height:1159.999952pt;}
.h0_c00211{height:1159.999959pt;}
.h1_c00211{height:1160.000000pt;}
.w2_c00211{width:830.999965pt;}
.w0_c00211{width:831.000000pt;}
.w1_c00211{width:831.333333pt;}
.x0_c00211{left:0.000000pt;}
.x3c_c00211{left:78.135686pt;}
.x3d_c00211{left:79.342253pt;}
.x3e_c00211{left:95.315788pt;}
.x3f_c00211{left:96.735260pt;}
.x44_c00211{left:116.169448pt;}
.x14_c00211{left:119.977634pt;}
.x13_c00211{left:121.465137pt;}
.x15_c00211{left:124.463353pt;}
.x16_c00211{left:128.774857pt;}
.x17_c00211{left:133.544468pt;}
.x18_c00211{left:135.991410pt;}
.x19_c00211{left:138.666862pt;}
.x1a_c00211{left:142.086856pt;}
.x24_c00211{left:143.505744pt;}
.x1b_c00211{left:145.156780pt;}
.x1c_c00211{left:152.521190pt;}
.x1d_c00211{left:159.871997pt;}
.x1e_c00211{left:167.366655pt;}
.x1f_c00211{left:174.821307pt;}
.x20_c00211{left:178.525632pt;}
.x21_c00211{left:182.577318pt;}
.x22_c00211{left:185.963463pt;}
.x23_c00211{left:188.262839pt;}
.x3_c00211{left:204.798568pt;}
.x2_c00211{left:206.697430pt;}
.x4_c00211{left:209.442955pt;}
.x5_c00211{left:213.744503pt;}
.x6_c00211{left:218.506891pt;}
.x7_c00211{left:220.950947pt;}
.x8_c00211{left:223.623762pt;}
.x9_c00211{left:227.041187pt;}
.x41_c00211{left:228.108486pt;}
.xa_c00211{left:229.962704pt;}
.xb_c00211{left:233.906932pt;}
.xc_c00211{left:241.567426pt;}
.xd_c00211{left:252.092435pt;}
.xe_c00211{left:258.703382pt;}
.xf_c00211{left:261.720880pt;}
.x40_c00211{left:262.769032pt;}
.x10_c00211{left:266.467148pt;}
.x11_c00211{left:269.480012pt;}
.x12_c00211{left:273.046051pt;}
.x29_c00211{left:290.708831pt;}
.x2a_c00211{left:291.790874pt;}
.x2b_c00211{left:293.053997pt;}
.x2c_c00211{left:296.073752pt;}
.x2d_c00211{left:298.940009pt;}
.x2e_c00211{left:304.168673pt;}
.x2f_c00211{left:309.668213pt;}
.x28_c00211{left:312.650435pt;}
.x30_c00211{left:314.728661pt;}
.x31_c00211{left:317.759772pt;}
.x32_c00211{left:324.788328pt;}
.x33_c00211{left:331.889587pt;}
.x34_c00211{left:337.898220pt;}
.x35_c00211{left:340.582851pt;}
.x36_c00211{left:343.253275pt;}
.x37_c00211{left:346.273697pt;}
.x38_c00211{left:348.599989pt;}
.x39_c00211{left:351.546252pt;}
.x3a_c00211{left:356.146534pt;}
.x3b_c00211{left:358.639645pt;}
.x43_c00211{left:402.019318pt;}
.x26_c00211{left:413.241039pt;}
.x42_c00211{left:590.616391pt;}
.x1_c00211{left:619.840748pt;}
.x27_c00211{left:652.036124pt;}
.x25_c00211{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be9b50abf342baeb7d6fd222.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.171387;font-style:normal;font-weight:normal;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_f230a0a8dc6144c087402a87.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.005371;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.006348;font-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_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;}
.ls1_c00212{letter-spacing:0.000000px;}
.ls0_c00212{letter-spacing:19.828124px;}
.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:-19.320776px;}
.ws1_c00212{word-spacing:-18.703125px;}
.ws2_c00212{word-spacing:0.000000px;}
._0_c00212{width:1.214469px;}
._1_c00212{width:3.651169px;}
._3_c00212{width:5.196668px;}
._6_c00212{width:6.775061px;}
._5_c00212{width:9.562498px;}
._7_c00212{width:15.615210px;}
._8_c00212{width:17.101522px;}
._4_c00212{width:20.198843px;}
._d_c00212{width:24.360053px;}
._c_c00212{width:25.980466px;}
._9_c00212{width:27.117138px;}
._e_c00212{width:33.309031px;}
._2_c00212{width:34.613798px;}
._b_c00212{width:61.508420px;}
._a_c00212{width:63.120503px;}
.fc1_c00212{color:rgb(67,91,56);}
.fc0_c00212{color:rgb(0,0,0);}
.fs0_c00212{font-size:71.999997px;}
.fs1_c00212{font-size:74.377724px;}
.y0_c00212{bottom:0.000000px;}
.y1_c00212{bottom:0.000008px;}
.y23_c00212{bottom:29.401163px;}
.y22_c00212{bottom:92.048540px;}
.y21_c00212{bottom:122.423539px;}
.y20_c00212{bottom:152.798538px;}
.y1f_c00212{bottom:183.173536px;}
.y1e_c00212{bottom:213.548535px;}
.y1d_c00212{bottom:252.248209px;}
.y1c_c00212{bottom:327.212554px;}
.y1b_c00212{bottom:357.587553px;}
.y1a_c00212{bottom:387.962552px;}
.y19_c00212{bottom:418.337551px;}
.y18_c00212{bottom:448.712549px;}
.y17_c00212{bottom:479.087548px;}
.y16_c00212{bottom:512.109483px;}
.ye_c00212{bottom:584.606578px;}
.yd_c00212{bottom:614.981577px;}
.yc_c00212{bottom:645.356576px;}
.yb_c00212{bottom:675.731575px;}
.ya_c00212{bottom:706.106573px;}
.y9_c00212{bottom:736.481572px;}
.y8_c00212{bottom:766.856571px;}
.y7_c00212{bottom:797.231570px;}
.y6_c00212{bottom:827.606568px;}
.y5_c00212{bottom:857.981567px;}
.y4_c00212{bottom:888.356566px;}
.y3_c00212{bottom:918.731565px;}
.y2_c00212{bottom:949.106563px;}
.y14_c00212{bottom:975.831465px;}
.y13_c00212{bottom:1043.188023px;}
.y12_c00212{bottom:1073.563022px;}
.y11_c00212{bottom:1103.938021px;}
.y10_c00212{bottom:1134.313020px;}
.yf_c00212{bottom:1164.688018px;}
.y15_c00212{bottom:1199.188901px;}
.h4_c00212{height:55.160154px;}
.h5_c00212{height:56.981762px;}
.h3_c00212{height:67.042966px;}
.h2_c00212{height:1304.999946px;}
.h0_c00212{height:1304.999953px;}
.h1_c00212{height:1305.000000px;}
.w2_c00212{width:934.874961px;}
.w0_c00212{width:934.875000px;}
.w1_c00212{width:935.250000px;}
.x0_c00212{left:0.000000px;}
.x2_c00212{left:85.993816px;}
.x1_c00212{left:87.902647px;}
.x3_c00212{left:452.271732px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls1_c00212{letter-spacing:0.000000pt;}
.ls0_c00212{letter-spacing:17.624999pt;}
.ws0_c00212{word-spacing:-17.174023pt;}
.ws1_c00212{word-spacing:-16.625000pt;}
.ws2_c00212{word-spacing:0.000000pt;}
._0_c00212{width:1.079528pt;}
._1_c00212{width:3.245484pt;}
._3_c00212{width:4.619261pt;}
._6_c00212{width:6.022277pt;}
._5_c00212{width:8.499999pt;}
._7_c00212{width:13.880187pt;}
._8_c00212{width:15.201353pt;}
._4_c00212{width:17.954527pt;}
._d_c00212{width:21.653380pt;}
._c_c00212{width:23.093748pt;}
._9_c00212{width:24.104123pt;}
._e_c00212{width:29.608028pt;}
._2_c00212{width:30.767820pt;}
._b_c00212{width:54.674151pt;}
._a_c00212{width:56.107114pt;}
.fs0_c00212{font-size:63.999997pt;}
.fs1_c00212{font-size:66.113533pt;}
.y0_c00212{bottom:0.000000pt;}
.y1_c00212{bottom:0.000007pt;}
.y23_c00212{bottom:26.134367pt;}
.y22_c00212{bottom:81.820925pt;}
.y21_c00212{bottom:108.820923pt;}
.y20_c00212{bottom:135.820922pt;}
.y1f_c00212{bottom:162.820921pt;}
.y1e_c00212{bottom:189.820920pt;}
.y1d_c00212{bottom:224.220631pt;}
.y1c_c00212{bottom:290.855604pt;}
.y1b_c00212{bottom:317.855603pt;}
.y1a_c00212{bottom:344.855602pt;}
.y19_c00212{bottom:371.855601pt;}
.y18_c00212{bottom:398.855599pt;}
.y17_c00212{bottom:425.855598pt;}
.y16_c00212{bottom:455.208429pt;}
.ye_c00212{bottom:519.650292pt;}
.yd_c00212{bottom:546.650291pt;}
.yc_c00212{bottom:573.650290pt;}
.yb_c00212{bottom:600.650289pt;}
.ya_c00212{bottom:627.650287pt;}
.y9_c00212{bottom:654.650286pt;}
.y8_c00212{bottom:681.650285pt;}
.y7_c00212{bottom:708.650284pt;}
.y6_c00212{bottom:735.650283pt;}
.y5_c00212{bottom:762.650282pt;}
.y4_c00212{bottom:789.650281pt;}
.y3_c00212{bottom:816.650280pt;}
.y2_c00212{bottom:843.650278pt;}
.y14_c00212{bottom:867.405746pt;}
.y13_c00212{bottom:927.278243pt;}
.y12_c00212{bottom:954.278242pt;}
.y11_c00212{bottom:981.278241pt;}
.y10_c00212{bottom:1008.278240pt;}
.yf_c00212{bottom:1035.278238pt;}
.y15_c00212{bottom:1065.945690pt;}
.h4_c00212{height:49.031248pt;}
.h5_c00212{height:50.650455pt;}
.h3_c00212{height:59.593748pt;}
.h2_c00212{height:1159.999952pt;}
.h0_c00212{height:1159.999959pt;}
.h1_c00212{height:1160.000000pt;}
.w2_c00212{width:830.999965pt;}
.w0_c00212{width:831.000000pt;}
.w1_c00212{width:831.333333pt;}
.x0_c00212{left:0.000000pt;}
.x2_c00212{left:76.438947pt;}
.x1_c00212{left:78.135686pt;}
.x3_c00212{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:0.734863;font-style:normal;font-weight:normal;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_90ec896d9a347b6883e3e639.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00213;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00213;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:0.743000;font-style:normal;font-weight: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_c00213;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:1.006348;font-style:normal;font-weight: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_c00213;src:url('chunks/assets/font_99c9063d6b3debb1c4133855.woff2')format("woff");}.ff6_c00213{font-family:ff6_c00213;line-height:1.000000;font-style:normal;font-weight: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_c00213;src:url('chunks/assets/font_732e21dda1d455a20f0f483d.woff2')format("woff");}.ff7_c00213{font-family:ff7_c00213;line-height:1.171387;font-style:normal;font-weight: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_c00213;src:url('chunks/assets/font_d73de3bc9b3c5f065fe53363.woff2')format("woff");}.ff8_c00213{font-family:ff8_c00213;line-height:1.005371;font-style:normal;font-weight: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_c00213;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00213{font-family:ff9_c00213;line-height:0.940000;font-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_c00213{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00213{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00213{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00213{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00213{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00213{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00213{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00213{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00213{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00213{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00213{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00213{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00213{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00213{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00213{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00213{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00213{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00213{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00213{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00213{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00213{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00213{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00213{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00213{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00213{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00213{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00213{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00213{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00213{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00213{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00213{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00213{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00213{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00213{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00213{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00213{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00213{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00213{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00213{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00213{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00213{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00213{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00213{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00213{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00213{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00213{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00213{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00213{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00213{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00213{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00213{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00213{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00213{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00213{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00213{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00213{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00213{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00213{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00213{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00213{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00213{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00213{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00213{vertical-align:0.000000px;}
.v2_c00213{vertical-align:1.278288px;}
.v1_c00213{vertical-align:6.762643px;}
.ls0_c00213{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00213{word-spacing:-41.689573px;}
.ws0_c00213{word-spacing:-15.171263px;}
.ws2_c00213{word-spacing:-0.055755px;}
.ws4_c00213{word-spacing:0.000000px;}
.ws1_c00213{word-spacing:288.058683px;}
._1_c00213{width:6.110732px;}
._3_c00213{width:18.433925px;}
._2_c00213{width:29.320311px;}
._0_c00213{width:54.134167px;}
.fc4_c00213{color:transparent;}
.fc3_c00213{color:rgb(67,91,56);}
.fc2_c00213{color:rgb(255,255,255);}
.fc1_c00213{color:rgb(0,0,0);}
.fc0_c00213{color:rgb(9,71,81);}
.fsb_c00213{font-size:36.000051px;}
.fsc_c00213{font-size:39.757786px;}
.fs7_c00213{font-size:41.999830px;}
.fs4_c00213{font-size:47.368230px;}
.fs1_c00213{font-size:47.368231px;}
.fs5_c00213{font-size:47.368232px;}
.fs2_c00213{font-size:47.368233px;}
.fs3_c00213{font-size:47.368235px;}
.fs0_c00213{font-size:51.661596px;}
.fsf_c00213{font-size:55.754999px;}
.fs10_c00213{font-size:59.984997px;}
.fs8_c00213{font-size:71.999997px;}
.fs9_c00213{font-size:74.424240px;}
.fs6_c00213{font-size:77.011488px;}
.fse_c00213{font-size:77.984997px;}
.fsa_c00213{font-size:84.000120px;}
.fsd_c00213{font-size:95.984996px;}
.y0_c00213{bottom:0.000000px;}
.y1_c00213{bottom:0.000008px;}
.y51_c00213{bottom:29.401163px;}
.y49_c00213{bottom:217.149615px;}
.y48_c00213{bottom:247.524614px;}
.y47_c00213{bottom:277.899612px;}
.y46_c00213{bottom:308.274611px;}
.y4a_c00213{bottom:340.353374px;}
.y2_c00213{bottom:401.525233px;}
.y2e_c00213{bottom:486.888550px;}
.y10_c00213{bottom:493.328193px;}
.y24_c00213{bottom:493.343723px;}
.yf_c00213{bottom:493.853349px;}
.y25_c00213{bottom:493.873061px;}
.y3c_c00213{bottom:493.959311px;}
.y23_c00213{bottom:494.588120px;}
.y3d_c00213{bottom:494.792564px;}
.y3b_c00213{bottom:494.812830px;}
.ye_c00213{bottom:494.919675px;}
.y22_c00213{bottom:495.839509px;}
.y3a_c00213{bottom:495.847693px;}
.yd_c00213{bottom:495.992682px;}
.y26_c00213{bottom:496.289992px;}
.y11_c00213{bottom:496.353473px;}
.y3e_c00213{bottom:496.973807px;}
.y21_c00213{bottom:497.484380px;}
.yc_c00213{bottom:497.644566px;}
.y39_c00213{bottom:498.050705px;}
.y3f_c00213{bottom:498.365140px;}
.y20_c00213{bottom:499.172711px;}
.yb_c00213{bottom:499.338107px;}
.y40_c00213{bottom:500.063439px;}
.y12_c00213{bottom:500.630691px;}
.y1f_c00213{bottom:501.037949px;}
.ya_c00213{bottom:501.207920px;}
.y27_c00213{bottom:501.390163px;}
.y38_c00213{bottom:501.841887px;}
.y41_c00213{bottom:502.505484px;}
.y13_c00213{bottom:503.149881px;}
.y42_c00213{bottom:504.764625px;}
.y28_c00213{bottom:505.018723px;}
.y1e_c00213{bottom:505.692484px;}
.y9_c00213{bottom:505.872210px;}
.y37_c00213{bottom:507.311178px;}
.y43_c00213{bottom:508.033427px;}
.y14_c00213{bottom:509.101920px;}
.y29_c00213{bottom:510.652700px;}
.y36_c00213{bottom:511.777589px;}
.y1d_c00213{bottom:512.093421px;}
.y8_c00213{bottom:512.281650px;}
.y15_c00213{bottom:513.850725px;}
.y44_c00213{bottom:516.430791px;}
.y2a_c00213{bottom:517.310242px;}
.y35_c00213{bottom:518.201920px;}
.y1c_c00213{bottom:519.400744px;}
.y7_c00213{bottom:519.491089px;}
.y34_c00213{bottom:522.772118px;}
.y6_c00213{bottom:522.949612px;}
.y45_c00213{bottom:524.479585px;}
.y16_c00213{bottom:525.634963px;}
.y1b_c00213{bottom:526.562252px;}
.y5_c00213{bottom:528.960111px;}
.y2b_c00213{bottom:529.273374px;}
.y33_c00213{bottom:530.544173px;}
.y1a_c00213{bottom:531.331371px;}
.y2d_c00213{bottom:533.268367px;}
.y31_c00213{bottom:533.962015px;}
.y32_c00213{bottom:534.438127px;}
.y4_c00213{bottom:536.219342px;}
.y19_c00213{bottom:537.504234px;}
.y17_c00213{bottom:537.874949px;}
.y2c_c00213{bottom:538.238862px;}
.y2f_c00213{bottom:539.974832px;}
.y18_c00213{bottom:544.567170px;}
.y3_c00213{bottom:545.754118px;}
.y30_c00213{bottom:577.437330px;}
.y50_c00213{bottom:639.092421px;}
.y52_c00213{bottom:1021.439841px;}
.y4e_c00213{bottom:1128.788391px;}
.y4c_c00213{bottom:1136.423577px;}
.y4b_c00213{bottom:1149.173596px;}
.y4f_c00213{bottom:1153.262414px;}
.y4d_c00213{bottom:1171.082693px;}
.h11_c00213{height:33.521532px;}
.h9_c00213{height:35.988753px;}
.ha_c00213{height:35.988755px;}
.hb_c00213{height:35.988756px;}
.h12_c00213{height:37.020556px;}
.h3_c00213{height:37.459702px;}
.hd_c00213{height:39.108240px;}
.h7_c00213{height:44.107038px;}
.h4_c00213{height:44.107039px;}
.h8_c00213{height:44.107040px;}
.h5_c00213{height:44.107042px;}
.h6_c00213{height:44.107043px;}
.h16_c00213{height:45.588598px;}
.h15_c00213{height:51.916398px;}
.hc_c00213{height:56.295398px;}
.hf_c00213{height:57.017399px;}
.h14_c00213{height:57.573686px;}
.h10_c00213{height:63.820404px;}
.he_c00213{height:67.042966px;}
.h13_c00213{height:79.378555px;}
.h2_c00213{height:1304.999946px;}
.h0_c00213{height:1304.999953px;}
.h1_c00213{height:1305.000000px;}
.w2_c00213{width:934.874961px;}
.w0_c00213{width:934.875000px;}
.w1_c00213{width:935.250000px;}
.x0_c00213{left:0.000000px;}
.x3c_c00213{left:88.130063px;}
.x3d_c00213{left:107.230262px;}
.x3e_c00213{left:108.827167px;}
.x43_c00213{left:130.690629px;}
.x14_c00213{left:134.974838px;}
.x13_c00213{left:136.648279px;}
.x15_c00213{left:140.021272px;}
.x16_c00213{left:144.871714px;}
.x17_c00213{left:150.237526px;}
.x18_c00213{left:152.990336px;}
.x19_c00213{left:156.000220px;}
.x1a_c00213{left:159.847713px;}
.x24_c00213{left:161.443962px;}
.x1b_c00213{left:163.301377px;}
.x1c_c00213{left:171.586339px;}
.x1d_c00213{left:179.855997px;}
.x1e_c00213{left:188.287487px;}
.x1f_c00213{left:196.673970px;}
.x20_c00213{left:200.841336px;}
.x21_c00213{left:205.399483px;}
.x22_c00213{left:209.208896px;}
.x23_c00213{left:211.795693px;}
.x3_c00213{left:230.398389px;}
.x2_c00213{left:232.534609px;}
.x4_c00213{left:235.623324px;}
.x5_c00213{left:240.462566px;}
.x6_c00213{left:245.820252px;}
.x7_c00213{left:248.569815px;}
.x8_c00213{left:251.576732px;}
.x9_c00213{left:255.421336px;}
.x40_c00213{left:256.622047px;}
.xa_c00213{left:258.708042px;}
.xb_c00213{left:263.145298px;}
.xc_c00213{left:271.763354px;}
.xd_c00213{left:283.603990px;}
.xe_c00213{left:291.041304px;}
.xf_c00213{left:294.435991px;}
.x3f_c00213{left:295.615161px;}
.x10_c00213{left:299.775542px;}
.x11_c00213{left:303.165014px;}
.x12_c00213{left:307.176807px;}
.x29_c00213{left:327.047435px;}
.x2a_c00213{left:328.264734px;}
.x2b_c00213{left:329.685747px;}
.x2c_c00213{left:333.082971px;}
.x2d_c00213{left:336.307511px;}
.x2e_c00213{left:342.189757px;}
.x2f_c00213{left:348.376740px;}
.x28_c00213{left:351.731739px;}
.x30_c00213{left:354.069743px;}
.x31_c00213{left:357.479743px;}
.x32_c00213{left:365.386869px;}
.x33_c00213{left:373.375785px;}
.x34_c00213{left:380.135498px;}
.x35_c00213{left:383.155707px;}
.x36_c00213{left:386.159935px;}
.x37_c00213{left:389.557910px;}
.x38_c00213{left:392.174988px;}
.x39_c00213{left:395.489533px;}
.x3a_c00213{left:400.664851px;}
.x3b_c00213{left:403.469600px;}
.x42_c00213{left:452.271732px;}
.x26_c00213{left:464.896169px;}
.x41_c00213{left:664.443440px;}
.x1_c00213{left:697.320842px;}
.x27_c00213{left:733.540639px;}
.x25_c00213{left:757.088990px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.v2_c00213{vertical-align:1.136256pt;}
.v1_c00213{vertical-align:6.011238pt;}
.ls0_c00213{letter-spacing:0.000000pt;}
.ws3_c00213{word-spacing:-37.057398pt;}
.ws0_c00213{word-spacing:-13.485567pt;}
.ws2_c00213{word-spacing:-0.049560pt;}
.ws4_c00213{word-spacing:0.000000pt;}
.ws1_c00213{word-spacing:256.052163pt;}
._1_c00213{width:5.431761pt;}
._3_c00213{width:16.385711pt;}
._2_c00213{width:26.062499pt;}
._0_c00213{width:48.119260pt;}
.fsb_c00213{font-size:32.000046pt;}
.fsc_c00213{font-size:35.340254pt;}
.fs7_c00213{font-size:37.333182pt;}
.fs4_c00213{font-size:42.105093pt;}
.fs1_c00213{font-size:42.105094pt;}
.fs5_c00213{font-size:42.105095pt;}
.fs2_c00213{font-size:42.105096pt;}
.fs3_c00213{font-size:42.105098pt;}
.fs0_c00213{font-size:45.921418pt;}
.fsf_c00213{font-size:49.559999pt;}
.fs10_c00213{font-size:53.319997pt;}
.fs8_c00213{font-size:63.999997pt;}
.fs9_c00213{font-size:66.154880pt;}
.fs6_c00213{font-size:68.454656pt;}
.fse_c00213{font-size:69.319997pt;}
.fsa_c00213{font-size:74.666773pt;}
.fsd_c00213{font-size:85.319996pt;}
.y0_c00213{bottom:0.000000pt;}
.y1_c00213{bottom:0.000007pt;}
.y51_c00213{bottom:26.134367pt;}
.y49_c00213{bottom:193.021880pt;}
.y48_c00213{bottom:220.021879pt;}
.y47_c00213{bottom:247.021878pt;}
.y46_c00213{bottom:274.021877pt;}
.y4a_c00213{bottom:302.536333pt;}
.y2_c00213{bottom:356.911319pt;}
.y2e_c00213{bottom:432.789822pt;}
.y10_c00213{bottom:438.513950pt;}
.y24_c00213{bottom:438.527754pt;}
.yf_c00213{bottom:438.980754pt;}
.y25_c00213{bottom:438.998276pt;}
.y3c_c00213{bottom:439.074943pt;}
.y23_c00213{bottom:439.633885pt;}
.y3d_c00213{bottom:439.815613pt;}
.y3b_c00213{bottom:439.833627pt;}
.ye_c00213{bottom:439.928600pt;}
.y22_c00213{bottom:440.746230pt;}
.y3a_c00213{bottom:440.753505pt;}
.yd_c00213{bottom:440.882384pt;}
.y26_c00213{bottom:441.146660pt;}
.y11_c00213{bottom:441.203087pt;}
.y3e_c00213{bottom:441.754495pt;}
.y21_c00213{bottom:442.208338pt;}
.yc_c00213{bottom:442.350726pt;}
.y39_c00213{bottom:442.711737pt;}
.y3f_c00213{bottom:442.991236pt;}
.y20_c00213{bottom:443.709077pt;}
.yb_c00213{bottom:443.856095pt;}
.y40_c00213{bottom:444.500834pt;}
.y12_c00213{bottom:445.005059pt;}
.y1f_c00213{bottom:445.367066pt;}
.ya_c00213{bottom:445.518151pt;}
.y27_c00213{bottom:445.680145pt;}
.y38_c00213{bottom:446.081677pt;}
.y41_c00213{bottom:446.671541pt;}
.y13_c00213{bottom:447.244339pt;}
.y42_c00213{bottom:448.679667pt;}
.y28_c00213{bottom:448.905531pt;}
.y1e_c00213{bottom:449.504430pt;}
.y9_c00213{bottom:449.664187pt;}
.y37_c00213{bottom:450.943270pt;}
.y43_c00213{bottom:451.585269pt;}
.y14_c00213{bottom:452.535040pt;}
.y29_c00213{bottom:453.913511pt;}
.y36_c00213{bottom:454.913413pt;}
.y1d_c00213{bottom:455.194152pt;}
.y8_c00213{bottom:455.361467pt;}
.y15_c00213{bottom:456.756200pt;}
.y44_c00213{bottom:459.049592pt;}
.y2a_c00213{bottom:459.831327pt;}
.y35_c00213{bottom:460.623928pt;}
.y1c_c00213{bottom:461.689550pt;}
.y7_c00213{bottom:461.769857pt;}
.y34_c00213{bottom:464.686327pt;}
.y6_c00213{bottom:464.844100pt;}
.y45_c00213{bottom:466.204075pt;}
.y16_c00213{bottom:467.231078pt;}
.y1b_c00213{bottom:468.055335pt;}
.y5_c00213{bottom:470.186765pt;}
.y2b_c00213{bottom:470.465221pt;}
.y33_c00213{bottom:471.594820pt;}
.y1a_c00213{bottom:472.294552pt;}
.y2d_c00213{bottom:474.016326pt;}
.y31_c00213{bottom:474.632902pt;}
.y32_c00213{bottom:475.056113pt;}
.y4_c00213{bottom:476.639415pt;}
.y19_c00213{bottom:477.781541pt;}
.y17_c00213{bottom:478.111066pt;}
.y2c_c00213{bottom:478.434544pt;}
.y2f_c00213{bottom:479.977628pt;}
.y18_c00213{bottom:484.059707pt;}
.y3_c00213{bottom:485.114772pt;}
.y30_c00213{bottom:513.277627pt;}
.y50_c00213{bottom:568.082152pt;}
.y52_c00213{bottom:907.946525pt;}
.y4e_c00213{bottom:1003.367459pt;}
.y4c_c00213{bottom:1010.154291pt;}
.y4b_c00213{bottom:1021.487641pt;}
.y4f_c00213{bottom:1025.122146pt;}
.y4d_c00213{bottom:1040.962393pt;}
.h11_c00213{height:29.796918pt;}
.h9_c00213{height:31.990003pt;}
.ha_c00213{height:31.990004pt;}
.hb_c00213{height:31.990006pt;}
.h12_c00213{height:32.907161pt;}
.h3_c00213{height:33.297513pt;}
.hd_c00213{height:34.762880pt;}
.h7_c00213{height:39.206256pt;}
.h4_c00213{height:39.206257pt;}
.h8_c00213{height:39.206258pt;}
.h5_c00213{height:39.206259pt;}
.h6_c00213{height:39.206261pt;}
.h16_c00213{height:40.523198pt;}
.h15_c00213{height:46.147909pt;}
.hc_c00213{height:50.040354pt;}
.hf_c00213{height:50.682132pt;}
.h14_c00213{height:51.176609pt;}
.h10_c00213{height:56.729248pt;}
.he_c00213{height:59.593748pt;}
.h13_c00213{height:70.558716pt;}
.h2_c00213{height:1159.999952pt;}
.h0_c00213{height:1159.999959pt;}
.h1_c00213{height:1160.000000pt;}
.w2_c00213{width:830.999965pt;}
.w0_c00213{width:831.000000pt;}
.w1_c00213{width:831.333333pt;}
.x0_c00213{left:0.000000pt;}
.x3c_c00213{left:78.337834pt;}
.x3d_c00213{left:95.315788pt;}
.x3e_c00213{left:96.735260pt;}
.x43_c00213{left:116.169448pt;}
.x14_c00213{left:119.977634pt;}
.x13_c00213{left:121.465137pt;}
.x15_c00213{left:124.463353pt;}
.x16_c00213{left:128.774857pt;}
.x17_c00213{left:133.544468pt;}
.x18_c00213{left:135.991410pt;}
.x19_c00213{left:138.666862pt;}
.x1a_c00213{left:142.086856pt;}
.x24_c00213{left:143.505744pt;}
.x1b_c00213{left:145.156780pt;}
.x1c_c00213{left:152.521190pt;}
.x1d_c00213{left:159.871997pt;}
.x1e_c00213{left:167.366655pt;}
.x1f_c00213{left:174.821307pt;}
.x20_c00213{left:178.525632pt;}
.x21_c00213{left:182.577318pt;}
.x22_c00213{left:185.963463pt;}
.x23_c00213{left:188.262839pt;}
.x3_c00213{left:204.798568pt;}
.x2_c00213{left:206.697430pt;}
.x4_c00213{left:209.442955pt;}
.x5_c00213{left:213.744503pt;}
.x6_c00213{left:218.506891pt;}
.x7_c00213{left:220.950947pt;}
.x8_c00213{left:223.623762pt;}
.x9_c00213{left:227.041187pt;}
.x40_c00213{left:228.108486pt;}
.xa_c00213{left:229.962704pt;}
.xb_c00213{left:233.906932pt;}
.xc_c00213{left:241.567426pt;}
.xd_c00213{left:252.092435pt;}
.xe_c00213{left:258.703382pt;}
.xf_c00213{left:261.720880pt;}
.x3f_c00213{left:262.769032pt;}
.x10_c00213{left:266.467148pt;}
.x11_c00213{left:269.480012pt;}
.x12_c00213{left:273.046051pt;}
.x29_c00213{left:290.708831pt;}
.x2a_c00213{left:291.790874pt;}
.x2b_c00213{left:293.053997pt;}
.x2c_c00213{left:296.073752pt;}
.x2d_c00213{left:298.940009pt;}
.x2e_c00213{left:304.168673pt;}
.x2f_c00213{left:309.668213pt;}
.x28_c00213{left:312.650435pt;}
.x30_c00213{left:314.728661pt;}
.x31_c00213{left:317.759772pt;}
.x32_c00213{left:324.788328pt;}
.x33_c00213{left:331.889587pt;}
.x34_c00213{left:337.898220pt;}
.x35_c00213{left:340.582851pt;}
.x36_c00213{left:343.253275pt;}
.x37_c00213{left:346.273697pt;}
.x38_c00213{left:348.599989pt;}
.x39_c00213{left:351.546252pt;}
.x3a_c00213{left:356.146534pt;}
.x3b_c00213{left:358.639645pt;}
.x42_c00213{left:402.019318pt;}
.x26_c00213{left:413.241039pt;}
.x41_c00213{left:590.616391pt;}
.x1_c00213{left:619.840748pt;}
.x27_c00213{left:652.036124pt;}
.x25_c00213{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4746320fdb980bf5ef2786c.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.171387;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.006348;font-style:normal;font-weight:normal;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_10f46076757a10b5b999da4b.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.005371;font-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_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);}
.v0_c00214{vertical-align:0.000000px;}
.ls0_c00214{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00214{word-spacing:-19.320776px;}
.ws1_c00214{word-spacing:0.000000px;}
._3_c00214{width:1.081602px;}
._8_c00214{width:2.406829px;}
._0_c00214{width:3.515625px;}
._7_c00214{width:4.720680px;}
._4_c00214{width:5.848710px;}
._5_c00214{width:7.269171px;}
._6_c00214{width:8.352976px;}
._b_c00214{width:9.547524px;}
._c_c00214{width:11.022790px;}
._e_c00214{width:12.433568px;}
._11_c00214{width:13.763671px;}
._10_c00214{width:15.899700px;}
._a_c00214{width:17.609147px;}
._f_c00214{width:26.499023px;}
._9_c00214{width:29.524792px;}
._2_c00214{width:35.308546px;}
._d_c00214{width:49.860348px;}
._1_c00214{width:58.675779px;}
.fc1_c00214{color:rgb(67,91,56);}
.fc0_c00214{color:rgb(0,0,0);}
.fs0_c00214{font-size:71.999997px;}
.fs1_c00214{font-size:74.377724px;}
.y0_c00214{bottom:0.000000px;}
.y1_c00214{bottom:0.000008px;}
.y1f_c00214{bottom:29.401163px;}
.y26_c00214{bottom:66.088113px;}
.y25_c00214{bottom:96.463112px;}
.y24_c00214{bottom:126.838111px;}
.y23_c00214{bottom:157.213109px;}
.y22_c00214{bottom:187.588108px;}
.y21_c00214{bottom:217.963107px;}
.y20_c00214{bottom:260.551393px;}
.y16_c00214{bottom:313.714679px;}
.y15_c00214{bottom:344.089678px;}
.y14_c00214{bottom:373.213100px;}
.y12_c00214{bottom:420.867054px;}
.y11_c00214{bottom:451.242053px;}
.y10_c00214{bottom:481.617052px;}
.yf_c00214{bottom:511.992051px;}
.ye_c00214{bottom:542.367049px;}
.yd_c00214{bottom:572.742048px;}
.yc_c00214{bottom:603.117047px;}
.yb_c00214{bottom:633.492046px;}
.ya_c00214{bottom:663.867044px;}
.y9_c00214{bottom:694.242043px;}
.y8_c00214{bottom:724.617042px;}
.y7_c00214{bottom:754.992041px;}
.y6_c00214{bottom:785.367039px;}
.y5_c00214{bottom:815.742038px;}
.y4_c00214{bottom:846.117037px;}
.y3_c00214{bottom:876.492035px;}
.y2_c00214{bottom:906.867034px;}
.y13_c00214{bottom:942.508790px;}
.y1d_c00214{bottom:989.202264px;}
.y1c_c00214{bottom:1019.577262px;}
.y1b_c00214{bottom:1049.952261px;}
.y1a_c00214{bottom:1080.327260px;}
.y19_c00214{bottom:1110.702259px;}
.y18_c00214{bottom:1141.077257px;}
.y17_c00214{bottom:1171.452256px;}
.y1e_c00214{bottom:1199.907846px;}
.h4_c00214{height:55.160154px;}
.h5_c00214{height:56.981762px;}
.h3_c00214{height:67.042966px;}
.h2_c00214{height:1304.999946px;}
.h0_c00214{height:1304.999953px;}
.h1_c00214{height:1305.000000px;}
.w2_c00214{width:934.874961px;}
.w0_c00214{width:934.875000px;}
.w1_c00214{width:935.250000px;}
.x0_c00214{left:0.000000px;}
.x1_c00214{left:87.902647px;}
.x2_c00214{left:452.271732px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws0_c00214{word-spacing:-17.174023pt;}
.ws1_c00214{word-spacing:0.000000pt;}
._3_c00214{width:0.961424pt;}
._8_c00214{width:2.139403pt;}
._0_c00214{width:3.125000pt;}
._7_c00214{width:4.196160pt;}
._4_c00214{width:5.198853pt;}
._5_c00214{width:6.461485pt;}
._6_c00214{width:7.424868pt;}
._b_c00214{width:8.486688pt;}
._c_c00214{width:9.798036pt;}
._e_c00214{width:11.052061pt;}
._11_c00214{width:12.234374pt;}
._10_c00214{width:14.133067pt;}
._a_c00214{width:15.652575pt;}
._f_c00214{width:23.554687pt;}
._9_c00214{width:26.244260pt;}
._2_c00214{width:31.385374pt;}
._d_c00214{width:44.320310pt;}
._1_c00214{width:52.156248pt;}
.fs0_c00214{font-size:63.999997pt;}
.fs1_c00214{font-size:66.113533pt;}
.y0_c00214{bottom:0.000000pt;}
.y1_c00214{bottom:0.000007pt;}
.y1f_c00214{bottom:26.134367pt;}
.y26_c00214{bottom:58.744990pt;}
.y25_c00214{bottom:85.744988pt;}
.y24_c00214{bottom:112.744987pt;}
.y23_c00214{bottom:139.744986pt;}
.y22_c00214{bottom:166.744985pt;}
.y21_c00214{bottom:193.744984pt;}
.y20_c00214{bottom:231.601238pt;}
.y16_c00214{bottom:278.857492pt;}
.y15_c00214{bottom:305.857491pt;}
.y14_c00214{bottom:331.744978pt;}
.y12_c00214{bottom:374.104048pt;}
.y11_c00214{bottom:401.104047pt;}
.y10_c00214{bottom:428.104046pt;}
.yf_c00214{bottom:455.104045pt;}
.ye_c00214{bottom:482.104044pt;}
.yd_c00214{bottom:509.104043pt;}
.yc_c00214{bottom:536.104042pt;}
.yb_c00214{bottom:563.104041pt;}
.ya_c00214{bottom:590.104039pt;}
.y9_c00214{bottom:617.104038pt;}
.y8_c00214{bottom:644.104037pt;}
.y7_c00214{bottom:671.104036pt;}
.y6_c00214{bottom:698.104035pt;}
.y5_c00214{bottom:725.104034pt;}
.y4_c00214{bottom:752.104033pt;}
.y3_c00214{bottom:779.104032pt;}
.y2_c00214{bottom:806.104030pt;}
.y13_c00214{bottom:837.785591pt;}
.y1d_c00214{bottom:879.290901pt;}
.y1c_c00214{bottom:906.290900pt;}
.y1b_c00214{bottom:933.290899pt;}
.y1a_c00214{bottom:960.290898pt;}
.y19_c00214{bottom:987.290896pt;}
.y18_c00214{bottom:1014.290895pt;}
.y17_c00214{bottom:1041.290894pt;}
.y1e_c00214{bottom:1066.584752pt;}
.h4_c00214{height:49.031248pt;}
.h5_c00214{height:50.650455pt;}
.h3_c00214{height:59.593748pt;}
.h2_c00214{height:1159.999952pt;}
.h0_c00214{height:1159.999959pt;}
.h1_c00214{height:1160.000000pt;}
.w2_c00214{width:830.999965pt;}
.w0_c00214{width:831.000000pt;}
.w1_c00214{width:831.333333pt;}
.x0_c00214{left:0.000000pt;}
.x1_c00214{left:78.135686pt;}
.x2_c00214{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:0.734863;font-style:normal;font-weight:normal;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_3d572e4ed4144d1934be450f.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:0.743000;font-style:normal;font-weight: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_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:0.940000;font-style:normal;font-weight: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_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff6_c00215{font-family:ff6_c00215;line-height:1.006348;font-style:normal;font-weight: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_99c9063d6b3debb1c4133855.woff2')format("woff");}.ff7_c00215{font-family:ff7_c00215;line-height:1.000000;font-style:normal;font-weight: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_def6c0a781254ac422ba9dc7.woff2')format("woff");}.ff8_c00215{font-family:ff8_c00215;line-height:1.171387;font-style:normal;font-weight: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_c00215;src:url('chunks/assets/font_cc0bc02944d52a5214ea61f8.woff2')format("woff");}.ff9_c00215{font-family:ff9_c00215;line-height:1.000000;font-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_c00215{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00215{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00215{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00215{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00215{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00215{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00215{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00215{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00215{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00215{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00215{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00215{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00215{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00215{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00215{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00215{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00215{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00215{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00215{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00215{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00215{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00215{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00215{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00215{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00215{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00215{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00215{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00215{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00215{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00215{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00215{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00215{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00215{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00215{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00215{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00215{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00215{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00215{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00215{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00215{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00215{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00215{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00215{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00215{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00215{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00215{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00215{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00215{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00215{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00215{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00215{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00215{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00215{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00215{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00215{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00215{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00215{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00215{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00215{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00215{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00215{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00215{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00215{vertical-align:0.000000px;}
.v3_c00215{vertical-align:1.280304px;}
.v1_c00215{vertical-align:2.774880px;}
.v2_c00215{vertical-align:6.750000px;}
.ls0_c00215{letter-spacing:0.000000px;}
.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:-41.689573px;}
.ws1_c00215{word-spacing:-15.171263px;}
.ws4_c00215{word-spacing:-0.055755px;}
.ws5_c00215{word-spacing:0.000000px;}
.ws3_c00215{word-spacing:288.058683px;}
.ws0_c00215{word-spacing:662.351128px;}
._4_c00215{width:1.770170px;}
._3_c00215{width:2.902861px;}
._0_c00215{width:4.289061px;}
._1_c00215{width:6.965608px;}
._6_c00215{width:14.075270px;}
._5_c00215{width:15.173421px;}
._2_c00215{width:32.053710px;}
._7_c00215{width:44.110692px;}
.fc4_c00215{color:transparent;}
.fc3_c00215{color:rgb(67,91,56);}
.fc2_c00215{color:rgb(255,255,255);}
.fc1_c00215{color:rgb(0,0,0);}
.fc0_c00215{color:rgb(9,71,81);}
.fsc_c00215{font-size:36.000051px;}
.fsd_c00215{font-size:39.757786px;}
.fs8_c00215{font-size:41.999830px;}
.fs4_c00215{font-size:47.368230px;}
.fs1_c00215{font-size:47.368231px;}
.fs5_c00215{font-size:47.368232px;}
.fs2_c00215{font-size:47.368233px;}
.fs3_c00215{font-size:47.368235px;}
.fs0_c00215{font-size:51.661596px;}
.fs10_c00215{font-size:55.754999px;}
.fs7_c00215{font-size:59.984997px;}
.fs9_c00215{font-size:71.999997px;}
.fsa_c00215{font-size:74.424240px;}
.fs6_c00215{font-size:77.011488px;}
.fsf_c00215{font-size:77.984997px;}
.fsb_c00215{font-size:84.000120px;}
.fse_c00215{font-size:95.984996px;}
.y0_c00215{bottom:0.000000px;}
.y1_c00215{bottom:0.000008px;}
.y55_c00215{bottom:29.401163px;}
.y4c_c00215{bottom:95.649620px;}
.y4b_c00215{bottom:126.024619px;}
.y4a_c00215{bottom:156.399617px;}
.y49_c00215{bottom:186.774616px;}
.y48_c00215{bottom:217.149615px;}
.y47_c00215{bottom:247.524614px;}
.y46_c00215{bottom:277.899612px;}
.y45_c00215{bottom:308.274611px;}
.y4d_c00215{bottom:340.353302px;}
.y2_c00215{bottom:401.525233px;}
.y10_c00215{bottom:493.328373px;}
.y24_c00215{bottom:493.343471px;}
.yf_c00215{bottom:493.853637px;}
.y25_c00215{bottom:493.873313px;}
.y38_c00215{bottom:493.959419px;}
.y23_c00215{bottom:494.588120px;}
.y39_c00215{bottom:494.792744px;}
.y37_c00215{bottom:494.812830px;}
.ye_c00215{bottom:494.919783px;}
.y22_c00215{bottom:495.839401px;}
.y36_c00215{bottom:495.847621px;}
.yd_c00215{bottom:495.993006px;}
.y26_c00215{bottom:496.289812px;}
.y11_c00215{bottom:496.353473px;}
.y3a_c00215{bottom:496.973987px;}
.y21_c00215{bottom:497.484272px;}
.yc_c00215{bottom:497.644566px;}
.y35_c00215{bottom:498.050345px;}
.y3b_c00215{bottom:498.364888px;}
.y20_c00215{bottom:499.172531px;}
.yb_c00215{bottom:499.338107px;}
.y3c_c00215{bottom:500.063187px;}
.y12_c00215{bottom:500.630691px;}
.y1f_c00215{bottom:501.037769px;}
.ya_c00215{bottom:501.208172px;}
.y27_c00215{bottom:501.390631px;}
.y34_c00215{bottom:501.842067px;}
.y3d_c00215{bottom:502.505484px;}
.y13_c00215{bottom:503.149449px;}
.y3e_c00215{bottom:504.764445px;}
.y28_c00215{bottom:505.018795px;}
.y1e_c00215{bottom:505.692124px;}
.y9_c00215{bottom:505.871886px;}
.y33_c00215{bottom:507.310818px;}
.y3f_c00215{bottom:508.033427px;}
.y14_c00215{bottom:509.101992px;}
.y29_c00215{bottom:510.652700px;}
.y32_c00215{bottom:511.777409px;}
.y1d_c00215{bottom:512.093493px;}
.y8_c00215{bottom:512.281758px;}
.y15_c00215{bottom:513.850725px;}
.y40_c00215{bottom:516.430683px;}
.y2a_c00215{bottom:517.310350px;}
.y31_c00215{bottom:518.202172px;}
.y1c_c00215{bottom:519.400636px;}
.y7_c00215{bottom:519.490837px;}
.y30_c00215{bottom:522.772046px;}
.y6_c00215{bottom:522.949612px;}
.y41_c00215{bottom:524.479585px;}
.y16_c00215{bottom:525.634639px;}
.y1b_c00215{bottom:526.562252px;}
.y5_c00215{bottom:528.959931px;}
.y2b_c00215{bottom:529.273374px;}
.y2f_c00215{bottom:530.544173px;}
.y1a_c00215{bottom:531.331479px;}
.y2d_c00215{bottom:533.268115px;}
.y53_c00215{bottom:533.961835px;}
.y2e_c00215{bottom:534.437983px;}
.y4_c00215{bottom:536.219342px;}
.y19_c00215{bottom:537.503802px;}
.y17_c00215{bottom:537.875201px;}
.y2c_c00215{bottom:538.238934px;}
.y43_c00215{bottom:539.974724px;}
.y18_c00215{bottom:544.567278px;}
.y3_c00215{bottom:545.754118px;}
.y44_c00215{bottom:577.437042px;}
.y54_c00215{bottom:639.092601px;}
.y42_c00215{bottom:1021.439863px;}
.y51_c00215{bottom:1128.788247px;}
.y4f_c00215{bottom:1136.423523px;}
.y4e_c00215{bottom:1149.173542px;}
.y52_c00215{bottom:1153.262281px;}
.y50_c00215{bottom:1171.082779px;}
.h12_c00215{height:33.521532px;}
.h9_c00215{height:35.988753px;}
.ha_c00215{height:35.988755px;}
.hb_c00215{height:35.988756px;}
.h13_c00215{height:37.020556px;}
.h3_c00215{height:37.459702px;}
.he_c00215{height:39.108240px;}
.h7_c00215{height:44.107038px;}
.h4_c00215{height:44.107039px;}
.h8_c00215{height:44.107040px;}
.h5_c00215{height:44.107042px;}
.h6_c00215{height:44.107043px;}
.hd_c00215{height:45.588598px;}
.h16_c00215{height:51.916398px;}
.h10_c00215{height:57.017399px;}
.h15_c00215{height:57.575702px;}
.hc_c00215{height:59.070278px;}
.h11_c00215{height:63.820404px;}
.hf_c00215{height:67.042966px;}
.h14_c00215{height:79.365912px;}
.h2_c00215{height:1304.999946px;}
.h0_c00215{height:1304.999953px;}
.h1_c00215{height:1305.000000px;}
.w2_c00215{width:934.874961px;}
.w0_c00215{width:934.875000px;}
.w1_c00215{width:935.250000px;}
.x0_c00215{left:0.000000px;}
.x3a_c00215{left:88.130063px;}
.x3b_c00215{left:107.230262px;}
.x3c_c00215{left:108.827167px;}
.x14_c00215{left:134.974838px;}
.x13_c00215{left:136.648279px;}
.x15_c00215{left:140.021272px;}
.x16_c00215{left:144.871714px;}
.x17_c00215{left:150.237526px;}
.x18_c00215{left:152.990336px;}
.x19_c00215{left:156.000220px;}
.x1a_c00215{left:159.847713px;}
.x24_c00215{left:161.443962px;}
.x1b_c00215{left:163.301377px;}
.x1c_c00215{left:171.586339px;}
.x1d_c00215{left:179.855997px;}
.x1e_c00215{left:188.287487px;}
.x1f_c00215{left:196.673970px;}
.x20_c00215{left:200.841336px;}
.x21_c00215{left:205.399483px;}
.x22_c00215{left:209.208896px;}
.x23_c00215{left:211.795693px;}
.x3_c00215{left:230.398389px;}
.x2_c00215{left:232.534609px;}
.x4_c00215{left:235.623324px;}
.x5_c00215{left:240.462566px;}
.x6_c00215{left:245.820252px;}
.x7_c00215{left:248.569815px;}
.x8_c00215{left:251.576732px;}
.x9_c00215{left:255.421336px;}
.x3e_c00215{left:256.622047px;}
.xa_c00215{left:258.708042px;}
.xb_c00215{left:263.145298px;}
.xc_c00215{left:271.763354px;}
.xd_c00215{left:283.603990px;}
.xe_c00215{left:291.041304px;}
.xf_c00215{left:294.435991px;}
.x3d_c00215{left:295.615161px;}
.x10_c00215{left:299.775542px;}
.x11_c00215{left:303.165014px;}
.x12_c00215{left:307.176807px;}
.x25_c00215{left:327.047435px;}
.x26_c00215{left:328.264734px;}
.x27_c00215{left:329.685747px;}
.x28_c00215{left:333.082971px;}
.x29_c00215{left:336.307511px;}
.x2a_c00215{left:342.189757px;}
.x2b_c00215{left:348.376740px;}
.x2c_c00215{left:354.069743px;}
.x2d_c00215{left:357.479743px;}
.x2e_c00215{left:365.386869px;}
.x2f_c00215{left:373.375785px;}
.x30_c00215{left:380.135498px;}
.x31_c00215{left:383.155707px;}
.x32_c00215{left:386.159935px;}
.x33_c00215{left:389.557910px;}
.x34_c00215{left:392.174988px;}
.x35_c00215{left:395.489533px;}
.x36_c00215{left:400.664851px;}
.x37_c00215{left:403.469600px;}
.x40_c00215{left:452.271732px;}
.x38_c00215{left:464.896169px;}
.x3f_c00215{left:664.443440px;}
.x1_c00215{left:697.320842px;}
.x39_c00215{left:733.540711px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.v3_c00215{vertical-align:1.138048pt;}
.v1_c00215{vertical-align:2.466560pt;}
.v2_c00215{vertical-align:6.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws2_c00215{word-spacing:-37.057398pt;}
.ws1_c00215{word-spacing:-13.485567pt;}
.ws4_c00215{word-spacing:-0.049560pt;}
.ws5_c00215{word-spacing:0.000000pt;}
.ws3_c00215{word-spacing:256.052163pt;}
.ws0_c00215{word-spacing:588.756558pt;}
._4_c00215{width:1.573485pt;}
._3_c00215{width:2.580321pt;}
._0_c00215{width:3.812499pt;}
._1_c00215{width:6.191652pt;}
._6_c00215{width:12.511351pt;}
._5_c00215{width:13.487485pt;}
._2_c00215{width:28.492186pt;}
._7_c00215{width:39.209504pt;}
.fsc_c00215{font-size:32.000046pt;}
.fsd_c00215{font-size:35.340254pt;}
.fs8_c00215{font-size:37.333182pt;}
.fs4_c00215{font-size:42.105093pt;}
.fs1_c00215{font-size:42.105094pt;}
.fs5_c00215{font-size:42.105095pt;}
.fs2_c00215{font-size:42.105096pt;}
.fs3_c00215{font-size:42.105098pt;}
.fs0_c00215{font-size:45.921418pt;}
.fs10_c00215{font-size:49.559999pt;}
.fs7_c00215{font-size:53.319997pt;}
.fs9_c00215{font-size:63.999997pt;}
.fsa_c00215{font-size:66.154880pt;}
.fs6_c00215{font-size:68.454656pt;}
.fsf_c00215{font-size:69.319997pt;}
.fsb_c00215{font-size:74.666773pt;}
.fse_c00215{font-size:85.319996pt;}
.y0_c00215{bottom:0.000000pt;}
.y1_c00215{bottom:0.000007pt;}
.y55_c00215{bottom:26.134367pt;}
.y4c_c00215{bottom:85.021884pt;}
.y4b_c00215{bottom:112.021883pt;}
.y4a_c00215{bottom:139.021882pt;}
.y49_c00215{bottom:166.021881pt;}
.y48_c00215{bottom:193.021880pt;}
.y47_c00215{bottom:220.021879pt;}
.y46_c00215{bottom:247.021878pt;}
.y45_c00215{bottom:274.021877pt;}
.y4d_c00215{bottom:302.536269pt;}
.y2_c00215{bottom:356.911319pt;}
.y10_c00215{bottom:438.514110pt;}
.y24_c00215{bottom:438.527530pt;}
.yf_c00215{bottom:438.981010pt;}
.y25_c00215{bottom:438.998500pt;}
.y38_c00215{bottom:439.075039pt;}
.y23_c00215{bottom:439.633885pt;}
.y39_c00215{bottom:439.815773pt;}
.y37_c00215{bottom:439.833627pt;}
.ye_c00215{bottom:439.928696pt;}
.y22_c00215{bottom:440.746134pt;}
.y36_c00215{bottom:440.753441pt;}
.yd_c00215{bottom:440.882672pt;}
.y26_c00215{bottom:441.146500pt;}
.y11_c00215{bottom:441.203087pt;}
.y3a_c00215{bottom:441.754655pt;}
.y21_c00215{bottom:442.208242pt;}
.yc_c00215{bottom:442.350726pt;}
.y35_c00215{bottom:442.711417pt;}
.y3b_c00215{bottom:442.991012pt;}
.y20_c00215{bottom:443.708917pt;}
.yb_c00215{bottom:443.856095pt;}
.y3c_c00215{bottom:444.500610pt;}
.y12_c00215{bottom:445.005059pt;}
.y1f_c00215{bottom:445.366906pt;}
.ya_c00215{bottom:445.518375pt;}
.y27_c00215{bottom:445.680561pt;}
.y34_c00215{bottom:446.081837pt;}
.y3d_c00215{bottom:446.671541pt;}
.y13_c00215{bottom:447.243955pt;}
.y3e_c00215{bottom:448.679507pt;}
.y28_c00215{bottom:448.905595pt;}
.y1e_c00215{bottom:449.504110pt;}
.y9_c00215{bottom:449.663899pt;}
.y33_c00215{bottom:450.942950pt;}
.y3f_c00215{bottom:451.585269pt;}
.y14_c00215{bottom:452.535104pt;}
.y29_c00215{bottom:453.913511pt;}
.y32_c00215{bottom:454.913253pt;}
.y1d_c00215{bottom:455.194216pt;}
.y8_c00215{bottom:455.361563pt;}
.y15_c00215{bottom:456.756200pt;}
.y40_c00215{bottom:459.049496pt;}
.y2a_c00215{bottom:459.831423pt;}
.y31_c00215{bottom:460.624152pt;}
.y1c_c00215{bottom:461.689454pt;}
.y7_c00215{bottom:461.769633pt;}
.y30_c00215{bottom:464.686263pt;}
.y6_c00215{bottom:464.844100pt;}
.y41_c00215{bottom:466.204075pt;}
.y16_c00215{bottom:467.230790pt;}
.y1b_c00215{bottom:468.055335pt;}
.y5_c00215{bottom:470.186605pt;}
.y2b_c00215{bottom:470.465221pt;}
.y2f_c00215{bottom:471.594820pt;}
.y1a_c00215{bottom:472.294648pt;}
.y2d_c00215{bottom:474.016102pt;}
.y53_c00215{bottom:474.632742pt;}
.y2e_c00215{bottom:475.055985pt;}
.y4_c00215{bottom:476.639415pt;}
.y19_c00215{bottom:477.781157pt;}
.y17_c00215{bottom:478.111290pt;}
.y2c_c00215{bottom:478.434608pt;}
.y43_c00215{bottom:479.977532pt;}
.y18_c00215{bottom:484.059803pt;}
.y3_c00215{bottom:485.114772pt;}
.y44_c00215{bottom:513.277371pt;}
.y54_c00215{bottom:568.082312pt;}
.y42_c00215{bottom:907.946545pt;}
.y51_c00215{bottom:1003.367331pt;}
.y4f_c00215{bottom:1010.154243pt;}
.y4e_c00215{bottom:1021.487593pt;}
.y52_c00215{bottom:1025.122028pt;}
.y50_c00215{bottom:1040.962470pt;}
.h12_c00215{height:29.796918pt;}
.h9_c00215{height:31.990003pt;}
.ha_c00215{height:31.990004pt;}
.hb_c00215{height:31.990006pt;}
.h13_c00215{height:32.907161pt;}
.h3_c00215{height:33.297513pt;}
.he_c00215{height:34.762880pt;}
.h7_c00215{height:39.206256pt;}
.h4_c00215{height:39.206257pt;}
.h8_c00215{height:39.206258pt;}
.h5_c00215{height:39.206259pt;}
.h6_c00215{height:39.206261pt;}
.hd_c00215{height:40.523198pt;}
.h16_c00215{height:46.147909pt;}
.h10_c00215{height:50.682132pt;}
.h15_c00215{height:51.178401pt;}
.hc_c00215{height:52.506913pt;}
.h11_c00215{height:56.729248pt;}
.hf_c00215{height:59.593748pt;}
.h14_c00215{height:70.547478pt;}
.h2_c00215{height:1159.999952pt;}
.h0_c00215{height:1159.999959pt;}
.h1_c00215{height:1160.000000pt;}
.w2_c00215{width:830.999965pt;}
.w0_c00215{width:831.000000pt;}
.w1_c00215{width:831.333333pt;}
.x0_c00215{left:0.000000pt;}
.x3a_c00215{left:78.337834pt;}
.x3b_c00215{left:95.315788pt;}
.x3c_c00215{left:96.735260pt;}
.x14_c00215{left:119.977634pt;}
.x13_c00215{left:121.465137pt;}
.x15_c00215{left:124.463353pt;}
.x16_c00215{left:128.774857pt;}
.x17_c00215{left:133.544468pt;}
.x18_c00215{left:135.991410pt;}
.x19_c00215{left:138.666862pt;}
.x1a_c00215{left:142.086856pt;}
.x24_c00215{left:143.505744pt;}
.x1b_c00215{left:145.156780pt;}
.x1c_c00215{left:152.521190pt;}
.x1d_c00215{left:159.871997pt;}
.x1e_c00215{left:167.366655pt;}
.x1f_c00215{left:174.821307pt;}
.x20_c00215{left:178.525632pt;}
.x21_c00215{left:182.577318pt;}
.x22_c00215{left:185.963463pt;}
.x23_c00215{left:188.262839pt;}
.x3_c00215{left:204.798568pt;}
.x2_c00215{left:206.697430pt;}
.x4_c00215{left:209.442955pt;}
.x5_c00215{left:213.744503pt;}
.x6_c00215{left:218.506891pt;}
.x7_c00215{left:220.950947pt;}
.x8_c00215{left:223.623762pt;}
.x9_c00215{left:227.041187pt;}
.x3e_c00215{left:228.108486pt;}
.xa_c00215{left:229.962704pt;}
.xb_c00215{left:233.906932pt;}
.xc_c00215{left:241.567426pt;}
.xd_c00215{left:252.092435pt;}
.xe_c00215{left:258.703382pt;}
.xf_c00215{left:261.720880pt;}
.x3d_c00215{left:262.769032pt;}
.x10_c00215{left:266.467148pt;}
.x11_c00215{left:269.480012pt;}
.x12_c00215{left:273.046051pt;}
.x25_c00215{left:290.708831pt;}
.x26_c00215{left:291.790874pt;}
.x27_c00215{left:293.053997pt;}
.x28_c00215{left:296.073752pt;}
.x29_c00215{left:298.940009pt;}
.x2a_c00215{left:304.168673pt;}
.x2b_c00215{left:309.668213pt;}
.x2c_c00215{left:314.728661pt;}
.x2d_c00215{left:317.759772pt;}
.x2e_c00215{left:324.788328pt;}
.x2f_c00215{left:331.889587pt;}
.x30_c00215{left:337.898220pt;}
.x31_c00215{left:340.582851pt;}
.x32_c00215{left:343.253275pt;}
.x33_c00215{left:346.273697pt;}
.x34_c00215{left:348.599989pt;}
.x35_c00215{left:351.546252pt;}
.x36_c00215{left:356.146534pt;}
.x37_c00215{left:358.639645pt;}
.x40_c00215{left:402.019318pt;}
.x38_c00215{left:413.241039pt;}
.x3f_c00215{left:590.616391pt;}
.x1_c00215{left:619.840748pt;}
.x39_c00215{left:652.036188pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51bac613c0f020590fefa5e7.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.171387;font-style:normal;font-weight:normal;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_07090372746decf14a5a2084.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.005371;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.006348;font-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_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);}
.v0_c00216{vertical-align:0.000000px;}
.ls1_c00216{letter-spacing:0.000000px;}
.ls0_c00216{letter-spacing:0.035133px;}
.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;}
}
.ws1_c00216{word-spacing:-19.320776px;}
.ws0_c00216{word-spacing:-18.703125px;}
.ws2_c00216{word-spacing:0.000000px;}
._2_c00216{width:1.207944px;}
._0_c00216{width:2.536605px;}
._6_c00216{width:3.896508px;}
._4_c00216{width:5.455054px;}
._9_c00216{width:6.492106px;}
._3_c00216{width:7.769530px;}
._5_c00216{width:10.072266px;}
._8_c00216{width:11.256802px;}
._7_c00216{width:12.630634px;}
._a_c00216{width:13.835287px;}
._b_c00216{width:27.061522px;}
._1_c00216{width:28.554633px;}
._c_c00216{width:30.740566px;}
._d_c00216{width:32.062500px;}
.fc1_c00216{color:rgb(67,91,56);}
.fc0_c00216{color:rgb(0,0,0);}
.fs0_c00216{font-size:71.999997px;}
.fs1_c00216{font-size:74.377724px;}
.y0_c00216{bottom:0.000000px;}
.y1_c00216{bottom:0.000008px;}
.y20_c00216{bottom:29.400983px;}
.y25_c00216{bottom:79.995057px;}
.y24_c00216{bottom:110.370055px;}
.y23_c00216{bottom:140.745054px;}
.y22_c00216{bottom:171.120053px;}
.y21_c00216{bottom:201.495052px;}
.y26_c00216{bottom:231.194870px;}
.y18_c00216{bottom:278.895048px;}
.y17_c00216{bottom:309.270047px;}
.y16_c00216{bottom:339.645046px;}
.y15_c00216{bottom:370.020045px;}
.y14_c00216{bottom:400.395043px;}
.y13_c00216{bottom:430.770042px;}
.y12_c00216{bottom:459.893645px;}
.y10_c00216{bottom:508.025193px;}
.yf_c00216{bottom:538.400192px;}
.ye_c00216{bottom:568.775190px;}
.yd_c00216{bottom:599.150189px;}
.yc_c00216{bottom:629.525188px;}
.yb_c00216{bottom:659.900187px;}
.ya_c00216{bottom:690.275185px;}
.y9_c00216{bottom:720.650184px;}
.y8_c00216{bottom:751.025183px;}
.y7_c00216{bottom:781.400181px;}
.y6_c00216{bottom:811.775180px;}
.y5_c00216{bottom:842.150179px;}
.y4_c00216{bottom:872.525178px;}
.y3_c00216{bottom:902.900176px;}
.y2_c00216{bottom:933.275175px;}
.y11_c00216{bottom:966.260703px;}
.y1e_c00216{bottom:1016.309226px;}
.y1d_c00216{bottom:1046.684224px;}
.y1c_c00216{bottom:1077.059223px;}
.y1b_c00216{bottom:1107.434222px;}
.y1a_c00216{bottom:1137.809221px;}
.y19_c00216{bottom:1168.184219px;}
.y1f_c00216{bottom:1199.908199px;}
.h5_c00216{height:55.089841px;}
.h4_c00216{height:55.160154px;}
.h6_c00216{height:56.981762px;}
.h3_c00216{height:67.042966px;}
.h2_c00216{height:1304.999946px;}
.h0_c00216{height:1304.999953px;}
.h1_c00216{height:1305.000000px;}
.w2_c00216{width:934.874961px;}
.w0_c00216{width:934.875000px;}
.w1_c00216{width:935.250000px;}
.x0_c00216{left:0.000000px;}
.x1_c00216{left:87.902647px;}
.x3_c00216{left:89.624675px;}
.x2_c00216{left:452.271732px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls1_c00216{letter-spacing:0.000000pt;}
.ls0_c00216{letter-spacing:0.031230pt;}
.ws1_c00216{word-spacing:-17.174023pt;}
.ws0_c00216{word-spacing:-16.625000pt;}
.ws2_c00216{word-spacing:0.000000pt;}
._2_c00216{width:1.073728pt;}
._0_c00216{width:2.254760pt;}
._6_c00216{width:3.463563pt;}
._4_c00216{width:4.848937pt;}
._9_c00216{width:5.770760pt;}
._3_c00216{width:6.906249pt;}
._5_c00216{width:8.953125pt;}
._8_c00216{width:10.006046pt;}
._7_c00216{width:11.227231pt;}
._a_c00216{width:12.298033pt;}
._b_c00216{width:24.054686pt;}
._1_c00216{width:25.381896pt;}
._c_c00216{width:27.324948pt;}
._d_c00216{width:28.500000pt;}
.fs0_c00216{font-size:63.999997pt;}
.fs1_c00216{font-size:66.113533pt;}
.y0_c00216{bottom:0.000000pt;}
.y1_c00216{bottom:0.000007pt;}
.y20_c00216{bottom:26.134207pt;}
.y25_c00216{bottom:71.106717pt;}
.y24_c00216{bottom:98.106716pt;}
.y23_c00216{bottom:125.106715pt;}
.y22_c00216{bottom:152.106714pt;}
.y21_c00216{bottom:179.106713pt;}
.y26_c00216{bottom:205.506551pt;}
.y18_c00216{bottom:247.906710pt;}
.y17_c00216{bottom:274.906709pt;}
.y16_c00216{bottom:301.906707pt;}
.y15_c00216{bottom:328.906706pt;}
.y14_c00216{bottom:355.906705pt;}
.y13_c00216{bottom:382.906704pt;}
.y12_c00216{bottom:408.794351pt;}
.y10_c00216{bottom:451.577949pt;}
.yf_c00216{bottom:478.577948pt;}
.ye_c00216{bottom:505.577947pt;}
.yd_c00216{bottom:532.577946pt;}
.yc_c00216{bottom:559.577945pt;}
.yb_c00216{bottom:586.577944pt;}
.ya_c00216{bottom:613.577942pt;}
.y9_c00216{bottom:640.577941pt;}
.y8_c00216{bottom:667.577940pt;}
.y7_c00216{bottom:694.577939pt;}
.y6_c00216{bottom:721.577938pt;}
.y5_c00216{bottom:748.577937pt;}
.y4_c00216{bottom:775.577936pt;}
.y3_c00216{bottom:802.577935pt;}
.y2_c00216{bottom:829.577933pt;}
.y11_c00216{bottom:858.898403pt;}
.y1e_c00216{bottom:903.385978pt;}
.y1d_c00216{bottom:930.385977pt;}
.y1c_c00216{bottom:957.385976pt;}
.y1b_c00216{bottom:984.385975pt;}
.y1a_c00216{bottom:1011.385974pt;}
.y19_c00216{bottom:1038.385973pt;}
.y1f_c00216{bottom:1066.585066pt;}
.h5_c00216{height:48.968748pt;}
.h4_c00216{height:49.031248pt;}
.h6_c00216{height:50.650455pt;}
.h3_c00216{height:59.593748pt;}
.h2_c00216{height:1159.999952pt;}
.h0_c00216{height:1159.999959pt;}
.h1_c00216{height:1160.000000pt;}
.w2_c00216{width:830.999965pt;}
.w0_c00216{width:831.000000pt;}
.w1_c00216{width:831.333333pt;}
.x0_c00216{left:0.000000pt;}
.x1_c00216{left:78.135686pt;}
.x3_c00216{left:79.666377pt;}
.x2_c00216{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:0.734863;font-style:normal;font-weight:normal;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_7d98e8f33384d84cbe05e61b.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:0.743000;font-style:normal;font-weight: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_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;line-height:0.940000;font-style:normal;font-weight: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_c00217;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff6_c00217{font-family:ff6_c00217;line-height:1.006348;font-style:normal;font-weight: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_c00217;src:url('chunks/assets/font_99c9063d6b3debb1c4133855.woff2')format("woff");}.ff7_c00217{font-family:ff7_c00217;line-height:1.000000;font-style:normal;font-weight: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_c00217;src:url('chunks/assets/font_b904bf096fb16339c63f2bf9.woff2')format("woff");}.ff8_c00217{font-family:ff8_c00217;line-height:1.171387;font-style:normal;font-weight: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_c00217;src:url('chunks/assets/font_c94aaf02ae2503d2a518e176.woff2')format("woff");}.ff9_c00217{font-family:ff9_c00217;line-height:1.000000;font-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_c00217{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00217{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00217{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00217{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00217{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00217{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00217{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00217{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00217{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00217{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00217{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00217{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00217{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00217{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00217{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00217{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00217{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00217{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00217{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00217{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00217{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00217{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00217{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00217{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00217{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00217{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00217{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00217{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00217{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00217{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00217{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00217{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00217{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00217{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00217{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00217{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00217{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00217{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00217{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00217{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00217{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00217{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00217{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00217{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00217{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00217{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00217{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00217{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00217{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00217{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00217{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00217{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00217{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00217{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00217{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00217{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00217{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00217{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00217{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00217{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00217{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00217{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00217{vertical-align:0.000000px;}
.v3_c00217{vertical-align:1.279584px;}
.v1_c00217{vertical-align:2.774592px;}
.v2_c00217{vertical-align:6.750000px;}
.ls0_c00217{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00217{word-spacing:-41.689573px;}
.ws1_c00217{word-spacing:-15.171263px;}
.ws4_c00217{word-spacing:-0.055755px;}
.ws5_c00217{word-spacing:0.000000px;}
.ws3_c00217{word-spacing:288.058683px;}
.ws0_c00217{word-spacing:662.351128px;}
._0_c00217{width:4.289061px;}
._3_c00217{width:5.435768px;}
._2_c00217{width:6.443135px;}
._1_c00217{width:11.285155px;}
._4_c00217{width:49.565188px;}
.fc4_c00217{color:transparent;}
.fc3_c00217{color:rgb(67,91,56);}
.fc2_c00217{color:rgb(255,255,255);}
.fc1_c00217{color:rgb(0,0,0);}
.fc0_c00217{color:rgb(9,71,81);}
.fsc_c00217{font-size:36.000051px;}
.fsd_c00217{font-size:39.757786px;}
.fs8_c00217{font-size:41.999830px;}
.fs4_c00217{font-size:47.368230px;}
.fs1_c00217{font-size:47.368231px;}
.fs5_c00217{font-size:47.368232px;}
.fs2_c00217{font-size:47.368233px;}
.fs3_c00217{font-size:47.368235px;}
.fs0_c00217{font-size:51.661596px;}
.fs10_c00217{font-size:55.754999px;}
.fs7_c00217{font-size:59.984997px;}
.fs9_c00217{font-size:71.999997px;}
.fsa_c00217{font-size:74.424240px;}
.fs6_c00217{font-size:77.011488px;}
.fsf_c00217{font-size:77.984997px;}
.fsb_c00217{font-size:84.000120px;}
.fse_c00217{font-size:95.984996px;}
.y0_c00217{bottom:0.000000px;}
.y1_c00217{bottom:0.000008px;}
.y52_c00217{bottom:29.401163px;}
.y49_c00217{bottom:176.995541px;}
.y48_c00217{bottom:207.370539px;}
.y47_c00217{bottom:237.745538px;}
.y46_c00217{bottom:268.120537px;}
.y45_c00217{bottom:298.495536px;}
.y4a_c00217{bottom:330.574335px;}
.y2_c00217{bottom:401.525233px;}
.y10_c00217{bottom:493.328193px;}
.y24_c00217{bottom:493.343399px;}
.yf_c00217{bottom:493.853709px;}
.y25_c00217{bottom:493.873421px;}
.y38_c00217{bottom:493.959311px;}
.y23_c00217{bottom:494.588120px;}
.y39_c00217{bottom:494.792564px;}
.y37_c00217{bottom:494.812830px;}
.ye_c00217{bottom:494.919675px;}
.y22_c00217{bottom:495.839509px;}
.y36_c00217{bottom:495.847693px;}
.yd_c00217{bottom:495.993006px;}
.y26_c00217{bottom:496.289992px;}
.y11_c00217{bottom:496.353473px;}
.y3a_c00217{bottom:496.974167px;}
.y21_c00217{bottom:497.484380px;}
.yc_c00217{bottom:497.644566px;}
.y35_c00217{bottom:498.050345px;}
.y3b_c00217{bottom:498.364816px;}
.y20_c00217{bottom:499.172711px;}
.yb_c00217{bottom:499.338107px;}
.y3c_c00217{bottom:500.063439px;}
.y12_c00217{bottom:500.630691px;}
.y1f_c00217{bottom:501.037625px;}
.ya_c00217{bottom:501.208280px;}
.y27_c00217{bottom:501.390523px;}
.y34_c00217{bottom:501.841887px;}
.y3d_c00217{bottom:502.505484px;}
.y13_c00217{bottom:503.149521px;}
.y3e_c00217{bottom:504.764625px;}
.y28_c00217{bottom:505.019047px;}
.y1e_c00217{bottom:505.692124px;}
.y9_c00217{bottom:505.871886px;}
.y33_c00217{bottom:507.310818px;}
.y3f_c00217{bottom:508.033427px;}
.y14_c00217{bottom:509.101920px;}
.y29_c00217{bottom:510.652700px;}
.y32_c00217{bottom:511.777229px;}
.y1d_c00217{bottom:512.093421px;}
.y8_c00217{bottom:512.281650px;}
.y15_c00217{bottom:513.850725px;}
.y40_c00217{bottom:516.430791px;}
.y2a_c00217{bottom:517.310242px;}
.y31_c00217{bottom:518.201920px;}
.y1c_c00217{bottom:519.400744px;}
.y7_c00217{bottom:519.490765px;}
.y30_c00217{bottom:522.772118px;}
.y6_c00217{bottom:522.949612px;}
.y41_c00217{bottom:524.479585px;}
.y16_c00217{bottom:525.634639px;}
.y1b_c00217{bottom:526.562252px;}
.y5_c00217{bottom:528.959751px;}
.y2b_c00217{bottom:529.273374px;}
.y2f_c00217{bottom:530.544173px;}
.y1a_c00217{bottom:531.331731px;}
.y2d_c00217{bottom:533.268367px;}
.y50_c00217{bottom:533.962015px;}
.y2e_c00217{bottom:534.438127px;}
.y4_c00217{bottom:536.219342px;}
.y19_c00217{bottom:537.503874px;}
.y17_c00217{bottom:537.875309px;}
.y2c_c00217{bottom:538.238862px;}
.y43_c00217{bottom:539.974832px;}
.y18_c00217{bottom:544.567530px;}
.y3_c00217{bottom:545.754118px;}
.y44_c00217{bottom:577.436970px;}
.y51_c00217{bottom:639.092421px;}
.y42_c00217{bottom:1021.439841px;}
.y4e_c00217{bottom:1128.788391px;}
.y4c_c00217{bottom:1136.423577px;}
.y4b_c00217{bottom:1149.173596px;}
.y4f_c00217{bottom:1153.262238px;}
.y4d_c00217{bottom:1171.082869px;}
.h12_c00217{height:33.521532px;}
.h9_c00217{height:35.988753px;}
.ha_c00217{height:35.988755px;}
.hb_c00217{height:35.988756px;}
.h13_c00217{height:37.020556px;}
.h3_c00217{height:37.459702px;}
.he_c00217{height:39.108240px;}
.h7_c00217{height:44.107038px;}
.h4_c00217{height:44.107039px;}
.h8_c00217{height:44.107040px;}
.h5_c00217{height:44.107042px;}
.h6_c00217{height:44.107043px;}
.hd_c00217{height:45.588598px;}
.h16_c00217{height:51.916398px;}
.h10_c00217{height:57.017399px;}
.h15_c00217{height:57.574982px;}
.hc_c00217{height:59.069990px;}
.h11_c00217{height:63.820404px;}
.hf_c00217{height:67.042966px;}
.h14_c00217{height:79.365912px;}
.h2_c00217{height:1304.999946px;}
.h0_c00217{height:1304.999953px;}
.h1_c00217{height:1305.000000px;}
.w2_c00217{width:934.874961px;}
.w0_c00217{width:934.875000px;}
.w1_c00217{width:935.250000px;}
.x0_c00217{left:0.000000px;}
.x3a_c00217{left:88.130063px;}
.x3b_c00217{left:107.230262px;}
.x3c_c00217{left:108.827167px;}
.x14_c00217{left:134.974838px;}
.x13_c00217{left:136.648279px;}
.x15_c00217{left:140.021272px;}
.x16_c00217{left:144.871714px;}
.x17_c00217{left:150.237526px;}
.x18_c00217{left:152.990336px;}
.x19_c00217{left:156.000220px;}
.x1a_c00217{left:159.847713px;}
.x24_c00217{left:161.443962px;}
.x1b_c00217{left:163.301377px;}
.x1c_c00217{left:171.586339px;}
.x1d_c00217{left:179.855997px;}
.x1e_c00217{left:188.287487px;}
.x1f_c00217{left:196.673970px;}
.x20_c00217{left:200.841336px;}
.x21_c00217{left:205.399483px;}
.x22_c00217{left:209.208896px;}
.x23_c00217{left:211.795693px;}
.x3_c00217{left:230.398389px;}
.x2_c00217{left:232.534609px;}
.x4_c00217{left:235.623324px;}
.x5_c00217{left:240.462566px;}
.x6_c00217{left:245.820252px;}
.x7_c00217{left:248.569815px;}
.x8_c00217{left:251.576732px;}
.x9_c00217{left:255.421336px;}
.x3e_c00217{left:256.622047px;}
.xa_c00217{left:258.708042px;}
.xb_c00217{left:263.145298px;}
.xc_c00217{left:271.763354px;}
.xd_c00217{left:283.603990px;}
.xe_c00217{left:291.041304px;}
.xf_c00217{left:294.435991px;}
.x3d_c00217{left:295.615161px;}
.x10_c00217{left:299.775542px;}
.x11_c00217{left:303.165014px;}
.x12_c00217{left:307.176807px;}
.x25_c00217{left:327.047435px;}
.x26_c00217{left:328.264734px;}
.x27_c00217{left:329.685747px;}
.x28_c00217{left:333.082971px;}
.x29_c00217{left:336.307511px;}
.x2a_c00217{left:342.189757px;}
.x2b_c00217{left:348.376740px;}
.x2c_c00217{left:354.069743px;}
.x2d_c00217{left:357.479743px;}
.x2e_c00217{left:365.386869px;}
.x2f_c00217{left:373.375785px;}
.x30_c00217{left:380.135498px;}
.x31_c00217{left:383.155707px;}
.x32_c00217{left:386.159935px;}
.x33_c00217{left:389.557910px;}
.x34_c00217{left:392.174988px;}
.x35_c00217{left:395.489533px;}
.x36_c00217{left:400.664851px;}
.x37_c00217{left:403.469600px;}
.x40_c00217{left:452.271732px;}
.x38_c00217{left:464.896169px;}
.x3f_c00217{left:664.443440px;}
.x1_c00217{left:697.320842px;}
.x39_c00217{left:733.540711px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.v3_c00217{vertical-align:1.137408pt;}
.v1_c00217{vertical-align:2.466304pt;}
.v2_c00217{vertical-align:6.000000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws2_c00217{word-spacing:-37.057398pt;}
.ws1_c00217{word-spacing:-13.485567pt;}
.ws4_c00217{word-spacing:-0.049560pt;}
.ws5_c00217{word-spacing:0.000000pt;}
.ws3_c00217{word-spacing:256.052163pt;}
.ws0_c00217{word-spacing:588.756558pt;}
._0_c00217{width:3.812499pt;}
._3_c00217{width:4.831794pt;}
._2_c00217{width:5.727231pt;}
._1_c00217{width:10.031249pt;}
._4_c00217{width:44.057945pt;}
.fsc_c00217{font-size:32.000046pt;}
.fsd_c00217{font-size:35.340254pt;}
.fs8_c00217{font-size:37.333182pt;}
.fs4_c00217{font-size:42.105093pt;}
.fs1_c00217{font-size:42.105094pt;}
.fs5_c00217{font-size:42.105095pt;}
.fs2_c00217{font-size:42.105096pt;}
.fs3_c00217{font-size:42.105098pt;}
.fs0_c00217{font-size:45.921418pt;}
.fs10_c00217{font-size:49.559999pt;}
.fs7_c00217{font-size:53.319997pt;}
.fs9_c00217{font-size:63.999997pt;}
.fsa_c00217{font-size:66.154880pt;}
.fs6_c00217{font-size:68.454656pt;}
.fsf_c00217{font-size:69.319997pt;}
.fsb_c00217{font-size:74.666773pt;}
.fse_c00217{font-size:85.319996pt;}
.y0_c00217{bottom:0.000000pt;}
.y1_c00217{bottom:0.000007pt;}
.y52_c00217{bottom:26.134367pt;}
.y49_c00217{bottom:157.329369pt;}
.y48_c00217{bottom:184.329368pt;}
.y47_c00217{bottom:211.329367pt;}
.y46_c00217{bottom:238.329366pt;}
.y45_c00217{bottom:265.329365pt;}
.y4a_c00217{bottom:293.843853pt;}
.y2_c00217{bottom:356.911319pt;}
.y10_c00217{bottom:438.513950pt;}
.y24_c00217{bottom:438.527466pt;}
.yf_c00217{bottom:438.981074pt;}
.y25_c00217{bottom:438.998596pt;}
.y38_c00217{bottom:439.074943pt;}
.y23_c00217{bottom:439.633885pt;}
.y39_c00217{bottom:439.815613pt;}
.y37_c00217{bottom:439.833627pt;}
.ye_c00217{bottom:439.928600pt;}
.y22_c00217{bottom:440.746230pt;}
.y36_c00217{bottom:440.753505pt;}
.yd_c00217{bottom:440.882672pt;}
.y26_c00217{bottom:441.146660pt;}
.y11_c00217{bottom:441.203087pt;}
.y3a_c00217{bottom:441.754815pt;}
.y21_c00217{bottom:442.208338pt;}
.yc_c00217{bottom:442.350726pt;}
.y35_c00217{bottom:442.711417pt;}
.y3b_c00217{bottom:442.990948pt;}
.y20_c00217{bottom:443.709077pt;}
.yb_c00217{bottom:443.856095pt;}
.y3c_c00217{bottom:444.500834pt;}
.y12_c00217{bottom:445.005059pt;}
.y1f_c00217{bottom:445.366778pt;}
.ya_c00217{bottom:445.518471pt;}
.y27_c00217{bottom:445.680465pt;}
.y34_c00217{bottom:446.081677pt;}
.y3d_c00217{bottom:446.671541pt;}
.y13_c00217{bottom:447.244019pt;}
.y3e_c00217{bottom:448.679667pt;}
.y28_c00217{bottom:448.905819pt;}
.y1e_c00217{bottom:449.504110pt;}
.y9_c00217{bottom:449.663899pt;}
.y33_c00217{bottom:450.942950pt;}
.y3f_c00217{bottom:451.585269pt;}
.y14_c00217{bottom:452.535040pt;}
.y29_c00217{bottom:453.913511pt;}
.y32_c00217{bottom:454.913093pt;}
.y1d_c00217{bottom:455.194152pt;}
.y8_c00217{bottom:455.361467pt;}
.y15_c00217{bottom:456.756200pt;}
.y40_c00217{bottom:459.049592pt;}
.y2a_c00217{bottom:459.831327pt;}
.y31_c00217{bottom:460.623928pt;}
.y1c_c00217{bottom:461.689550pt;}
.y7_c00217{bottom:461.769569pt;}
.y30_c00217{bottom:464.686327pt;}
.y6_c00217{bottom:464.844100pt;}
.y41_c00217{bottom:466.204075pt;}
.y16_c00217{bottom:467.230790pt;}
.y1b_c00217{bottom:468.055335pt;}
.y5_c00217{bottom:470.186445pt;}
.y2b_c00217{bottom:470.465221pt;}
.y2f_c00217{bottom:471.594820pt;}
.y1a_c00217{bottom:472.294872pt;}
.y2d_c00217{bottom:474.016326pt;}
.y50_c00217{bottom:474.632902pt;}
.y2e_c00217{bottom:475.056113pt;}
.y4_c00217{bottom:476.639415pt;}
.y19_c00217{bottom:477.781221pt;}
.y17_c00217{bottom:478.111386pt;}
.y2c_c00217{bottom:478.434544pt;}
.y43_c00217{bottom:479.977628pt;}
.y18_c00217{bottom:484.060027pt;}
.y3_c00217{bottom:485.114772pt;}
.y44_c00217{bottom:513.277307pt;}
.y51_c00217{bottom:568.082152pt;}
.y42_c00217{bottom:907.946525pt;}
.y4e_c00217{bottom:1003.367459pt;}
.y4c_c00217{bottom:1010.154291pt;}
.y4b_c00217{bottom:1021.487641pt;}
.y4f_c00217{bottom:1025.121989pt;}
.y4d_c00217{bottom:1040.962550pt;}
.h12_c00217{height:29.796918pt;}
.h9_c00217{height:31.990003pt;}
.ha_c00217{height:31.990004pt;}
.hb_c00217{height:31.990006pt;}
.h13_c00217{height:32.907161pt;}
.h3_c00217{height:33.297513pt;}
.he_c00217{height:34.762880pt;}
.h7_c00217{height:39.206256pt;}
.h4_c00217{height:39.206257pt;}
.h8_c00217{height:39.206258pt;}
.h5_c00217{height:39.206259pt;}
.h6_c00217{height:39.206261pt;}
.hd_c00217{height:40.523198pt;}
.h16_c00217{height:46.147909pt;}
.h10_c00217{height:50.682132pt;}
.h15_c00217{height:51.177761pt;}
.hc_c00217{height:52.506657pt;}
.h11_c00217{height:56.729248pt;}
.hf_c00217{height:59.593748pt;}
.h14_c00217{height:70.547478pt;}
.h2_c00217{height:1159.999952pt;}
.h0_c00217{height:1159.999959pt;}
.h1_c00217{height:1160.000000pt;}
.w2_c00217{width:830.999965pt;}
.w0_c00217{width:831.000000pt;}
.w1_c00217{width:831.333333pt;}
.x0_c00217{left:0.000000pt;}
.x3a_c00217{left:78.337834pt;}
.x3b_c00217{left:95.315788pt;}
.x3c_c00217{left:96.735260pt;}
.x14_c00217{left:119.977634pt;}
.x13_c00217{left:121.465137pt;}
.x15_c00217{left:124.463353pt;}
.x16_c00217{left:128.774857pt;}
.x17_c00217{left:133.544468pt;}
.x18_c00217{left:135.991410pt;}
.x19_c00217{left:138.666862pt;}
.x1a_c00217{left:142.086856pt;}
.x24_c00217{left:143.505744pt;}
.x1b_c00217{left:145.156780pt;}
.x1c_c00217{left:152.521190pt;}
.x1d_c00217{left:159.871997pt;}
.x1e_c00217{left:167.366655pt;}
.x1f_c00217{left:174.821307pt;}
.x20_c00217{left:178.525632pt;}
.x21_c00217{left:182.577318pt;}
.x22_c00217{left:185.963463pt;}
.x23_c00217{left:188.262839pt;}
.x3_c00217{left:204.798568pt;}
.x2_c00217{left:206.697430pt;}
.x4_c00217{left:209.442955pt;}
.x5_c00217{left:213.744503pt;}
.x6_c00217{left:218.506891pt;}
.x7_c00217{left:220.950947pt;}
.x8_c00217{left:223.623762pt;}
.x9_c00217{left:227.041187pt;}
.x3e_c00217{left:228.108486pt;}
.xa_c00217{left:229.962704pt;}
.xb_c00217{left:233.906932pt;}
.xc_c00217{left:241.567426pt;}
.xd_c00217{left:252.092435pt;}
.xe_c00217{left:258.703382pt;}
.xf_c00217{left:261.720880pt;}
.x3d_c00217{left:262.769032pt;}
.x10_c00217{left:266.467148pt;}
.x11_c00217{left:269.480012pt;}
.x12_c00217{left:273.046051pt;}
.x25_c00217{left:290.708831pt;}
.x26_c00217{left:291.790874pt;}
.x27_c00217{left:293.053997pt;}
.x28_c00217{left:296.073752pt;}
.x29_c00217{left:298.940009pt;}
.x2a_c00217{left:304.168673pt;}
.x2b_c00217{left:309.668213pt;}
.x2c_c00217{left:314.728661pt;}
.x2d_c00217{left:317.759772pt;}
.x2e_c00217{left:324.788328pt;}
.x2f_c00217{left:331.889587pt;}
.x30_c00217{left:337.898220pt;}
.x31_c00217{left:340.582851pt;}
.x32_c00217{left:343.253275pt;}
.x33_c00217{left:346.273697pt;}
.x34_c00217{left:348.599989pt;}
.x35_c00217{left:351.546252pt;}
.x36_c00217{left:356.146534pt;}
.x37_c00217{left:358.639645pt;}
.x40_c00217{left:402.019318pt;}
.x38_c00217{left:413.241039pt;}
.x3f_c00217{left:590.616391pt;}
.x1_c00217{left:619.840748pt;}
.x39_c00217{left:652.036188pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_918a8ef539d7c35718d89d7c.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.171387;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.006348;font-style:normal;font-weight:normal;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_ebe088afc0a5cf52e47d99a4.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.005371;font-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_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;}
.ls0_c00218{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00218{word-spacing:-19.320776px;}
.ws0_c00218{word-spacing:-18.703125px;}
.ws2_c00218{word-spacing:0.000000px;}
._4_c00218{width:1.898437px;}
._10_c00218{width:3.353302px;}
._3_c00218{width:4.426732px;}
._0_c00218{width:5.608726px;}
._8_c00218{width:6.627774px;}
._2_c00218{width:8.361280px;}
._e_c00218{width:9.385978px;}
._1_c00218{width:10.661885px;}
._d_c00218{width:12.480467px;}
._f_c00218{width:14.198044px;}
._11_c00218{width:15.341027px;}
._6_c00218{width:16.529822px;}
._7_c00218{width:21.818504px;}
._b_c00218{width:22.957029px;}
._5_c00218{width:27.333981px;}
._12_c00218{width:32.062500px;}
._9_c00218{width:40.460928px;}
._c_c00218{width:42.635738px;}
._a_c00218{width:51.078116px;}
.fc1_c00218{color:rgb(67,91,56);}
.fc0_c00218{color:rgb(0,0,0);}
.fs0_c00218{font-size:71.999997px;}
.fs1_c00218{font-size:74.377724px;}
.y0_c00218{bottom:0.000000px;}
.y1_c00218{bottom:0.000008px;}
.y21_c00218{bottom:29.401163px;}
.y26_c00218{bottom:97.464020px;}
.y25_c00218{bottom:125.589019px;}
.y24_c00218{bottom:153.714018px;}
.y23_c00218{bottom:181.839016px;}
.y22_c00218{bottom:209.964015px;}
.y27_c00218{bottom:239.438654px;}
.y19_c00218{bottom:286.914012px;}
.y18_c00218{bottom:315.039011px;}
.y17_c00218{bottom:343.164010px;}
.y16_c00218{bottom:371.289009px;}
.y15_c00218{bottom:399.414007px;}
.y14_c00218{bottom:427.539006px;}
.y13_c00218{bottom:453.629861px;}
.y11_c00218{bottom:505.155917px;}
.y10_c00218{bottom:535.530916px;}
.yf_c00218{bottom:565.905915px;}
.ye_c00218{bottom:596.280914px;}
.yd_c00218{bottom:626.655912px;}
.yc_c00218{bottom:657.030911px;}
.yb_c00218{bottom:687.405910px;}
.ya_c00218{bottom:717.780908px;}
.y9_c00218{bottom:748.155907px;}
.y8_c00218{bottom:778.530906px;}
.y7_c00218{bottom:808.905905px;}
.y6_c00218{bottom:839.280903px;}
.y5_c00218{bottom:869.655902px;}
.y4_c00218{bottom:900.030901px;}
.y3_c00218{bottom:930.405900px;}
.y2_c00218{bottom:960.780898px;}
.y12_c00218{bottom:987.287301px;}
.y1f_c00218{bottom:1030.262299px;}
.y1e_c00218{bottom:1058.387298px;}
.y1d_c00218{bottom:1086.512297px;}
.y1c_c00218{bottom:1114.637296px;}
.y1b_c00218{bottom:1142.762295px;}
.y1a_c00218{bottom:1170.887294px;}
.y20_c00218{bottom:1199.908199px;}
.h4_c00218{height:55.160154px;}
.h5_c00218{height:56.981762px;}
.h3_c00218{height:67.042966px;}
.h2_c00218{height:1304.999946px;}
.h0_c00218{height:1304.999953px;}
.h1_c00218{height:1305.000000px;}
.w2_c00218{width:934.874961px;}
.w0_c00218{width:934.875000px;}
.w1_c00218{width:935.250000px;}
.x0_c00218{left:0.000000px;}
.x2_c00218{left:87.902647px;}
.x1_c00218{left:89.624675px;}
.x3_c00218{left:452.271732px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws1_c00218{word-spacing:-17.174023pt;}
.ws0_c00218{word-spacing:-16.625000pt;}
.ws2_c00218{word-spacing:0.000000pt;}
._4_c00218{width:1.687499pt;}
._10_c00218{width:2.980713pt;}
._3_c00218{width:3.934872pt;}
._0_c00218{width:4.985535pt;}
._8_c00218{width:5.891355pt;}
._2_c00218{width:7.432249pt;}
._e_c00218{width:8.343091pt;}
._1_c00218{width:9.477231pt;}
._d_c00218{width:11.093749pt;}
._f_c00218{width:12.620483pt;}
._11_c00218{width:13.636469pt;}
._6_c00218{width:14.693175pt;}
._7_c00218{width:19.394226pt;}
._b_c00218{width:20.406248pt;}
._5_c00218{width:24.296872pt;}
._12_c00218{width:28.500000pt;}
._9_c00218{width:35.965269pt;}
._c_c00218{width:37.898434pt;}
._a_c00218{width:45.402770pt;}
.fs0_c00218{font-size:63.999997pt;}
.fs1_c00218{font-size:66.113533pt;}
.y0_c00218{bottom:0.000000pt;}
.y1_c00218{bottom:0.000007pt;}
.y21_c00218{bottom:26.134367pt;}
.y26_c00218{bottom:86.634684pt;}
.y25_c00218{bottom:111.634683pt;}
.y24_c00218{bottom:136.634682pt;}
.y23_c00218{bottom:161.634681pt;}
.y22_c00218{bottom:186.634680pt;}
.y27_c00218{bottom:212.834359pt;}
.y19_c00218{bottom:255.034677pt;}
.y18_c00218{bottom:280.034676pt;}
.y17_c00218{bottom:305.034675pt;}
.y16_c00218{bottom:330.034674pt;}
.y15_c00218{bottom:355.034673pt;}
.y14_c00218{bottom:380.034672pt;}
.y13_c00218{bottom:403.226543pt;}
.y11_c00218{bottom:449.027482pt;}
.y10_c00218{bottom:476.027481pt;}
.yf_c00218{bottom:503.027480pt;}
.ye_c00218{bottom:530.027479pt;}
.yd_c00218{bottom:557.027478pt;}
.yc_c00218{bottom:584.027476pt;}
.yb_c00218{bottom:611.027475pt;}
.ya_c00218{bottom:638.027474pt;}
.y9_c00218{bottom:665.027473pt;}
.y8_c00218{bottom:692.027472pt;}
.y7_c00218{bottom:719.027471pt;}
.y6_c00218{bottom:746.027470pt;}
.y5_c00218{bottom:773.027469pt;}
.y4_c00218{bottom:800.027467pt;}
.y3_c00218{bottom:827.027466pt;}
.y2_c00218{bottom:854.027465pt;}
.y12_c00218{bottom:877.588712pt;}
.y1f_c00218{bottom:915.788711pt;}
.y1e_c00218{bottom:940.788710pt;}
.y1d_c00218{bottom:965.788709pt;}
.y1c_c00218{bottom:990.788708pt;}
.y1b_c00218{bottom:1015.788706pt;}
.y1a_c00218{bottom:1040.788705pt;}
.y20_c00218{bottom:1066.585066pt;}
.h4_c00218{height:49.031248pt;}
.h5_c00218{height:50.650455pt;}
.h3_c00218{height:59.593748pt;}
.h2_c00218{height:1159.999952pt;}
.h0_c00218{height:1159.999959pt;}
.h1_c00218{height:1160.000000pt;}
.w2_c00218{width:830.999965pt;}
.w0_c00218{width:831.000000pt;}
.w1_c00218{width:831.333333pt;}
.x0_c00218{left:0.000000pt;}
.x2_c00218{left:78.135686pt;}
.x1_c00218{left:79.666377pt;}
.x3_c00218{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:0.734863;font-style:normal;font-weight:normal;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_60daa97d97bae2293889b596.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:0.743000;font-style:normal;font-weight: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_c00219;src:url('chunks/assets/font_3a99395577188d18b58c3413.woff2')format("woff");}.ff5_c00219{font-family:ff5_c00219;line-height:1.005371;font-style:normal;font-weight: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_c00219;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff6_c00219{font-family:ff6_c00219;line-height:1.006348;font-style:normal;font-weight: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_c00219;src:url('chunks/assets/font_99c9063d6b3debb1c4133855.woff2')format("woff");}.ff7_c00219{font-family:ff7_c00219;line-height:1.000000;font-style:normal;font-weight: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_c00219;src:url('chunks/assets/font_b35400d2beff99b7bb98f6a5.woff2')format("woff");}.ff8_c00219{font-family:ff8_c00219;line-height:1.171387;font-style:normal;font-weight: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_c00219;src:url('chunks/assets/font_0a193a8a25ae2ba76477c014.woff2')format("woff");}.ff9_c00219{font-family:ff9_c00219;line-height:1.000000;font-style:normal;font-weight: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_c00219;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00219{font-family:ffa_c00219;line-height:0.940000;font-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_c00219{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00219{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00219{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00219{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00219{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00219{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00219{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00219{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00219{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00219{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00219{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00219{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00219{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00219{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00219{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00219{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00219{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00219{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00219{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00219{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00219{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00219{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00219{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00219{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00219{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00219{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00219{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00219{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00219{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00219{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00219{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00219{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00219{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00219{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00219{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00219{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00219{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00219{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00219{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00219{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00219{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00219{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00219{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00219{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00219{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00219{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00219{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00219{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00219{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00219{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00219{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00219{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00219{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00219{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00219{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00219{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00219{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00219{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00219{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00219{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00219{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00219{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00219{vertical-align:0.000000px;}
.v1_c00219{vertical-align:1.279728px;}
.ls0_c00219{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00219{word-spacing:-41.689573px;}
.ws0_c00219{word-spacing:-15.171263px;}
.ws2_c00219{word-spacing:-0.055755px;}
.ws4_c00219{word-spacing:0.000000px;}
.ws1_c00219{word-spacing:288.058683px;}
._3_c00219{width:1.084761px;}
._4_c00219{width:4.892552px;}
._5_c00219{width:5.939834px;}
._1_c00219{width:7.075948px;}
._0_c00219{width:17.648422px;}
._2_c00219{width:39.929670px;}
.fc4_c00219{color:transparent;}
.fc3_c00219{color:rgb(67,91,56);}
.fc2_c00219{color:rgb(255,255,255);}
.fc1_c00219{color:rgb(0,0,0);}
.fc0_c00219{color:rgb(9,71,81);}
.fsb_c00219{font-size:36.000051px;}
.fsc_c00219{font-size:39.757786px;}
.fs7_c00219{font-size:41.999830px;}
.fs4_c00219{font-size:47.368230px;}
.fs1_c00219{font-size:47.368231px;}
.fs5_c00219{font-size:47.368232px;}
.fs2_c00219{font-size:47.368233px;}
.fs3_c00219{font-size:47.368235px;}
.fs0_c00219{font-size:51.661596px;}
.fse_c00219{font-size:55.754999px;}
.fsf_c00219{font-size:59.984997px;}
.fs8_c00219{font-size:71.999997px;}
.fs9_c00219{font-size:74.424240px;}
.fs6_c00219{font-size:77.011488px;}
.fsa_c00219{font-size:84.000120px;}
.fsd_c00219{font-size:95.984996px;}
.y0_c00219{bottom:0.000000px;}
.y1_c00219{bottom:0.000008px;}
.y54_c00219{bottom:29.401163px;}
.y4c_c00219{bottom:122.423215px;}
.y4b_c00219{bottom:152.798214px;}
.y4a_c00219{bottom:183.173212px;}
.y49_c00219{bottom:213.548211px;}
.y48_c00219{bottom:243.923210px;}
.y47_c00219{bottom:274.298209px;}
.y46_c00219{bottom:304.673207px;}
.y4d_c00219{bottom:338.753786px;}
.y2_c00219{bottom:401.525233px;}
.y2e_c00219{bottom:486.888550px;}
.y10_c00219{bottom:493.328193px;}
.y24_c00219{bottom:493.343399px;}
.yf_c00219{bottom:493.853349px;}
.y25_c00219{bottom:493.873061px;}
.y3c_c00219{bottom:493.958987px;}
.y23_c00219{bottom:494.588444px;}
.y3d_c00219{bottom:494.792564px;}
.y3b_c00219{bottom:494.812470px;}
.ye_c00219{bottom:494.919675px;}
.y22_c00219{bottom:495.839509px;}
.y3a_c00219{bottom:495.847333px;}
.yd_c00219{bottom:495.993006px;}
.y26_c00219{bottom:496.289992px;}
.y11_c00219{bottom:496.353113px;}
.y3e_c00219{bottom:496.973447px;}
.y21_c00219{bottom:497.484020px;}
.yc_c00219{bottom:497.644926px;}
.y39_c00219{bottom:498.050705px;}
.y3f_c00219{bottom:498.365140px;}
.y20_c00219{bottom:499.172711px;}
.yb_c00219{bottom:499.338107px;}
.y40_c00219{bottom:500.063439px;}
.y12_c00219{bottom:500.630691px;}
.y1f_c00219{bottom:501.037949px;}
.ya_c00219{bottom:501.208280px;}
.y27_c00219{bottom:501.390523px;}
.y38_c00219{bottom:501.842247px;}
.y41_c00219{bottom:502.505484px;}
.y13_c00219{bottom:503.149881px;}
.y42_c00219{bottom:504.764265px;}
.y28_c00219{bottom:505.018723px;}
.y1e_c00219{bottom:505.692124px;}
.y9_c00219{bottom:505.872210px;}
.y37_c00219{bottom:507.310818px;}
.y43_c00219{bottom:508.033427px;}
.y14_c00219{bottom:509.102244px;}
.y29_c00219{bottom:510.653024px;}
.y36_c00219{bottom:511.777229px;}
.y1d_c00219{bottom:512.093421px;}
.y8_c00219{bottom:512.281650px;}
.y15_c00219{bottom:513.850725px;}
.y44_c00219{bottom:516.430791px;}
.y2a_c00219{bottom:517.310602px;}
.y35_c00219{bottom:518.202280px;}
.y1c_c00219{bottom:519.400384px;}
.y7_c00219{bottom:519.490765px;}
.y34_c00219{bottom:522.772118px;}
.y6_c00219{bottom:522.949612px;}
.y45_c00219{bottom:524.479945px;}
.y16_c00219{bottom:525.634963px;}
.y1b_c00219{bottom:526.562252px;}
.y5_c00219{bottom:528.960471px;}
.y2b_c00219{bottom:529.273050px;}
.y33_c00219{bottom:530.544173px;}
.y1a_c00219{bottom:531.331047px;}
.y2d_c00219{bottom:533.268367px;}
.y31_c00219{bottom:533.961655px;}
.y32_c00219{bottom:534.438127px;}
.y4_c00219{bottom:536.219702px;}
.y19_c00219{bottom:537.503874px;}
.y17_c00219{bottom:537.875309px;}
.y2c_c00219{bottom:538.238502px;}
.y2f_c00219{bottom:539.975192px;}
.y18_c00219{bottom:544.566810px;}
.y3_c00219{bottom:545.753758px;}
.y30_c00219{bottom:577.436970px;}
.y53_c00219{bottom:639.092781px;}
.y55_c00219{bottom:1021.440190px;}
.y51_c00219{bottom:1128.788039px;}
.y4f_c00219{bottom:1136.423577px;}
.y4e_c00219{bottom:1149.173596px;}
.y52_c00219{bottom:1153.262414px;}
.y50_c00219{bottom:1171.082693px;}
.h11_c00219{height:33.521532px;}
.h9_c00219{height:35.988753px;}
.ha_c00219{height:35.988755px;}
.hb_c00219{height:35.988756px;}
.h12_c00219{height:37.020556px;}
.h3_c00219{height:37.459702px;}
.hd_c00219{height:39.108240px;}
.h7_c00219{height:44.107038px;}
.h4_c00219{height:44.107039px;}
.h8_c00219{height:44.107040px;}
.h5_c00219{height:44.107042px;}
.h6_c00219{height:44.107043px;}
.h16_c00219{height:45.588598px;}
.h15_c00219{height:51.916398px;}
.hc_c00219{height:56.295398px;}
.hf_c00219{height:57.017399px;}
.h14_c00219{height:57.575126px;}
.h10_c00219{height:63.820404px;}
.he_c00219{height:67.042966px;}
.h13_c00219{height:89.376654px;}
.h2_c00219{height:1304.999946px;}
.h0_c00219{height:1304.999953px;}
.h1_c00219{height:1305.000000px;}
.w2_c00219{width:934.874961px;}
.w0_c00219{width:934.875000px;}
.w1_c00219{width:935.250000px;}
.x0_c00219{left:0.000000px;}
.x3c_c00219{left:89.487450px;}
.x3d_c00219{left:90.844844px;}
.x3e_c00219{left:107.230262px;}
.x3f_c00219{left:108.827167px;}
.x44_c00219{left:130.690629px;}
.x14_c00219{left:134.974838px;}
.x13_c00219{left:136.648279px;}
.x15_c00219{left:140.021272px;}
.x16_c00219{left:144.871714px;}
.x17_c00219{left:150.237526px;}
.x18_c00219{left:152.990336px;}
.x19_c00219{left:156.000220px;}
.x1a_c00219{left:159.847713px;}
.x24_c00219{left:161.443962px;}
.x1b_c00219{left:163.301377px;}
.x1c_c00219{left:171.586339px;}
.x1d_c00219{left:179.855997px;}
.x1e_c00219{left:188.287487px;}
.x1f_c00219{left:196.673970px;}
.x20_c00219{left:200.841336px;}
.x21_c00219{left:205.399483px;}
.x22_c00219{left:209.208896px;}
.x23_c00219{left:211.795693px;}
.x3_c00219{left:230.398389px;}
.x2_c00219{left:232.534609px;}
.x4_c00219{left:235.623324px;}
.x5_c00219{left:240.462566px;}
.x6_c00219{left:245.820252px;}
.x7_c00219{left:248.569815px;}
.x8_c00219{left:251.576732px;}
.x9_c00219{left:255.421336px;}
.x41_c00219{left:256.622047px;}
.xa_c00219{left:258.708042px;}
.xb_c00219{left:263.145298px;}
.xc_c00219{left:271.763354px;}
.xd_c00219{left:283.603990px;}
.xe_c00219{left:291.041304px;}
.xf_c00219{left:294.435991px;}
.x40_c00219{left:295.615161px;}
.x10_c00219{left:299.775542px;}
.x11_c00219{left:303.165014px;}
.x12_c00219{left:307.176807px;}
.x29_c00219{left:327.047435px;}
.x2a_c00219{left:328.264734px;}
.x2b_c00219{left:329.685747px;}
.x2c_c00219{left:333.082971px;}
.x2d_c00219{left:336.307511px;}
.x2e_c00219{left:342.189757px;}
.x2f_c00219{left:348.376740px;}
.x28_c00219{left:351.731739px;}
.x30_c00219{left:354.069743px;}
.x31_c00219{left:357.479743px;}
.x32_c00219{left:365.386869px;}
.x33_c00219{left:373.375785px;}
.x34_c00219{left:380.135498px;}
.x35_c00219{left:383.155707px;}
.x36_c00219{left:386.159935px;}
.x37_c00219{left:389.557910px;}
.x38_c00219{left:392.174988px;}
.x39_c00219{left:395.489533px;}
.x3a_c00219{left:400.664851px;}
.x3b_c00219{left:403.469600px;}
.x43_c00219{left:452.271732px;}
.x26_c00219{left:464.896169px;}
.x42_c00219{left:664.443440px;}
.x1_c00219{left:697.320842px;}
.x27_c00219{left:733.540639px;}
.x25_c00219{left:757.088990px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.v1_c00219{vertical-align:1.137536pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws3_c00219{word-spacing:-37.057398pt;}
.ws0_c00219{word-spacing:-13.485567pt;}
.ws2_c00219{word-spacing:-0.049560pt;}
.ws4_c00219{word-spacing:0.000000pt;}
.ws1_c00219{word-spacing:256.052163pt;}
._3_c00219{width:0.964232pt;}
._4_c00219{width:4.348935pt;}
._5_c00219{width:5.279853pt;}
._1_c00219{width:6.289731pt;}
._0_c00219{width:15.687486pt;}
._2_c00219{width:35.493040pt;}
.fsb_c00219{font-size:32.000046pt;}
.fsc_c00219{font-size:35.340254pt;}
.fs7_c00219{font-size:37.333182pt;}
.fs4_c00219{font-size:42.105093pt;}
.fs1_c00219{font-size:42.105094pt;}
.fs5_c00219{font-size:42.105095pt;}
.fs2_c00219{font-size:42.105096pt;}
.fs3_c00219{font-size:42.105098pt;}
.fs0_c00219{font-size:45.921418pt;}
.fse_c00219{font-size:49.559999pt;}
.fsf_c00219{font-size:53.319997pt;}
.fs8_c00219{font-size:63.999997pt;}
.fs9_c00219{font-size:66.154880pt;}
.fs6_c00219{font-size:68.454656pt;}
.fsa_c00219{font-size:74.666773pt;}
.fsd_c00219{font-size:85.319996pt;}
.y0_c00219{bottom:0.000000pt;}
.y1_c00219{bottom:0.000007pt;}
.y54_c00219{bottom:26.134367pt;}
.y4c_c00219{bottom:108.820635pt;}
.y4b_c00219{bottom:135.820634pt;}
.y4a_c00219{bottom:162.820633pt;}
.y49_c00219{bottom:189.820632pt;}
.y48_c00219{bottom:216.820631pt;}
.y47_c00219{bottom:243.820630pt;}
.y46_c00219{bottom:270.820629pt;}
.y4d_c00219{bottom:301.114477pt;}
.y2_c00219{bottom:356.911319pt;}
.y2e_c00219{bottom:432.789822pt;}
.y10_c00219{bottom:438.513950pt;}
.y24_c00219{bottom:438.527466pt;}
.yf_c00219{bottom:438.980754pt;}
.y25_c00219{bottom:438.998276pt;}
.y3c_c00219{bottom:439.074655pt;}
.y23_c00219{bottom:439.634173pt;}
.y3d_c00219{bottom:439.815613pt;}
.y3b_c00219{bottom:439.833307pt;}
.ye_c00219{bottom:439.928600pt;}
.y22_c00219{bottom:440.746230pt;}
.y3a_c00219{bottom:440.753185pt;}
.yd_c00219{bottom:440.882672pt;}
.y26_c00219{bottom:441.146660pt;}
.y11_c00219{bottom:441.202767pt;}
.y3e_c00219{bottom:441.754175pt;}
.y21_c00219{bottom:442.208018pt;}
.yc_c00219{bottom:442.351046pt;}
.y39_c00219{bottom:442.711737pt;}
.y3f_c00219{bottom:442.991236pt;}
.y20_c00219{bottom:443.709077pt;}
.yb_c00219{bottom:443.856095pt;}
.y40_c00219{bottom:444.500834pt;}
.y12_c00219{bottom:445.005059pt;}
.y1f_c00219{bottom:445.367066pt;}
.ya_c00219{bottom:445.518471pt;}
.y27_c00219{bottom:445.680465pt;}
.y38_c00219{bottom:446.081997pt;}
.y41_c00219{bottom:446.671541pt;}
.y13_c00219{bottom:447.244339pt;}
.y42_c00219{bottom:448.679347pt;}
.y28_c00219{bottom:448.905531pt;}
.y1e_c00219{bottom:449.504110pt;}
.y9_c00219{bottom:449.664187pt;}
.y37_c00219{bottom:450.942950pt;}
.y43_c00219{bottom:451.585269pt;}
.y14_c00219{bottom:452.535328pt;}
.y29_c00219{bottom:453.913799pt;}
.y36_c00219{bottom:454.913093pt;}
.y1d_c00219{bottom:455.194152pt;}
.y8_c00219{bottom:455.361467pt;}
.y15_c00219{bottom:456.756200pt;}
.y44_c00219{bottom:459.049592pt;}
.y2a_c00219{bottom:459.831647pt;}
.y35_c00219{bottom:460.624248pt;}
.y1c_c00219{bottom:461.689230pt;}
.y7_c00219{bottom:461.769569pt;}
.y34_c00219{bottom:464.686327pt;}
.y6_c00219{bottom:464.844100pt;}
.y45_c00219{bottom:466.204395pt;}
.y16_c00219{bottom:467.231078pt;}
.y1b_c00219{bottom:468.055335pt;}
.y5_c00219{bottom:470.187085pt;}
.y2b_c00219{bottom:470.464933pt;}
.y33_c00219{bottom:471.594820pt;}
.y1a_c00219{bottom:472.294264pt;}
.y2d_c00219{bottom:474.016326pt;}
.y31_c00219{bottom:474.632582pt;}
.y32_c00219{bottom:475.056113pt;}
.y4_c00219{bottom:476.639735pt;}
.y19_c00219{bottom:477.781221pt;}
.y17_c00219{bottom:478.111386pt;}
.y2c_c00219{bottom:478.434224pt;}
.y2f_c00219{bottom:479.977948pt;}
.y18_c00219{bottom:484.059387pt;}
.y3_c00219{bottom:485.114452pt;}
.y30_c00219{bottom:513.277307pt;}
.y53_c00219{bottom:568.082472pt;}
.y55_c00219{bottom:907.946836pt;}
.y51_c00219{bottom:1003.367145pt;}
.y4f_c00219{bottom:1010.154291pt;}
.y4e_c00219{bottom:1021.487641pt;}
.y52_c00219{bottom:1025.122146pt;}
.y50_c00219{bottom:1040.962393pt;}
.h11_c00219{height:29.796918pt;}
.h9_c00219{height:31.990003pt;}
.ha_c00219{height:31.990004pt;}
.hb_c00219{height:31.990006pt;}
.h12_c00219{height:32.907161pt;}
.h3_c00219{height:33.297513pt;}
.hd_c00219{height:34.762880pt;}
.h7_c00219{height:39.206256pt;}
.h4_c00219{height:39.206257pt;}
.h8_c00219{height:39.206258pt;}
.h5_c00219{height:39.206259pt;}
.h6_c00219{height:39.206261pt;}
.h16_c00219{height:40.523198pt;}
.h15_c00219{height:46.147909pt;}
.hc_c00219{height:50.040354pt;}
.hf_c00219{height:50.682132pt;}
.h14_c00219{height:51.177889pt;}
.h10_c00219{height:56.729248pt;}
.he_c00219{height:59.593748pt;}
.h13_c00219{height:79.445915pt;}
.h2_c00219{height:1159.999952pt;}
.h0_c00219{height:1159.999959pt;}
.h1_c00219{height:1160.000000pt;}
.w2_c00219{width:830.999965pt;}
.w0_c00219{width:831.000000pt;}
.w1_c00219{width:831.333333pt;}
.x0_c00219{left:0.000000pt;}
.x3c_c00219{left:79.544400pt;}
.x3d_c00219{left:80.750973pt;}
.x3e_c00219{left:95.315788pt;}
.x3f_c00219{left:96.735260pt;}
.x44_c00219{left:116.169448pt;}
.x14_c00219{left:119.977634pt;}
.x13_c00219{left:121.465137pt;}
.x15_c00219{left:124.463353pt;}
.x16_c00219{left:128.774857pt;}
.x17_c00219{left:133.544468pt;}
.x18_c00219{left:135.991410pt;}
.x19_c00219{left:138.666862pt;}
.x1a_c00219{left:142.086856pt;}
.x24_c00219{left:143.505744pt;}
.x1b_c00219{left:145.156780pt;}
.x1c_c00219{left:152.521190pt;}
.x1d_c00219{left:159.871997pt;}
.x1e_c00219{left:167.366655pt;}
.x1f_c00219{left:174.821307pt;}
.x20_c00219{left:178.525632pt;}
.x21_c00219{left:182.577318pt;}
.x22_c00219{left:185.963463pt;}
.x23_c00219{left:188.262839pt;}
.x3_c00219{left:204.798568pt;}
.x2_c00219{left:206.697430pt;}
.x4_c00219{left:209.442955pt;}
.x5_c00219{left:213.744503pt;}
.x6_c00219{left:218.506891pt;}
.x7_c00219{left:220.950947pt;}
.x8_c00219{left:223.623762pt;}
.x9_c00219{left:227.041187pt;}
.x41_c00219{left:228.108486pt;}
.xa_c00219{left:229.962704pt;}
.xb_c00219{left:233.906932pt;}
.xc_c00219{left:241.567426pt;}
.xd_c00219{left:252.092435pt;}
.xe_c00219{left:258.703382pt;}
.xf_c00219{left:261.720880pt;}
.x40_c00219{left:262.769032pt;}
.x10_c00219{left:266.467148pt;}
.x11_c00219{left:269.480012pt;}
.x12_c00219{left:273.046051pt;}
.x29_c00219{left:290.708831pt;}
.x2a_c00219{left:291.790874pt;}
.x2b_c00219{left:293.053997pt;}
.x2c_c00219{left:296.073752pt;}
.x2d_c00219{left:298.940009pt;}
.x2e_c00219{left:304.168673pt;}
.x2f_c00219{left:309.668213pt;}
.x28_c00219{left:312.650435pt;}
.x30_c00219{left:314.728661pt;}
.x31_c00219{left:317.759772pt;}
.x32_c00219{left:324.788328pt;}
.x33_c00219{left:331.889587pt;}
.x34_c00219{left:337.898220pt;}
.x35_c00219{left:340.582851pt;}
.x36_c00219{left:343.253275pt;}
.x37_c00219{left:346.273697pt;}
.x38_c00219{left:348.599989pt;}
.x39_c00219{left:351.546252pt;}
.x3a_c00219{left:356.146534pt;}
.x3b_c00219{left:358.639645pt;}
.x43_c00219{left:402.019318pt;}
.x26_c00219{left:413.241039pt;}
.x42_c00219{left:590.616391pt;}
.x1_c00219{left:619.840748pt;}
.x27_c00219{left:652.036124pt;}
.x25_c00219{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2e5672a0250223c7a5a8320.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.171387;font-style:normal;font-weight:normal;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_50322d8dd01cfa7ddda9d1ab.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.005371;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.006348;font-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_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;}
.ls1_c00220{letter-spacing:0.000000px;}
.ls0_c00220{letter-spacing:0.035157px;}
.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;}
}
.ws0_c00220{word-spacing:-19.320776px;}
.ws1_c00220{word-spacing:0.000000px;}
._7_c00220{width:1.160174px;}
._3_c00220{width:2.507764px;}
._8_c00220{width:3.687011px;}
._9_c00220{width:5.596296px;}
._2_c00220{width:7.095110px;}
._c_c00220{width:8.893842px;}
._10_c00220{width:12.175735px;}
._d_c00220{width:15.321122px;}
._1_c00220{width:16.361661px;}
._b_c00220{width:17.660106px;}
._a_c00220{width:21.438513px;}
._0_c00220{width:22.564886px;}
._e_c00220{width:25.551104px;}
._4_c00220{width:26.678510px;}
._f_c00220{width:33.921864px;}
._5_c00220{width:46.347605px;}
._6_c00220{width:80.437506px;}
.fc1_c00220{color:rgb(67,91,56);}
.fc0_c00220{color:rgb(0,0,0);}
.fs0_c00220{font-size:71.999997px;}
.fs1_c00220{font-size:74.377724px;}
.y0_c00220{bottom:0.000000px;}
.y1_c00220{bottom:0.000008px;}
.y26_c00220{bottom:29.401163px;}
.y20_c00220{bottom:68.457489px;}
.y1f_c00220{bottom:98.832488px;}
.y1e_c00220{bottom:129.207487px;}
.y1d_c00220{bottom:159.582485px;}
.y1c_c00220{bottom:189.957484px;}
.y1b_c00220{bottom:220.332483px;}
.y1a_c00220{bottom:259.032373px;}
.y19_c00220{bottom:303.662615px;}
.y18_c00220{bottom:336.684622px;}
.y16_c00220{bottom:382.566076px;}
.y15_c00220{bottom:412.941075px;}
.y14_c00220{bottom:443.316074px;}
.y13_c00220{bottom:473.691073px;}
.y12_c00220{bottom:504.066071px;}
.y11_c00220{bottom:534.441070px;}
.y10_c00220{bottom:564.816069px;}
.yf_c00220{bottom:595.191068px;}
.ye_c00220{bottom:625.566066px;}
.yd_c00220{bottom:655.941065px;}
.yc_c00220{bottom:686.316064px;}
.yb_c00220{bottom:716.691063px;}
.ya_c00220{bottom:747.066061px;}
.y9_c00220{bottom:777.441060px;}
.y8_c00220{bottom:807.816059px;}
.y7_c00220{bottom:838.191057px;}
.y6_c00220{bottom:868.566056px;}
.y5_c00220{bottom:898.941055px;}
.y4_c00220{bottom:929.316054px;}
.y3_c00220{bottom:959.691052px;}
.y2_c00220{bottom:990.066051px;}
.y17_c00220{bottom:1029.135104px;}
.y24_c00220{bottom:1075.245403px;}
.y23_c00220{bottom:1105.620402px;}
.y22_c00220{bottom:1135.995400px;}
.y21_c00220{bottom:1166.370399px;}
.y25_c00220{bottom:1200.871389px;}
.h4_c00220{height:55.160154px;}
.h5_c00220{height:56.981762px;}
.h3_c00220{height:67.042966px;}
.h2_c00220{height:1304.999946px;}
.h0_c00220{height:1304.999953px;}
.h1_c00220{height:1305.000000px;}
.w2_c00220{width:934.874961px;}
.w0_c00220{width:934.875000px;}
.w1_c00220{width:935.250000px;}
.x0_c00220{left:0.000000px;}
.x2_c00220{left:87.902647px;}
.x1_c00220{left:89.487450px;}
.x3_c00220{left:452.271732px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls1_c00220{letter-spacing:0.000000pt;}
.ls0_c00220{letter-spacing:0.031250pt;}
.ws0_c00220{word-spacing:-17.174023pt;}
.ws1_c00220{word-spacing:0.000000pt;}
._7_c00220{width:1.031266pt;}
._3_c00220{width:2.229124pt;}
._8_c00220{width:3.277343pt;}
._9_c00220{width:4.974485pt;}
._2_c00220{width:6.306764pt;}
._c_c00220{width:7.905637pt;}
._10_c00220{width:10.822875pt;}
._d_c00220{width:13.618775pt;}
._1_c00220{width:14.543699pt;}
._b_c00220{width:15.697872pt;}
._a_c00220{width:19.056456pt;}
._0_c00220{width:20.057676pt;}
._e_c00220{width:22.712092pt;}
._4_c00220{width:23.714231pt;}
._f_c00220{width:30.152768pt;}
._5_c00220{width:41.197871pt;}
._6_c00220{width:71.500005pt;}
.fs0_c00220{font-size:63.999997pt;}
.fs1_c00220{font-size:66.113533pt;}
.y0_c00220{bottom:0.000000pt;}
.y1_c00220{bottom:0.000007pt;}
.y26_c00220{bottom:26.134367pt;}
.y20_c00220{bottom:60.851101pt;}
.y1f_c00220{bottom:87.851100pt;}
.y1e_c00220{bottom:114.851099pt;}
.y1d_c00220{bottom:141.851098pt;}
.y1c_c00220{bottom:168.851097pt;}
.y1b_c00220{bottom:195.851096pt;}
.y1a_c00220{bottom:230.250998pt;}
.y19_c00220{bottom:269.922325pt;}
.y18_c00220{bottom:299.275220pt;}
.y16_c00220{bottom:340.058735pt;}
.y15_c00220{bottom:367.058734pt;}
.y14_c00220{bottom:394.058732pt;}
.y13_c00220{bottom:421.058731pt;}
.y12_c00220{bottom:448.058730pt;}
.y11_c00220{bottom:475.058729pt;}
.y10_c00220{bottom:502.058728pt;}
.yf_c00220{bottom:529.058727pt;}
.ye_c00220{bottom:556.058726pt;}
.yd_c00220{bottom:583.058725pt;}
.yc_c00220{bottom:610.058723pt;}
.yb_c00220{bottom:637.058722pt;}
.ya_c00220{bottom:664.058721pt;}
.y9_c00220{bottom:691.058720pt;}
.y8_c00220{bottom:718.058719pt;}
.y7_c00220{bottom:745.058718pt;}
.y6_c00220{bottom:772.058717pt;}
.y5_c00220{bottom:799.058716pt;}
.y4_c00220{bottom:826.058714pt;}
.y3_c00220{bottom:853.058713pt;}
.y2_c00220{bottom:880.058712pt;}
.y17_c00220{bottom:914.786759pt;}
.y24_c00220{bottom:955.773691pt;}
.y23_c00220{bottom:982.773690pt;}
.y22_c00220{bottom:1009.773689pt;}
.y21_c00220{bottom:1036.773688pt;}
.y25_c00220{bottom:1067.441235pt;}
.h4_c00220{height:49.031248pt;}
.h5_c00220{height:50.650455pt;}
.h3_c00220{height:59.593748pt;}
.h2_c00220{height:1159.999952pt;}
.h0_c00220{height:1159.999959pt;}
.h1_c00220{height:1160.000000pt;}
.w2_c00220{width:830.999965pt;}
.w0_c00220{width:831.000000pt;}
.w1_c00220{width:831.333333pt;}
.x0_c00220{left:0.000000pt;}
.x2_c00220{left:78.135686pt;}
.x1_c00220{left:79.544400pt;}
.x3_c00220{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1a680767c22407c52d49f2b.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.000000;font-style:normal;font-weight:normal;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_12ed058d065adbc1971a084c.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.171387;font-style:normal;font-weight:normal;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_2946121c729fcd18650e2305.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.171387;font-style:normal;font-weight:normal;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_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.006348;font-style:normal;font-weight: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_0458d49991ee8e7c26be81c4.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.000000;font-style:normal;font-weight: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_c00221;src:url('chunks/assets/font_e5615b496ce6a853f933e13b.woff2')format("woff");}.ff6_c00221{font-family:ff6_c00221;line-height:0.769531;font-style:normal;font-weight: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_c00221;src:url('chunks/assets/font_248cc758d20b04c8c43c7e5e.woff2')format("woff");}.ff7_c00221{font-family:ff7_c00221;line-height:0.743000;font-style:normal;font-weight: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_c00221;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00221{font-family:ff8_c00221;line-height:0.734863;font-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_c00221{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00221{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00221{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00221{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00221{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00221{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00221{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00221{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00221{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00221{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00221{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00221{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00221{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00221{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00221{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00221{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00221{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00221{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00221{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00221{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00221{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00221{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00221{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00221{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00221{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00221{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00221{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00221{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00221{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00221{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00221{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00221{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00221{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00221{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00221{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00221{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00221{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00221{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00221{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00221{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00221{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00221{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00221{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00221{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00221{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00221{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00221{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00221{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00221{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00221{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00221{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00221{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00221{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00221{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00221{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00221{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00221{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00221{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00221{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00221{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00221{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00221{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00221{vertical-align:0.000000px;}
.ls0_c00221{letter-spacing:0.000000px;}
.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:-15.171263px;}
.ws0_c00221{word-spacing:-0.055755px;}
.ws4_c00221{word-spacing:0.000000px;}
.ws1_c00221{word-spacing:264.519238px;}
.ws2_c00221{word-spacing:267.281417px;}
._5_c00221{width:1.068691px;}
._7_c00221{width:2.217470px;}
._8_c00221{width:4.331220px;}
._6_c00221{width:6.335129px;}
._3_c00221{width:12.744139px;}
._4_c00221{width:22.554655px;}
._2_c00221{width:23.561690px;}
._0_c00221{width:24.929623px;}
._1_c00221{width:26.166002px;}
.fc4_c00221{color:transparent;}
.fc3_c00221{color:rgb(9,71,81);}
.fc2_c00221{color:rgb(67,91,56);}
.fc1_c00221{color:rgb(0,0,0);}
.fc0_c00221{color:rgb(255,255,255);}
.fs4_c00221{font-size:36.000051px;}
.fs5_c00221{font-size:39.757786px;}
.fse_c00221{font-size:41.999830px;}
.fsa_c00221{font-size:47.368230px;}
.fs7_c00221{font-size:47.368231px;}
.fsb_c00221{font-size:47.368232px;}
.fs8_c00221{font-size:47.368233px;}
.fs9_c00221{font-size:47.368235px;}
.fsd_c00221{font-size:51.661596px;}
.fs0_c00221{font-size:55.754999px;}
.fs1_c00221{font-size:71.999997px;}
.fs2_c00221{font-size:74.424240px;}
.fsc_c00221{font-size:77.011488px;}
.fs3_c00221{font-size:84.000120px;}
.fs6_c00221{font-size:95.984996px;}
.y0_c00221{bottom:0.000000px;}
.y1_c00221{bottom:0.000008px;}
.y55_c00221{bottom:29.400983px;}
.yc_c00221{bottom:64.256469px;}
.yb_c00221{bottom:94.631468px;}
.ya_c00221{bottom:125.006467px;}
.y9_c00221{bottom:155.381466px;}
.y8_c00221{bottom:185.756464px;}
.y7_c00221{bottom:216.131463px;}
.y6_c00221{bottom:246.506462px;}
.y5_c00221{bottom:276.881460px;}
.y4_c00221{bottom:307.256459px;}
.y3_c00221{bottom:337.631458px;}
.yd_c00221{bottom:371.712397px;}
.y53_c00221{bottom:407.760901px;}
.y54_c00221{bottom:486.888370px;}
.y20_c00221{bottom:493.328373px;}
.y34_c00221{bottom:493.343399px;}
.y1f_c00221{bottom:493.853709px;}
.y35_c00221{bottom:493.873241px;}
.y48_c00221{bottom:493.959311px;}
.y33_c00221{bottom:494.588120px;}
.y49_c00221{bottom:494.792744px;}
.y47_c00221{bottom:494.812830px;}
.y1e_c00221{bottom:494.919675px;}
.y32_c00221{bottom:495.839329px;}
.y46_c00221{bottom:495.847693px;}
.y1d_c00221{bottom:495.993006px;}
.y36_c00221{bottom:496.289812px;}
.y21_c00221{bottom:496.353473px;}
.y4a_c00221{bottom:496.973987px;}
.y31_c00221{bottom:497.484200px;}
.y1c_c00221{bottom:497.644566px;}
.y45_c00221{bottom:498.050345px;}
.y4b_c00221{bottom:498.364996px;}
.y30_c00221{bottom:499.172711px;}
.y1b_c00221{bottom:499.338251px;}
.y4c_c00221{bottom:500.063079px;}
.y22_c00221{bottom:500.630691px;}
.y2f_c00221{bottom:501.037769px;}
.y1a_c00221{bottom:501.208100px;}
.y37_c00221{bottom:501.390523px;}
.y44_c00221{bottom:501.842067px;}
.y4d_c00221{bottom:502.505484px;}
.y23_c00221{bottom:503.149521px;}
.y4e_c00221{bottom:504.764445px;}
.y38_c00221{bottom:505.018723px;}
.y2e_c00221{bottom:505.692124px;}
.y19_c00221{bottom:505.871886px;}
.y43_c00221{bottom:507.310818px;}
.y4f_c00221{bottom:508.033247px;}
.y24_c00221{bottom:509.101920px;}
.y39_c00221{bottom:510.652700px;}
.y42_c00221{bottom:511.777409px;}
.y2d_c00221{bottom:512.093601px;}
.y18_c00221{bottom:512.281830px;}
.y25_c00221{bottom:513.850725px;}
.y50_c00221{bottom:516.430791px;}
.y3a_c00221{bottom:517.310242px;}
.y41_c00221{bottom:518.202100px;}
.y2c_c00221{bottom:519.400564px;}
.y17_c00221{bottom:519.490909px;}
.y40_c00221{bottom:522.772118px;}
.y16_c00221{bottom:522.949612px;}
.y51_c00221{bottom:524.479585px;}
.y26_c00221{bottom:525.634639px;}
.y2b_c00221{bottom:526.562252px;}
.y15_c00221{bottom:528.959931px;}
.y3b_c00221{bottom:529.273374px;}
.y3f_c00221{bottom:530.544173px;}
.y2a_c00221{bottom:531.331551px;}
.y52_c00221{bottom:533.191903px;}
.y3d_c00221{bottom:534.018607px;}
.y3e_c00221{bottom:534.437983px;}
.y14_c00221{bottom:536.219342px;}
.y29_c00221{bottom:537.503874px;}
.y27_c00221{bottom:537.875309px;}
.y3c_c00221{bottom:538.238862px;}
.y28_c00221{bottom:544.567170px;}
.y13_c00221{bottom:545.754118px;}
.y2_c00221{bottom:639.092601px;}
.y11_c00221{bottom:1128.788391px;}
.yf_c00221{bottom:1136.423491px;}
.ye_c00221{bottom:1149.173509px;}
.y12_c00221{bottom:1153.262238px;}
.y10_c00221{bottom:1171.082779px;}
.h7_c00221{height:33.521532px;}
.hf_c00221{height:35.988753px;}
.h10_c00221{height:35.988755px;}
.h11_c00221{height:35.988756px;}
.h8_c00221{height:37.020556px;}
.h13_c00221{height:37.459702px;}
.h14_c00221{height:39.108240px;}
.hd_c00221{height:44.107038px;}
.ha_c00221{height:44.107039px;}
.he_c00221{height:44.107040px;}
.hb_c00221{height:44.107042px;}
.hc_c00221{height:44.107043px;}
.h3_c00221{height:51.916398px;}
.h12_c00221{height:56.295398px;}
.h5_c00221{height:57.017399px;}
.h6_c00221{height:63.820404px;}
.h4_c00221{height:67.042966px;}
.h9_c00221{height:89.376654px;}
.h2_c00221{height:1304.999946px;}
.h0_c00221{height:1304.999953px;}
.h1_c00221{height:1305.000000px;}
.w2_c00221{width:934.874961px;}
.w0_c00221{width:934.875000px;}
.w1_c00221{width:935.250000px;}
.x0_c00221{left:0.000000px;}
.x2_c00221{left:87.902647px;}
.x3_c00221{left:89.260034px;}
.x4_c00221{left:107.230262px;}
.x5_c00221{left:108.827167px;}
.x18_c00221{left:134.974838px;}
.x17_c00221{left:136.648279px;}
.x19_c00221{left:140.021272px;}
.x1a_c00221{left:144.871714px;}
.x1b_c00221{left:150.237526px;}
.x1c_c00221{left:152.990336px;}
.x1d_c00221{left:156.000220px;}
.x28_c00221{left:158.369858px;}
.x1e_c00221{left:159.847713px;}
.x1f_c00221{left:163.301377px;}
.x20_c00221{left:171.586339px;}
.x21_c00221{left:179.855997px;}
.x22_c00221{left:188.287487px;}
.x23_c00221{left:196.673970px;}
.x24_c00221{left:200.841336px;}
.x25_c00221{left:205.399483px;}
.x26_c00221{left:209.208896px;}
.x27_c00221{left:211.795693px;}
.x8_c00221{left:230.398389px;}
.x7_c00221{left:232.534609px;}
.x9_c00221{left:235.623324px;}
.xa_c00221{left:240.462566px;}
.xb_c00221{left:245.820252px;}
.xc_c00221{left:248.569815px;}
.xd_c00221{left:251.576732px;}
.xe_c00221{left:255.421336px;}
.xf_c00221{left:258.708042px;}
.x10_c00221{left:263.145298px;}
.x11_c00221{left:271.763354px;}
.x12_c00221{left:283.603990px;}
.x13_c00221{left:291.041304px;}
.x6_c00221{left:295.177092px;}
.x14_c00221{left:299.775542px;}
.x15_c00221{left:303.165014px;}
.x16_c00221{left:307.176807px;}
.x29_c00221{left:327.047435px;}
.x2a_c00221{left:328.264734px;}
.x2b_c00221{left:329.685747px;}
.x2c_c00221{left:333.082971px;}
.x2d_c00221{left:336.307511px;}
.x2e_c00221{left:342.189757px;}
.x2f_c00221{left:348.376740px;}
.x3c_c00221{left:352.856739px;}
.x30_c00221{left:354.069743px;}
.x31_c00221{left:357.479743px;}
.x32_c00221{left:365.386869px;}
.x33_c00221{left:373.375785px;}
.x34_c00221{left:380.135498px;}
.x35_c00221{left:383.155707px;}
.x36_c00221{left:386.159935px;}
.x37_c00221{left:389.557910px;}
.x38_c00221{left:392.174988px;}
.x39_c00221{left:395.489533px;}
.x3a_c00221{left:400.664851px;}
.x3b_c00221{left:403.469600px;}
.x3f_c00221{left:452.271732px;}
.x1_c00221{left:664.443440px;}
.x3d_c00221{left:697.320842px;}
.x3e_c00221{left:757.088990px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ws3_c00221{word-spacing:-13.485567pt;}
.ws0_c00221{word-spacing:-0.049560pt;}
.ws4_c00221{word-spacing:0.000000pt;}
.ws1_c00221{word-spacing:235.128211pt;}
.ws2_c00221{word-spacing:237.583481pt;}
._5_c00221{width:0.949948pt;}
._7_c00221{width:1.971085pt;}
._8_c00221{width:3.849973pt;}
._6_c00221{width:5.631225pt;}
._3_c00221{width:11.328124pt;}
._4_c00221{width:20.048582pt;}
._2_c00221{width:20.943725pt;}
._0_c00221{width:22.159665pt;}
._1_c00221{width:23.258669pt;}
.fs4_c00221{font-size:32.000046pt;}
.fs5_c00221{font-size:35.340254pt;}
.fse_c00221{font-size:37.333182pt;}
.fsa_c00221{font-size:42.105093pt;}
.fs7_c00221{font-size:42.105094pt;}
.fsb_c00221{font-size:42.105095pt;}
.fs8_c00221{font-size:42.105096pt;}
.fs9_c00221{font-size:42.105098pt;}
.fsd_c00221{font-size:45.921418pt;}
.fs0_c00221{font-size:49.559999pt;}
.fs1_c00221{font-size:63.999997pt;}
.fs2_c00221{font-size:66.154880pt;}
.fsc_c00221{font-size:68.454656pt;}
.fs3_c00221{font-size:74.666773pt;}
.fs6_c00221{font-size:85.319996pt;}
.y0_c00221{bottom:0.000000pt;}
.y1_c00221{bottom:0.000007pt;}
.y55_c00221{bottom:26.134207pt;}
.yc_c00221{bottom:57.116862pt;}
.yb_c00221{bottom:84.116860pt;}
.ya_c00221{bottom:111.116859pt;}
.y9_c00221{bottom:138.116858pt;}
.y8_c00221{bottom:165.116857pt;}
.y7_c00221{bottom:192.116856pt;}
.y6_c00221{bottom:219.116855pt;}
.y5_c00221{bottom:246.116854pt;}
.y4_c00221{bottom:273.116853pt;}
.y3_c00221{bottom:300.116851pt;}
.yd_c00221{bottom:330.411019pt;}
.y53_c00221{bottom:362.454134pt;}
.y54_c00221{bottom:432.789662pt;}
.y20_c00221{bottom:438.514110pt;}
.y34_c00221{bottom:438.527466pt;}
.y1f_c00221{bottom:438.981074pt;}
.y35_c00221{bottom:438.998436pt;}
.y48_c00221{bottom:439.074943pt;}
.y33_c00221{bottom:439.633885pt;}
.y49_c00221{bottom:439.815773pt;}
.y47_c00221{bottom:439.833627pt;}
.y1e_c00221{bottom:439.928600pt;}
.y32_c00221{bottom:440.746070pt;}
.y46_c00221{bottom:440.753505pt;}
.y1d_c00221{bottom:440.882672pt;}
.y36_c00221{bottom:441.146500pt;}
.y21_c00221{bottom:441.203087pt;}
.y4a_c00221{bottom:441.754655pt;}
.y31_c00221{bottom:442.208178pt;}
.y1c_c00221{bottom:442.350726pt;}
.y45_c00221{bottom:442.711417pt;}
.y4b_c00221{bottom:442.991108pt;}
.y30_c00221{bottom:443.709077pt;}
.y1b_c00221{bottom:443.856223pt;}
.y4c_c00221{bottom:444.500514pt;}
.y22_c00221{bottom:445.005059pt;}
.y2f_c00221{bottom:445.366906pt;}
.y1a_c00221{bottom:445.518311pt;}
.y37_c00221{bottom:445.680465pt;}
.y44_c00221{bottom:446.081837pt;}
.y4d_c00221{bottom:446.671541pt;}
.y23_c00221{bottom:447.244019pt;}
.y4e_c00221{bottom:448.679507pt;}
.y38_c00221{bottom:448.905531pt;}
.y2e_c00221{bottom:449.504110pt;}
.y19_c00221{bottom:449.663899pt;}
.y43_c00221{bottom:450.942950pt;}
.y4f_c00221{bottom:451.585109pt;}
.y24_c00221{bottom:452.535040pt;}
.y39_c00221{bottom:453.913511pt;}
.y42_c00221{bottom:454.913253pt;}
.y2d_c00221{bottom:455.194312pt;}
.y18_c00221{bottom:455.361627pt;}
.y25_c00221{bottom:456.756200pt;}
.y50_c00221{bottom:459.049592pt;}
.y3a_c00221{bottom:459.831327pt;}
.y41_c00221{bottom:460.624088pt;}
.y2c_c00221{bottom:461.689390pt;}
.y17_c00221{bottom:461.769697pt;}
.y40_c00221{bottom:464.686327pt;}
.y16_c00221{bottom:464.844100pt;}
.y51_c00221{bottom:466.204075pt;}
.y26_c00221{bottom:467.230790pt;}
.y2b_c00221{bottom:468.055335pt;}
.y15_c00221{bottom:470.186605pt;}
.y3b_c00221{bottom:470.465221pt;}
.y3f_c00221{bottom:471.594820pt;}
.y2a_c00221{bottom:472.294712pt;}
.y52_c00221{bottom:473.948358pt;}
.y3d_c00221{bottom:474.683206pt;}
.y3e_c00221{bottom:475.055985pt;}
.y14_c00221{bottom:476.639415pt;}
.y29_c00221{bottom:477.781221pt;}
.y27_c00221{bottom:478.111386pt;}
.y3c_c00221{bottom:478.434544pt;}
.y28_c00221{bottom:484.059707pt;}
.y13_c00221{bottom:485.114772pt;}
.y2_c00221{bottom:568.082312pt;}
.y11_c00221{bottom:1003.367459pt;}
.yf_c00221{bottom:1010.154214pt;}
.ye_c00221{bottom:1021.487564pt;}
.y12_c00221{bottom:1025.121989pt;}
.y10_c00221{bottom:1040.962470pt;}
.h7_c00221{height:29.796918pt;}
.hf_c00221{height:31.990003pt;}
.h10_c00221{height:31.990004pt;}
.h11_c00221{height:31.990006pt;}
.h8_c00221{height:32.907161pt;}
.h13_c00221{height:33.297513pt;}
.h14_c00221{height:34.762880pt;}
.hd_c00221{height:39.206256pt;}
.ha_c00221{height:39.206257pt;}
.he_c00221{height:39.206258pt;}
.hb_c00221{height:39.206259pt;}
.hc_c00221{height:39.206261pt;}
.h3_c00221{height:46.147909pt;}
.h12_c00221{height:50.040354pt;}
.h5_c00221{height:50.682132pt;}
.h6_c00221{height:56.729248pt;}
.h4_c00221{height:59.593748pt;}
.h9_c00221{height:79.445915pt;}
.h2_c00221{height:1159.999952pt;}
.h0_c00221{height:1159.999959pt;}
.h1_c00221{height:1160.000000pt;}
.w2_c00221{width:830.999965pt;}
.w0_c00221{width:831.000000pt;}
.w1_c00221{width:831.333333pt;}
.x0_c00221{left:0.000000pt;}
.x2_c00221{left:78.135686pt;}
.x3_c00221{left:79.342253pt;}
.x4_c00221{left:95.315788pt;}
.x5_c00221{left:96.735260pt;}
.x18_c00221{left:119.977634pt;}
.x17_c00221{left:121.465137pt;}
.x19_c00221{left:124.463353pt;}
.x1a_c00221{left:128.774857pt;}
.x1b_c00221{left:133.544468pt;}
.x1c_c00221{left:135.991410pt;}
.x1d_c00221{left:138.666862pt;}
.x28_c00221{left:140.773207pt;}
.x1e_c00221{left:142.086856pt;}
.x1f_c00221{left:145.156780pt;}
.x20_c00221{left:152.521190pt;}
.x21_c00221{left:159.871997pt;}
.x22_c00221{left:167.366655pt;}
.x23_c00221{left:174.821307pt;}
.x24_c00221{left:178.525632pt;}
.x25_c00221{left:182.577318pt;}
.x26_c00221{left:185.963463pt;}
.x27_c00221{left:188.262839pt;}
.x8_c00221{left:204.798568pt;}
.x7_c00221{left:206.697430pt;}
.x9_c00221{left:209.442955pt;}
.xa_c00221{left:213.744503pt;}
.xb_c00221{left:218.506891pt;}
.xc_c00221{left:220.950947pt;}
.xd_c00221{left:223.623762pt;}
.xe_c00221{left:227.041187pt;}
.xf_c00221{left:229.962704pt;}
.x10_c00221{left:233.906932pt;}
.x11_c00221{left:241.567426pt;}
.x12_c00221{left:252.092435pt;}
.x13_c00221{left:258.703382pt;}
.x6_c00221{left:262.379637pt;}
.x14_c00221{left:266.467148pt;}
.x15_c00221{left:269.480012pt;}
.x16_c00221{left:273.046051pt;}
.x29_c00221{left:290.708831pt;}
.x2a_c00221{left:291.790874pt;}
.x2b_c00221{left:293.053997pt;}
.x2c_c00221{left:296.073752pt;}
.x2d_c00221{left:298.940009pt;}
.x2e_c00221{left:304.168673pt;}
.x2f_c00221{left:309.668213pt;}
.x3c_c00221{left:313.650435pt;}
.x30_c00221{left:314.728661pt;}
.x31_c00221{left:317.759772pt;}
.x32_c00221{left:324.788328pt;}
.x33_c00221{left:331.889587pt;}
.x34_c00221{left:337.898220pt;}
.x35_c00221{left:340.582851pt;}
.x36_c00221{left:343.253275pt;}
.x37_c00221{left:346.273697pt;}
.x38_c00221{left:348.599989pt;}
.x39_c00221{left:351.546252pt;}
.x3a_c00221{left:356.146534pt;}
.x3b_c00221{left:358.639645pt;}
.x3f_c00221{left:402.019318pt;}
.x1_c00221{left:590.616391pt;}
.x3d_c00221{left:619.840748pt;}
.x3e_c00221{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e94b3c665e83a35b93beae4.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.171387;font-style:normal;font-weight:normal;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_c94dd7dadbbfa5e138ead543.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.005371;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00222;src:url('chunks/assets/font_9a76405ad627b9b5a6e65569.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:0.769531;font-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;}
.ls1_c00222{letter-spacing:0.000000px;}
.ls0_c00222{letter-spacing:16.101561px;}
.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;}
}
.ws0_c00222{word-spacing:-18.703125px;}
.ws1_c00222{word-spacing:-0.055755px;}
.ws2_c00222{word-spacing:0.000000px;}
._a_c00222{width:1.706176px;}
._8_c00222{width:2.721106px;}
._3_c00222{width:4.485923px;}
._9_c00222{width:5.812451px;}
._4_c00222{width:7.985480px;}
._6_c00222{width:10.011906px;}
._2_c00222{width:11.963905px;}
._c_c00222{width:13.297367px;}
._5_c00222{width:15.302466px;}
._0_c00222{width:16.518698px;}
._b_c00222{width:23.765623px;}
._7_c00222{width:26.044876px;}
._1_c00222{width:30.529629px;}
.fc1_c00222{color:rgb(67,91,56);}
.fc0_c00222{color:rgb(0,0,0);}
.fs1_c00222{font-size:55.754999px;}
.fs0_c00222{font-size:71.999997px;}
.y0_c00222{bottom:0.000000px;}
.y1_c00222{bottom:0.000008px;}
.y1c_c00222{bottom:29.401163px;}
.y1d_c00222{bottom:96.294020px;}
.y1b_c00222{bottom:321.944063px;}
.y1a_c00222{bottom:352.319061px;}
.y19_c00222{bottom:382.694060px;}
.y18_c00222{bottom:413.069059px;}
.y17_c00222{bottom:443.444058px;}
.y16_c00222{bottom:482.144056px;}
.y15_c00222{bottom:547.844053px;}
.y14_c00222{bottom:580.865952px;}
.y12_c00222{bottom:646.384545px;}
.y11_c00222{bottom:676.759544px;}
.y13_c00222{bottom:706.375868px;}
.yf_c00222{bottom:770.080396px;}
.ye_c00222{bottom:800.455395px;}
.yd_c00222{bottom:830.830393px;}
.yc_c00222{bottom:861.205392px;}
.yb_c00222{bottom:891.580391px;}
.ya_c00222{bottom:921.955390px;}
.y9_c00222{bottom:952.330388px;}
.y8_c00222{bottom:982.705387px;}
.y7_c00222{bottom:1013.080386px;}
.y6_c00222{bottom:1043.455385px;}
.y5_c00222{bottom:1073.830383px;}
.y4_c00222{bottom:1104.205382px;}
.y3_c00222{bottom:1134.580381px;}
.y2_c00222{bottom:1164.955379px;}
.y10_c00222{bottom:1199.772371px;}
.h6_c00222{height:51.916398px;}
.h5_c00222{height:55.089841px;}
.h4_c00222{height:55.160154px;}
.h3_c00222{height:67.042966px;}
.h2_c00222{height:1304.999946px;}
.h0_c00222{height:1304.999953px;}
.h1_c00222{height:1305.000000px;}
.w2_c00222{width:934.874961px;}
.w0_c00222{width:934.875000px;}
.w1_c00222{width:935.250000px;}
.x0_c00222{left:0.000000px;}
.x1_c00222{left:87.905041px;}
.x2_c00222{left:452.271732px;}
.x3_c00222{left:645.617997px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls1_c00222{letter-spacing:0.000000pt;}
.ls0_c00222{letter-spacing:14.312499pt;}
.ws0_c00222{word-spacing:-16.625000pt;}
.ws1_c00222{word-spacing:-0.049560pt;}
.ws2_c00222{word-spacing:0.000000pt;}
._a_c00222{width:1.516601pt;}
._8_c00222{width:2.418761pt;}
._3_c00222{width:3.987487pt;}
._9_c00222{width:5.166623pt;}
._4_c00222{width:7.098204pt;}
._6_c00222{width:8.899472pt;}
._2_c00222{width:10.634582pt;}
._c_c00222{width:11.819882pt;}
._5_c00222{width:13.602192pt;}
._0_c00222{width:14.683287pt;}
._b_c00222{width:21.124998pt;}
._7_c00222{width:23.151000pt;}
._1_c00222{width:27.137448pt;}
.fs1_c00222{font-size:49.559999pt;}
.fs0_c00222{font-size:63.999997pt;}
.y0_c00222{bottom:0.000000pt;}
.y1_c00222{bottom:0.000007pt;}
.y1c_c00222{bottom:26.134367pt;}
.y1d_c00222{bottom:85.594684pt;}
.y1b_c00222{bottom:286.172500pt;}
.y1a_c00222{bottom:313.172499pt;}
.y19_c00222{bottom:340.172498pt;}
.y18_c00222{bottom:367.172497pt;}
.y17_c00222{bottom:394.172496pt;}
.y16_c00222{bottom:428.572494pt;}
.y15_c00222{bottom:486.972492pt;}
.y14_c00222{bottom:516.325290pt;}
.y12_c00222{bottom:574.564040pt;}
.y11_c00222{bottom:601.564039pt;}
.y13_c00222{bottom:627.889660pt;}
.yf_c00222{bottom:684.515907pt;}
.ye_c00222{bottom:711.515906pt;}
.yd_c00222{bottom:738.515905pt;}
.yc_c00222{bottom:765.515904pt;}
.yb_c00222{bottom:792.515903pt;}
.ya_c00222{bottom:819.515902pt;}
.y9_c00222{bottom:846.515901pt;}
.y8_c00222{bottom:873.515900pt;}
.y7_c00222{bottom:900.515898pt;}
.y6_c00222{bottom:927.515897pt;}
.y5_c00222{bottom:954.515896pt;}
.y4_c00222{bottom:981.515895pt;}
.y3_c00222{bottom:1008.515894pt;}
.y2_c00222{bottom:1035.515893pt;}
.y10_c00222{bottom:1066.464330pt;}
.h6_c00222{height:46.147909pt;}
.h5_c00222{height:48.968748pt;}
.h4_c00222{height:49.031248pt;}
.h3_c00222{height:59.593748pt;}
.h2_c00222{height:1159.999952pt;}
.h0_c00222{height:1159.999959pt;}
.h1_c00222{height:1160.000000pt;}
.w2_c00222{width:830.999965pt;}
.w0_c00222{width:831.000000pt;}
.w1_c00222{width:831.333333pt;}
.x0_c00222{left:0.000000pt;}
.x1_c00222{left:78.137814pt;}
.x2_c00222{left:402.019318pt;}
.x3_c00222{left:573.882664pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4518acd33a1def9adce2b1d2.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.171387;font-style:normal;font-weight:normal;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_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.006348;font-style:normal;font-weight:normal;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_e2c5a602bb74b024c21d08f1.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.000000;font-style:normal;font-weight:normal;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_11b3f723220fd8912ba9563d.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:1.171387;font-style:normal;font-weight: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_c00223;src:url('chunks/assets/font_7ad0e548cf463b4e0bbe2108.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:1.000000;font-style:normal;font-weight: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_c00223;src:url('chunks/assets/font_e5615b496ce6a853f933e13b.woff2')format("woff");}.ff6_c00223{font-family:ff6_c00223;line-height:0.769531;font-style:normal;font-weight: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_c00223;src:url('chunks/assets/font_4f68a4df6fc030231013fa91.woff2')format("woff");}.ff7_c00223{font-family:ff7_c00223;line-height:0.743000;font-style:normal;font-weight: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_c00223;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00223{font-family:ff8_c00223;line-height:0.734863;font-style:normal;font-weight: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_c00223;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00223{font-family:ff9_c00223;line-height:0.940000;font-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_c00223{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00223{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00223{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00223{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00223{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00223{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00223{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00223{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00223{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00223{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00223{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00223{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00223{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00223{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00223{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00223{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00223{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00223{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00223{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00223{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00223{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00223{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00223{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00223{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00223{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00223{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00223{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00223{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00223{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00223{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00223{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00223{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00223{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00223{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00223{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00223{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00223{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00223{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00223{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00223{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00223{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00223{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00223{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00223{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00223{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00223{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00223{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00223{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00223{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00223{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00223{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00223{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00223{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00223{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00223{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00223{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00223{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00223{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00223{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00223{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00223{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00223{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00223{vertical-align:0.000000px;}
.ls0_c00223{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00223{word-spacing:-41.689573px;}
.ws0_c00223{word-spacing:-15.171263px;}
.ws2_c00223{word-spacing:-0.055755px;}
.ws4_c00223{word-spacing:0.000000px;}
.ws1_c00223{word-spacing:281.638789px;}
._1_c00223{width:1.373705px;}
._0_c00223{width:6.909370px;}
._2_c00223{width:27.816695px;}
._3_c00223{width:31.470677px;}
.fc4_c00223{color:transparent;}
.fc3_c00223{color:rgb(9,71,81);}
.fc1_c00223{color:rgb(67,91,56);}
.fc2_c00223{color:rgb(255,255,255);}
.fc0_c00223{color:rgb(0,0,0);}
.fs3_c00223{font-size:36.000051px;}
.fs4_c00223{font-size:39.757786px;}
.fsc_c00223{font-size:41.999830px;}
.fs9_c00223{font-size:47.368230px;}
.fs6_c00223{font-size:47.368231px;}
.fsa_c00223{font-size:47.368232px;}
.fs7_c00223{font-size:47.368233px;}
.fs8_c00223{font-size:47.368235px;}
.fsd_c00223{font-size:51.661596px;}
.fse_c00223{font-size:55.754999px;}
.fsf_c00223{font-size:59.984997px;}
.fs0_c00223{font-size:71.999997px;}
.fs1_c00223{font-size:74.424240px;}
.fsb_c00223{font-size:77.011488px;}
.fs2_c00223{font-size:84.000120px;}
.fs5_c00223{font-size:95.984996px;}
.y0_c00223{bottom:0.000000px;}
.y1_c00223{bottom:0.000008px;}
.y53_c00223{bottom:29.401163px;}
.y6_c00223{bottom:181.743400px;}
.y5_c00223{bottom:212.118399px;}
.y4_c00223{bottom:242.493398px;}
.y3_c00223{bottom:272.868397px;}
.y2_c00223{bottom:303.243395px;}
.y7_c00223{bottom:337.323974px;}
.y51_c00223{bottom:401.525233px;}
.y38_c00223{bottom:486.888550px;}
.y1a_c00223{bottom:493.328193px;}
.y2e_c00223{bottom:493.343723px;}
.y19_c00223{bottom:493.853349px;}
.y2f_c00223{bottom:493.873061px;}
.y46_c00223{bottom:493.959311px;}
.y2d_c00223{bottom:494.588120px;}
.y47_c00223{bottom:494.792564px;}
.y45_c00223{bottom:494.812830px;}
.y18_c00223{bottom:494.919675px;}
.y2c_c00223{bottom:495.839509px;}
.y44_c00223{bottom:495.847693px;}
.y17_c00223{bottom:495.992682px;}
.y30_c00223{bottom:496.289992px;}
.y1b_c00223{bottom:496.353473px;}
.y48_c00223{bottom:496.973807px;}
.y2b_c00223{bottom:497.484380px;}
.y16_c00223{bottom:497.644566px;}
.y43_c00223{bottom:498.050705px;}
.y49_c00223{bottom:498.365140px;}
.y2a_c00223{bottom:499.172711px;}
.y15_c00223{bottom:499.338107px;}
.y4a_c00223{bottom:500.063439px;}
.y1c_c00223{bottom:500.630691px;}
.y29_c00223{bottom:501.037949px;}
.y14_c00223{bottom:501.207920px;}
.y31_c00223{bottom:501.390163px;}
.y42_c00223{bottom:501.841887px;}
.y4b_c00223{bottom:502.505484px;}
.y1d_c00223{bottom:503.149881px;}
.y4c_c00223{bottom:504.764625px;}
.y32_c00223{bottom:505.018723px;}
.y28_c00223{bottom:505.692484px;}
.y13_c00223{bottom:505.872210px;}
.y41_c00223{bottom:507.311178px;}
.y4d_c00223{bottom:508.033427px;}
.y1e_c00223{bottom:509.101920px;}
.y33_c00223{bottom:510.652700px;}
.y40_c00223{bottom:511.777589px;}
.y27_c00223{bottom:512.093421px;}
.y12_c00223{bottom:512.281650px;}
.y1f_c00223{bottom:513.850725px;}
.y4e_c00223{bottom:516.430791px;}
.y34_c00223{bottom:517.310242px;}
.y3f_c00223{bottom:518.201920px;}
.y26_c00223{bottom:519.400744px;}
.y11_c00223{bottom:519.491089px;}
.y3e_c00223{bottom:522.772118px;}
.y10_c00223{bottom:522.949612px;}
.y4f_c00223{bottom:524.479585px;}
.y20_c00223{bottom:525.634963px;}
.y25_c00223{bottom:526.562252px;}
.yf_c00223{bottom:528.960111px;}
.y35_c00223{bottom:529.273374px;}
.y3d_c00223{bottom:530.544173px;}
.y24_c00223{bottom:531.331371px;}
.y37_c00223{bottom:533.268367px;}
.y3b_c00223{bottom:533.962015px;}
.y50_c00223{bottom:534.281587px;}
.y3c_c00223{bottom:534.438127px;}
.ye_c00223{bottom:536.219342px;}
.y23_c00223{bottom:537.504234px;}
.y21_c00223{bottom:537.874949px;}
.y36_c00223{bottom:538.238862px;}
.y39_c00223{bottom:539.974832px;}
.y22_c00223{bottom:544.567170px;}
.yd_c00223{bottom:545.754118px;}
.y3a_c00223{bottom:577.437330px;}
.y52_c00223{bottom:639.092421px;}
.y54_c00223{bottom:1021.439841px;}
.yb_c00223{bottom:1128.788391px;}
.y9_c00223{bottom:1136.423577px;}
.y8_c00223{bottom:1149.173596px;}
.yc_c00223{bottom:1153.262414px;}
.ya_c00223{bottom:1171.082693px;}
.h6_c00223{height:33.521532px;}
.he_c00223{height:35.988753px;}
.hf_c00223{height:35.988755px;}
.h10_c00223{height:35.988756px;}
.h7_c00223{height:37.020556px;}
.h13_c00223{height:37.459702px;}
.h12_c00223{height:39.108240px;}
.hc_c00223{height:44.107038px;}
.h9_c00223{height:44.107039px;}
.hd_c00223{height:44.107040px;}
.ha_c00223{height:44.107042px;}
.hb_c00223{height:44.107043px;}
.h15_c00223{height:45.588598px;}
.h14_c00223{height:51.916398px;}
.h11_c00223{height:56.295398px;}
.h4_c00223{height:57.017399px;}
.h5_c00223{height:63.820404px;}
.h3_c00223{height:67.042966px;}
.h8_c00223{height:89.376654px;}
.h2_c00223{height:1304.999946px;}
.h0_c00223{height:1304.999953px;}
.h1_c00223{height:1305.000000px;}
.w2_c00223{width:934.874961px;}
.w0_c00223{width:934.875000px;}
.w1_c00223{width:935.250000px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:89.487450px;}
.x2_c00223{left:107.230262px;}
.x3_c00223{left:108.827167px;}
.x41_c00223{left:130.690629px;}
.x16_c00223{left:134.974838px;}
.x15_c00223{left:136.648279px;}
.x17_c00223{left:140.021272px;}
.x18_c00223{left:144.871714px;}
.x19_c00223{left:150.237526px;}
.x1a_c00223{left:152.990336px;}
.x1b_c00223{left:156.000220px;}
.x1c_c00223{left:159.847713px;}
.x26_c00223{left:161.443962px;}
.x1d_c00223{left:163.301377px;}
.x1e_c00223{left:171.586339px;}
.x1f_c00223{left:179.855997px;}
.x20_c00223{left:188.287487px;}
.x21_c00223{left:196.673970px;}
.x22_c00223{left:200.841336px;}
.x23_c00223{left:205.399483px;}
.x24_c00223{left:209.208896px;}
.x25_c00223{left:211.795693px;}
.x6_c00223{left:230.398389px;}
.x5_c00223{left:232.534609px;}
.x7_c00223{left:235.623324px;}
.x8_c00223{left:240.462566px;}
.x9_c00223{left:245.820252px;}
.xa_c00223{left:248.569815px;}
.xb_c00223{left:251.576732px;}
.xc_c00223{left:255.421336px;}
.x2a_c00223{left:256.622047px;}
.xd_c00223{left:258.708042px;}
.xe_c00223{left:263.145298px;}
.xf_c00223{left:271.763354px;}
.x10_c00223{left:283.603990px;}
.x11_c00223{left:291.041304px;}
.x4_c00223{left:295.177092px;}
.x12_c00223{left:299.775542px;}
.x13_c00223{left:303.165014px;}
.x14_c00223{left:307.176807px;}
.x2b_c00223{left:327.047435px;}
.x2c_c00223{left:328.264734px;}
.x2d_c00223{left:329.685747px;}
.x2e_c00223{left:333.082971px;}
.x2f_c00223{left:336.307511px;}
.x30_c00223{left:342.189757px;}
.x31_c00223{left:348.376740px;}
.x32_c00223{left:354.069743px;}
.x33_c00223{left:357.479743px;}
.x34_c00223{left:365.386869px;}
.x35_c00223{left:373.375785px;}
.x36_c00223{left:380.135498px;}
.x37_c00223{left:383.155707px;}
.x38_c00223{left:386.159935px;}
.x39_c00223{left:389.557910px;}
.x3a_c00223{left:392.174988px;}
.x3b_c00223{left:395.489533px;}
.x3c_c00223{left:400.664851px;}
.x3d_c00223{left:403.469600px;}
.x40_c00223{left:452.271732px;}
.x28_c00223{left:464.896169px;}
.x3f_c00223{left:664.443440px;}
.x3e_c00223{left:697.320842px;}
.x29_c00223{left:733.540711px;}
.x27_c00223{left:757.088990px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws3_c00223{word-spacing:-37.057398pt;}
.ws0_c00223{word-spacing:-13.485567pt;}
.ws2_c00223{word-spacing:-0.049560pt;}
.ws4_c00223{word-spacing:0.000000pt;}
.ws1_c00223{word-spacing:250.345590pt;}
._1_c00223{width:1.221071pt;}
._0_c00223{width:6.141662pt;}
._2_c00223{width:24.725951pt;}
._3_c00223{width:27.973935pt;}
.fs3_c00223{font-size:32.000046pt;}
.fs4_c00223{font-size:35.340254pt;}
.fsc_c00223{font-size:37.333182pt;}
.fs9_c00223{font-size:42.105093pt;}
.fs6_c00223{font-size:42.105094pt;}
.fsa_c00223{font-size:42.105095pt;}
.fs7_c00223{font-size:42.105096pt;}
.fs8_c00223{font-size:42.105098pt;}
.fsd_c00223{font-size:45.921418pt;}
.fse_c00223{font-size:49.559999pt;}
.fsf_c00223{font-size:53.319997pt;}
.fs0_c00223{font-size:63.999997pt;}
.fs1_c00223{font-size:66.154880pt;}
.fsb_c00223{font-size:68.454656pt;}
.fs2_c00223{font-size:74.666773pt;}
.fs5_c00223{font-size:85.319996pt;}
.y0_c00223{bottom:0.000000pt;}
.y1_c00223{bottom:0.000007pt;}
.y53_c00223{bottom:26.134367pt;}
.y6_c00223{bottom:161.549689pt;}
.y5_c00223{bottom:188.549688pt;}
.y4_c00223{bottom:215.549687pt;}
.y3_c00223{bottom:242.549686pt;}
.y2_c00223{bottom:269.549685pt;}
.y7_c00223{bottom:299.843533pt;}
.y51_c00223{bottom:356.911319pt;}
.y38_c00223{bottom:432.789822pt;}
.y1a_c00223{bottom:438.513950pt;}
.y2e_c00223{bottom:438.527754pt;}
.y19_c00223{bottom:438.980754pt;}
.y2f_c00223{bottom:438.998276pt;}
.y46_c00223{bottom:439.074943pt;}
.y2d_c00223{bottom:439.633885pt;}
.y47_c00223{bottom:439.815613pt;}
.y45_c00223{bottom:439.833627pt;}
.y18_c00223{bottom:439.928600pt;}
.y2c_c00223{bottom:440.746230pt;}
.y44_c00223{bottom:440.753505pt;}
.y17_c00223{bottom:440.882384pt;}
.y30_c00223{bottom:441.146660pt;}
.y1b_c00223{bottom:441.203087pt;}
.y48_c00223{bottom:441.754495pt;}
.y2b_c00223{bottom:442.208338pt;}
.y16_c00223{bottom:442.350726pt;}
.y43_c00223{bottom:442.711737pt;}
.y49_c00223{bottom:442.991236pt;}
.y2a_c00223{bottom:443.709077pt;}
.y15_c00223{bottom:443.856095pt;}
.y4a_c00223{bottom:444.500834pt;}
.y1c_c00223{bottom:445.005059pt;}
.y29_c00223{bottom:445.367066pt;}
.y14_c00223{bottom:445.518151pt;}
.y31_c00223{bottom:445.680145pt;}
.y42_c00223{bottom:446.081677pt;}
.y4b_c00223{bottom:446.671541pt;}
.y1d_c00223{bottom:447.244339pt;}
.y4c_c00223{bottom:448.679667pt;}
.y32_c00223{bottom:448.905531pt;}
.y28_c00223{bottom:449.504430pt;}
.y13_c00223{bottom:449.664187pt;}
.y41_c00223{bottom:450.943270pt;}
.y4d_c00223{bottom:451.585269pt;}
.y1e_c00223{bottom:452.535040pt;}
.y33_c00223{bottom:453.913511pt;}
.y40_c00223{bottom:454.913413pt;}
.y27_c00223{bottom:455.194152pt;}
.y12_c00223{bottom:455.361467pt;}
.y1f_c00223{bottom:456.756200pt;}
.y4e_c00223{bottom:459.049592pt;}
.y34_c00223{bottom:459.831327pt;}
.y3f_c00223{bottom:460.623928pt;}
.y26_c00223{bottom:461.689550pt;}
.y11_c00223{bottom:461.769857pt;}
.y3e_c00223{bottom:464.686327pt;}
.y10_c00223{bottom:464.844100pt;}
.y4f_c00223{bottom:466.204075pt;}
.y20_c00223{bottom:467.231078pt;}
.y25_c00223{bottom:468.055335pt;}
.yf_c00223{bottom:470.186765pt;}
.y35_c00223{bottom:470.465221pt;}
.y3d_c00223{bottom:471.594820pt;}
.y24_c00223{bottom:472.294552pt;}
.y37_c00223{bottom:474.016326pt;}
.y3b_c00223{bottom:474.632902pt;}
.y50_c00223{bottom:474.916966pt;}
.y3c_c00223{bottom:475.056113pt;}
.ye_c00223{bottom:476.639415pt;}
.y23_c00223{bottom:477.781541pt;}
.y21_c00223{bottom:478.111066pt;}
.y36_c00223{bottom:478.434544pt;}
.y39_c00223{bottom:479.977628pt;}
.y22_c00223{bottom:484.059707pt;}
.yd_c00223{bottom:485.114772pt;}
.y3a_c00223{bottom:513.277627pt;}
.y52_c00223{bottom:568.082152pt;}
.y54_c00223{bottom:907.946525pt;}
.yb_c00223{bottom:1003.367459pt;}
.y9_c00223{bottom:1010.154291pt;}
.y8_c00223{bottom:1021.487641pt;}
.yc_c00223{bottom:1025.122146pt;}
.ya_c00223{bottom:1040.962393pt;}
.h6_c00223{height:29.796918pt;}
.he_c00223{height:31.990003pt;}
.hf_c00223{height:31.990004pt;}
.h10_c00223{height:31.990006pt;}
.h7_c00223{height:32.907161pt;}
.h13_c00223{height:33.297513pt;}
.h12_c00223{height:34.762880pt;}
.hc_c00223{height:39.206256pt;}
.h9_c00223{height:39.206257pt;}
.hd_c00223{height:39.206258pt;}
.ha_c00223{height:39.206259pt;}
.hb_c00223{height:39.206261pt;}
.h15_c00223{height:40.523198pt;}
.h14_c00223{height:46.147909pt;}
.h11_c00223{height:50.040354pt;}
.h4_c00223{height:50.682132pt;}
.h5_c00223{height:56.729248pt;}
.h3_c00223{height:59.593748pt;}
.h8_c00223{height:79.445915pt;}
.h2_c00223{height:1159.999952pt;}
.h0_c00223{height:1159.999959pt;}
.h1_c00223{height:1160.000000pt;}
.w2_c00223{width:830.999965pt;}
.w0_c00223{width:831.000000pt;}
.w1_c00223{width:831.333333pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:79.544400pt;}
.x2_c00223{left:95.315788pt;}
.x3_c00223{left:96.735260pt;}
.x41_c00223{left:116.169448pt;}
.x16_c00223{left:119.977634pt;}
.x15_c00223{left:121.465137pt;}
.x17_c00223{left:124.463353pt;}
.x18_c00223{left:128.774857pt;}
.x19_c00223{left:133.544468pt;}
.x1a_c00223{left:135.991410pt;}
.x1b_c00223{left:138.666862pt;}
.x1c_c00223{left:142.086856pt;}
.x26_c00223{left:143.505744pt;}
.x1d_c00223{left:145.156780pt;}
.x1e_c00223{left:152.521190pt;}
.x1f_c00223{left:159.871997pt;}
.x20_c00223{left:167.366655pt;}
.x21_c00223{left:174.821307pt;}
.x22_c00223{left:178.525632pt;}
.x23_c00223{left:182.577318pt;}
.x24_c00223{left:185.963463pt;}
.x25_c00223{left:188.262839pt;}
.x6_c00223{left:204.798568pt;}
.x5_c00223{left:206.697430pt;}
.x7_c00223{left:209.442955pt;}
.x8_c00223{left:213.744503pt;}
.x9_c00223{left:218.506891pt;}
.xa_c00223{left:220.950947pt;}
.xb_c00223{left:223.623762pt;}
.xc_c00223{left:227.041187pt;}
.x2a_c00223{left:228.108486pt;}
.xd_c00223{left:229.962704pt;}
.xe_c00223{left:233.906932pt;}
.xf_c00223{left:241.567426pt;}
.x10_c00223{left:252.092435pt;}
.x11_c00223{left:258.703382pt;}
.x4_c00223{left:262.379637pt;}
.x12_c00223{left:266.467148pt;}
.x13_c00223{left:269.480012pt;}
.x14_c00223{left:273.046051pt;}
.x2b_c00223{left:290.708831pt;}
.x2c_c00223{left:291.790874pt;}
.x2d_c00223{left:293.053997pt;}
.x2e_c00223{left:296.073752pt;}
.x2f_c00223{left:298.940009pt;}
.x30_c00223{left:304.168673pt;}
.x31_c00223{left:309.668213pt;}
.x32_c00223{left:314.728661pt;}
.x33_c00223{left:317.759772pt;}
.x34_c00223{left:324.788328pt;}
.x35_c00223{left:331.889587pt;}
.x36_c00223{left:337.898220pt;}
.x37_c00223{left:340.582851pt;}
.x38_c00223{left:343.253275pt;}
.x39_c00223{left:346.273697pt;}
.x3a_c00223{left:348.599989pt;}
.x3b_c00223{left:351.546252pt;}
.x3c_c00223{left:356.146534pt;}
.x3d_c00223{left:358.639645pt;}
.x40_c00223{left:402.019318pt;}
.x28_c00223{left:413.241039pt;}
.x3f_c00223{left:590.616391pt;}
.x3e_c00223{left:619.840748pt;}
.x29_c00223{left:652.036188pt;}
.x27_c00223{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fac14a188cb6c0a039e4e829.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.171387;font-style:normal;font-weight:normal;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_8e43963ec20f457cef2cf7a0.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.005371;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.006348;font-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_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;}
.ls0_c00224{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00224{word-spacing:-19.320776px;}
.ws1_c00224{word-spacing:0.000000px;}
._6_c00224{width:2.001158px;}
._9_c00224{width:3.599944px;}
._a_c00224{width:4.812011px;}
._1_c00224{width:6.059647px;}
._8_c00224{width:8.296876px;}
._5_c00224{width:10.237472px;}
._0_c00224{width:13.347634px;}
._2_c00224{width:15.673233px;}
._7_c00224{width:17.350844px;}
._4_c00224{width:23.968734px;}
._b_c00224{width:27.023412px;}
._c_c00224{width:32.062500px;}
._3_c00224{width:34.054663px;}
.fc2_c00224{color:rgb(8,1,0);}
.fc1_c00224{color:rgb(67,91,56);}
.fc0_c00224{color:rgb(0,0,0);}
.fs0_c00224{font-size:71.999997px;}
.fs1_c00224{font-size:74.377724px;}
.y0_c00224{bottom:0.000000px;}
.y1_c00224{bottom:0.000008px;}
.y1d_c00224{bottom:29.401163px;}
.y18_c00224{bottom:307.855535px;}
.y17_c00224{bottom:338.230534px;}
.y16_c00224{bottom:368.605533px;}
.y15_c00224{bottom:398.980531px;}
.y14_c00224{bottom:429.355530px;}
.y13_c00224{bottom:466.930529px;}
.y12_c00224{bottom:525.549362px;}
.y11_c00224{bottom:559.745833px;}
.yf_c00224{bottom:618.962669px;}
.ye_c00224{bottom:649.337668px;}
.yd_c00224{bottom:679.712667px;}
.yc_c00224{bottom:710.087666px;}
.yb_c00224{bottom:740.462664px;}
.ya_c00224{bottom:770.837663px;}
.y9_c00224{bottom:801.212662px;}
.y8_c00224{bottom:831.587661px;}
.y7_c00224{bottom:861.962659px;}
.y6_c00224{bottom:892.337658px;}
.y5_c00224{bottom:922.712657px;}
.y4_c00224{bottom:953.087655px;}
.y3_c00224{bottom:983.462654px;}
.y2_c00224{bottom:1013.837653px;}
.y10_c00224{bottom:1048.037299px;}
.y1b_c00224{bottom:1103.938197px;}
.y1a_c00224{bottom:1134.313196px;}
.y19_c00224{bottom:1164.688195px;}
.y1c_c00224{bottom:1199.188901px;}
.h4_c00224{height:55.160154px;}
.h5_c00224{height:56.981762px;}
.h3_c00224{height:67.042966px;}
.h2_c00224{height:1304.999946px;}
.h0_c00224{height:1304.999953px;}
.h1_c00224{height:1305.000000px;}
.w2_c00224{width:934.874961px;}
.w0_c00224{width:934.875000px;}
.w1_c00224{width:935.250000px;}
.x0_c00224{left:0.000000px;}
.x1_c00224{left:87.902647px;}
.x2_c00224{left:452.271732px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls0_c00224{letter-spacing:0.000000pt;}
.ws0_c00224{word-spacing:-17.174023pt;}
.ws1_c00224{word-spacing:0.000000pt;}
._6_c00224{width:1.778807pt;}
._9_c00224{width:3.199951pt;}
._a_c00224{width:4.277343pt;}
._1_c00224{width:5.386353pt;}
._8_c00224{width:7.375001pt;}
._5_c00224{width:9.099975pt;}
._0_c00224{width:11.864564pt;}
._2_c00224{width:13.931763pt;}
._7_c00224{width:15.422972pt;}
._4_c00224{width:21.305541pt;}
._b_c00224{width:24.020811pt;}
._c_c00224{width:28.500000pt;}
._3_c00224{width:30.270811pt;}
.fs0_c00224{font-size:63.999997pt;}
.fs1_c00224{font-size:66.113533pt;}
.y0_c00224{bottom:0.000000pt;}
.y1_c00224{bottom:0.000007pt;}
.y1d_c00224{bottom:26.134367pt;}
.y18_c00224{bottom:273.649365pt;}
.y17_c00224{bottom:300.649363pt;}
.y16_c00224{bottom:327.649362pt;}
.y15_c00224{bottom:354.649361pt;}
.y14_c00224{bottom:381.649360pt;}
.y13_c00224{bottom:415.049359pt;}
.y12_c00224{bottom:467.154989pt;}
.y11_c00224{bottom:497.551851pt;}
.yf_c00224{bottom:550.189039pt;}
.ye_c00224{bottom:577.189038pt;}
.yd_c00224{bottom:604.189037pt;}
.yc_c00224{bottom:631.189036pt;}
.yb_c00224{bottom:658.189035pt;}
.ya_c00224{bottom:685.189034pt;}
.y9_c00224{bottom:712.189033pt;}
.y8_c00224{bottom:739.189032pt;}
.y7_c00224{bottom:766.189030pt;}
.y6_c00224{bottom:793.189029pt;}
.y5_c00224{bottom:820.189028pt;}
.y4_c00224{bottom:847.189027pt;}
.y3_c00224{bottom:874.189026pt;}
.y2_c00224{bottom:901.189025pt;}
.y10_c00224{bottom:931.588710pt;}
.y1b_c00224{bottom:981.278398pt;}
.y1a_c00224{bottom:1008.278396pt;}
.y19_c00224{bottom:1035.278395pt;}
.y1c_c00224{bottom:1065.945690pt;}
.h4_c00224{height:49.031248pt;}
.h5_c00224{height:50.650455pt;}
.h3_c00224{height:59.593748pt;}
.h2_c00224{height:1159.999952pt;}
.h0_c00224{height:1159.999959pt;}
.h1_c00224{height:1160.000000pt;}
.w2_c00224{width:830.999965pt;}
.w0_c00224{width:831.000000pt;}
.w1_c00224{width:831.333333pt;}
.x0_c00224{left:0.000000pt;}
.x1_c00224{left:78.135686pt;}
.x2_c00224{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e03679701a85bd08a37d51f.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.000000;font-style:normal;font-weight:normal;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_cf4bf2e1098aad43e57448fa.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.171387;font-style:normal;font-weight:normal;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_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.006348;font-style:normal;font-weight:normal;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_99c9063d6b3debb1c4133855.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:1.000000;font-style:normal;font-weight: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_e516231c5cd5f6bdc8fdef2c.woff2')format("woff");}.ff5_c00225{font-family:ff5_c00225;line-height:1.171387;font-style:normal;font-weight: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_c00225;src:url('chunks/assets/font_5f30519047a56bfe00de68fe.woff2')format("woff");}.ff6_c00225{font-family:ff6_c00225;line-height:1.000000;font-style:normal;font-weight: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_c00225;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00225{font-family:ff7_c00225;line-height:0.769531;font-style:normal;font-weight: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_c00225;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff8_c00225{font-family:ff8_c00225;line-height:0.743000;font-style:normal;font-weight: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_c00225;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00225{font-family:ff9_c00225;line-height:0.734863;font-style:normal;font-weight: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_c00225;src:url('chunks/assets/font_2f948870f0d43a59ec6f838d.woff2')format("woff");}.ffa_c00225{font-family:ffa_c00225;line-height:1.119000;font-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_c00225{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00225{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00225{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00225{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00225{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00225{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00225{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00225{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00225{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00225{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00225{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00225{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00225{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00225{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00225{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00225{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00225{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00225{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00225{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00225{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00225{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00225{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00225{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00225{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00225{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00225{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00225{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00225{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00225{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00225{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00225{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00225{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00225{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00225{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00225{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00225{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00225{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00225{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00225{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00225{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00225{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00225{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00225{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00225{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00225{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00225{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00225{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00225{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00225{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00225{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00225{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00225{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00225{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00225{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00225{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00225{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00225{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00225{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00225{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00225{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00225{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00225{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00225{vertical-align:0.000000px;}
.ls0_c00225{letter-spacing:0.000000px;}
.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:-41.689573px;}
.ws0_c00225{word-spacing:-15.171263px;}
.ws2_c00225{word-spacing:-0.055755px;}
.ws4_c00225{word-spacing:0.000000px;}
.ws1_c00225{word-spacing:281.638789px;}
._0_c00225{width:1.374251px;}
._3_c00225{width:2.400102px;}
._2_c00225{width:5.580988px;}
._1_c00225{width:6.815573px;}
.fc4_c00225{color:transparent;}
.fc3_c00225{color:rgb(9,71,81);}
.fc1_c00225{color:rgb(67,91,56);}
.fc2_c00225{color:rgb(255,255,255);}
.fc0_c00225{color:rgb(0,0,0);}
.fs3_c00225{font-size:36.000051px;}
.fs4_c00225{font-size:39.757786px;}
.fsc_c00225{font-size:41.999830px;}
.fs9_c00225{font-size:47.368230px;}
.fs6_c00225{font-size:47.368231px;}
.fsa_c00225{font-size:47.368232px;}
.fs7_c00225{font-size:47.368233px;}
.fs8_c00225{font-size:47.368235px;}
.fsd_c00225{font-size:51.661596px;}
.fse_c00225{font-size:55.754999px;}
.fsf_c00225{font-size:59.984997px;}
.fs0_c00225{font-size:71.999997px;}
.fs1_c00225{font-size:74.424240px;}
.fsb_c00225{font-size:77.011488px;}
.fs2_c00225{font-size:84.000120px;}
.fs5_c00225{font-size:95.984996px;}
.y0_c00225{bottom:0.000000px;}
.y1_c00225{bottom:0.000008px;}
.y53_c00225{bottom:29.401163px;}
.y6_c00225{bottom:180.618580px;}
.y5_c00225{bottom:210.993579px;}
.y4_c00225{bottom:241.368578px;}
.y3_c00225{bottom:271.743577px;}
.y2_c00225{bottom:302.118575px;}
.y7_c00225{bottom:336.199226px;}
.y51_c00225{bottom:401.525233px;}
.y38_c00225{bottom:486.888370px;}
.y1a_c00225{bottom:493.328373px;}
.y2e_c00225{bottom:493.343471px;}
.y19_c00225{bottom:493.853637px;}
.y2f_c00225{bottom:493.873313px;}
.y46_c00225{bottom:493.959419px;}
.y2d_c00225{bottom:494.588120px;}
.y47_c00225{bottom:494.792744px;}
.y45_c00225{bottom:494.812830px;}
.y18_c00225{bottom:494.919783px;}
.y2c_c00225{bottom:495.839401px;}
.y44_c00225{bottom:495.847621px;}
.y17_c00225{bottom:495.993006px;}
.y30_c00225{bottom:496.289812px;}
.y1b_c00225{bottom:496.353473px;}
.y48_c00225{bottom:496.973987px;}
.y2b_c00225{bottom:497.484272px;}
.y16_c00225{bottom:497.644566px;}
.y43_c00225{bottom:498.050345px;}
.y49_c00225{bottom:498.364888px;}
.y2a_c00225{bottom:499.172531px;}
.y15_c00225{bottom:499.338107px;}
.y4a_c00225{bottom:500.063187px;}
.y1c_c00225{bottom:500.630691px;}
.y29_c00225{bottom:501.037769px;}
.y14_c00225{bottom:501.208172px;}
.y31_c00225{bottom:501.390631px;}
.y42_c00225{bottom:501.842067px;}
.y4b_c00225{bottom:502.505484px;}
.y1d_c00225{bottom:503.149449px;}
.y4c_c00225{bottom:504.764445px;}
.y32_c00225{bottom:505.018795px;}
.y28_c00225{bottom:505.692124px;}
.y13_c00225{bottom:505.871886px;}
.y41_c00225{bottom:507.310818px;}
.y4d_c00225{bottom:508.033427px;}
.y1e_c00225{bottom:509.101992px;}
.y33_c00225{bottom:510.652700px;}
.y40_c00225{bottom:511.777409px;}
.y27_c00225{bottom:512.093493px;}
.y12_c00225{bottom:512.281758px;}
.y1f_c00225{bottom:513.850725px;}
.y4e_c00225{bottom:516.430683px;}
.y34_c00225{bottom:517.310350px;}
.y3f_c00225{bottom:518.202172px;}
.y26_c00225{bottom:519.400636px;}
.y11_c00225{bottom:519.490837px;}
.y3e_c00225{bottom:522.772046px;}
.y10_c00225{bottom:522.949612px;}
.y4f_c00225{bottom:524.479585px;}
.y20_c00225{bottom:525.634639px;}
.y25_c00225{bottom:526.562252px;}
.yf_c00225{bottom:528.959931px;}
.y35_c00225{bottom:529.273374px;}
.y3d_c00225{bottom:530.544173px;}
.y24_c00225{bottom:531.331479px;}
.y37_c00225{bottom:533.268115px;}
.y3b_c00225{bottom:533.961835px;}
.y50_c00225{bottom:534.281911px;}
.y3c_c00225{bottom:534.437983px;}
.ye_c00225{bottom:536.219342px;}
.y23_c00225{bottom:537.503802px;}
.y21_c00225{bottom:537.875201px;}
.y36_c00225{bottom:538.238934px;}
.y39_c00225{bottom:539.974724px;}
.y22_c00225{bottom:544.567278px;}
.yd_c00225{bottom:545.754118px;}
.y3a_c00225{bottom:577.437042px;}
.y52_c00225{bottom:639.092601px;}
.y54_c00225{bottom:1021.439863px;}
.yb_c00225{bottom:1128.788247px;}
.y9_c00225{bottom:1136.423523px;}
.y8_c00225{bottom:1149.173542px;}
.yc_c00225{bottom:1153.262281px;}
.ya_c00225{bottom:1171.082779px;}
.h6_c00225{height:33.521532px;}
.he_c00225{height:35.988753px;}
.hf_c00225{height:35.988755px;}
.h10_c00225{height:35.988756px;}
.h7_c00225{height:37.020556px;}
.h13_c00225{height:37.459702px;}
.h12_c00225{height:39.108240px;}
.hc_c00225{height:44.107038px;}
.h9_c00225{height:44.107039px;}
.hd_c00225{height:44.107040px;}
.ha_c00225{height:44.107042px;}
.hb_c00225{height:44.107043px;}
.h14_c00225{height:51.916398px;}
.h11_c00225{height:56.295398px;}
.h15_c00225{height:56.325912px;}
.h4_c00225{height:57.017399px;}
.h5_c00225{height:63.820404px;}
.h3_c00225{height:67.042966px;}
.h8_c00225{height:89.376654px;}
.h2_c00225{height:1304.999946px;}
.h0_c00225{height:1304.999953px;}
.h1_c00225{height:1305.000000px;}
.w2_c00225{width:934.874961px;}
.w0_c00225{width:934.875000px;}
.w1_c00225{width:935.250000px;}
.x0_c00225{left:0.000000px;}
.x1_c00225{left:89.487450px;}
.x2_c00225{left:90.844844px;}
.x3_c00225{left:107.230262px;}
.x4_c00225{left:108.827167px;}
.x42_c00225{left:130.690629px;}
.x17_c00225{left:134.974838px;}
.x16_c00225{left:136.648279px;}
.x18_c00225{left:140.021272px;}
.x19_c00225{left:144.871714px;}
.x1a_c00225{left:150.237526px;}
.x1b_c00225{left:152.990336px;}
.x1c_c00225{left:156.000220px;}
.x1d_c00225{left:159.847713px;}
.x27_c00225{left:161.443962px;}
.x1e_c00225{left:163.301377px;}
.x1f_c00225{left:171.586339px;}
.x20_c00225{left:179.855997px;}
.x21_c00225{left:188.287487px;}
.x22_c00225{left:196.673970px;}
.x23_c00225{left:200.841336px;}
.x24_c00225{left:205.399483px;}
.x25_c00225{left:209.208896px;}
.x26_c00225{left:211.795693px;}
.x7_c00225{left:230.398389px;}
.x6_c00225{left:232.534609px;}
.x8_c00225{left:235.623324px;}
.x9_c00225{left:240.462566px;}
.xa_c00225{left:245.820252px;}
.xb_c00225{left:248.569815px;}
.xc_c00225{left:251.576732px;}
.xd_c00225{left:255.421336px;}
.x2b_c00225{left:256.622047px;}
.xe_c00225{left:258.708042px;}
.xf_c00225{left:263.145298px;}
.x10_c00225{left:271.763354px;}
.x11_c00225{left:283.603990px;}
.x12_c00225{left:291.041304px;}
.x5_c00225{left:295.177092px;}
.x13_c00225{left:299.775542px;}
.x14_c00225{left:303.165014px;}
.x15_c00225{left:307.176807px;}
.x2c_c00225{left:327.047435px;}
.x2d_c00225{left:328.264734px;}
.x2e_c00225{left:329.685747px;}
.x2f_c00225{left:333.082971px;}
.x30_c00225{left:336.307511px;}
.x31_c00225{left:342.189757px;}
.x32_c00225{left:348.376740px;}
.x33_c00225{left:354.069743px;}
.x34_c00225{left:357.479743px;}
.x35_c00225{left:365.386869px;}
.x36_c00225{left:373.375785px;}
.x37_c00225{left:380.135498px;}
.x38_c00225{left:383.155707px;}
.x39_c00225{left:386.159935px;}
.x3a_c00225{left:389.557910px;}
.x3b_c00225{left:392.174988px;}
.x3c_c00225{left:395.489533px;}
.x3d_c00225{left:400.664851px;}
.x3e_c00225{left:403.469600px;}
.x41_c00225{left:452.271732px;}
.x29_c00225{left:464.896169px;}
.x40_c00225{left:664.443440px;}
.x3f_c00225{left:697.320842px;}
.x2a_c00225{left:733.540711px;}
.x28_c00225{left:757.088990px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws3_c00225{word-spacing:-37.057398pt;}
.ws0_c00225{word-spacing:-13.485567pt;}
.ws2_c00225{word-spacing:-0.049560pt;}
.ws4_c00225{word-spacing:0.000000pt;}
.ws1_c00225{word-spacing:250.345590pt;}
._0_c00225{width:1.221556pt;}
._3_c00225{width:2.133424pt;}
._2_c00225{width:4.960878pt;}
._1_c00225{width:6.058287pt;}
.fs3_c00225{font-size:32.000046pt;}
.fs4_c00225{font-size:35.340254pt;}
.fsc_c00225{font-size:37.333182pt;}
.fs9_c00225{font-size:42.105093pt;}
.fs6_c00225{font-size:42.105094pt;}
.fsa_c00225{font-size:42.105095pt;}
.fs7_c00225{font-size:42.105096pt;}
.fs8_c00225{font-size:42.105098pt;}
.fsd_c00225{font-size:45.921418pt;}
.fse_c00225{font-size:49.559999pt;}
.fsf_c00225{font-size:53.319997pt;}
.fs0_c00225{font-size:63.999997pt;}
.fs1_c00225{font-size:66.154880pt;}
.fsb_c00225{font-size:68.454656pt;}
.fs2_c00225{font-size:74.666773pt;}
.fs5_c00225{font-size:85.319996pt;}
.y0_c00225{bottom:0.000000pt;}
.y1_c00225{bottom:0.000007pt;}
.y53_c00225{bottom:26.134367pt;}
.y6_c00225{bottom:160.549849pt;}
.y5_c00225{bottom:187.549848pt;}
.y4_c00225{bottom:214.549847pt;}
.y3_c00225{bottom:241.549846pt;}
.y2_c00225{bottom:268.549845pt;}
.y7_c00225{bottom:298.843757pt;}
.y51_c00225{bottom:356.911319pt;}
.y38_c00225{bottom:432.789662pt;}
.y1a_c00225{bottom:438.514110pt;}
.y2e_c00225{bottom:438.527530pt;}
.y19_c00225{bottom:438.981010pt;}
.y2f_c00225{bottom:438.998500pt;}
.y46_c00225{bottom:439.075039pt;}
.y2d_c00225{bottom:439.633885pt;}
.y47_c00225{bottom:439.815773pt;}
.y45_c00225{bottom:439.833627pt;}
.y18_c00225{bottom:439.928696pt;}
.y2c_c00225{bottom:440.746134pt;}
.y44_c00225{bottom:440.753441pt;}
.y17_c00225{bottom:440.882672pt;}
.y30_c00225{bottom:441.146500pt;}
.y1b_c00225{bottom:441.203087pt;}
.y48_c00225{bottom:441.754655pt;}
.y2b_c00225{bottom:442.208242pt;}
.y16_c00225{bottom:442.350726pt;}
.y43_c00225{bottom:442.711417pt;}
.y49_c00225{bottom:442.991012pt;}
.y2a_c00225{bottom:443.708917pt;}
.y15_c00225{bottom:443.856095pt;}
.y4a_c00225{bottom:444.500610pt;}
.y1c_c00225{bottom:445.005059pt;}
.y29_c00225{bottom:445.366906pt;}
.y14_c00225{bottom:445.518375pt;}
.y31_c00225{bottom:445.680561pt;}
.y42_c00225{bottom:446.081837pt;}
.y4b_c00225{bottom:446.671541pt;}
.y1d_c00225{bottom:447.243955pt;}
.y4c_c00225{bottom:448.679507pt;}
.y32_c00225{bottom:448.905595pt;}
.y28_c00225{bottom:449.504110pt;}
.y13_c00225{bottom:449.663899pt;}
.y41_c00225{bottom:450.942950pt;}
.y4d_c00225{bottom:451.585269pt;}
.y1e_c00225{bottom:452.535104pt;}
.y33_c00225{bottom:453.913511pt;}
.y40_c00225{bottom:454.913253pt;}
.y27_c00225{bottom:455.194216pt;}
.y12_c00225{bottom:455.361563pt;}
.y1f_c00225{bottom:456.756200pt;}
.y4e_c00225{bottom:459.049496pt;}
.y34_c00225{bottom:459.831423pt;}
.y3f_c00225{bottom:460.624152pt;}
.y26_c00225{bottom:461.689454pt;}
.y11_c00225{bottom:461.769633pt;}
.y3e_c00225{bottom:464.686263pt;}
.y10_c00225{bottom:464.844100pt;}
.y4f_c00225{bottom:466.204075pt;}
.y20_c00225{bottom:467.230790pt;}
.y25_c00225{bottom:468.055335pt;}
.yf_c00225{bottom:470.186605pt;}
.y35_c00225{bottom:470.465221pt;}
.y3d_c00225{bottom:471.594820pt;}
.y24_c00225{bottom:472.294648pt;}
.y37_c00225{bottom:474.016102pt;}
.y3b_c00225{bottom:474.632742pt;}
.y50_c00225{bottom:474.917254pt;}
.y3c_c00225{bottom:475.055985pt;}
.ye_c00225{bottom:476.639415pt;}
.y23_c00225{bottom:477.781157pt;}
.y21_c00225{bottom:478.111290pt;}
.y36_c00225{bottom:478.434608pt;}
.y39_c00225{bottom:479.977532pt;}
.y22_c00225{bottom:484.059803pt;}
.yd_c00225{bottom:485.114772pt;}
.y3a_c00225{bottom:513.277371pt;}
.y52_c00225{bottom:568.082312pt;}
.y54_c00225{bottom:907.946545pt;}
.yb_c00225{bottom:1003.367331pt;}
.y9_c00225{bottom:1010.154243pt;}
.y8_c00225{bottom:1021.487593pt;}
.yc_c00225{bottom:1025.122028pt;}
.ya_c00225{bottom:1040.962470pt;}
.h6_c00225{height:29.796918pt;}
.he_c00225{height:31.990003pt;}
.hf_c00225{height:31.990004pt;}
.h10_c00225{height:31.990006pt;}
.h7_c00225{height:32.907161pt;}
.h13_c00225{height:33.297513pt;}
.h12_c00225{height:34.762880pt;}
.hc_c00225{height:39.206256pt;}
.h9_c00225{height:39.206257pt;}
.hd_c00225{height:39.206258pt;}
.ha_c00225{height:39.206259pt;}
.hb_c00225{height:39.206261pt;}
.h14_c00225{height:46.147909pt;}
.h11_c00225{height:50.040354pt;}
.h15_c00225{height:50.067478pt;}
.h4_c00225{height:50.682132pt;}
.h5_c00225{height:56.729248pt;}
.h3_c00225{height:59.593748pt;}
.h8_c00225{height:79.445915pt;}
.h2_c00225{height:1159.999952pt;}
.h0_c00225{height:1159.999959pt;}
.h1_c00225{height:1160.000000pt;}
.w2_c00225{width:830.999965pt;}
.w0_c00225{width:831.000000pt;}
.w1_c00225{width:831.333333pt;}
.x0_c00225{left:0.000000pt;}
.x1_c00225{left:79.544400pt;}
.x2_c00225{left:80.750973pt;}
.x3_c00225{left:95.315788pt;}
.x4_c00225{left:96.735260pt;}
.x42_c00225{left:116.169448pt;}
.x17_c00225{left:119.977634pt;}
.x16_c00225{left:121.465137pt;}
.x18_c00225{left:124.463353pt;}
.x19_c00225{left:128.774857pt;}
.x1a_c00225{left:133.544468pt;}
.x1b_c00225{left:135.991410pt;}
.x1c_c00225{left:138.666862pt;}
.x1d_c00225{left:142.086856pt;}
.x27_c00225{left:143.505744pt;}
.x1e_c00225{left:145.156780pt;}
.x1f_c00225{left:152.521190pt;}
.x20_c00225{left:159.871997pt;}
.x21_c00225{left:167.366655pt;}
.x22_c00225{left:174.821307pt;}
.x23_c00225{left:178.525632pt;}
.x24_c00225{left:182.577318pt;}
.x25_c00225{left:185.963463pt;}
.x26_c00225{left:188.262839pt;}
.x7_c00225{left:204.798568pt;}
.x6_c00225{left:206.697430pt;}
.x8_c00225{left:209.442955pt;}
.x9_c00225{left:213.744503pt;}
.xa_c00225{left:218.506891pt;}
.xb_c00225{left:220.950947pt;}
.xc_c00225{left:223.623762pt;}
.xd_c00225{left:227.041187pt;}
.x2b_c00225{left:228.108486pt;}
.xe_c00225{left:229.962704pt;}
.xf_c00225{left:233.906932pt;}
.x10_c00225{left:241.567426pt;}
.x11_c00225{left:252.092435pt;}
.x12_c00225{left:258.703382pt;}
.x5_c00225{left:262.379637pt;}
.x13_c00225{left:266.467148pt;}
.x14_c00225{left:269.480012pt;}
.x15_c00225{left:273.046051pt;}
.x2c_c00225{left:290.708831pt;}
.x2d_c00225{left:291.790874pt;}
.x2e_c00225{left:293.053997pt;}
.x2f_c00225{left:296.073752pt;}
.x30_c00225{left:298.940009pt;}
.x31_c00225{left:304.168673pt;}
.x32_c00225{left:309.668213pt;}
.x33_c00225{left:314.728661pt;}
.x34_c00225{left:317.759772pt;}
.x35_c00225{left:324.788328pt;}
.x36_c00225{left:331.889587pt;}
.x37_c00225{left:337.898220pt;}
.x38_c00225{left:340.582851pt;}
.x39_c00225{left:343.253275pt;}
.x3a_c00225{left:346.273697pt;}
.x3b_c00225{left:348.599989pt;}
.x3c_c00225{left:351.546252pt;}
.x3d_c00225{left:356.146534pt;}
.x3e_c00225{left:358.639645pt;}
.x41_c00225{left:402.019318pt;}
.x29_c00225{left:413.241039pt;}
.x40_c00225{left:590.616391pt;}
.x3f_c00225{left:619.840748pt;}
.x2a_c00225{left:652.036188pt;}
.x28_c00225{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7c54da7802ec37a03e2c354.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.171387;font-style:normal;font-weight:normal;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_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.006348;font-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_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);}
.v0_c00226{vertical-align:0.000000px;}
.ls0_c00226{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00226{word-spacing:-19.320776px;}
.ws1_c00226{word-spacing:0.000000px;}
._a_c00226{width:1.434333px;}
._9_c00226{width:3.315468px;}
._c_c00226{width:4.936913px;}
._b_c00226{width:6.890626px;}
._e_c00226{width:9.519173px;}
._d_c00226{width:11.181057px;}
._6_c00226{width:12.496675px;}
._0_c00226{width:14.449218px;}
._f_c00226{width:16.354657px;}
._1_c00226{width:20.578075px;}
._7_c00226{width:22.371050px;}
._5_c00226{width:24.205075px;}
._8_c00226{width:25.912831px;}
._2_c00226{width:32.755528px;}
._4_c00226{width:34.603773px;}
._3_c00226{width:37.453077px;}
.fc1_c00226{color:rgb(67,91,56);}
.fc0_c00226{color:rgb(0,0,0);}
.fs0_c00226{font-size:71.999997px;}
.fs1_c00226{font-size:74.377724px;}
.y0_c00226{bottom:0.000000px;}
.y1_c00226{bottom:0.000008px;}
.y26_c00226{bottom:29.400983px;}
.y1e_c00226{bottom:93.711441px;}
.y1d_c00226{bottom:124.086440px;}
.y1c_c00226{bottom:154.461439px;}
.y1b_c00226{bottom:184.836437px;}
.y1a_c00226{bottom:215.211436px;}
.y19_c00226{bottom:245.586435px;}
.y18_c00226{bottom:275.961434px;}
.y17_c00226{bottom:306.336432px;}
.y16_c00226{bottom:336.711431px;}
.y15_c00226{bottom:367.086430px;}
.y14_c00226{bottom:397.461429px;}
.y13_c00226{bottom:427.836427px;}
.y12_c00226{bottom:458.211426px;}
.y11_c00226{bottom:488.586425px;}
.y10_c00226{bottom:518.961424px;}
.yf_c00226{bottom:549.336422px;}
.ye_c00226{bottom:579.711421px;}
.yd_c00226{bottom:610.086420px;}
.yc_c00226{bottom:640.461419px;}
.yb_c00226{bottom:670.836417px;}
.ya_c00226{bottom:701.211416px;}
.y9_c00226{bottom:731.586415px;}
.y8_c00226{bottom:761.961413px;}
.y7_c00226{bottom:792.336412px;}
.y6_c00226{bottom:822.711411px;}
.y5_c00226{bottom:853.086410px;}
.y4_c00226{bottom:883.461408px;}
.y3_c00226{bottom:913.836407px;}
.y2_c00226{bottom:944.211406px;}
.y1f_c00226{bottom:983.280368px;}
.y24_c00226{bottom:1043.187933px;}
.y23_c00226{bottom:1073.562932px;}
.y22_c00226{bottom:1103.937931px;}
.y21_c00226{bottom:1134.312930px;}
.y20_c00226{bottom:1164.687928px;}
.y25_c00226{bottom:1199.188987px;}
.h4_c00226{height:55.160154px;}
.h5_c00226{height:56.981762px;}
.h3_c00226{height:67.042966px;}
.h2_c00226{height:1304.999946px;}
.h0_c00226{height:1304.999953px;}
.h1_c00226{height:1305.000000px;}
.w2_c00226{width:934.874961px;}
.w0_c00226{width:934.875000px;}
.w1_c00226{width:935.250000px;}
.x0_c00226{left:0.000000px;}
.x2_c00226{left:87.902647px;}
.x1_c00226{left:89.487450px;}
.x3_c00226{left:452.271732px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls0_c00226{letter-spacing:0.000000pt;}
.ws0_c00226{word-spacing:-17.174023pt;}
.ws1_c00226{word-spacing:0.000000pt;}
._a_c00226{width:1.274963pt;}
._9_c00226{width:2.947083pt;}
._c_c00226{width:4.388367pt;}
._b_c00226{width:6.125001pt;}
._e_c00226{width:8.461487pt;}
._d_c00226{width:9.938717pt;}
._6_c00226{width:11.108155pt;}
._0_c00226{width:12.843749pt;}
._f_c00226{width:14.537473pt;}
._1_c00226{width:18.291622pt;}
._7_c00226{width:19.885377pt;}
._5_c00226{width:21.515622pt;}
._8_c00226{width:23.033628pt;}
._2_c00226{width:29.116025pt;}
._4_c00226{width:30.758910pt;}
._3_c00226{width:33.291624pt;}
.fs0_c00226{font-size:63.999997pt;}
.fs1_c00226{font-size:66.113533pt;}
.y0_c00226{bottom:0.000000pt;}
.y1_c00226{bottom:0.000007pt;}
.y26_c00226{bottom:26.134207pt;}
.y1e_c00226{bottom:83.299059pt;}
.y1d_c00226{bottom:110.299058pt;}
.y1c_c00226{bottom:137.299057pt;}
.y1b_c00226{bottom:164.299056pt;}
.y1a_c00226{bottom:191.299054pt;}
.y19_c00226{bottom:218.299053pt;}
.y18_c00226{bottom:245.299052pt;}
.y17_c00226{bottom:272.299051pt;}
.y16_c00226{bottom:299.299050pt;}
.y15_c00226{bottom:326.299049pt;}
.y14_c00226{bottom:353.299048pt;}
.y13_c00226{bottom:380.299047pt;}
.y12_c00226{bottom:407.299045pt;}
.y11_c00226{bottom:434.299044pt;}
.y10_c00226{bottom:461.299043pt;}
.yf_c00226{bottom:488.299042pt;}
.ye_c00226{bottom:515.299041pt;}
.yd_c00226{bottom:542.299040pt;}
.yc_c00226{bottom:569.299039pt;}
.yb_c00226{bottom:596.299038pt;}
.ya_c00226{bottom:623.299036pt;}
.y9_c00226{bottom:650.299035pt;}
.y8_c00226{bottom:677.299034pt;}
.y7_c00226{bottom:704.299033pt;}
.y6_c00226{bottom:731.299032pt;}
.y5_c00226{bottom:758.299031pt;}
.y4_c00226{bottom:785.299030pt;}
.y3_c00226{bottom:812.299029pt;}
.y2_c00226{bottom:839.299027pt;}
.y1f_c00226{bottom:874.026994pt;}
.y24_c00226{bottom:927.278163pt;}
.y23_c00226{bottom:954.278162pt;}
.y22_c00226{bottom:981.278161pt;}
.y21_c00226{bottom:1008.278160pt;}
.y20_c00226{bottom:1035.278158pt;}
.y25_c00226{bottom:1065.945766pt;}
.h4_c00226{height:49.031248pt;}
.h5_c00226{height:50.650455pt;}
.h3_c00226{height:59.593748pt;}
.h2_c00226{height:1159.999952pt;}
.h0_c00226{height:1159.999959pt;}
.h1_c00226{height:1160.000000pt;}
.w2_c00226{width:830.999965pt;}
.w0_c00226{width:831.000000pt;}
.w1_c00226{width:831.333333pt;}
.x0_c00226{left:0.000000pt;}
.x2_c00226{left:78.135686pt;}
.x1_c00226{left:79.544400pt;}
.x3_c00226{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.006348;font-style:normal;font-weight:normal;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_4617f074dad8ffd2d8afc3bf.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.171387;font-style:normal;font-weight:normal;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_fce876165e04fe57f79e0a80.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.000000;font-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_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;}
.ls0_c00227{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00227{word-spacing:-18.703125px;}
.ws1_c00227{word-spacing:0.000000px;}
._3_c00227{width:4.615010px;}
._1_c00227{width:8.537064px;}
._0_c00227{width:11.203100px;}
._4_c00227{width:15.615759px;}
._2_c00227{width:32.062500px;}
.fc1_c00227{color:rgb(0,0,0);}
.fc0_c00227{color:rgb(67,91,56);}
.fs0_c00227{font-size:71.999997px;}
.y0_c00227{bottom:0.000000px;}
.y1_c00227{bottom:0.000008px;}
.yb_c00227{bottom:29.401163px;}
.y7_c00227{bottom:892.246956px;}
.y6_c00227{bottom:922.621955px;}
.y5_c00227{bottom:952.996953px;}
.y4_c00227{bottom:983.371952px;}
.y3_c00227{bottom:1013.746951px;}
.y2_c00227{bottom:1054.696773px;}
.ya_c00227{bottom:1128.197063px;}
.y9_c00227{bottom:1158.572061px;}
.y8_c00227{bottom:1199.772371px;}
.h3_c00227{height:55.160154px;}
.h4_c00227{height:67.042966px;}
.h2_c00227{height:1304.999946px;}
.h0_c00227{height:1304.999953px;}
.h1_c00227{height:1305.000000px;}
.w2_c00227{width:934.874961px;}
.w0_c00227{width:934.875000px;}
.w1_c00227{width:935.250000px;}
.x0_c00227{left:0.000000px;}
.x1_c00227{left:87.905041px;}
.x2_c00227{left:89.624675px;}
.x3_c00227{left:452.271732px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws0_c00227{word-spacing:-16.625000pt;}
.ws1_c00227{word-spacing:0.000000pt;}
._3_c00227{width:4.102231pt;}
._1_c00227{width:7.588501pt;}
._0_c00227{width:9.958311pt;}
._4_c00227{width:13.880675pt;}
._2_c00227{width:28.500000pt;}
.fs0_c00227{font-size:63.999997pt;}
.y0_c00227{bottom:0.000000pt;}
.y1_c00227{bottom:0.000007pt;}
.yb_c00227{bottom:26.134367pt;}
.y7_c00227{bottom:793.108405pt;}
.y6_c00227{bottom:820.108404pt;}
.y5_c00227{bottom:847.108403pt;}
.y4_c00227{bottom:874.108402pt;}
.y3_c00227{bottom:901.108401pt;}
.y2_c00227{bottom:937.508243pt;}
.ya_c00227{bottom:1002.841833pt;}
.y9_c00227{bottom:1029.841832pt;}
.y8_c00227{bottom:1066.464330pt;}
.h3_c00227{height:49.031248pt;}
.h4_c00227{height:59.593748pt;}
.h2_c00227{height:1159.999952pt;}
.h0_c00227{height:1159.999959pt;}
.h1_c00227{height:1160.000000pt;}
.w2_c00227{width:830.999965pt;}
.w0_c00227{width:831.000000pt;}
.w1_c00227{width:831.333333pt;}
.x0_c00227{left:0.000000pt;}
.x1_c00227{left:78.137814pt;}
.x2_c00227{left:79.666377pt;}
.x3_c00227{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4a7276dcd63fe3b2911ca93.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:0.734863;font-style:normal;font-weight: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_c00228;src:url('chunks/assets/font_97098c9110a01ff271cd8040.woff2')format("woff");}.ff5_c00228{font-family:ff5_c00228;line-height:1.000000;font-style:normal;font-weight: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_c00228;src:url('chunks/assets/font_ef75ac09ec0bee8008350615.woff2')format("woff");}.ff6_c00228{font-family:ff6_c00228;line-height:0.713867;font-style:normal;font-weight: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_c00228;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff7_c00228{font-family:ff7_c00228;line-height:1.006348;font-style:normal;font-weight: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_c00228;src:url('chunks/assets/font_99c9063d6b3debb1c4133855.woff2')format("woff");}.ff8_c00228{font-family:ff8_c00228;line-height:1.000000;font-style:normal;font-weight: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_c00228;src:url('chunks/assets/font_f5679fb33e7f104bff334585.woff2')format("woff");}.ff9_c00228{font-family:ff9_c00228;line-height:1.171387;font-style:normal;font-weight: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_c00228;src:url('chunks/assets/font_2c130d84c5f51863efcb6408.woff2')format("woff");}.ffa_c00228{font-family:ffa_c00228;line-height:1.000000;font-style:normal;font-weight: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_c00228;src:url('chunks/assets/font_024a03f2d0a5ccb041d8e986.woff2')format("woff");}.ffb_c00228{font-family:ffb_c00228;line-height:0.894000;font-style:normal;font-weight: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_c00228;src:url('chunks/assets/font_cf7bddc7925867030f9bcf79.woff2')format("woff");}.ffc_c00228{font-family:ffc_c00228;line-height:1.119000;font-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_c00228{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m29_c00228{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m15_c00228{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00228{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m16_c00228{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m28_c00228{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00228{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00228{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00228{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m17_c00228{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00228{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00228{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00228{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m18_c00228{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m27_c00228{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00228{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00228{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00228{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00228{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00228{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m19_c00228{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00228{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m26_c00228{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00228{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00228{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00228{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00228{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1a_c00228{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m25_c00228{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00228{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00228{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00228{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00228{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1b_c00228{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m24_c00228{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00228{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00228{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00228{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00228{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1c_c00228{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00228{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m23_c00228{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00228{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00228{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1d_c00228{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00228{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00228{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00228{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1e_c00228{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00228{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00228{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m1f_c00228{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00228{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m22_c00228{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00228{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00228{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00228{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m20_c00228{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00228{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00228{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m21_c00228{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00228{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m2a_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);}
.v0_c00228{vertical-align:0.000000px;}
.v1_c00228{vertical-align:1.278288px;}
.ls2_c00228{letter-spacing:0.000000px;}
.ls0_c00228{letter-spacing:0.000022px;}
.ls1_c00228{letter-spacing:7.382789px;}
.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;}
}
.ws4_c00228{word-spacing:-16.915769px;}
.ws3_c00228{word-spacing:-15.875533px;}
.ws0_c00228{word-spacing:-15.171263px;}
.ws2_c00228{word-spacing:-0.055755px;}
.ws5_c00228{word-spacing:0.000000px;}
.ws1_c00228{word-spacing:288.058683px;}
._0_c00228{width:1.784797px;}
._4_c00228{width:6.636839px;}
._2_c00228{width:7.718100px;}
._5_c00228{width:16.165419px;}
._1_c00228{width:21.114830px;}
._3_c00228{width:29.242170px;}
.fc5_c00228{color:transparent;}
.fc4_c00228{color:rgb(67,91,56);}
.fc3_c00228{color:rgb(255,49,49);}
.fc2_c00228{color:rgb(9,71,81);}
.fc1_c00228{color:rgb(255,255,255);}
.fc0_c00228{color:rgb(0,0,0);}
.fsb_c00228{font-size:36.000051px;}
.fsc_c00228{font-size:39.757786px;}
.fs6_c00228{font-size:41.999830px;}
.fs3_c00228{font-size:47.368230px;}
.fs0_c00228{font-size:47.368231px;}
.fs4_c00228{font-size:47.368232px;}
.fs1_c00228{font-size:47.368233px;}
.fs2_c00228{font-size:47.368235px;}
.fs7_c00228{font-size:51.661596px;}
.fse_c00228{font-size:55.754999px;}
.fsf_c00228{font-size:56.296218px;}
.fs10_c00228{font-size:56.421836px;}
.fs11_c00228{font-size:59.984997px;}
.fs8_c00228{font-size:71.999997px;}
.fs9_c00228{font-size:74.424240px;}
.fs5_c00228{font-size:77.011488px;}
.fsa_c00228{font-size:84.000120px;}
.fsd_c00228{font-size:95.984996px;}
.y0_c00228{bottom:0.000000px;}
.y1_c00228{bottom:0.000008px;}
.y55_c00228{bottom:29.401163px;}
.y4a_c00228{bottom:109.149619px;}
.y49_c00228{bottom:139.524618px;}
.y48_c00228{bottom:169.899617px;}
.y47_c00228{bottom:200.274616px;}
.y46_c00228{bottom:230.649614px;}
.y45_c00228{bottom:261.024613px;}
.y44_c00228{bottom:291.399612px;}
.y4b_c00228{bottom:327.597279px;}
.y43_c00228{bottom:401.525233px;}
.y2d_c00228{bottom:486.888550px;}
.yf_c00228{bottom:493.328193px;}
.y23_c00228{bottom:493.343723px;}
.ye_c00228{bottom:493.853349px;}
.y24_c00228{bottom:493.873061px;}
.y39_c00228{bottom:493.959311px;}
.y22_c00228{bottom:494.588120px;}
.y3a_c00228{bottom:494.792564px;}
.y38_c00228{bottom:494.812830px;}
.yd_c00228{bottom:494.919675px;}
.y21_c00228{bottom:495.839509px;}
.y37_c00228{bottom:495.847693px;}
.yc_c00228{bottom:495.992682px;}
.y25_c00228{bottom:496.289992px;}
.y10_c00228{bottom:496.353473px;}
.y3b_c00228{bottom:496.973807px;}
.y20_c00228{bottom:497.484380px;}
.yb_c00228{bottom:497.644566px;}
.y36_c00228{bottom:498.050705px;}
.y3c_c00228{bottom:498.365140px;}
.y1f_c00228{bottom:499.172711px;}
.ya_c00228{bottom:499.338107px;}
.y3d_c00228{bottom:500.063439px;}
.y11_c00228{bottom:500.630691px;}
.y1e_c00228{bottom:501.037949px;}
.y9_c00228{bottom:501.207920px;}
.y26_c00228{bottom:501.390163px;}
.y35_c00228{bottom:501.841887px;}
.y3e_c00228{bottom:502.505484px;}
.y12_c00228{bottom:503.149881px;}
.y3f_c00228{bottom:504.764625px;}
.y27_c00228{bottom:505.018723px;}
.y1d_c00228{bottom:505.692484px;}
.y8_c00228{bottom:505.872210px;}
.y34_c00228{bottom:507.311178px;}
.y40_c00228{bottom:508.033427px;}
.y13_c00228{bottom:509.101920px;}
.y28_c00228{bottom:510.652700px;}
.y33_c00228{bottom:511.777589px;}
.y1c_c00228{bottom:512.093421px;}
.y7_c00228{bottom:512.281650px;}
.y14_c00228{bottom:513.850725px;}
.y41_c00228{bottom:516.430791px;}
.y29_c00228{bottom:517.310242px;}
.y32_c00228{bottom:518.201920px;}
.y1b_c00228{bottom:519.400744px;}
.y6_c00228{bottom:519.491089px;}
.y31_c00228{bottom:522.772118px;}
.y5_c00228{bottom:522.949612px;}
.y42_c00228{bottom:524.479585px;}
.y15_c00228{bottom:525.634963px;}
.y1a_c00228{bottom:526.562252px;}
.y4_c00228{bottom:528.960111px;}
.y2a_c00228{bottom:529.273374px;}
.y30_c00228{bottom:530.544173px;}
.y19_c00228{bottom:531.331371px;}
.y2c_c00228{bottom:533.268367px;}
.y2e_c00228{bottom:533.962015px;}
.y2f_c00228{bottom:534.438127px;}
.y3_c00228{bottom:536.219342px;}
.y18_c00228{bottom:537.504234px;}
.y16_c00228{bottom:537.874949px;}
.y2b_c00228{bottom:538.238862px;}
.y51_c00228{bottom:539.974832px;}
.y17_c00228{bottom:544.567170px;}
.y2_c00228{bottom:545.754118px;}
.y52_c00228{bottom:577.437330px;}
.y53_c00228{bottom:639.092421px;}
.y57_c00228{bottom:931.634608px;}
.y54_c00228{bottom:985.314759px;}
.y56_c00228{bottom:1029.601429px;}
.y4f_c00228{bottom:1128.788391px;}
.y4d_c00228{bottom:1136.423577px;}
.y4c_c00228{bottom:1149.173596px;}
.y50_c00228{bottom:1153.262414px;}
.y4e_c00228{bottom:1171.082693px;}
.h11_c00228{height:33.521532px;}
.h8_c00228{height:35.988753px;}
.h9_c00228{height:35.988755px;}
.ha_c00228{height:35.988756px;}
.h12_c00228{height:37.020556px;}
.hd_c00228{height:37.459702px;}
.hc_c00228{height:39.108240px;}
.h6_c00228{height:44.107038px;}
.h3_c00228{height:44.107039px;}
.h7_c00228{height:44.107040px;}
.h4_c00228{height:44.107042px;}
.h5_c00228{height:44.107043px;}
.h15_c00228{height:51.916398px;}
.h16_c00228{height:52.862148px;}
.h17_c00228{height:52.980104px;}
.hb_c00228{height:56.295398px;}
.h18_c00228{height:56.325912px;}
.hf_c00228{height:57.017399px;}
.h14_c00228{height:57.573686px;}
.h10_c00228{height:63.820404px;}
.he_c00228{height:67.042966px;}
.h13_c00228{height:89.376654px;}
.h2_c00228{height:1304.999946px;}
.h0_c00228{height:1304.999953px;}
.h1_c00228{height:1305.000000px;}
.w2_c00228{width:934.874961px;}
.w0_c00228{width:934.875000px;}
.w1_c00228{width:935.250000px;}
.x0_c00228{left:0.000000px;}
.x3a_c00228{left:89.487450px;}
.x3b_c00228{left:107.230262px;}
.x3c_c00228{left:108.827167px;}
.x42_c00228{left:111.134274px;}
.x13_c00228{left:134.974838px;}
.x12_c00228{left:136.648279px;}
.x14_c00228{left:140.021272px;}
.x15_c00228{left:144.871714px;}
.x16_c00228{left:150.237526px;}
.x17_c00228{left:152.990336px;}
.x18_c00228{left:156.000220px;}
.x19_c00228{left:159.847713px;}
.x23_c00228{left:161.443962px;}
.x1a_c00228{left:163.301377px;}
.x1b_c00228{left:171.586339px;}
.x1c_c00228{left:179.855997px;}
.x1d_c00228{left:188.287487px;}
.x1e_c00228{left:196.673970px;}
.x1f_c00228{left:200.841336px;}
.x20_c00228{left:205.399483px;}
.x21_c00228{left:209.208896px;}
.x22_c00228{left:211.795693px;}
.x2_c00228{left:230.398389px;}
.x1_c00228{left:232.534609px;}
.x3_c00228{left:235.623324px;}
.x4_c00228{left:240.462566px;}
.x5_c00228{left:245.820252px;}
.x6_c00228{left:248.569815px;}
.x7_c00228{left:251.576732px;}
.x8_c00228{left:255.421336px;}
.x40_c00228{left:256.622047px;}
.x9_c00228{left:258.708042px;}
.xa_c00228{left:263.145298px;}
.xb_c00228{left:271.763354px;}
.xc_c00228{left:283.603990px;}
.xd_c00228{left:291.041304px;}
.xe_c00228{left:294.435991px;}
.x3d_c00228{left:295.615161px;}
.xf_c00228{left:299.775542px;}
.x10_c00228{left:303.165014px;}
.x11_c00228{left:307.176807px;}
.x26_c00228{left:327.047435px;}
.x27_c00228{left:328.264734px;}
.x28_c00228{left:329.685747px;}
.x29_c00228{left:333.082971px;}
.x2a_c00228{left:336.307511px;}
.x2b_c00228{left:342.189757px;}
.x2c_c00228{left:348.376740px;}
.x25_c00228{left:351.731739px;}
.x2d_c00228{left:354.069743px;}
.x2e_c00228{left:357.479743px;}
.x2f_c00228{left:365.386869px;}
.x30_c00228{left:373.375785px;}
.x31_c00228{left:380.135498px;}
.x32_c00228{left:383.155707px;}
.x33_c00228{left:386.159935px;}
.x34_c00228{left:389.557910px;}
.x35_c00228{left:392.174988px;}
.x36_c00228{left:395.489533px;}
.x37_c00228{left:400.664851px;}
.x38_c00228{left:403.469600px;}
.x43_c00228{left:452.271732px;}
.x3e_c00228{left:464.896169px;}
.x39_c00228{left:697.320842px;}
.x41_c00228{left:711.306762px;}
.x3f_c00228{left:733.540711px;}
.x24_c00228{left:757.088990px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.v1_c00228{vertical-align:1.136256pt;}
.ls2_c00228{letter-spacing:0.000000pt;}
.ls0_c00228{letter-spacing:0.000020pt;}
.ls1_c00228{letter-spacing:6.562479pt;}
.ws4_c00228{word-spacing:-15.036239pt;}
.ws3_c00228{word-spacing:-14.111585pt;}
.ws0_c00228{word-spacing:-13.485567pt;}
.ws2_c00228{word-spacing:-0.049560pt;}
.ws5_c00228{word-spacing:0.000000pt;}
.ws1_c00228{word-spacing:256.052163pt;}
._0_c00228{width:1.586486pt;}
._4_c00228{width:5.899413pt;}
._2_c00228{width:6.860533pt;}
._5_c00228{width:14.369261pt;}
._1_c00228{width:18.768738pt;}
._3_c00228{width:25.993040pt;}
.fsb_c00228{font-size:32.000046pt;}
.fsc_c00228{font-size:35.340254pt;}
.fs6_c00228{font-size:37.333182pt;}
.fs3_c00228{font-size:42.105093pt;}
.fs0_c00228{font-size:42.105094pt;}
.fs4_c00228{font-size:42.105095pt;}
.fs1_c00228{font-size:42.105096pt;}
.fs2_c00228{font-size:42.105098pt;}
.fs7_c00228{font-size:45.921418pt;}
.fse_c00228{font-size:49.559999pt;}
.fsf_c00228{font-size:50.041082pt;}
.fs10_c00228{font-size:50.152743pt;}
.fs11_c00228{font-size:53.319997pt;}
.fs8_c00228{font-size:63.999997pt;}
.fs9_c00228{font-size:66.154880pt;}
.fs5_c00228{font-size:68.454656pt;}
.fsa_c00228{font-size:74.666773pt;}
.fsd_c00228{font-size:85.319996pt;}
.y0_c00228{bottom:0.000000pt;}
.y1_c00228{bottom:0.000007pt;}
.y55_c00228{bottom:26.134367pt;}
.y4a_c00228{bottom:97.021884pt;}
.y49_c00228{bottom:124.021883pt;}
.y48_c00228{bottom:151.021882pt;}
.y47_c00228{bottom:178.021881pt;}
.y46_c00228{bottom:205.021879pt;}
.y45_c00228{bottom:232.021878pt;}
.y44_c00228{bottom:259.021877pt;}
.y4b_c00228{bottom:291.197581pt;}
.y43_c00228{bottom:356.911319pt;}
.y2d_c00228{bottom:432.789822pt;}
.yf_c00228{bottom:438.513950pt;}
.y23_c00228{bottom:438.527754pt;}
.ye_c00228{bottom:438.980754pt;}
.y24_c00228{bottom:438.998276pt;}
.y39_c00228{bottom:439.074943pt;}
.y22_c00228{bottom:439.633885pt;}
.y3a_c00228{bottom:439.815613pt;}
.y38_c00228{bottom:439.833627pt;}
.yd_c00228{bottom:439.928600pt;}
.y21_c00228{bottom:440.746230pt;}
.y37_c00228{bottom:440.753505pt;}
.yc_c00228{bottom:440.882384pt;}
.y25_c00228{bottom:441.146660pt;}
.y10_c00228{bottom:441.203087pt;}
.y3b_c00228{bottom:441.754495pt;}
.y20_c00228{bottom:442.208338pt;}
.yb_c00228{bottom:442.350726pt;}
.y36_c00228{bottom:442.711737pt;}
.y3c_c00228{bottom:442.991236pt;}
.y1f_c00228{bottom:443.709077pt;}
.ya_c00228{bottom:443.856095pt;}
.y3d_c00228{bottom:444.500834pt;}
.y11_c00228{bottom:445.005059pt;}
.y1e_c00228{bottom:445.367066pt;}
.y9_c00228{bottom:445.518151pt;}
.y26_c00228{bottom:445.680145pt;}
.y35_c00228{bottom:446.081677pt;}
.y3e_c00228{bottom:446.671541pt;}
.y12_c00228{bottom:447.244339pt;}
.y3f_c00228{bottom:448.679667pt;}
.y27_c00228{bottom:448.905531pt;}
.y1d_c00228{bottom:449.504430pt;}
.y8_c00228{bottom:449.664187pt;}
.y34_c00228{bottom:450.943270pt;}
.y40_c00228{bottom:451.585269pt;}
.y13_c00228{bottom:452.535040pt;}
.y28_c00228{bottom:453.913511pt;}
.y33_c00228{bottom:454.913413pt;}
.y1c_c00228{bottom:455.194152pt;}
.y7_c00228{bottom:455.361467pt;}
.y14_c00228{bottom:456.756200pt;}
.y41_c00228{bottom:459.049592pt;}
.y29_c00228{bottom:459.831327pt;}
.y32_c00228{bottom:460.623928pt;}
.y1b_c00228{bottom:461.689550pt;}
.y6_c00228{bottom:461.769857pt;}
.y31_c00228{bottom:464.686327pt;}
.y5_c00228{bottom:464.844100pt;}
.y42_c00228{bottom:466.204075pt;}
.y15_c00228{bottom:467.231078pt;}
.y1a_c00228{bottom:468.055335pt;}
.y4_c00228{bottom:470.186765pt;}
.y2a_c00228{bottom:470.465221pt;}
.y30_c00228{bottom:471.594820pt;}
.y19_c00228{bottom:472.294552pt;}
.y2c_c00228{bottom:474.016326pt;}
.y2e_c00228{bottom:474.632902pt;}
.y2f_c00228{bottom:475.056113pt;}
.y3_c00228{bottom:476.639415pt;}
.y18_c00228{bottom:477.781541pt;}
.y16_c00228{bottom:478.111066pt;}
.y2b_c00228{bottom:478.434544pt;}
.y51_c00228{bottom:479.977628pt;}
.y17_c00228{bottom:484.059707pt;}
.y2_c00228{bottom:485.114772pt;}
.y52_c00228{bottom:513.277627pt;}
.y53_c00228{bottom:568.082152pt;}
.y57_c00228{bottom:828.119652pt;}
.y54_c00228{bottom:875.835341pt;}
.y56_c00228{bottom:915.201270pt;}
.y4f_c00228{bottom:1003.367459pt;}
.y4d_c00228{bottom:1010.154291pt;}
.y4c_c00228{bottom:1021.487641pt;}
.y50_c00228{bottom:1025.122146pt;}
.y4e_c00228{bottom:1040.962393pt;}
.h11_c00228{height:29.796918pt;}
.h8_c00228{height:31.990003pt;}
.h9_c00228{height:31.990004pt;}
.ha_c00228{height:31.990006pt;}
.h12_c00228{height:32.907161pt;}
.hd_c00228{height:33.297513pt;}
.hc_c00228{height:34.762880pt;}
.h6_c00228{height:39.206256pt;}
.h3_c00228{height:39.206257pt;}
.h7_c00228{height:39.206258pt;}
.h4_c00228{height:39.206259pt;}
.h5_c00228{height:39.206261pt;}
.h15_c00228{height:46.147909pt;}
.h16_c00228{height:46.988576pt;}
.h17_c00228{height:47.093426pt;}
.hb_c00228{height:50.040354pt;}
.h18_c00228{height:50.067478pt;}
.hf_c00228{height:50.682132pt;}
.h14_c00228{height:51.176609pt;}
.h10_c00228{height:56.729248pt;}
.he_c00228{height:59.593748pt;}
.h13_c00228{height:79.445915pt;}
.h2_c00228{height:1159.999952pt;}
.h0_c00228{height:1159.999959pt;}
.h1_c00228{height:1160.000000pt;}
.w2_c00228{width:830.999965pt;}
.w0_c00228{width:831.000000pt;}
.w1_c00228{width:831.333333pt;}
.x0_c00228{left:0.000000pt;}
.x3a_c00228{left:79.544400pt;}
.x3b_c00228{left:95.315788pt;}
.x3c_c00228{left:96.735260pt;}
.x42_c00228{left:98.786021pt;}
.x13_c00228{left:119.977634pt;}
.x12_c00228{left:121.465137pt;}
.x14_c00228{left:124.463353pt;}
.x15_c00228{left:128.774857pt;}
.x16_c00228{left:133.544468pt;}
.x17_c00228{left:135.991410pt;}
.x18_c00228{left:138.666862pt;}
.x19_c00228{left:142.086856pt;}
.x23_c00228{left:143.505744pt;}
.x1a_c00228{left:145.156780pt;}
.x1b_c00228{left:152.521190pt;}
.x1c_c00228{left:159.871997pt;}
.x1d_c00228{left:167.366655pt;}
.x1e_c00228{left:174.821307pt;}
.x1f_c00228{left:178.525632pt;}
.x20_c00228{left:182.577318pt;}
.x21_c00228{left:185.963463pt;}
.x22_c00228{left:188.262839pt;}
.x2_c00228{left:204.798568pt;}
.x1_c00228{left:206.697430pt;}
.x3_c00228{left:209.442955pt;}
.x4_c00228{left:213.744503pt;}
.x5_c00228{left:218.506891pt;}
.x6_c00228{left:220.950947pt;}
.x7_c00228{left:223.623762pt;}
.x8_c00228{left:227.041187pt;}
.x40_c00228{left:228.108486pt;}
.x9_c00228{left:229.962704pt;}
.xa_c00228{left:233.906932pt;}
.xb_c00228{left:241.567426pt;}
.xc_c00228{left:252.092435pt;}
.xd_c00228{left:258.703382pt;}
.xe_c00228{left:261.720880pt;}
.x3d_c00228{left:262.769032pt;}
.xf_c00228{left:266.467148pt;}
.x10_c00228{left:269.480012pt;}
.x11_c00228{left:273.046051pt;}
.x26_c00228{left:290.708831pt;}
.x27_c00228{left:291.790874pt;}
.x28_c00228{left:293.053997pt;}
.x29_c00228{left:296.073752pt;}
.x2a_c00228{left:298.940009pt;}
.x2b_c00228{left:304.168673pt;}
.x2c_c00228{left:309.668213pt;}
.x25_c00228{left:312.650435pt;}
.x2d_c00228{left:314.728661pt;}
.x2e_c00228{left:317.759772pt;}
.x2f_c00228{left:324.788328pt;}
.x30_c00228{left:331.889587pt;}
.x31_c00228{left:337.898220pt;}
.x32_c00228{left:340.582851pt;}
.x33_c00228{left:343.253275pt;}
.x34_c00228{left:346.273697pt;}
.x35_c00228{left:348.599989pt;}
.x36_c00228{left:351.546252pt;}
.x37_c00228{left:356.146534pt;}
.x38_c00228{left:358.639645pt;}
.x43_c00228{left:402.019318pt;}
.x3e_c00228{left:413.241039pt;}
.x39_c00228{left:619.840748pt;}
.x41_c00228{left:632.272678pt;}
.x3f_c00228{left:652.036188pt;}
.x24_c00228{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb76ea8120a1918bdc1d6782.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.171387;font-style:normal;font-weight:normal;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_e8352e7ff126d2b17c3a1bbf.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.000000;font-style:normal;font-weight:normal;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_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.006348;font-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_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);}
.v0_c00229{vertical-align:0.000000px;}
.ls0_c00229{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00229{word-spacing:-19.320776px;}
.ws1_c00229{word-spacing:0.000000px;}
._9_c00229{width:2.141783px;}
._a_c00229{width:3.220779px;}
._2_c00229{width:4.438477px;}
._3_c00229{width:5.900344px;}
._6_c00229{width:7.865529px;}
._1_c00229{width:8.906201px;}
._e_c00229{width:9.930193px;}
._d_c00229{width:11.120155px;}
._c_c00229{width:12.704863px;}
._5_c00229{width:14.030022px;}
._8_c00229{width:16.078076px;}
._0_c00229{width:20.031989px;}
._b_c00229{width:21.946288px;}
._7_c00229{width:27.934111px;}
._4_c00229{width:40.640625px;}
.fc1_c00229{color:rgb(67,91,56);}
.fc0_c00229{color:rgb(0,0,0);}
.fs0_c00229{font-size:71.999997px;}
.fs1_c00229{font-size:74.377724px;}
.y0_c00229{bottom:0.000000px;}
.y1_c00229{bottom:0.000008px;}
.y23_c00229{bottom:29.401163px;}
.y1a_c00229{bottom:177.387530px;}
.y19_c00229{bottom:207.762529px;}
.y18_c00229{bottom:238.137528px;}
.y17_c00229{bottom:268.512526px;}
.y16_c00229{bottom:298.887525px;}
.y15_c00229{bottom:329.262524px;}
.y14_c00229{bottom:359.637523px;}
.y13_c00229{bottom:390.012521px;}
.y12_c00229{bottom:420.387520px;}
.y11_c00229{bottom:450.762519px;}
.y10_c00229{bottom:481.137518px;}
.yf_c00229{bottom:511.512516px;}
.ye_c00229{bottom:541.887515px;}
.yd_c00229{bottom:572.262514px;}
.yc_c00229{bottom:602.637512px;}
.yb_c00229{bottom:633.012511px;}
.ya_c00229{bottom:663.387510px;}
.y9_c00229{bottom:693.762509px;}
.y8_c00229{bottom:724.137507px;}
.y7_c00229{bottom:754.512506px;}
.y6_c00229{bottom:784.887505px;}
.y5_c00229{bottom:815.262504px;}
.y4_c00229{bottom:845.637502px;}
.y3_c00229{bottom:876.012501px;}
.y2_c00229{bottom:906.387500px;}
.y1b_c00229{bottom:945.456991px;}
.y21_c00229{bottom:1018.868865px;}
.y20_c00229{bottom:1049.243864px;}
.y1f_c00229{bottom:1079.618863px;}
.y1e_c00229{bottom:1109.993861px;}
.y1d_c00229{bottom:1140.368860px;}
.y1c_c00229{bottom:1170.743859px;}
.y22_c00229{bottom:1199.188901px;}
.h4_c00229{height:55.160154px;}
.h5_c00229{height:56.981762px;}
.h3_c00229{height:67.042966px;}
.h2_c00229{height:1304.999946px;}
.h0_c00229{height:1304.999953px;}
.h1_c00229{height:1305.000000px;}
.w2_c00229{width:934.874961px;}
.w0_c00229{width:934.875000px;}
.w1_c00229{width:935.250000px;}
.x0_c00229{left:0.000000px;}
.x2_c00229{left:89.260034px;}
.x1_c00229{left:93.543307px;}
.x3_c00229{left:452.271732px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws0_c00229{word-spacing:-17.174023pt;}
.ws1_c00229{word-spacing:0.000000pt;}
._9_c00229{width:1.903807pt;}
._a_c00229{width:2.862915pt;}
._2_c00229{width:3.945313pt;}
._3_c00229{width:5.244750pt;}
._6_c00229{width:6.991581pt;}
._1_c00229{width:7.916623pt;}
._e_c00229{width:8.826838pt;}
._d_c00229{width:9.884583pt;}
._c_c00229{width:11.293211pt;}
._5_c00229{width:12.471131pt;}
._8_c00229{width:14.291623pt;}
._0_c00229{width:17.806213pt;}
._b_c00229{width:19.507811pt;}
._7_c00229{width:24.830321pt;}
._4_c00229{width:36.125000pt;}
.fs0_c00229{font-size:63.999997pt;}
.fs1_c00229{font-size:66.113533pt;}
.y0_c00229{bottom:0.000000pt;}
.y1_c00229{bottom:0.000007pt;}
.y23_c00229{bottom:26.134367pt;}
.y1a_c00229{bottom:157.677805pt;}
.y19_c00229{bottom:184.677804pt;}
.y18_c00229{bottom:211.677802pt;}
.y17_c00229{bottom:238.677801pt;}
.y16_c00229{bottom:265.677800pt;}
.y15_c00229{bottom:292.677799pt;}
.y14_c00229{bottom:319.677798pt;}
.y13_c00229{bottom:346.677797pt;}
.y12_c00229{bottom:373.677796pt;}
.y11_c00229{bottom:400.677795pt;}
.y10_c00229{bottom:427.677793pt;}
.yf_c00229{bottom:454.677792pt;}
.ye_c00229{bottom:481.677791pt;}
.yd_c00229{bottom:508.677790pt;}
.yc_c00229{bottom:535.677789pt;}
.yb_c00229{bottom:562.677788pt;}
.ya_c00229{bottom:589.677787pt;}
.y9_c00229{bottom:616.677786pt;}
.y8_c00229{bottom:643.677784pt;}
.y7_c00229{bottom:670.677783pt;}
.y6_c00229{bottom:697.677782pt;}
.y5_c00229{bottom:724.677781pt;}
.y4_c00229{bottom:751.677780pt;}
.y3_c00229{bottom:778.677779pt;}
.y2_c00229{bottom:805.677778pt;}
.y1b_c00229{bottom:840.406215pt;}
.y21_c00229{bottom:905.661213pt;}
.y20_c00229{bottom:932.661212pt;}
.y1f_c00229{bottom:959.661211pt;}
.y1e_c00229{bottom:986.661210pt;}
.y1d_c00229{bottom:1013.661209pt;}
.y1c_c00229{bottom:1040.661208pt;}
.y22_c00229{bottom:1065.945690pt;}
.h4_c00229{height:49.031248pt;}
.h5_c00229{height:50.650455pt;}
.h3_c00229{height:59.593748pt;}
.h2_c00229{height:1159.999952pt;}
.h0_c00229{height:1159.999959pt;}
.h1_c00229{height:1160.000000pt;}
.w2_c00229{width:830.999965pt;}
.w0_c00229{width:831.000000pt;}
.w1_c00229{width:831.333333pt;}
.x0_c00229{left:0.000000pt;}
.x2_c00229{left:79.342253pt;}
.x1_c00229{left:83.149606pt;}
.x3_c00229{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b066bd13241833911f3caff.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.171387;font-style:normal;font-weight:normal;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_453443441e0867ddb1559e39.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.005371;font-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_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;}
.ls0_c00230{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00230{word-spacing:0.000000px;}
._2_c00230{width:1.075279px;}
._5_c00230{width:2.624977px;}
._11_c00230{width:3.897261px;}
._0_c00230{width:5.906250px;}
._3_c00230{width:6.939237px;}
._d_c00230{width:8.593367px;}
._e_c00230{width:9.938921px;}
._c_c00230{width:11.531250px;}
._7_c00230{width:12.605093px;}
._12_c00230{width:14.186994px;}
._10_c00230{width:15.219360px;}
._8_c00230{width:16.330077px;}
._13_c00230{width:20.038988px;}
._4_c00230{width:22.429687px;}
._6_c00230{width:23.660155px;}
._14_c00230{width:24.672609px;}
._1_c00230{width:26.126102px;}
._b_c00230{width:27.402727px;}
._15_c00230{width:28.476556px;}
._9_c00230{width:30.276533px;}
._a_c00230{width:38.552326px;}
._f_c00230{width:40.436690px;}
.fc0_c00230{color:rgb(0,0,0);}
.fs0_c00230{font-size:71.999997px;}
.y0_c00230{bottom:0.000000px;}
.y1_c00230{bottom:0.000008px;}
.y28_c00230{bottom:29.401163px;}
.y27_c00230{bottom:117.792341px;}
.y26_c00230{bottom:147.042339px;}
.y25_c00230{bottom:176.292338px;}
.y24_c00230{bottom:205.542337px;}
.y23_c00230{bottom:234.792336px;}
.y22_c00230{bottom:264.042335px;}
.y21_c00230{bottom:293.292333px;}
.y20_c00230{bottom:322.542332px;}
.y1f_c00230{bottom:351.792331px;}
.y1e_c00230{bottom:381.042330px;}
.y1d_c00230{bottom:410.292329px;}
.y1c_c00230{bottom:439.542327px;}
.y1b_c00230{bottom:468.792326px;}
.y1a_c00230{bottom:498.042325px;}
.y19_c00230{bottom:527.292324px;}
.y18_c00230{bottom:556.542322px;}
.y17_c00230{bottom:585.792321px;}
.y16_c00230{bottom:615.042320px;}
.y15_c00230{bottom:644.292319px;}
.y14_c00230{bottom:673.542318px;}
.y13_c00230{bottom:702.792316px;}
.y12_c00230{bottom:732.042315px;}
.y11_c00230{bottom:761.292314px;}
.y10_c00230{bottom:790.542313px;}
.yf_c00230{bottom:819.792311px;}
.ye_c00230{bottom:849.042310px;}
.yd_c00230{bottom:878.292309px;}
.yc_c00230{bottom:907.542308px;}
.yb_c00230{bottom:936.792307px;}
.ya_c00230{bottom:966.042305px;}
.y9_c00230{bottom:995.292304px;}
.y8_c00230{bottom:1024.542303px;}
.y7_c00230{bottom:1053.792302px;}
.y6_c00230{bottom:1083.042300px;}
.y5_c00230{bottom:1112.292299px;}
.y4_c00230{bottom:1141.542298px;}
.y3_c00230{bottom:1170.792297px;}
.y2_c00230{bottom:1200.042296px;}
.h3_c00230{height:67.042966px;}
.h2_c00230{height:1304.999946px;}
.h0_c00230{height:1304.999953px;}
.h1_c00230{height:1305.000000px;}
.w2_c00230{width:934.874961px;}
.w0_c00230{width:934.875000px;}
.w1_c00230{width:935.250000px;}
.x0_c00230{left:0.000000px;}
.x1_c00230{left:87.902647px;}
.x2_c00230{left:452.271732px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.ws0_c00230{word-spacing:0.000000pt;}
._2_c00230{width:0.955803pt;}
._5_c00230{width:2.333313pt;}
._11_c00230{width:3.464232pt;}
._0_c00230{width:5.250000pt;}
._3_c00230{width:6.168211pt;}
._d_c00230{width:7.638548pt;}
._e_c00230{width:8.834596pt;}
._c_c00230{width:10.250000pt;}
._7_c00230{width:11.204528pt;}
._12_c00230{width:12.610661pt;}
._10_c00230{width:13.528320pt;}
._8_c00230{width:14.515624pt;}
._13_c00230{width:17.812434pt;}
._4_c00230{width:19.937499pt;}
._6_c00230{width:21.031249pt;}
._14_c00230{width:21.931208pt;}
._1_c00230{width:23.223201pt;}
._b_c00230{width:24.357979pt;}
._15_c00230{width:25.312494pt;}
._9_c00230{width:26.912474pt;}
._a_c00230{width:34.268734pt;}
._f_c00230{width:35.943724pt;}
.fs0_c00230{font-size:63.999997pt;}
.y0_c00230{bottom:0.000000pt;}
.y1_c00230{bottom:0.000007pt;}
.y28_c00230{bottom:26.134367pt;}
.y27_c00230{bottom:104.704303pt;}
.y26_c00230{bottom:130.704302pt;}
.y25_c00230{bottom:156.704301pt;}
.y24_c00230{bottom:182.704300pt;}
.y23_c00230{bottom:208.704299pt;}
.y22_c00230{bottom:234.704297pt;}
.y21_c00230{bottom:260.704296pt;}
.y20_c00230{bottom:286.704295pt;}
.y1f_c00230{bottom:312.704294pt;}
.y1e_c00230{bottom:338.704293pt;}
.y1d_c00230{bottom:364.704292pt;}
.y1c_c00230{bottom:390.704291pt;}
.y1b_c00230{bottom:416.704290pt;}
.y1a_c00230{bottom:442.704289pt;}
.y19_c00230{bottom:468.704288pt;}
.y18_c00230{bottom:494.704287pt;}
.y17_c00230{bottom:520.704286pt;}
.y16_c00230{bottom:546.704284pt;}
.y15_c00230{bottom:572.704283pt;}
.y14_c00230{bottom:598.704282pt;}
.y13_c00230{bottom:624.704281pt;}
.y12_c00230{bottom:650.704280pt;}
.y11_c00230{bottom:676.704279pt;}
.y10_c00230{bottom:702.704278pt;}
.yf_c00230{bottom:728.704277pt;}
.ye_c00230{bottom:754.704276pt;}
.yd_c00230{bottom:780.704275pt;}
.yc_c00230{bottom:806.704274pt;}
.yb_c00230{bottom:832.704273pt;}
.ya_c00230{bottom:858.704271pt;}
.y9_c00230{bottom:884.704270pt;}
.y8_c00230{bottom:910.704269pt;}
.y7_c00230{bottom:936.704268pt;}
.y6_c00230{bottom:962.704267pt;}
.y5_c00230{bottom:988.704266pt;}
.y4_c00230{bottom:1014.704265pt;}
.y3_c00230{bottom:1040.704264pt;}
.y2_c00230{bottom:1066.704263pt;}
.h3_c00230{height:59.593748pt;}
.h2_c00230{height:1159.999952pt;}
.h0_c00230{height:1159.999959pt;}
.h1_c00230{height:1160.000000pt;}
.w2_c00230{width:830.999965pt;}
.w0_c00230{width:831.000000pt;}
.w1_c00230{width:831.333333pt;}
.x0_c00230{left:0.000000pt;}
.x1_c00230{left:78.135686pt;}
.x2_c00230{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0faa82ad7dd039f449408de4.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.171387;font-style:normal;font-weight:normal;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_ea823af7556598e6b84f116b.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.005371;font-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_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);}
.v0_c00231{vertical-align:0.000000px;}
.ls0_c00231{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00231{word-spacing:0.000000px;}
._4_c00231{width:1.570290px;}
._6_c00231{width:3.164064px;}
._8_c00231{width:4.332322px;}
._5_c00231{width:5.408636px;}
._7_c00231{width:7.337976px;}
._0_c00231{width:8.902633px;}
._3_c00231{width:9.984375px;}
._d_c00231{width:12.500382px;}
._a_c00231{width:13.645705px;}
._9_c00231{width:15.224579px;}
._2_c00231{width:17.058882px;}
._1_c00231{width:19.789378px;}
._b_c00231{width:20.805177px;}
._f_c00231{width:23.559696px;}
._e_c00231{width:26.014042px;}
._c_c00231{width:27.929649px;}
.fc0_c00231{color:rgb(0,0,0);}
.fs0_c00231{font-size:71.999997px;}
.y0_c00231{bottom:0.000000px;}
.y1_c00231{bottom:0.000008px;}
.y27_c00231{bottom:29.400983px;}
.y26_c00231{bottom:101.081599px;}
.y25_c00231{bottom:131.456597px;}
.y24_c00231{bottom:161.831596px;}
.y23_c00231{bottom:192.206595px;}
.y22_c00231{bottom:222.581594px;}
.y21_c00231{bottom:252.956592px;}
.y20_c00231{bottom:283.331591px;}
.y1f_c00231{bottom:313.706590px;}
.y1e_c00231{bottom:344.081588px;}
.y1d_c00231{bottom:374.456587px;}
.y1c_c00231{bottom:404.831586px;}
.y1b_c00231{bottom:435.206585px;}
.y1a_c00231{bottom:465.581583px;}
.y19_c00231{bottom:495.956582px;}
.y18_c00231{bottom:526.331581px;}
.y17_c00231{bottom:556.706580px;}
.y16_c00231{bottom:587.081578px;}
.y15_c00231{bottom:617.456577px;}
.y14_c00231{bottom:647.831576px;}
.y13_c00231{bottom:678.206575px;}
.y12_c00231{bottom:708.581573px;}
.y11_c00231{bottom:738.956572px;}
.y10_c00231{bottom:769.331571px;}
.yf_c00231{bottom:799.706569px;}
.ye_c00231{bottom:830.081568px;}
.yd_c00231{bottom:860.456567px;}
.yc_c00231{bottom:890.831566px;}
.yb_c00231{bottom:921.206564px;}
.ya_c00231{bottom:951.581563px;}
.y9_c00231{bottom:981.956562px;}
.y8_c00231{bottom:1012.331561px;}
.y7_c00231{bottom:1042.706559px;}
.y6_c00231{bottom:1073.081558px;}
.y5_c00231{bottom:1103.456557px;}
.y4_c00231{bottom:1133.831556px;}
.y3_c00231{bottom:1164.206554px;}
.y2_c00231{bottom:1194.581553px;}
.h3_c00231{height:67.042966px;}
.h2_c00231{height:1304.999946px;}
.h0_c00231{height:1304.999953px;}
.h1_c00231{height:1305.000000px;}
.w2_c00231{width:934.874961px;}
.w0_c00231{width:934.875000px;}
.w1_c00231{width:935.250000px;}
.x0_c00231{left:0.000000px;}
.x1_c00231{left:88.794432px;}
.x2_c00231{left:452.271732px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws0_c00231{word-spacing:0.000000pt;}
._4_c00231{width:1.395813pt;}
._6_c00231{width:2.812502pt;}
._8_c00231{width:3.850953pt;}
._5_c00231{width:4.807677pt;}
._7_c00231{width:6.522645pt;}
._0_c00231{width:7.913451pt;}
._3_c00231{width:8.875000pt;}
._d_c00231{width:11.111451pt;}
._a_c00231{width:12.129516pt;}
._9_c00231{width:13.532959pt;}
._2_c00231{width:15.163451pt;}
._1_c00231{width:17.590559pt;}
._b_c00231{width:18.493490pt;}
._f_c00231{width:20.941952pt;}
._e_c00231{width:23.123593pt;}
._c_c00231{width:24.826355pt;}
.fs0_c00231{font-size:63.999997pt;}
.y0_c00231{bottom:0.000000pt;}
.y1_c00231{bottom:0.000007pt;}
.y27_c00231{bottom:26.134207pt;}
.y26_c00231{bottom:89.850310pt;}
.y25_c00231{bottom:116.850309pt;}
.y24_c00231{bottom:143.850308pt;}
.y23_c00231{bottom:170.850306pt;}
.y22_c00231{bottom:197.850305pt;}
.y21_c00231{bottom:224.850304pt;}
.y20_c00231{bottom:251.850303pt;}
.y1f_c00231{bottom:278.850302pt;}
.y1e_c00231{bottom:305.850301pt;}
.y1d_c00231{bottom:332.850300pt;}
.y1c_c00231{bottom:359.850299pt;}
.y1b_c00231{bottom:386.850297pt;}
.y1a_c00231{bottom:413.850296pt;}
.y19_c00231{bottom:440.850295pt;}
.y18_c00231{bottom:467.850294pt;}
.y17_c00231{bottom:494.850293pt;}
.y16_c00231{bottom:521.850292pt;}
.y15_c00231{bottom:548.850291pt;}
.y14_c00231{bottom:575.850290pt;}
.y13_c00231{bottom:602.850288pt;}
.y12_c00231{bottom:629.850287pt;}
.y11_c00231{bottom:656.850286pt;}
.y10_c00231{bottom:683.850285pt;}
.yf_c00231{bottom:710.850284pt;}
.ye_c00231{bottom:737.850283pt;}
.yd_c00231{bottom:764.850282pt;}
.yc_c00231{bottom:791.850281pt;}
.yb_c00231{bottom:818.850279pt;}
.ya_c00231{bottom:845.850278pt;}
.y9_c00231{bottom:872.850277pt;}
.y8_c00231{bottom:899.850276pt;}
.y7_c00231{bottom:926.850275pt;}
.y6_c00231{bottom:953.850274pt;}
.y5_c00231{bottom:980.850273pt;}
.y4_c00231{bottom:1007.850272pt;}
.y3_c00231{bottom:1034.850270pt;}
.y2_c00231{bottom:1061.850269pt;}
.h3_c00231{height:59.593748pt;}
.h2_c00231{height:1159.999952pt;}
.h0_c00231{height:1159.999959pt;}
.h1_c00231{height:1160.000000pt;}
.w2_c00231{width:830.999965pt;}
.w0_c00231{width:831.000000pt;}
.w1_c00231{width:831.333333pt;}
.x0_c00231{left:0.000000pt;}
.x1_c00231{left:78.928384pt;}
.x2_c00231{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72d4ad3559ba389b66784d76.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.171387;font-style:normal;font-weight:normal;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_da837e71b1dd2222413b4436.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.006348;font-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_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);}
.v0_c00232{vertical-align:0.000000px;}
.ls1_c00232{letter-spacing:0.000000px;}
.ls0_c00232{letter-spacing:12.023459px;}
.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;}
}
.ws0_c00232{word-spacing:-18.703125px;}
.ws1_c00232{word-spacing:0.000000px;}
._2_c00232{width:1.546877px;}
._d_c00232{width:2.721448px;}
._9_c00232{width:4.792029px;}
._1_c00232{width:6.257811px;}
._6_c00232{width:7.582006px;}
._7_c00232{width:8.783708px;}
._0_c00232{width:9.887008px;}
._f_c00232{width:11.233905px;}
._8_c00232{width:12.761743px;}
._5_c00232{width:13.992185px;}
._a_c00232{width:15.091572px;}
._3_c00232{width:16.720230px;}
._c_c00232{width:19.778889px;}
._e_c00232{width:20.867569px;}
._10_c00232{width:22.467592px;}
._b_c00232{width:23.781828px;}
._4_c00232{width:39.892729px;}
.fc1_c00232{color:rgb(67,91,56);}
.fc0_c00232{color:rgb(0,0,0);}
.fs0_c00232{font-size:71.999997px;}
.y0_c00232{bottom:0.000000px;}
.y1_c00232{bottom:0.000008px;}
.y24_c00232{bottom:29.401163px;}
.y23_c00232{bottom:106.192616px;}
.y22_c00232{bottom:136.567614px;}
.y21_c00232{bottom:166.942613px;}
.y20_c00232{bottom:197.317612px;}
.y1f_c00232{bottom:227.692611px;}
.y1e_c00232{bottom:258.067609px;}
.y1d_c00232{bottom:288.442608px;}
.y1c_c00232{bottom:327.142966px;}
.y1b_c00232{bottom:397.342963px;}
.y1a_c00232{bottom:427.717962px;}
.y19_c00232{bottom:458.092961px;}
.y18_c00232{bottom:488.467960px;}
.y17_c00232{bottom:518.842958px;}
.y16_c00232{bottom:551.864857px;}
.y15_c00232{bottom:623.097219px;}
.y14_c00232{bottom:653.472218px;}
.y13_c00232{bottom:683.847216px;}
.y12_c00232{bottom:714.222215px;}
.y11_c00232{bottom:744.597214px;}
.y10_c00232{bottom:774.972213px;}
.yf_c00232{bottom:805.347211px;}
.ye_c00232{bottom:835.722210px;}
.yd_c00232{bottom:866.097209px;}
.yc_c00232{bottom:896.472207px;}
.yb_c00232{bottom:926.847206px;}
.ya_c00232{bottom:957.222205px;}
.y9_c00232{bottom:987.597204px;}
.y8_c00232{bottom:1017.972202px;}
.y7_c00232{bottom:1048.347201px;}
.y6_c00232{bottom:1078.722200px;}
.y5_c00232{bottom:1109.097199px;}
.y4_c00232{bottom:1139.472197px;}
.y3_c00232{bottom:1169.847196px;}
.y2_c00232{bottom:1200.222195px;}
.h4_c00232{height:55.160154px;}
.h3_c00232{height:67.042966px;}
.h2_c00232{height:1304.999946px;}
.h0_c00232{height:1304.999953px;}
.h1_c00232{height:1305.000000px;}
.w2_c00232{width:934.874961px;}
.w0_c00232{width:934.875000px;}
.w1_c00232{width:935.250000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:88.794432px;}
.x2_c00232{left:452.271732px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls1_c00232{letter-spacing:0.000000pt;}
.ls0_c00232{letter-spacing:10.687519pt;}
.ws0_c00232{word-spacing:-16.625000pt;}
.ws1_c00232{word-spacing:0.000000pt;}
._2_c00232{width:1.375002pt;}
._d_c00232{width:2.419065pt;}
._9_c00232{width:4.259582pt;}
._1_c00232{width:5.562498pt;}
._6_c00232{width:6.739561pt;}
._7_c00232{width:7.807740pt;}
._0_c00232{width:8.788452pt;}
._f_c00232{width:9.985693pt;}
._8_c00232{width:11.343772pt;}
._5_c00232{width:12.437498pt;}
._a_c00232{width:13.414730pt;}
._3_c00232{width:14.862426pt;}
._c_c00232{width:17.581234pt;}
._e_c00232{width:18.548950pt;}
._10_c00232{width:19.971192pt;}
._b_c00232{width:21.139403pt;}
._4_c00232{width:35.460203pt;}
.fs0_c00232{font-size:63.999997pt;}
.y0_c00232{bottom:0.000000pt;}
.y1_c00232{bottom:0.000007pt;}
.y24_c00232{bottom:26.134367pt;}
.y23_c00232{bottom:94.393436pt;}
.y22_c00232{bottom:121.393435pt;}
.y21_c00232{bottom:148.393434pt;}
.y20_c00232{bottom:175.393433pt;}
.y1f_c00232{bottom:202.393432pt;}
.y1e_c00232{bottom:229.393430pt;}
.y1d_c00232{bottom:256.393429pt;}
.y1c_c00232{bottom:290.793748pt;}
.y1b_c00232{bottom:353.193745pt;}
.y1a_c00232{bottom:380.193744pt;}
.y19_c00232{bottom:407.193743pt;}
.y18_c00232{bottom:434.193742pt;}
.y17_c00232{bottom:461.193741pt;}
.y16_c00232{bottom:490.546540pt;}
.y15_c00232{bottom:553.864195pt;}
.y14_c00232{bottom:580.864193pt;}
.y13_c00232{bottom:607.864192pt;}
.y12_c00232{bottom:634.864191pt;}
.y11_c00232{bottom:661.864190pt;}
.y10_c00232{bottom:688.864189pt;}
.yf_c00232{bottom:715.864188pt;}
.ye_c00232{bottom:742.864187pt;}
.yd_c00232{bottom:769.864186pt;}
.yc_c00232{bottom:796.864184pt;}
.yb_c00232{bottom:823.864183pt;}
.ya_c00232{bottom:850.864182pt;}
.y9_c00232{bottom:877.864181pt;}
.y8_c00232{bottom:904.864180pt;}
.y7_c00232{bottom:931.864179pt;}
.y6_c00232{bottom:958.864178pt;}
.y5_c00232{bottom:985.864177pt;}
.y4_c00232{bottom:1012.864175pt;}
.y3_c00232{bottom:1039.864174pt;}
.y2_c00232{bottom:1066.864173pt;}
.h4_c00232{height:49.031248pt;}
.h3_c00232{height:59.593748pt;}
.h2_c00232{height:1159.999952pt;}
.h0_c00232{height:1159.999959pt;}
.h1_c00232{height:1160.000000pt;}
.w2_c00232{width:830.999965pt;}
.w0_c00232{width:831.000000pt;}
.w1_c00232{width:831.333333pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:78.928384pt;}
.x2_c00232{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:0.734863;font-style:normal;font-weight:normal;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_87929ce9e00cf2a75a3d5b0f.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:0.743000;font-style:normal;font-weight: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_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:1.006348;font-style:normal;font-weight: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_c00233;src:url('chunks/assets/font_99c9063d6b3debb1c4133855.woff2')format("woff");}.ff6_c00233{font-family:ff6_c00233;line-height:1.000000;font-style:normal;font-weight: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_c00233;src:url('chunks/assets/font_f695e9932fa8a1f849beeef2.woff2')format("woff");}.ff7_c00233{font-family:ff7_c00233;line-height:1.171387;font-style:normal;font-weight: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_c00233;src:url('chunks/assets/font_d1d59eb09528353af991e5ff.woff2')format("woff");}.ff8_c00233{font-family:ff8_c00233;line-height:1.000000;font-style:normal;font-weight: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_c00233;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00233{font-family:ff9_c00233;line-height:0.940000;font-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_c00233{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00233{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00233{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00233{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00233{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00233{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00233{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00233{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00233{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00233{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00233{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00233{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00233{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00233{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00233{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00233{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00233{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00233{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00233{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00233{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00233{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00233{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00233{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00233{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00233{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00233{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00233{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00233{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00233{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00233{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00233{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00233{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00233{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00233{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00233{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00233{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00233{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00233{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00233{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00233{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00233{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00233{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00233{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00233{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00233{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00233{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00233{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00233{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00233{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00233{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00233{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00233{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00233{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00233{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00233{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00233{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00233{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00233{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00233{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00233{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00233{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00233{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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:1.278288px;}
.ls0_c00233{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00233{word-spacing:-41.689573px;}
.ws0_c00233{word-spacing:-15.171263px;}
.ws2_c00233{word-spacing:-0.055755px;}
.ws4_c00233{word-spacing:0.000000px;}
.ws1_c00233{word-spacing:288.058683px;}
._0_c00233{width:1.892532px;}
._1_c00233{width:15.355111px;}
._2_c00233{width:17.636627px;}
._3_c00233{width:19.847282px;}
.fc4_c00233{color:transparent;}
.fc3_c00233{color:rgb(67,91,56);}
.fc2_c00233{color:rgb(255,255,255);}
.fc1_c00233{color:rgb(0,0,0);}
.fc0_c00233{color:rgb(9,71,81);}
.fsb_c00233{font-size:36.000051px;}
.fsc_c00233{font-size:39.757786px;}
.fs7_c00233{font-size:41.999830px;}
.fs4_c00233{font-size:47.368230px;}
.fs1_c00233{font-size:47.368231px;}
.fs5_c00233{font-size:47.368232px;}
.fs2_c00233{font-size:47.368233px;}
.fs3_c00233{font-size:47.368235px;}
.fs0_c00233{font-size:51.661596px;}
.fse_c00233{font-size:55.754999px;}
.fsf_c00233{font-size:59.984997px;}
.fs8_c00233{font-size:71.999997px;}
.fs9_c00233{font-size:74.424240px;}
.fs6_c00233{font-size:77.011488px;}
.fsa_c00233{font-size:84.000120px;}
.fsd_c00233{font-size:95.984996px;}
.y0_c00233{bottom:0.000000px;}
.y1_c00233{bottom:0.000008px;}
.y51_c00233{bottom:29.401163px;}
.y4a_c00233{bottom:184.772440px;}
.y49_c00233{bottom:215.147439px;}
.y48_c00233{bottom:245.522438px;}
.y47_c00233{bottom:275.897437px;}
.y46_c00233{bottom:306.272435px;}
.y4b_c00233{bottom:340.353374px;}
.y2_c00233{bottom:401.525233px;}
.y2e_c00233{bottom:486.888550px;}
.y10_c00233{bottom:493.328193px;}
.y24_c00233{bottom:493.343723px;}
.yf_c00233{bottom:493.853349px;}
.y25_c00233{bottom:493.873061px;}
.y3c_c00233{bottom:493.959311px;}
.y23_c00233{bottom:494.588120px;}
.y3d_c00233{bottom:494.792564px;}
.y3b_c00233{bottom:494.812830px;}
.ye_c00233{bottom:494.919675px;}
.y22_c00233{bottom:495.839509px;}
.y3a_c00233{bottom:495.847693px;}
.yd_c00233{bottom:495.992682px;}
.y26_c00233{bottom:496.289992px;}
.y11_c00233{bottom:496.353473px;}
.y3e_c00233{bottom:496.973807px;}
.y21_c00233{bottom:497.484380px;}
.yc_c00233{bottom:497.644566px;}
.y39_c00233{bottom:498.050705px;}
.y3f_c00233{bottom:498.365140px;}
.y20_c00233{bottom:499.172711px;}
.yb_c00233{bottom:499.338107px;}
.y40_c00233{bottom:500.063439px;}
.y12_c00233{bottom:500.630691px;}
.y1f_c00233{bottom:501.037949px;}
.ya_c00233{bottom:501.207920px;}
.y27_c00233{bottom:501.390163px;}
.y38_c00233{bottom:501.841887px;}
.y41_c00233{bottom:502.505484px;}
.y13_c00233{bottom:503.149881px;}
.y42_c00233{bottom:504.764625px;}
.y28_c00233{bottom:505.018723px;}
.y1e_c00233{bottom:505.692484px;}
.y9_c00233{bottom:505.872210px;}
.y37_c00233{bottom:507.311178px;}
.y43_c00233{bottom:508.033427px;}
.y14_c00233{bottom:509.101920px;}
.y29_c00233{bottom:510.652700px;}
.y36_c00233{bottom:511.777589px;}
.y1d_c00233{bottom:512.093421px;}
.y8_c00233{bottom:512.281650px;}
.y15_c00233{bottom:513.850725px;}
.y44_c00233{bottom:516.430791px;}
.y2a_c00233{bottom:517.310242px;}
.y35_c00233{bottom:518.201920px;}
.y1c_c00233{bottom:519.400744px;}
.y7_c00233{bottom:519.491089px;}
.y34_c00233{bottom:522.772118px;}
.y6_c00233{bottom:522.949612px;}
.y45_c00233{bottom:524.479585px;}
.y16_c00233{bottom:525.634963px;}
.y1b_c00233{bottom:526.562252px;}
.y5_c00233{bottom:528.960111px;}
.y2b_c00233{bottom:529.273374px;}
.y33_c00233{bottom:530.544173px;}
.y1a_c00233{bottom:531.331371px;}
.y2d_c00233{bottom:533.268367px;}
.y31_c00233{bottom:533.962015px;}
.y32_c00233{bottom:534.438127px;}
.y4_c00233{bottom:536.219342px;}
.y19_c00233{bottom:537.504234px;}
.y17_c00233{bottom:537.874949px;}
.y2c_c00233{bottom:538.238862px;}
.y2f_c00233{bottom:539.974832px;}
.y18_c00233{bottom:544.567170px;}
.y3_c00233{bottom:545.754118px;}
.y30_c00233{bottom:577.437330px;}
.y52_c00233{bottom:655.428141px;}
.y53_c00233{bottom:1021.439841px;}
.y4f_c00233{bottom:1128.788391px;}
.y4d_c00233{bottom:1136.423577px;}
.y4c_c00233{bottom:1149.173596px;}
.y50_c00233{bottom:1153.262414px;}
.y4e_c00233{bottom:1171.082693px;}
.h11_c00233{height:33.521532px;}
.h9_c00233{height:35.988753px;}
.ha_c00233{height:35.988755px;}
.hb_c00233{height:35.988756px;}
.h12_c00233{height:37.020556px;}
.h3_c00233{height:37.459702px;}
.hd_c00233{height:39.108240px;}
.h7_c00233{height:44.107038px;}
.h4_c00233{height:44.107039px;}
.h8_c00233{height:44.107040px;}
.h5_c00233{height:44.107042px;}
.h6_c00233{height:44.107043px;}
.h16_c00233{height:45.588598px;}
.h15_c00233{height:51.916398px;}
.hc_c00233{height:56.295398px;}
.hf_c00233{height:57.017399px;}
.h14_c00233{height:57.573686px;}
.h10_c00233{height:63.820404px;}
.he_c00233{height:67.042966px;}
.h13_c00233{height:89.376654px;}
.h2_c00233{height:1304.999946px;}
.h0_c00233{height:1304.999953px;}
.h1_c00233{height:1305.000000px;}
.w2_c00233{width:934.874961px;}
.w0_c00233{width:934.875000px;}
.w1_c00233{width:935.250000px;}
.x0_c00233{left:0.000000px;}
.x3c_c00233{left:89.487450px;}
.x3d_c00233{left:90.844844px;}
.x3e_c00233{left:107.230262px;}
.x3f_c00233{left:108.827167px;}
.x44_c00233{left:130.690629px;}
.x14_c00233{left:134.974838px;}
.x13_c00233{left:136.648279px;}
.x15_c00233{left:140.021272px;}
.x16_c00233{left:144.871714px;}
.x17_c00233{left:150.237526px;}
.x18_c00233{left:152.990336px;}
.x19_c00233{left:156.000220px;}
.x1a_c00233{left:159.847713px;}
.x24_c00233{left:161.443962px;}
.x1b_c00233{left:163.301377px;}
.x1c_c00233{left:171.586339px;}
.x1d_c00233{left:179.855997px;}
.x1e_c00233{left:188.287487px;}
.x1f_c00233{left:196.673970px;}
.x20_c00233{left:200.841336px;}
.x21_c00233{left:205.399483px;}
.x22_c00233{left:209.208896px;}
.x23_c00233{left:211.795693px;}
.x3_c00233{left:230.398389px;}
.x2_c00233{left:232.534609px;}
.x4_c00233{left:235.623324px;}
.x5_c00233{left:240.462566px;}
.x6_c00233{left:245.820252px;}
.x7_c00233{left:248.569815px;}
.x8_c00233{left:251.576732px;}
.x9_c00233{left:255.421336px;}
.x41_c00233{left:256.622047px;}
.xa_c00233{left:258.708042px;}
.xb_c00233{left:263.145298px;}
.xc_c00233{left:271.763354px;}
.xd_c00233{left:283.603990px;}
.xe_c00233{left:291.041304px;}
.xf_c00233{left:294.435991px;}
.x40_c00233{left:295.615161px;}
.x10_c00233{left:299.775542px;}
.x11_c00233{left:303.165014px;}
.x12_c00233{left:307.176807px;}
.x29_c00233{left:327.047435px;}
.x2a_c00233{left:328.264734px;}
.x2b_c00233{left:329.685747px;}
.x2c_c00233{left:333.082971px;}
.x2d_c00233{left:336.307511px;}
.x2e_c00233{left:342.189757px;}
.x2f_c00233{left:348.376740px;}
.x28_c00233{left:351.731739px;}
.x30_c00233{left:354.069743px;}
.x31_c00233{left:357.479743px;}
.x32_c00233{left:365.386869px;}
.x33_c00233{left:373.375785px;}
.x34_c00233{left:380.135498px;}
.x35_c00233{left:383.155707px;}
.x36_c00233{left:386.159935px;}
.x37_c00233{left:389.557910px;}
.x38_c00233{left:392.174988px;}
.x39_c00233{left:395.489533px;}
.x3a_c00233{left:400.664851px;}
.x3b_c00233{left:403.469600px;}
.x42_c00233{left:452.271732px;}
.x26_c00233{left:464.896169px;}
.x43_c00233{left:680.682968px;}
.x1_c00233{left:697.320842px;}
.x27_c00233{left:733.540639px;}
.x25_c00233{left:757.088990px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.v1_c00233{vertical-align:1.136256pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ws3_c00233{word-spacing:-37.057398pt;}
.ws0_c00233{word-spacing:-13.485567pt;}
.ws2_c00233{word-spacing:-0.049560pt;}
.ws4_c00233{word-spacing:0.000000pt;}
.ws1_c00233{word-spacing:256.052163pt;}
._0_c00233{width:1.682251pt;}
._1_c00233{width:13.648988pt;}
._2_c00233{width:15.677002pt;}
._3_c00233{width:17.642028pt;}
.fsb_c00233{font-size:32.000046pt;}
.fsc_c00233{font-size:35.340254pt;}
.fs7_c00233{font-size:37.333182pt;}
.fs4_c00233{font-size:42.105093pt;}
.fs1_c00233{font-size:42.105094pt;}
.fs5_c00233{font-size:42.105095pt;}
.fs2_c00233{font-size:42.105096pt;}
.fs3_c00233{font-size:42.105098pt;}
.fs0_c00233{font-size:45.921418pt;}
.fse_c00233{font-size:49.559999pt;}
.fsf_c00233{font-size:53.319997pt;}
.fs8_c00233{font-size:63.999997pt;}
.fs9_c00233{font-size:66.154880pt;}
.fs6_c00233{font-size:68.454656pt;}
.fsa_c00233{font-size:74.666773pt;}
.fsd_c00233{font-size:85.319996pt;}
.y0_c00233{bottom:0.000000pt;}
.y1_c00233{bottom:0.000007pt;}
.y51_c00233{bottom:26.134367pt;}
.y4a_c00233{bottom:164.242169pt;}
.y49_c00233{bottom:191.242168pt;}
.y48_c00233{bottom:218.242167pt;}
.y47_c00233{bottom:245.242166pt;}
.y46_c00233{bottom:272.242165pt;}
.y4b_c00233{bottom:302.536333pt;}
.y2_c00233{bottom:356.911319pt;}
.y2e_c00233{bottom:432.789822pt;}
.y10_c00233{bottom:438.513950pt;}
.y24_c00233{bottom:438.527754pt;}
.yf_c00233{bottom:438.980754pt;}
.y25_c00233{bottom:438.998276pt;}
.y3c_c00233{bottom:439.074943pt;}
.y23_c00233{bottom:439.633885pt;}
.y3d_c00233{bottom:439.815613pt;}
.y3b_c00233{bottom:439.833627pt;}
.ye_c00233{bottom:439.928600pt;}
.y22_c00233{bottom:440.746230pt;}
.y3a_c00233{bottom:440.753505pt;}
.yd_c00233{bottom:440.882384pt;}
.y26_c00233{bottom:441.146660pt;}
.y11_c00233{bottom:441.203087pt;}
.y3e_c00233{bottom:441.754495pt;}
.y21_c00233{bottom:442.208338pt;}
.yc_c00233{bottom:442.350726pt;}
.y39_c00233{bottom:442.711737pt;}
.y3f_c00233{bottom:442.991236pt;}
.y20_c00233{bottom:443.709077pt;}
.yb_c00233{bottom:443.856095pt;}
.y40_c00233{bottom:444.500834pt;}
.y12_c00233{bottom:445.005059pt;}
.y1f_c00233{bottom:445.367066pt;}
.ya_c00233{bottom:445.518151pt;}
.y27_c00233{bottom:445.680145pt;}
.y38_c00233{bottom:446.081677pt;}
.y41_c00233{bottom:446.671541pt;}
.y13_c00233{bottom:447.244339pt;}
.y42_c00233{bottom:448.679667pt;}
.y28_c00233{bottom:448.905531pt;}
.y1e_c00233{bottom:449.504430pt;}
.y9_c00233{bottom:449.664187pt;}
.y37_c00233{bottom:450.943270pt;}
.y43_c00233{bottom:451.585269pt;}
.y14_c00233{bottom:452.535040pt;}
.y29_c00233{bottom:453.913511pt;}
.y36_c00233{bottom:454.913413pt;}
.y1d_c00233{bottom:455.194152pt;}
.y8_c00233{bottom:455.361467pt;}
.y15_c00233{bottom:456.756200pt;}
.y44_c00233{bottom:459.049592pt;}
.y2a_c00233{bottom:459.831327pt;}
.y35_c00233{bottom:460.623928pt;}
.y1c_c00233{bottom:461.689550pt;}
.y7_c00233{bottom:461.769857pt;}
.y34_c00233{bottom:464.686327pt;}
.y6_c00233{bottom:464.844100pt;}
.y45_c00233{bottom:466.204075pt;}
.y16_c00233{bottom:467.231078pt;}
.y1b_c00233{bottom:468.055335pt;}
.y5_c00233{bottom:470.186765pt;}
.y2b_c00233{bottom:470.465221pt;}
.y33_c00233{bottom:471.594820pt;}
.y1a_c00233{bottom:472.294552pt;}
.y2d_c00233{bottom:474.016326pt;}
.y31_c00233{bottom:474.632902pt;}
.y32_c00233{bottom:475.056113pt;}
.y4_c00233{bottom:476.639415pt;}
.y19_c00233{bottom:477.781541pt;}
.y17_c00233{bottom:478.111066pt;}
.y2c_c00233{bottom:478.434544pt;}
.y2f_c00233{bottom:479.977628pt;}
.y18_c00233{bottom:484.059707pt;}
.y3_c00233{bottom:485.114772pt;}
.y30_c00233{bottom:513.277627pt;}
.y52_c00233{bottom:582.602792pt;}
.y53_c00233{bottom:907.946525pt;}
.y4f_c00233{bottom:1003.367459pt;}
.y4d_c00233{bottom:1010.154291pt;}
.y4c_c00233{bottom:1021.487641pt;}
.y50_c00233{bottom:1025.122146pt;}
.y4e_c00233{bottom:1040.962393pt;}
.h11_c00233{height:29.796918pt;}
.h9_c00233{height:31.990003pt;}
.ha_c00233{height:31.990004pt;}
.hb_c00233{height:31.990006pt;}
.h12_c00233{height:32.907161pt;}
.h3_c00233{height:33.297513pt;}
.hd_c00233{height:34.762880pt;}
.h7_c00233{height:39.206256pt;}
.h4_c00233{height:39.206257pt;}
.h8_c00233{height:39.206258pt;}
.h5_c00233{height:39.206259pt;}
.h6_c00233{height:39.206261pt;}
.h16_c00233{height:40.523198pt;}
.h15_c00233{height:46.147909pt;}
.hc_c00233{height:50.040354pt;}
.hf_c00233{height:50.682132pt;}
.h14_c00233{height:51.176609pt;}
.h10_c00233{height:56.729248pt;}
.he_c00233{height:59.593748pt;}
.h13_c00233{height:79.445915pt;}
.h2_c00233{height:1159.999952pt;}
.h0_c00233{height:1159.999959pt;}
.h1_c00233{height:1160.000000pt;}
.w2_c00233{width:830.999965pt;}
.w0_c00233{width:831.000000pt;}
.w1_c00233{width:831.333333pt;}
.x0_c00233{left:0.000000pt;}
.x3c_c00233{left:79.544400pt;}
.x3d_c00233{left:80.750973pt;}
.x3e_c00233{left:95.315788pt;}
.x3f_c00233{left:96.735260pt;}
.x44_c00233{left:116.169448pt;}
.x14_c00233{left:119.977634pt;}
.x13_c00233{left:121.465137pt;}
.x15_c00233{left:124.463353pt;}
.x16_c00233{left:128.774857pt;}
.x17_c00233{left:133.544468pt;}
.x18_c00233{left:135.991410pt;}
.x19_c00233{left:138.666862pt;}
.x1a_c00233{left:142.086856pt;}
.x24_c00233{left:143.505744pt;}
.x1b_c00233{left:145.156780pt;}
.x1c_c00233{left:152.521190pt;}
.x1d_c00233{left:159.871997pt;}
.x1e_c00233{left:167.366655pt;}
.x1f_c00233{left:174.821307pt;}
.x20_c00233{left:178.525632pt;}
.x21_c00233{left:182.577318pt;}
.x22_c00233{left:185.963463pt;}
.x23_c00233{left:188.262839pt;}
.x3_c00233{left:204.798568pt;}
.x2_c00233{left:206.697430pt;}
.x4_c00233{left:209.442955pt;}
.x5_c00233{left:213.744503pt;}
.x6_c00233{left:218.506891pt;}
.x7_c00233{left:220.950947pt;}
.x8_c00233{left:223.623762pt;}
.x9_c00233{left:227.041187pt;}
.x41_c00233{left:228.108486pt;}
.xa_c00233{left:229.962704pt;}
.xb_c00233{left:233.906932pt;}
.xc_c00233{left:241.567426pt;}
.xd_c00233{left:252.092435pt;}
.xe_c00233{left:258.703382pt;}
.xf_c00233{left:261.720880pt;}
.x40_c00233{left:262.769032pt;}
.x10_c00233{left:266.467148pt;}
.x11_c00233{left:269.480012pt;}
.x12_c00233{left:273.046051pt;}
.x29_c00233{left:290.708831pt;}
.x2a_c00233{left:291.790874pt;}
.x2b_c00233{left:293.053997pt;}
.x2c_c00233{left:296.073752pt;}
.x2d_c00233{left:298.940009pt;}
.x2e_c00233{left:304.168673pt;}
.x2f_c00233{left:309.668213pt;}
.x28_c00233{left:312.650435pt;}
.x30_c00233{left:314.728661pt;}
.x31_c00233{left:317.759772pt;}
.x32_c00233{left:324.788328pt;}
.x33_c00233{left:331.889587pt;}
.x34_c00233{left:337.898220pt;}
.x35_c00233{left:340.582851pt;}
.x36_c00233{left:343.253275pt;}
.x37_c00233{left:346.273697pt;}
.x38_c00233{left:348.599989pt;}
.x39_c00233{left:351.546252pt;}
.x3a_c00233{left:356.146534pt;}
.x3b_c00233{left:358.639645pt;}
.x42_c00233{left:402.019318pt;}
.x26_c00233{left:413.241039pt;}
.x43_c00233{left:605.051527pt;}
.x1_c00233{left:619.840748pt;}
.x27_c00233{left:652.036124pt;}
.x25_c00233{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9cfd8c07a688fcbca8132ce.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.171387;font-style:normal;font-weight:normal;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_13522139fcc123cc37ea32b1.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.005371;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.006348;font-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_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);}
.v0_c00234{vertical-align:0.000000px;}
.ls1_c00234{letter-spacing:0.000000px;}
.ls0_c00234{letter-spacing:0.000022px;}
.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:-19.320776px;}
.ws1_c00234{word-spacing:-18.703125px;}
.ws2_c00234{word-spacing:0.000000px;}
._3_c00234{width:1.736115px;}
._2_c00234{width:3.134743px;}
._6_c00234{width:4.629775px;}
._1_c00234{width:5.867867px;}
._8_c00234{width:6.985175px;}
._5_c00234{width:8.296873px;}
._a_c00234{width:9.319164px;}
._c_c00234{width:11.012822px;}
._d_c00234{width:12.624250px;}
._4_c00234{width:15.955514px;}
._0_c00234{width:19.828123px;}
._f_c00234{width:23.332008px;}
._9_c00234{width:29.186074px;}
._b_c00234{width:30.820289px;}
._10_c00234{width:32.062500px;}
._e_c00234{width:36.544921px;}
._7_c00234{width:44.725136px;}
.fc1_c00234{color:rgb(67,91,56);}
.fc0_c00234{color:rgb(0,0,0);}
.fs0_c00234{font-size:71.999997px;}
.fs1_c00234{font-size:74.377724px;}
.y0_c00234{bottom:0.000000px;}
.y1_c00234{bottom:0.000008px;}
.y1c_c00234{bottom:29.401163px;}
.y26_c00234{bottom:72.818421px;}
.y25_c00234{bottom:103.193420px;}
.y24_c00234{bottom:133.568418px;}
.y23_c00234{bottom:163.943417px;}
.y22_c00234{bottom:194.318416px;}
.y21_c00234{bottom:229.643414px;}
.y20_c00234{bottom:268.657729px;}
.y1f_c00234{bottom:299.032728px;}
.y1e_c00234{bottom:329.407726px;}
.y1d_c00234{bottom:362.429985px;}
.y12_c00234{bottom:404.082055px;}
.y11_c00234{bottom:434.457054px;}
.y10_c00234{bottom:464.832053px;}
.yf_c00234{bottom:495.207051px;}
.ye_c00234{bottom:525.582050px;}
.yd_c00234{bottom:555.957049px;}
.yc_c00234{bottom:586.332048px;}
.yb_c00234{bottom:616.707046px;}
.ya_c00234{bottom:647.082045px;}
.y9_c00234{bottom:677.457044px;}
.y8_c00234{bottom:707.832043px;}
.y7_c00234{bottom:738.207041px;}
.y6_c00234{bottom:768.582040px;}
.y5_c00234{bottom:798.957039px;}
.y4_c00234{bottom:829.332037px;}
.y3_c00234{bottom:859.707036px;}
.y2_c00234{bottom:890.082035px;}
.y13_c00234{bottom:924.898674px;}
.y1b_c00234{bottom:968.293083px;}
.y1a_c00234{bottom:998.668082px;}
.y19_c00234{bottom:1029.043080px;}
.y18_c00234{bottom:1059.418079px;}
.y17_c00234{bottom:1089.793078px;}
.y16_c00234{bottom:1120.168077px;}
.y15_c00234{bottom:1150.543075px;}
.y14_c00234{bottom:1180.792340px;}
.h4_c00234{height:55.160154px;}
.h5_c00234{height:56.981762px;}
.h3_c00234{height:67.042966px;}
.h2_c00234{height:1304.999946px;}
.h0_c00234{height:1304.999953px;}
.h1_c00234{height:1305.000000px;}
.w2_c00234{width:934.874961px;}
.w0_c00234{width:934.875000px;}
.w1_c00234{width:935.250000px;}
.x0_c00234{left:0.000000px;}
.x2_c00234{left:85.528210px;}
.x1_c00234{left:87.902647px;}
.x3_c00234{left:452.271732px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls1_c00234{letter-spacing:0.000000pt;}
.ls0_c00234{letter-spacing:0.000020pt;}
.ws0_c00234{word-spacing:-17.174023pt;}
.ws1_c00234{word-spacing:-16.625000pt;}
.ws2_c00234{word-spacing:0.000000pt;}
._3_c00234{width:1.543213pt;}
._2_c00234{width:2.786439pt;}
._6_c00234{width:4.115356pt;}
._1_c00234{width:5.215881pt;}
._8_c00234{width:6.209045pt;}
._5_c00234{width:7.374998pt;}
._a_c00234{width:8.283701pt;}
._c_c00234{width:9.789175pt;}
._d_c00234{width:11.221556pt;}
._4_c00234{width:14.182679pt;}
._0_c00234{width:17.624999pt;}
._f_c00234{width:20.739563pt;}
._9_c00234{width:25.943177pt;}
._b_c00234{width:27.395813pt;}
._10_c00234{width:28.500000pt;}
._e_c00234{width:32.484374pt;}
._7_c00234{width:39.755676pt;}
.fs0_c00234{font-size:63.999997pt;}
.fs1_c00234{font-size:66.113533pt;}
.y0_c00234{bottom:0.000000pt;}
.y1_c00234{bottom:0.000007pt;}
.y1c_c00234{bottom:26.134367pt;}
.y26_c00234{bottom:64.727485pt;}
.y25_c00234{bottom:91.727484pt;}
.y24_c00234{bottom:118.727483pt;}
.y23_c00234{bottom:145.727482pt;}
.y22_c00234{bottom:172.727481pt;}
.y21_c00234{bottom:204.127479pt;}
.y20_c00234{bottom:238.806870pt;}
.y1f_c00234{bottom:265.806869pt;}
.y1e_c00234{bottom:292.806868pt;}
.y1d_c00234{bottom:322.159987pt;}
.y12_c00234{bottom:359.184049pt;}
.y11_c00234{bottom:386.184048pt;}
.y10_c00234{bottom:413.184047pt;}
.yf_c00234{bottom:440.184046pt;}
.ye_c00234{bottom:467.184045pt;}
.yd_c00234{bottom:494.184043pt;}
.yc_c00234{bottom:521.184042pt;}
.yb_c00234{bottom:548.184041pt;}
.ya_c00234{bottom:575.184040pt;}
.y9_c00234{bottom:602.184039pt;}
.y8_c00234{bottom:629.184038pt;}
.y7_c00234{bottom:656.184037pt;}
.y6_c00234{bottom:683.184036pt;}
.y5_c00234{bottom:710.184034pt;}
.y4_c00234{bottom:737.184033pt;}
.y3_c00234{bottom:764.184032pt;}
.y2_c00234{bottom:791.184031pt;}
.y13_c00234{bottom:822.132155pt;}
.y1b_c00234{bottom:860.704963pt;}
.y1a_c00234{bottom:887.704961pt;}
.y19_c00234{bottom:914.704960pt;}
.y18_c00234{bottom:941.704959pt;}
.y17_c00234{bottom:968.704958pt;}
.y16_c00234{bottom:995.704957pt;}
.y15_c00234{bottom:1022.704956pt;}
.y14_c00234{bottom:1049.593191pt;}
.h4_c00234{height:49.031248pt;}
.h5_c00234{height:50.650455pt;}
.h3_c00234{height:59.593748pt;}
.h2_c00234{height:1159.999952pt;}
.h0_c00234{height:1159.999959pt;}
.h1_c00234{height:1160.000000pt;}
.w2_c00234{width:830.999965pt;}
.w0_c00234{width:831.000000pt;}
.w1_c00234{width:831.333333pt;}
.x0_c00234{left:0.000000pt;}
.x2_c00234{left:76.025075pt;}
.x1_c00234{left:78.135686pt;}
.x3_c00234{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:0.734863;font-style:normal;font-weight:normal;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_a907efea16635c6cdc057bdf.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00235;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:0.743000;font-style:normal;font-weight: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_c00235;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff5_c00235{font-family:ff5_c00235;line-height:1.006348;font-style:normal;font-weight: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_c00235;src:url('chunks/assets/font_b5c044430996477bfa023a52.woff2')format("woff");}.ff6_c00235{font-family:ff6_c00235;line-height:1.000000;font-style:normal;font-weight: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_c00235;src:url('chunks/assets/font_cce8f1855b89dbf927d63b07.woff2')format("woff");}.ff7_c00235{font-family:ff7_c00235;line-height:1.171387;font-style:normal;font-weight: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_c00235;src:url('chunks/assets/font_68111742066d6ac3f992b028.woff2')format("woff");}.ff8_c00235{font-family:ff8_c00235;line-height:1.005371;font-style:normal;font-weight: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_c00235;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00235{font-family:ff9_c00235;line-height:0.940000;font-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_c00235{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00235{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00235{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00235{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00235{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00235{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00235{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00235{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00235{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00235{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00235{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00235{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00235{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00235{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00235{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00235{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00235{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00235{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00235{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00235{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00235{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00235{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00235{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00235{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00235{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00235{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00235{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00235{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00235{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00235{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00235{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00235{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00235{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00235{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00235{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00235{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00235{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00235{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00235{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00235{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00235{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00235{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00235{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00235{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00235{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00235{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00235{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00235{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00235{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00235{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00235{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00235{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00235{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00235{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00235{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00235{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00235{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00235{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00235{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00235{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00235{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00235{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.v1_c00235{vertical-align:1.280304px;}
.ls0_c00235{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00235{word-spacing:-41.689573px;}
.ws0_c00235{word-spacing:-15.171263px;}
.ws2_c00235{word-spacing:-0.055755px;}
.ws4_c00235{word-spacing:0.000000px;}
.ws1_c00235{word-spacing:288.058683px;}
._0_c00235{width:2.000678px;}
._2_c00235{width:10.885598px;}
._3_c00235{width:12.126158px;}
._1_c00235{width:15.937453px;}
.fc4_c00235{color:transparent;}
.fc3_c00235{color:rgb(67,91,56);}
.fc2_c00235{color:rgb(255,255,255);}
.fc1_c00235{color:rgb(0,0,0);}
.fc0_c00235{color:rgb(9,71,81);}
.fsb_c00235{font-size:36.000051px;}
.fsc_c00235{font-size:39.757786px;}
.fs7_c00235{font-size:41.999830px;}
.fs4_c00235{font-size:47.368230px;}
.fs1_c00235{font-size:47.368231px;}
.fs5_c00235{font-size:47.368232px;}
.fs2_c00235{font-size:47.368233px;}
.fs3_c00235{font-size:47.368235px;}
.fs0_c00235{font-size:51.661596px;}
.fse_c00235{font-size:55.754999px;}
.fsf_c00235{font-size:59.984997px;}
.fs8_c00235{font-size:71.999997px;}
.fs9_c00235{font-size:74.424240px;}
.fs6_c00235{font-size:77.011488px;}
.fsa_c00235{font-size:84.000120px;}
.fsd_c00235{font-size:95.984996px;}
.y0_c00235{bottom:0.000000px;}
.y1_c00235{bottom:0.000008px;}
.y52_c00235{bottom:29.401163px;}
.y4a_c00235{bottom:182.681200px;}
.y49_c00235{bottom:213.056199px;}
.y48_c00235{bottom:243.431198px;}
.y47_c00235{bottom:273.806197px;}
.y46_c00235{bottom:304.181195px;}
.y4b_c00235{bottom:338.261954px;}
.y2_c00235{bottom:401.525233px;}
.y2e_c00235{bottom:486.888370px;}
.y10_c00235{bottom:493.328373px;}
.y24_c00235{bottom:493.343471px;}
.yf_c00235{bottom:493.853637px;}
.y25_c00235{bottom:493.873313px;}
.y3c_c00235{bottom:493.959419px;}
.y23_c00235{bottom:494.588120px;}
.y3d_c00235{bottom:494.792744px;}
.y3b_c00235{bottom:494.812830px;}
.ye_c00235{bottom:494.919783px;}
.y22_c00235{bottom:495.839401px;}
.y3a_c00235{bottom:495.847621px;}
.yd_c00235{bottom:495.993006px;}
.y26_c00235{bottom:496.289812px;}
.y11_c00235{bottom:496.353473px;}
.y3e_c00235{bottom:496.973987px;}
.y21_c00235{bottom:497.484272px;}
.yc_c00235{bottom:497.644566px;}
.y39_c00235{bottom:498.050345px;}
.y3f_c00235{bottom:498.364888px;}
.y20_c00235{bottom:499.172531px;}
.yb_c00235{bottom:499.338107px;}
.y40_c00235{bottom:500.063187px;}
.y12_c00235{bottom:500.630691px;}
.y1f_c00235{bottom:501.037769px;}
.ya_c00235{bottom:501.208172px;}
.y27_c00235{bottom:501.390631px;}
.y38_c00235{bottom:501.842067px;}
.y41_c00235{bottom:502.505484px;}
.y13_c00235{bottom:503.149449px;}
.y42_c00235{bottom:504.764445px;}
.y28_c00235{bottom:505.018795px;}
.y1e_c00235{bottom:505.692124px;}
.y9_c00235{bottom:505.871886px;}
.y37_c00235{bottom:507.310818px;}
.y43_c00235{bottom:508.033427px;}
.y14_c00235{bottom:509.101992px;}
.y29_c00235{bottom:510.652700px;}
.y36_c00235{bottom:511.777409px;}
.y1d_c00235{bottom:512.093493px;}
.y8_c00235{bottom:512.281758px;}
.y15_c00235{bottom:513.850725px;}
.y44_c00235{bottom:516.430683px;}
.y2a_c00235{bottom:517.310350px;}
.y35_c00235{bottom:518.202172px;}
.y1c_c00235{bottom:519.400636px;}
.y7_c00235{bottom:519.490837px;}
.y34_c00235{bottom:522.772046px;}
.y6_c00235{bottom:522.949612px;}
.y45_c00235{bottom:524.479585px;}
.y16_c00235{bottom:525.634639px;}
.y1b_c00235{bottom:526.562252px;}
.y5_c00235{bottom:528.959931px;}
.y2b_c00235{bottom:529.273374px;}
.y33_c00235{bottom:530.544173px;}
.y1a_c00235{bottom:531.331479px;}
.y2d_c00235{bottom:533.268115px;}
.y31_c00235{bottom:533.961835px;}
.y32_c00235{bottom:534.437983px;}
.y4_c00235{bottom:536.219342px;}
.y19_c00235{bottom:537.503802px;}
.y17_c00235{bottom:537.875201px;}
.y2c_c00235{bottom:538.238934px;}
.y2f_c00235{bottom:539.974724px;}
.y18_c00235{bottom:544.567278px;}
.y3_c00235{bottom:545.754118px;}
.y30_c00235{bottom:577.437042px;}
.y51_c00235{bottom:639.092601px;}
.y53_c00235{bottom:1021.439863px;}
.y4f_c00235{bottom:1128.788247px;}
.y4d_c00235{bottom:1136.423523px;}
.y4c_c00235{bottom:1149.173542px;}
.y50_c00235{bottom:1153.262281px;}
.y4e_c00235{bottom:1171.082779px;}
.h11_c00235{height:33.521532px;}
.h9_c00235{height:35.988753px;}
.ha_c00235{height:35.988755px;}
.hb_c00235{height:35.988756px;}
.h12_c00235{height:37.020556px;}
.h3_c00235{height:37.459702px;}
.hd_c00235{height:39.108240px;}
.h7_c00235{height:44.107038px;}
.h4_c00235{height:44.107039px;}
.h8_c00235{height:44.107040px;}
.h5_c00235{height:44.107042px;}
.h6_c00235{height:44.107043px;}
.h16_c00235{height:45.588598px;}
.h15_c00235{height:51.916398px;}
.hc_c00235{height:56.295398px;}
.hf_c00235{height:57.017399px;}
.h14_c00235{height:57.575702px;}
.h10_c00235{height:63.820404px;}
.he_c00235{height:67.042966px;}
.h13_c00235{height:89.376654px;}
.h2_c00235{height:1304.999946px;}
.h0_c00235{height:1304.999953px;}
.h1_c00235{height:1305.000000px;}
.w2_c00235{width:934.874961px;}
.w0_c00235{width:934.875000px;}
.w1_c00235{width:935.250000px;}
.x0_c00235{left:0.000000px;}
.x3c_c00235{left:87.902647px;}
.x3d_c00235{left:89.260034px;}
.x3e_c00235{left:107.230262px;}
.x3f_c00235{left:108.827167px;}
.x44_c00235{left:130.690629px;}
.x14_c00235{left:134.974838px;}
.x13_c00235{left:136.648279px;}
.x15_c00235{left:140.021272px;}
.x16_c00235{left:144.871714px;}
.x17_c00235{left:150.237526px;}
.x18_c00235{left:152.990336px;}
.x19_c00235{left:156.000220px;}
.x1a_c00235{left:159.847713px;}
.x24_c00235{left:161.443962px;}
.x1b_c00235{left:163.301377px;}
.x1c_c00235{left:171.586339px;}
.x1d_c00235{left:179.855997px;}
.x1e_c00235{left:188.287487px;}
.x1f_c00235{left:196.673970px;}
.x20_c00235{left:200.841336px;}
.x21_c00235{left:205.399483px;}
.x22_c00235{left:209.208896px;}
.x23_c00235{left:211.795693px;}
.x3_c00235{left:230.398389px;}
.x2_c00235{left:232.534609px;}
.x4_c00235{left:235.623324px;}
.x5_c00235{left:240.462566px;}
.x6_c00235{left:245.820252px;}
.x7_c00235{left:248.569815px;}
.x8_c00235{left:251.576732px;}
.x9_c00235{left:255.421336px;}
.x41_c00235{left:256.622047px;}
.xa_c00235{left:258.708042px;}
.xb_c00235{left:263.145298px;}
.xc_c00235{left:271.763354px;}
.xd_c00235{left:283.603990px;}
.xe_c00235{left:291.041304px;}
.xf_c00235{left:294.435991px;}
.x40_c00235{left:295.615161px;}
.x10_c00235{left:299.775542px;}
.x11_c00235{left:303.165014px;}
.x12_c00235{left:307.176807px;}
.x29_c00235{left:327.047435px;}
.x2a_c00235{left:328.264734px;}
.x2b_c00235{left:329.685747px;}
.x2c_c00235{left:333.082971px;}
.x2d_c00235{left:336.307511px;}
.x2e_c00235{left:342.189757px;}
.x2f_c00235{left:348.376740px;}
.x28_c00235{left:351.731739px;}
.x30_c00235{left:354.069743px;}
.x31_c00235{left:357.479743px;}
.x32_c00235{left:365.386869px;}
.x33_c00235{left:373.375785px;}
.x34_c00235{left:380.135498px;}
.x35_c00235{left:383.155707px;}
.x36_c00235{left:386.159935px;}
.x37_c00235{left:389.557910px;}
.x38_c00235{left:392.174988px;}
.x39_c00235{left:395.489533px;}
.x3a_c00235{left:400.664851px;}
.x3b_c00235{left:403.469600px;}
.x43_c00235{left:452.271732px;}
.x26_c00235{left:464.896169px;}
.x42_c00235{left:664.443440px;}
.x1_c00235{left:697.320842px;}
.x27_c00235{left:733.540639px;}
.x25_c00235{left:757.088990px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.v1_c00235{vertical-align:1.138048pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws3_c00235{word-spacing:-37.057398pt;}
.ws0_c00235{word-spacing:-13.485567pt;}
.ws2_c00235{word-spacing:-0.049560pt;}
.ws4_c00235{word-spacing:0.000000pt;}
.ws1_c00235{word-spacing:256.052163pt;}
._0_c00235{width:1.778381pt;}
._2_c00235{width:9.676087pt;}
._3_c00235{width:10.778807pt;}
._1_c00235{width:14.166625pt;}
.fsb_c00235{font-size:32.000046pt;}
.fsc_c00235{font-size:35.340254pt;}
.fs7_c00235{font-size:37.333182pt;}
.fs4_c00235{font-size:42.105093pt;}
.fs1_c00235{font-size:42.105094pt;}
.fs5_c00235{font-size:42.105095pt;}
.fs2_c00235{font-size:42.105096pt;}
.fs3_c00235{font-size:42.105098pt;}
.fs0_c00235{font-size:45.921418pt;}
.fse_c00235{font-size:49.559999pt;}
.fsf_c00235{font-size:53.319997pt;}
.fs8_c00235{font-size:63.999997pt;}
.fs9_c00235{font-size:66.154880pt;}
.fs6_c00235{font-size:68.454656pt;}
.fsa_c00235{font-size:74.666773pt;}
.fsd_c00235{font-size:85.319996pt;}
.y0_c00235{bottom:0.000000pt;}
.y1_c00235{bottom:0.000007pt;}
.y52_c00235{bottom:26.134367pt;}
.y4a_c00235{bottom:162.383289pt;}
.y49_c00235{bottom:189.383288pt;}
.y48_c00235{bottom:216.383287pt;}
.y47_c00235{bottom:243.383286pt;}
.y46_c00235{bottom:270.383285pt;}
.y4b_c00235{bottom:300.677293pt;}
.y2_c00235{bottom:356.911319pt;}
.y2e_c00235{bottom:432.789662pt;}
.y10_c00235{bottom:438.514110pt;}
.y24_c00235{bottom:438.527530pt;}
.yf_c00235{bottom:438.981010pt;}
.y25_c00235{bottom:438.998500pt;}
.y3c_c00235{bottom:439.075039pt;}
.y23_c00235{bottom:439.633885pt;}
.y3d_c00235{bottom:439.815773pt;}
.y3b_c00235{bottom:439.833627pt;}
.ye_c00235{bottom:439.928696pt;}
.y22_c00235{bottom:440.746134pt;}
.y3a_c00235{bottom:440.753441pt;}
.yd_c00235{bottom:440.882672pt;}
.y26_c00235{bottom:441.146500pt;}
.y11_c00235{bottom:441.203087pt;}
.y3e_c00235{bottom:441.754655pt;}
.y21_c00235{bottom:442.208242pt;}
.yc_c00235{bottom:442.350726pt;}
.y39_c00235{bottom:442.711417pt;}
.y3f_c00235{bottom:442.991012pt;}
.y20_c00235{bottom:443.708917pt;}
.yb_c00235{bottom:443.856095pt;}
.y40_c00235{bottom:444.500610pt;}
.y12_c00235{bottom:445.005059pt;}
.y1f_c00235{bottom:445.366906pt;}
.ya_c00235{bottom:445.518375pt;}
.y27_c00235{bottom:445.680561pt;}
.y38_c00235{bottom:446.081837pt;}
.y41_c00235{bottom:446.671541pt;}
.y13_c00235{bottom:447.243955pt;}
.y42_c00235{bottom:448.679507pt;}
.y28_c00235{bottom:448.905595pt;}
.y1e_c00235{bottom:449.504110pt;}
.y9_c00235{bottom:449.663899pt;}
.y37_c00235{bottom:450.942950pt;}
.y43_c00235{bottom:451.585269pt;}
.y14_c00235{bottom:452.535104pt;}
.y29_c00235{bottom:453.913511pt;}
.y36_c00235{bottom:454.913253pt;}
.y1d_c00235{bottom:455.194216pt;}
.y8_c00235{bottom:455.361563pt;}
.y15_c00235{bottom:456.756200pt;}
.y44_c00235{bottom:459.049496pt;}
.y2a_c00235{bottom:459.831423pt;}
.y35_c00235{bottom:460.624152pt;}
.y1c_c00235{bottom:461.689454pt;}
.y7_c00235{bottom:461.769633pt;}
.y34_c00235{bottom:464.686263pt;}
.y6_c00235{bottom:464.844100pt;}
.y45_c00235{bottom:466.204075pt;}
.y16_c00235{bottom:467.230790pt;}
.y1b_c00235{bottom:468.055335pt;}
.y5_c00235{bottom:470.186605pt;}
.y2b_c00235{bottom:470.465221pt;}
.y33_c00235{bottom:471.594820pt;}
.y1a_c00235{bottom:472.294648pt;}
.y2d_c00235{bottom:474.016102pt;}
.y31_c00235{bottom:474.632742pt;}
.y32_c00235{bottom:475.055985pt;}
.y4_c00235{bottom:476.639415pt;}
.y19_c00235{bottom:477.781157pt;}
.y17_c00235{bottom:478.111290pt;}
.y2c_c00235{bottom:478.434608pt;}
.y2f_c00235{bottom:479.977532pt;}
.y18_c00235{bottom:484.059803pt;}
.y3_c00235{bottom:485.114772pt;}
.y30_c00235{bottom:513.277371pt;}
.y51_c00235{bottom:568.082312pt;}
.y53_c00235{bottom:907.946545pt;}
.y4f_c00235{bottom:1003.367331pt;}
.y4d_c00235{bottom:1010.154243pt;}
.y4c_c00235{bottom:1021.487593pt;}
.y50_c00235{bottom:1025.122028pt;}
.y4e_c00235{bottom:1040.962470pt;}
.h11_c00235{height:29.796918pt;}
.h9_c00235{height:31.990003pt;}
.ha_c00235{height:31.990004pt;}
.hb_c00235{height:31.990006pt;}
.h12_c00235{height:32.907161pt;}
.h3_c00235{height:33.297513pt;}
.hd_c00235{height:34.762880pt;}
.h7_c00235{height:39.206256pt;}
.h4_c00235{height:39.206257pt;}
.h8_c00235{height:39.206258pt;}
.h5_c00235{height:39.206259pt;}
.h6_c00235{height:39.206261pt;}
.h16_c00235{height:40.523198pt;}
.h15_c00235{height:46.147909pt;}
.hc_c00235{height:50.040354pt;}
.hf_c00235{height:50.682132pt;}
.h14_c00235{height:51.178401pt;}
.h10_c00235{height:56.729248pt;}
.he_c00235{height:59.593748pt;}
.h13_c00235{height:79.445915pt;}
.h2_c00235{height:1159.999952pt;}
.h0_c00235{height:1159.999959pt;}
.h1_c00235{height:1160.000000pt;}
.w2_c00235{width:830.999965pt;}
.w0_c00235{width:831.000000pt;}
.w1_c00235{width:831.333333pt;}
.x0_c00235{left:0.000000pt;}
.x3c_c00235{left:78.135686pt;}
.x3d_c00235{left:79.342253pt;}
.x3e_c00235{left:95.315788pt;}
.x3f_c00235{left:96.735260pt;}
.x44_c00235{left:116.169448pt;}
.x14_c00235{left:119.977634pt;}
.x13_c00235{left:121.465137pt;}
.x15_c00235{left:124.463353pt;}
.x16_c00235{left:128.774857pt;}
.x17_c00235{left:133.544468pt;}
.x18_c00235{left:135.991410pt;}
.x19_c00235{left:138.666862pt;}
.x1a_c00235{left:142.086856pt;}
.x24_c00235{left:143.505744pt;}
.x1b_c00235{left:145.156780pt;}
.x1c_c00235{left:152.521190pt;}
.x1d_c00235{left:159.871997pt;}
.x1e_c00235{left:167.366655pt;}
.x1f_c00235{left:174.821307pt;}
.x20_c00235{left:178.525632pt;}
.x21_c00235{left:182.577318pt;}
.x22_c00235{left:185.963463pt;}
.x23_c00235{left:188.262839pt;}
.x3_c00235{left:204.798568pt;}
.x2_c00235{left:206.697430pt;}
.x4_c00235{left:209.442955pt;}
.x5_c00235{left:213.744503pt;}
.x6_c00235{left:218.506891pt;}
.x7_c00235{left:220.950947pt;}
.x8_c00235{left:223.623762pt;}
.x9_c00235{left:227.041187pt;}
.x41_c00235{left:228.108486pt;}
.xa_c00235{left:229.962704pt;}
.xb_c00235{left:233.906932pt;}
.xc_c00235{left:241.567426pt;}
.xd_c00235{left:252.092435pt;}
.xe_c00235{left:258.703382pt;}
.xf_c00235{left:261.720880pt;}
.x40_c00235{left:262.769032pt;}
.x10_c00235{left:266.467148pt;}
.x11_c00235{left:269.480012pt;}
.x12_c00235{left:273.046051pt;}
.x29_c00235{left:290.708831pt;}
.x2a_c00235{left:291.790874pt;}
.x2b_c00235{left:293.053997pt;}
.x2c_c00235{left:296.073752pt;}
.x2d_c00235{left:298.940009pt;}
.x2e_c00235{left:304.168673pt;}
.x2f_c00235{left:309.668213pt;}
.x28_c00235{left:312.650435pt;}
.x30_c00235{left:314.728661pt;}
.x31_c00235{left:317.759772pt;}
.x32_c00235{left:324.788328pt;}
.x33_c00235{left:331.889587pt;}
.x34_c00235{left:337.898220pt;}
.x35_c00235{left:340.582851pt;}
.x36_c00235{left:343.253275pt;}
.x37_c00235{left:346.273697pt;}
.x38_c00235{left:348.599989pt;}
.x39_c00235{left:351.546252pt;}
.x3a_c00235{left:356.146534pt;}
.x3b_c00235{left:358.639645pt;}
.x43_c00235{left:402.019318pt;}
.x26_c00235{left:413.241039pt;}
.x42_c00235{left:590.616391pt;}
.x1_c00235{left:619.840748pt;}
.x27_c00235{left:652.036124pt;}
.x25_c00235{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e3b551682137d9b065deaa3.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.171387;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.006348;font-style:normal;font-weight:normal;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_59ab4f14f08e7f400e8cb499.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.005371;font-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_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);}
.v0_c00236{vertical-align:0.000000px;}
.ls0_c00236{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00236{word-spacing:-19.320776px;}
.ws0_c00236{word-spacing:-18.703125px;}
.ws2_c00236{word-spacing:0.000000px;}
._4_c00236{width:3.215687px;}
._0_c00236{width:4.388627px;}
._5_c00236{width:5.479773px;}
._2_c00236{width:6.966773px;}
._7_c00236{width:8.537064px;}
._3_c00236{width:10.617188px;}
._9_c00236{width:16.059333px;}
._6_c00236{width:22.347633px;}
._a_c00236{width:23.740762px;}
._8_c00236{width:31.333831px;}
._1_c00236{width:32.426834px;}
.fc1_c00236{color:rgb(67,91,56);}
.fc0_c00236{color:rgb(0,0,0);}
.fs0_c00236{font-size:71.999997px;}
.fs1_c00236{font-size:74.377724px;}
.y0_c00236{bottom:0.000000px;}
.y1_c00236{bottom:0.000008px;}
.y18_c00236{bottom:29.400983px;}
.y12_c00236{bottom:416.048347px;}
.y11_c00236{bottom:446.423345px;}
.y10_c00236{bottom:476.798344px;}
.yf_c00236{bottom:507.173343px;}
.ye_c00236{bottom:537.548342px;}
.yd_c00236{bottom:576.248196px;}
.yc_c00236{bottom:645.323337px;}
.yb_c00236{bottom:675.698336px;}
.ya_c00236{bottom:708.720263px;}
.y8_c00236{bottom:782.756334px;}
.y7_c00236{bottom:813.131333px;}
.y6_c00236{bottom:843.506331px;}
.y5_c00236{bottom:873.881330px;}
.y4_c00236{bottom:904.256329px;}
.y3_c00236{bottom:934.631327px;}
.y2_c00236{bottom:965.006326px;}
.y9_c00236{bottom:1004.075289px;}
.y17_c00236{bottom:1073.562932px;}
.y16_c00236{bottom:1103.937931px;}
.y15_c00236{bottom:1134.312930px;}
.y14_c00236{bottom:1164.687928px;}
.y13_c00236{bottom:1199.188987px;}
.h4_c00236{height:55.160154px;}
.h5_c00236{height:56.981762px;}
.h3_c00236{height:67.042966px;}
.h2_c00236{height:1304.999946px;}
.h0_c00236{height:1304.999953px;}
.h1_c00236{height:1305.000000px;}
.w2_c00236{width:934.874961px;}
.w0_c00236{width:934.875000px;}
.w1_c00236{width:935.250000px;}
.x0_c00236{left:0.000000px;}
.x1_c00236{left:89.041561px;}
.x2_c00236{left:90.398955px;}
.x3_c00236{left:452.271732px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws1_c00236{word-spacing:-17.174023pt;}
.ws0_c00236{word-spacing:-16.625000pt;}
.ws2_c00236{word-spacing:0.000000pt;}
._4_c00236{width:2.858388pt;}
._0_c00236{width:3.901001pt;}
._5_c00236{width:4.870909pt;}
._2_c00236{width:6.192687pt;}
._7_c00236{width:7.588501pt;}
._3_c00236{width:9.437500pt;}
._9_c00236{width:14.274963pt;}
._6_c00236{width:19.864563pt;}
._a_c00236{width:21.102899pt;}
._8_c00236{width:27.852294pt;}
._1_c00236{width:28.823852pt;}
.fs0_c00236{font-size:63.999997pt;}
.fs1_c00236{font-size:66.113533pt;}
.y0_c00236{bottom:0.000000pt;}
.y1_c00236{bottom:0.000007pt;}
.y18_c00236{bottom:26.134207pt;}
.y12_c00236{bottom:369.820753pt;}
.y11_c00236{bottom:396.820751pt;}
.y10_c00236{bottom:423.820750pt;}
.yf_c00236{bottom:450.820749pt;}
.ye_c00236{bottom:477.820748pt;}
.yd_c00236{bottom:512.220619pt;}
.yc_c00236{bottom:573.620744pt;}
.yb_c00236{bottom:600.620743pt;}
.ya_c00236{bottom:629.973567pt;}
.y8_c00236{bottom:695.783408pt;}
.y7_c00236{bottom:722.783407pt;}
.y6_c00236{bottom:749.783406pt;}
.y5_c00236{bottom:776.783404pt;}
.y4_c00236{bottom:803.783403pt;}
.y3_c00236{bottom:830.783402pt;}
.y2_c00236{bottom:857.783401pt;}
.y9_c00236{bottom:892.511368pt;}
.y17_c00236{bottom:954.278162pt;}
.y16_c00236{bottom:981.278161pt;}
.y15_c00236{bottom:1008.278160pt;}
.y14_c00236{bottom:1035.278158pt;}
.y13_c00236{bottom:1065.945766pt;}
.h4_c00236{height:49.031248pt;}
.h5_c00236{height:50.650455pt;}
.h3_c00236{height:59.593748pt;}
.h2_c00236{height:1159.999952pt;}
.h0_c00236{height:1159.999959pt;}
.h1_c00236{height:1160.000000pt;}
.w2_c00236{width:830.999965pt;}
.w0_c00236{width:831.000000pt;}
.w1_c00236{width:831.333333pt;}
.x0_c00236{left:0.000000pt;}
.x1_c00236{left:79.148054pt;}
.x2_c00236{left:80.354627pt;}
.x3_c00236{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:0.734863;font-style:normal;font-weight:normal;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_6b07ceb290e838747549d6f0.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:0.743000;font-style:normal;font-weight: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_c00237;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff5_c00237{font-family:ff5_c00237;line-height:1.006348;font-style:normal;font-weight: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_c00237;src:url('chunks/assets/font_b5c044430996477bfa023a52.woff2')format("woff");}.ff6_c00237{font-family:ff6_c00237;line-height:1.000000;font-style:normal;font-weight: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_c00237;src:url('chunks/assets/font_371424dc7feabf9f36156457.woff2')format("woff");}.ff7_c00237{font-family:ff7_c00237;line-height:1.171387;font-style:normal;font-weight: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_c00237;src:url('chunks/assets/font_14bf76405f4d206d280a9074.woff2')format("woff");}.ff8_c00237{font-family:ff8_c00237;line-height:1.005371;font-style:normal;font-weight: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_c00237;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00237{font-family:ff9_c00237;line-height:0.940000;font-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_c00237{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00237{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00237{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00237{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00237{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00237{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00237{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00237{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00237{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00237{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00237{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00237{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00237{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00237{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00237{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00237{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00237{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00237{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00237{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00237{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00237{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00237{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00237{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00237{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00237{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00237{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00237{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00237{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00237{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00237{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00237{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00237{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00237{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00237{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00237{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00237{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00237{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00237{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00237{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00237{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00237{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00237{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00237{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00237{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00237{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00237{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00237{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00237{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00237{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00237{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00237{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00237{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00237{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00237{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00237{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00237{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00237{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00237{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00237{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00237{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00237{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00237{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00237{vertical-align:0.000000px;}
.v1_c00237{vertical-align:1.279584px;}
.ls0_c00237{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00237{word-spacing:-41.689573px;}
.ws0_c00237{word-spacing:-15.171263px;}
.ws2_c00237{word-spacing:-0.055755px;}
.ws4_c00237{word-spacing:0.000000px;}
.ws1_c00237{word-spacing:288.058683px;}
._1_c00237{width:3.547553px;}
._2_c00237{width:4.813177px;}
._0_c00237{width:9.826172px;}
._4_c00237{width:11.355456px;}
._3_c00237{width:12.480470px;}
.fc4_c00237{color:transparent;}
.fc3_c00237{color:rgb(67,91,56);}
.fc2_c00237{color:rgb(255,255,255);}
.fc1_c00237{color:rgb(0,0,0);}
.fc0_c00237{color:rgb(9,71,81);}
.fsb_c00237{font-size:36.000051px;}
.fsc_c00237{font-size:39.757786px;}
.fs7_c00237{font-size:41.999830px;}
.fs4_c00237{font-size:47.368230px;}
.fs1_c00237{font-size:47.368231px;}
.fs5_c00237{font-size:47.368232px;}
.fs2_c00237{font-size:47.368233px;}
.fs3_c00237{font-size:47.368235px;}
.fs0_c00237{font-size:51.661596px;}
.fse_c00237{font-size:55.754999px;}
.fsf_c00237{font-size:59.984997px;}
.fs8_c00237{font-size:71.999997px;}
.fs9_c00237{font-size:74.424240px;}
.fs6_c00237{font-size:77.011488px;}
.fsa_c00237{font-size:84.000120px;}
.fsd_c00237{font-size:95.984996px;}
.y0_c00237{bottom:0.000000px;}
.y1_c00237{bottom:0.000008px;}
.y53_c00237{bottom:29.401163px;}
.y4b_c00237{bottom:154.397442px;}
.y4a_c00237{bottom:184.772440px;}
.y49_c00237{bottom:215.147439px;}
.y48_c00237{bottom:245.522438px;}
.y47_c00237{bottom:275.897437px;}
.y46_c00237{bottom:306.272435px;}
.y4c_c00237{bottom:340.353374px;}
.y2_c00237{bottom:401.525233px;}
.y2e_c00237{bottom:486.888550px;}
.y10_c00237{bottom:493.328193px;}
.y24_c00237{bottom:493.343399px;}
.yf_c00237{bottom:493.853709px;}
.y25_c00237{bottom:493.873421px;}
.y3c_c00237{bottom:493.959311px;}
.y23_c00237{bottom:494.588120px;}
.y3d_c00237{bottom:494.792564px;}
.y3b_c00237{bottom:494.812830px;}
.ye_c00237{bottom:494.919675px;}
.y22_c00237{bottom:495.839509px;}
.y3a_c00237{bottom:495.847693px;}
.yd_c00237{bottom:495.993006px;}
.y26_c00237{bottom:496.289992px;}
.y11_c00237{bottom:496.353473px;}
.y3e_c00237{bottom:496.974167px;}
.y21_c00237{bottom:497.484380px;}
.yc_c00237{bottom:497.644566px;}
.y39_c00237{bottom:498.050345px;}
.y3f_c00237{bottom:498.364816px;}
.y20_c00237{bottom:499.172711px;}
.yb_c00237{bottom:499.338107px;}
.y40_c00237{bottom:500.063439px;}
.y12_c00237{bottom:500.630691px;}
.y1f_c00237{bottom:501.037625px;}
.ya_c00237{bottom:501.208280px;}
.y27_c00237{bottom:501.390523px;}
.y38_c00237{bottom:501.841887px;}
.y41_c00237{bottom:502.505484px;}
.y13_c00237{bottom:503.149521px;}
.y42_c00237{bottom:504.764625px;}
.y28_c00237{bottom:505.019047px;}
.y1e_c00237{bottom:505.692124px;}
.y9_c00237{bottom:505.871886px;}
.y37_c00237{bottom:507.310818px;}
.y43_c00237{bottom:508.033427px;}
.y14_c00237{bottom:509.101920px;}
.y29_c00237{bottom:510.652700px;}
.y36_c00237{bottom:511.777229px;}
.y1d_c00237{bottom:512.093421px;}
.y8_c00237{bottom:512.281650px;}
.y15_c00237{bottom:513.850725px;}
.y44_c00237{bottom:516.430791px;}
.y2a_c00237{bottom:517.310242px;}
.y35_c00237{bottom:518.201920px;}
.y1c_c00237{bottom:519.400744px;}
.y7_c00237{bottom:519.490765px;}
.y34_c00237{bottom:522.772118px;}
.y6_c00237{bottom:522.949612px;}
.y45_c00237{bottom:524.479585px;}
.y16_c00237{bottom:525.634639px;}
.y1b_c00237{bottom:526.562252px;}
.y5_c00237{bottom:528.959751px;}
.y2b_c00237{bottom:529.273374px;}
.y33_c00237{bottom:530.544173px;}
.y1a_c00237{bottom:531.331731px;}
.y2d_c00237{bottom:533.268367px;}
.y31_c00237{bottom:533.962015px;}
.y32_c00237{bottom:534.438127px;}
.y4_c00237{bottom:536.219342px;}
.y19_c00237{bottom:537.503874px;}
.y17_c00237{bottom:537.875309px;}
.y2c_c00237{bottom:538.238862px;}
.y2f_c00237{bottom:539.974832px;}
.y18_c00237{bottom:544.567530px;}
.y3_c00237{bottom:545.754118px;}
.y30_c00237{bottom:577.436970px;}
.y52_c00237{bottom:639.092421px;}
.y54_c00237{bottom:1021.439841px;}
.y50_c00237{bottom:1128.788391px;}
.y4e_c00237{bottom:1136.423577px;}
.y4d_c00237{bottom:1149.173596px;}
.y51_c00237{bottom:1153.262238px;}
.y4f_c00237{bottom:1171.082869px;}
.h11_c00237{height:33.521532px;}
.h9_c00237{height:35.988753px;}
.ha_c00237{height:35.988755px;}
.hb_c00237{height:35.988756px;}
.h12_c00237{height:37.020556px;}
.h3_c00237{height:37.459702px;}
.hd_c00237{height:39.108240px;}
.h7_c00237{height:44.107038px;}
.h4_c00237{height:44.107039px;}
.h8_c00237{height:44.107040px;}
.h5_c00237{height:44.107042px;}
.h6_c00237{height:44.107043px;}
.h16_c00237{height:45.588598px;}
.h15_c00237{height:51.916398px;}
.hc_c00237{height:56.295398px;}
.hf_c00237{height:57.017399px;}
.h14_c00237{height:57.574982px;}
.h10_c00237{height:63.820404px;}
.he_c00237{height:67.042966px;}
.h13_c00237{height:89.376654px;}
.h2_c00237{height:1304.999946px;}
.h0_c00237{height:1304.999953px;}
.h1_c00237{height:1305.000000px;}
.w2_c00237{width:934.874961px;}
.w0_c00237{width:934.875000px;}
.w1_c00237{width:935.250000px;}
.x0_c00237{left:0.000000px;}
.x3c_c00237{left:89.487450px;}
.x3d_c00237{left:90.844844px;}
.x3e_c00237{left:107.230262px;}
.x3f_c00237{left:108.827167px;}
.x44_c00237{left:130.690629px;}
.x14_c00237{left:134.974838px;}
.x13_c00237{left:136.648279px;}
.x15_c00237{left:140.021272px;}
.x16_c00237{left:144.871714px;}
.x17_c00237{left:150.237526px;}
.x18_c00237{left:152.990336px;}
.x19_c00237{left:156.000220px;}
.x1a_c00237{left:159.847713px;}
.x24_c00237{left:161.443962px;}
.x1b_c00237{left:163.301377px;}
.x1c_c00237{left:171.586339px;}
.x1d_c00237{left:179.855997px;}
.x1e_c00237{left:188.287487px;}
.x1f_c00237{left:196.673970px;}
.x20_c00237{left:200.841336px;}
.x21_c00237{left:205.399483px;}
.x22_c00237{left:209.208896px;}
.x23_c00237{left:211.795693px;}
.x3_c00237{left:230.398389px;}
.x2_c00237{left:232.534609px;}
.x4_c00237{left:235.623324px;}
.x5_c00237{left:240.462566px;}
.x6_c00237{left:245.820252px;}
.x7_c00237{left:248.569815px;}
.x8_c00237{left:251.576732px;}
.x9_c00237{left:255.421336px;}
.x41_c00237{left:256.622047px;}
.xa_c00237{left:258.708042px;}
.xb_c00237{left:263.145298px;}
.xc_c00237{left:271.763354px;}
.xd_c00237{left:283.603990px;}
.xe_c00237{left:291.041304px;}
.xf_c00237{left:294.435991px;}
.x40_c00237{left:295.615161px;}
.x10_c00237{left:299.775542px;}
.x11_c00237{left:303.165014px;}
.x12_c00237{left:307.176807px;}
.x29_c00237{left:327.047435px;}
.x2a_c00237{left:328.264734px;}
.x2b_c00237{left:329.685747px;}
.x2c_c00237{left:333.082971px;}
.x2d_c00237{left:336.307511px;}
.x2e_c00237{left:342.189757px;}
.x2f_c00237{left:348.376740px;}
.x28_c00237{left:351.731739px;}
.x30_c00237{left:354.069743px;}
.x31_c00237{left:357.479743px;}
.x32_c00237{left:365.386869px;}
.x33_c00237{left:373.375785px;}
.x34_c00237{left:380.135498px;}
.x35_c00237{left:383.155707px;}
.x36_c00237{left:386.159935px;}
.x37_c00237{left:389.557910px;}
.x38_c00237{left:392.174988px;}
.x39_c00237{left:395.489533px;}
.x3a_c00237{left:400.664851px;}
.x3b_c00237{left:403.469600px;}
.x43_c00237{left:452.271732px;}
.x26_c00237{left:464.896169px;}
.x42_c00237{left:664.443440px;}
.x1_c00237{left:697.320842px;}
.x27_c00237{left:733.540639px;}
.x25_c00237{left:757.088990px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.v1_c00237{vertical-align:1.137408pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws3_c00237{word-spacing:-37.057398pt;}
.ws0_c00237{word-spacing:-13.485567pt;}
.ws2_c00237{word-spacing:-0.049560pt;}
.ws4_c00237{word-spacing:0.000000pt;}
.ws1_c00237{word-spacing:256.052163pt;}
._1_c00237{width:3.153381pt;}
._2_c00237{width:4.278379pt;}
._0_c00237{width:8.734375pt;}
._4_c00237{width:10.093739pt;}
._3_c00237{width:11.093751pt;}
.fsb_c00237{font-size:32.000046pt;}
.fsc_c00237{font-size:35.340254pt;}
.fs7_c00237{font-size:37.333182pt;}
.fs4_c00237{font-size:42.105093pt;}
.fs1_c00237{font-size:42.105094pt;}
.fs5_c00237{font-size:42.105095pt;}
.fs2_c00237{font-size:42.105096pt;}
.fs3_c00237{font-size:42.105098pt;}
.fs0_c00237{font-size:45.921418pt;}
.fse_c00237{font-size:49.559999pt;}
.fsf_c00237{font-size:53.319997pt;}
.fs8_c00237{font-size:63.999997pt;}
.fs9_c00237{font-size:66.154880pt;}
.fs6_c00237{font-size:68.454656pt;}
.fsa_c00237{font-size:74.666773pt;}
.fsd_c00237{font-size:85.319996pt;}
.y0_c00237{bottom:0.000000pt;}
.y1_c00237{bottom:0.000007pt;}
.y53_c00237{bottom:26.134367pt;}
.y4b_c00237{bottom:137.242170pt;}
.y4a_c00237{bottom:164.242169pt;}
.y49_c00237{bottom:191.242168pt;}
.y48_c00237{bottom:218.242167pt;}
.y47_c00237{bottom:245.242166pt;}
.y46_c00237{bottom:272.242165pt;}
.y4c_c00237{bottom:302.536333pt;}
.y2_c00237{bottom:356.911319pt;}
.y2e_c00237{bottom:432.789822pt;}
.y10_c00237{bottom:438.513950pt;}
.y24_c00237{bottom:438.527466pt;}
.yf_c00237{bottom:438.981074pt;}
.y25_c00237{bottom:438.998596pt;}
.y3c_c00237{bottom:439.074943pt;}
.y23_c00237{bottom:439.633885pt;}
.y3d_c00237{bottom:439.815613pt;}
.y3b_c00237{bottom:439.833627pt;}
.ye_c00237{bottom:439.928600pt;}
.y22_c00237{bottom:440.746230pt;}
.y3a_c00237{bottom:440.753505pt;}
.yd_c00237{bottom:440.882672pt;}
.y26_c00237{bottom:441.146660pt;}
.y11_c00237{bottom:441.203087pt;}
.y3e_c00237{bottom:441.754815pt;}
.y21_c00237{bottom:442.208338pt;}
.yc_c00237{bottom:442.350726pt;}
.y39_c00237{bottom:442.711417pt;}
.y3f_c00237{bottom:442.990948pt;}
.y20_c00237{bottom:443.709077pt;}
.yb_c00237{bottom:443.856095pt;}
.y40_c00237{bottom:444.500834pt;}
.y12_c00237{bottom:445.005059pt;}
.y1f_c00237{bottom:445.366778pt;}
.ya_c00237{bottom:445.518471pt;}
.y27_c00237{bottom:445.680465pt;}
.y38_c00237{bottom:446.081677pt;}
.y41_c00237{bottom:446.671541pt;}
.y13_c00237{bottom:447.244019pt;}
.y42_c00237{bottom:448.679667pt;}
.y28_c00237{bottom:448.905819pt;}
.y1e_c00237{bottom:449.504110pt;}
.y9_c00237{bottom:449.663899pt;}
.y37_c00237{bottom:450.942950pt;}
.y43_c00237{bottom:451.585269pt;}
.y14_c00237{bottom:452.535040pt;}
.y29_c00237{bottom:453.913511pt;}
.y36_c00237{bottom:454.913093pt;}
.y1d_c00237{bottom:455.194152pt;}
.y8_c00237{bottom:455.361467pt;}
.y15_c00237{bottom:456.756200pt;}
.y44_c00237{bottom:459.049592pt;}
.y2a_c00237{bottom:459.831327pt;}
.y35_c00237{bottom:460.623928pt;}
.y1c_c00237{bottom:461.689550pt;}
.y7_c00237{bottom:461.769569pt;}
.y34_c00237{bottom:464.686327pt;}
.y6_c00237{bottom:464.844100pt;}
.y45_c00237{bottom:466.204075pt;}
.y16_c00237{bottom:467.230790pt;}
.y1b_c00237{bottom:468.055335pt;}
.y5_c00237{bottom:470.186445pt;}
.y2b_c00237{bottom:470.465221pt;}
.y33_c00237{bottom:471.594820pt;}
.y1a_c00237{bottom:472.294872pt;}
.y2d_c00237{bottom:474.016326pt;}
.y31_c00237{bottom:474.632902pt;}
.y32_c00237{bottom:475.056113pt;}
.y4_c00237{bottom:476.639415pt;}
.y19_c00237{bottom:477.781221pt;}
.y17_c00237{bottom:478.111386pt;}
.y2c_c00237{bottom:478.434544pt;}
.y2f_c00237{bottom:479.977628pt;}
.y18_c00237{bottom:484.060027pt;}
.y3_c00237{bottom:485.114772pt;}
.y30_c00237{bottom:513.277307pt;}
.y52_c00237{bottom:568.082152pt;}
.y54_c00237{bottom:907.946525pt;}
.y50_c00237{bottom:1003.367459pt;}
.y4e_c00237{bottom:1010.154291pt;}
.y4d_c00237{bottom:1021.487641pt;}
.y51_c00237{bottom:1025.121989pt;}
.y4f_c00237{bottom:1040.962550pt;}
.h11_c00237{height:29.796918pt;}
.h9_c00237{height:31.990003pt;}
.ha_c00237{height:31.990004pt;}
.hb_c00237{height:31.990006pt;}
.h12_c00237{height:32.907161pt;}
.h3_c00237{height:33.297513pt;}
.hd_c00237{height:34.762880pt;}
.h7_c00237{height:39.206256pt;}
.h4_c00237{height:39.206257pt;}
.h8_c00237{height:39.206258pt;}
.h5_c00237{height:39.206259pt;}
.h6_c00237{height:39.206261pt;}
.h16_c00237{height:40.523198pt;}
.h15_c00237{height:46.147909pt;}
.hc_c00237{height:50.040354pt;}
.hf_c00237{height:50.682132pt;}
.h14_c00237{height:51.177761pt;}
.h10_c00237{height:56.729248pt;}
.he_c00237{height:59.593748pt;}
.h13_c00237{height:79.445915pt;}
.h2_c00237{height:1159.999952pt;}
.h0_c00237{height:1159.999959pt;}
.h1_c00237{height:1160.000000pt;}
.w2_c00237{width:830.999965pt;}
.w0_c00237{width:831.000000pt;}
.w1_c00237{width:831.333333pt;}
.x0_c00237{left:0.000000pt;}
.x3c_c00237{left:79.544400pt;}
.x3d_c00237{left:80.750973pt;}
.x3e_c00237{left:95.315788pt;}
.x3f_c00237{left:96.735260pt;}
.x44_c00237{left:116.169448pt;}
.x14_c00237{left:119.977634pt;}
.x13_c00237{left:121.465137pt;}
.x15_c00237{left:124.463353pt;}
.x16_c00237{left:128.774857pt;}
.x17_c00237{left:133.544468pt;}
.x18_c00237{left:135.991410pt;}
.x19_c00237{left:138.666862pt;}
.x1a_c00237{left:142.086856pt;}
.x24_c00237{left:143.505744pt;}
.x1b_c00237{left:145.156780pt;}
.x1c_c00237{left:152.521190pt;}
.x1d_c00237{left:159.871997pt;}
.x1e_c00237{left:167.366655pt;}
.x1f_c00237{left:174.821307pt;}
.x20_c00237{left:178.525632pt;}
.x21_c00237{left:182.577318pt;}
.x22_c00237{left:185.963463pt;}
.x23_c00237{left:188.262839pt;}
.x3_c00237{left:204.798568pt;}
.x2_c00237{left:206.697430pt;}
.x4_c00237{left:209.442955pt;}
.x5_c00237{left:213.744503pt;}
.x6_c00237{left:218.506891pt;}
.x7_c00237{left:220.950947pt;}
.x8_c00237{left:223.623762pt;}
.x9_c00237{left:227.041187pt;}
.x41_c00237{left:228.108486pt;}
.xa_c00237{left:229.962704pt;}
.xb_c00237{left:233.906932pt;}
.xc_c00237{left:241.567426pt;}
.xd_c00237{left:252.092435pt;}
.xe_c00237{left:258.703382pt;}
.xf_c00237{left:261.720880pt;}
.x40_c00237{left:262.769032pt;}
.x10_c00237{left:266.467148pt;}
.x11_c00237{left:269.480012pt;}
.x12_c00237{left:273.046051pt;}
.x29_c00237{left:290.708831pt;}
.x2a_c00237{left:291.790874pt;}
.x2b_c00237{left:293.053997pt;}
.x2c_c00237{left:296.073752pt;}
.x2d_c00237{left:298.940009pt;}
.x2e_c00237{left:304.168673pt;}
.x2f_c00237{left:309.668213pt;}
.x28_c00237{left:312.650435pt;}
.x30_c00237{left:314.728661pt;}
.x31_c00237{left:317.759772pt;}
.x32_c00237{left:324.788328pt;}
.x33_c00237{left:331.889587pt;}
.x34_c00237{left:337.898220pt;}
.x35_c00237{left:340.582851pt;}
.x36_c00237{left:343.253275pt;}
.x37_c00237{left:346.273697pt;}
.x38_c00237{left:348.599989pt;}
.x39_c00237{left:351.546252pt;}
.x3a_c00237{left:356.146534pt;}
.x3b_c00237{left:358.639645pt;}
.x43_c00237{left:402.019318pt;}
.x26_c00237{left:413.241039pt;}
.x42_c00237{left:590.616391pt;}
.x1_c00237{left:619.840748pt;}
.x27_c00237{left:652.036124pt;}
.x25_c00237{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d39dc042f5cfa38fdbcad1aa.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.171387;font-style:normal;font-weight:normal;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_8414c4359d8ffda129142c93.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.005371;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.006348;font-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_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);}
.v0_c00238{vertical-align:0.000000px;}
.ls0_c00238{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00238{word-spacing:-19.320776px;}
.ws1_c00238{word-spacing:0.000000px;}
._3_c00238{width:1.482877px;}
._5_c00238{width:2.771437px;}
._2_c00238{width:4.199524px;}
._7_c00238{width:5.249257px;}
._b_c00238{width:6.497600px;}
._0_c00238{width:8.069666px;}
._9_c00238{width:10.446074px;}
._4_c00238{width:11.630813px;}
._1_c00238{width:12.744138px;}
._c_c00238{width:15.345432px;}
._a_c00238{width:16.846844px;}
._d_c00238{width:24.360053px;}
._6_c00238{width:26.865208px;}
._e_c00238{width:34.178875px;}
._8_c00238{width:41.350753px;}
.fc1_c00238{color:rgb(67,91,56);}
.fc0_c00238{color:rgb(0,0,0);}
.fs0_c00238{font-size:71.999997px;}
.fs1_c00238{font-size:74.377724px;}
.y0_c00238{bottom:0.000000px;}
.y1_c00238{bottom:0.000008px;}
.y1e_c00238{bottom:29.401163px;}
.y26_c00238{bottom:71.130921px;}
.y25_c00238{bottom:101.505920px;}
.y24_c00238{bottom:131.880919px;}
.y23_c00238{bottom:162.255917px;}
.y22_c00238{bottom:192.630916px;}
.y21_c00238{bottom:227.955915px;}
.y20_c00238{bottom:279.030912px;}
.y1f_c00238{bottom:306.303719px;}
.y16_c00238{bottom:357.626937px;}
.y15_c00238{bottom:388.001936px;}
.y14_c00238{bottom:418.376935px;}
.y13_c00238{bottom:448.751933px;}
.y12_c00238{bottom:479.126932px;}
.y11_c00238{bottom:509.501931px;}
.y10_c00238{bottom:539.876930px;}
.yf_c00238{bottom:570.251928px;}
.ye_c00238{bottom:600.626927px;}
.yd_c00238{bottom:631.001926px;}
.yc_c00238{bottom:661.376924px;}
.yb_c00238{bottom:691.751923px;}
.ya_c00238{bottom:722.126922px;}
.y9_c00238{bottom:752.501921px;}
.y8_c00238{bottom:782.876919px;}
.y7_c00238{bottom:813.251918px;}
.y6_c00238{bottom:843.626917px;}
.y5_c00238{bottom:874.001916px;}
.y4_c00238{bottom:904.376914px;}
.y3_c00238{bottom:934.751913px;}
.y2_c00238{bottom:965.126912px;}
.y17_c00238{bottom:998.201910px;}
.y1d_c00238{bottom:1045.002614px;}
.y1c_c00238{bottom:1075.377613px;}
.y1b_c00238{bottom:1105.752612px;}
.y1a_c00238{bottom:1136.127610px;}
.y19_c00238{bottom:1166.502609px;}
.y18_c00238{bottom:1199.188901px;}
.h4_c00238{height:55.160154px;}
.h5_c00238{height:56.981762px;}
.h3_c00238{height:67.042966px;}
.h2_c00238{height:1304.999946px;}
.h0_c00238{height:1304.999953px;}
.h1_c00238{height:1305.000000px;}
.w2_c00238{width:934.874961px;}
.w0_c00238{width:934.875000px;}
.w1_c00238{width:935.250000px;}
.x0_c00238{left:0.000000px;}
.x1_c00238{left:89.487450px;}
.x2_c00238{left:90.844844px;}
.x3_c00238{left:452.271732px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws0_c00238{word-spacing:-17.174023pt;}
.ws1_c00238{word-spacing:0.000000pt;}
._3_c00238{width:1.318113pt;}
._5_c00238{width:2.463500pt;}
._2_c00238{width:3.732910pt;}
._7_c00238{width:4.666007pt;}
._b_c00238{width:5.775645pt;}
._0_c00238{width:7.173036pt;}
._9_c00238{width:9.285399pt;}
._4_c00238{width:10.338500pt;}
._1_c00238{width:11.328122pt;}
._c_c00238{width:13.640384pt;}
._a_c00238{width:14.974972pt;}
._d_c00238{width:21.653380pt;}
._6_c00238{width:23.880185pt;}
._e_c00238{width:30.381222pt;}
._8_c00238{width:36.756225pt;}
.fs0_c00238{font-size:63.999997pt;}
.fs1_c00238{font-size:66.113533pt;}
.y0_c00238{bottom:0.000000pt;}
.y1_c00238{bottom:0.000007pt;}
.y1e_c00238{bottom:26.134367pt;}
.y26_c00238{bottom:63.227485pt;}
.y25_c00238{bottom:90.227484pt;}
.y24_c00238{bottom:117.227483pt;}
.y23_c00238{bottom:144.227482pt;}
.y22_c00238{bottom:171.227481pt;}
.y21_c00238{bottom:202.627480pt;}
.y20_c00238{bottom:248.027478pt;}
.y1f_c00238{bottom:272.269973pt;}
.y16_c00238{bottom:317.890611pt;}
.y15_c00238{bottom:344.890610pt;}
.y14_c00238{bottom:371.890609pt;}
.y13_c00238{bottom:398.890607pt;}
.y12_c00238{bottom:425.890606pt;}
.y11_c00238{bottom:452.890605pt;}
.y10_c00238{bottom:479.890604pt;}
.yf_c00238{bottom:506.890603pt;}
.ye_c00238{bottom:533.890602pt;}
.yd_c00238{bottom:560.890601pt;}
.yc_c00238{bottom:587.890600pt;}
.yb_c00238{bottom:614.890598pt;}
.ya_c00238{bottom:641.890597pt;}
.y9_c00238{bottom:668.890596pt;}
.y8_c00238{bottom:695.890595pt;}
.y7_c00238{bottom:722.890594pt;}
.y6_c00238{bottom:749.890593pt;}
.y5_c00238{bottom:776.890592pt;}
.y4_c00238{bottom:803.890591pt;}
.y3_c00238{bottom:830.890589pt;}
.y2_c00238{bottom:857.890588pt;}
.y17_c00238{bottom:887.290587pt;}
.y1d_c00238{bottom:928.891212pt;}
.y1c_c00238{bottom:955.891211pt;}
.y1b_c00238{bottom:982.891210pt;}
.y1a_c00238{bottom:1009.891209pt;}
.y19_c00238{bottom:1036.891208pt;}
.y18_c00238{bottom:1065.945690pt;}
.h4_c00238{height:49.031248pt;}
.h5_c00238{height:50.650455pt;}
.h3_c00238{height:59.593748pt;}
.h2_c00238{height:1159.999952pt;}
.h0_c00238{height:1159.999959pt;}
.h1_c00238{height:1160.000000pt;}
.w2_c00238{width:830.999965pt;}
.w0_c00238{width:831.000000pt;}
.w1_c00238{width:831.333333pt;}
.x0_c00238{left:0.000000pt;}
.x1_c00238{left:79.544400pt;}
.x2_c00238{left:80.750973pt;}
.x3_c00238{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:0.734863;font-style:normal;font-weight:normal;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_ecc5d3ff8017d170a7b86a1f.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:0.743000;font-style:normal;font-weight: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_d2de3ac05df394bf86c48abe.woff2')format("woff");}.ff5_c00239{font-family:ff5_c00239;line-height:1.005371;font-style:normal;font-weight: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_c00239;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff6_c00239{font-family:ff6_c00239;line-height:1.006348;font-style:normal;font-weight: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_c00239;src:url('chunks/assets/font_49c05a94aea9a8686ea5bfcb.woff2')format("woff");}.ff7_c00239{font-family:ff7_c00239;line-height:1.000000;font-style:normal;font-weight: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_c00239;src:url('chunks/assets/font_ac5e74d436519344caf99de8.woff2')format("woff");}.ff8_c00239{font-family:ff8_c00239;line-height:1.171387;font-style:normal;font-weight: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_c00239;src:url('chunks/assets/font_11d805d250689102d080e5fb.woff2')format("woff");}.ff9_c00239{font-family:ff9_c00239;line-height:1.005371;font-style:normal;font-weight: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_c00239;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00239{font-family:ffa_c00239;line-height:0.940000;font-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_c00239{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00239{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00239{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00239{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00239{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00239{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00239{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00239{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00239{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00239{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00239{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00239{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00239{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00239{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00239{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00239{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00239{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00239{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00239{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00239{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00239{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00239{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00239{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00239{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00239{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00239{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00239{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00239{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00239{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00239{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00239{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00239{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00239{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00239{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00239{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00239{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00239{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00239{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00239{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00239{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00239{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00239{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00239{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00239{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00239{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00239{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00239{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00239{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00239{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00239{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00239{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00239{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00239{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00239{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00239{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00239{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00239{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00239{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00239{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00239{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00239{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00239{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00239{vertical-align:0.000000px;}
.v2_c00239{vertical-align:1.279728px;}
.v1_c00239{vertical-align:2.773152px;}
.ls0_c00239{letter-spacing:0.000000px;}
.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;}
}
.ws5_c00239{word-spacing:-41.689573px;}
.ws1_c00239{word-spacing:-15.171263px;}
.ws2_c00239{word-spacing:-0.076200px;}
.ws4_c00239{word-spacing:-0.055755px;}
.ws6_c00239{word-spacing:0.000000px;}
.ws3_c00239{word-spacing:288.058683px;}
.ws0_c00239{word-spacing:662.351128px;}
._5_c00239{width:1.469143px;}
._0_c00239{width:3.387772px;}
._4_c00239{width:6.555265px;}
._1_c00239{width:9.697702px;}
._7_c00239{width:12.690168px;}
._3_c00239{width:14.570891px;}
._2_c00239{width:16.766786px;}
._6_c00239{width:24.040969px;}
.fc4_c00239{color:transparent;}
.fc3_c00239{color:rgb(67,91,56);}
.fc2_c00239{color:rgb(255,255,255);}
.fc1_c00239{color:rgb(0,0,0);}
.fc0_c00239{color:rgb(9,71,81);}
.fsa_c00239{font-size:36.000051px;}
.fsb_c00239{font-size:39.757786px;}
.fsd_c00239{font-size:41.999830px;}
.fs4_c00239{font-size:47.368230px;}
.fs1_c00239{font-size:47.368231px;}
.fs5_c00239{font-size:47.368232px;}
.fs2_c00239{font-size:47.368233px;}
.fs3_c00239{font-size:47.368235px;}
.fs0_c00239{font-size:51.661596px;}
.fse_c00239{font-size:55.754999px;}
.fsf_c00239{font-size:59.984997px;}
.fs7_c00239{font-size:71.999997px;}
.fs8_c00239{font-size:74.424240px;}
.fs9_c00239{font-size:76.200109px;}
.fs6_c00239{font-size:77.011488px;}
.fsc_c00239{font-size:95.984996px;}
.y0_c00239{bottom:0.000000px;}
.y1_c00239{bottom:0.000008px;}
.y55_c00239{bottom:29.401163px;}
.y4a_c00239{bottom:91.982804px;}
.y49_c00239{bottom:122.357803px;}
.y48_c00239{bottom:152.732802px;}
.y47_c00239{bottom:183.107800px;}
.y46_c00239{bottom:213.482799px;}
.y45_c00239{bottom:243.857798px;}
.y44_c00239{bottom:274.232797px;}
.y43_c00239{bottom:304.607795px;}
.y42_c00239{bottom:334.982794px;}
.y4b_c00239{bottom:371.712073px;}
.y2_c00239{bottom:401.525233px;}
.y10_c00239{bottom:493.328193px;}
.y24_c00239{bottom:493.343399px;}
.yf_c00239{bottom:493.853349px;}
.y25_c00239{bottom:493.873061px;}
.y38_c00239{bottom:493.958987px;}
.y23_c00239{bottom:494.588444px;}
.y39_c00239{bottom:494.792564px;}
.y37_c00239{bottom:494.812470px;}
.ye_c00239{bottom:494.919675px;}
.y22_c00239{bottom:495.839509px;}
.y36_c00239{bottom:495.847333px;}
.yd_c00239{bottom:495.993006px;}
.y26_c00239{bottom:496.289992px;}
.y11_c00239{bottom:496.353113px;}
.y3a_c00239{bottom:496.973447px;}
.y21_c00239{bottom:497.484020px;}
.yc_c00239{bottom:497.644926px;}
.y35_c00239{bottom:498.050705px;}
.y3b_c00239{bottom:498.365140px;}
.y20_c00239{bottom:499.172711px;}
.yb_c00239{bottom:499.338107px;}
.y3c_c00239{bottom:500.063439px;}
.y12_c00239{bottom:500.630691px;}
.y1f_c00239{bottom:501.037949px;}
.ya_c00239{bottom:501.208280px;}
.y27_c00239{bottom:501.390523px;}
.y34_c00239{bottom:501.842247px;}
.y3d_c00239{bottom:502.505484px;}
.y13_c00239{bottom:503.149881px;}
.y3e_c00239{bottom:504.764265px;}
.y28_c00239{bottom:505.018723px;}
.y1e_c00239{bottom:505.692124px;}
.y9_c00239{bottom:505.872210px;}
.y33_c00239{bottom:507.310818px;}
.y3f_c00239{bottom:508.033427px;}
.y14_c00239{bottom:509.102244px;}
.y29_c00239{bottom:510.653024px;}
.y32_c00239{bottom:511.777229px;}
.y1d_c00239{bottom:512.093421px;}
.y8_c00239{bottom:512.281650px;}
.y15_c00239{bottom:513.850725px;}
.y40_c00239{bottom:516.430791px;}
.y2a_c00239{bottom:517.310602px;}
.y31_c00239{bottom:518.202280px;}
.y1c_c00239{bottom:519.400384px;}
.y7_c00239{bottom:519.490765px;}
.y30_c00239{bottom:522.772118px;}
.y6_c00239{bottom:522.949612px;}
.y41_c00239{bottom:524.479945px;}
.y16_c00239{bottom:525.634963px;}
.y1b_c00239{bottom:526.562252px;}
.y5_c00239{bottom:528.960471px;}
.y2b_c00239{bottom:529.273050px;}
.y2f_c00239{bottom:530.544173px;}
.y1a_c00239{bottom:531.331047px;}
.y2d_c00239{bottom:533.268367px;}
.y53_c00239{bottom:533.961655px;}
.y2e_c00239{bottom:534.438127px;}
.y4_c00239{bottom:536.219702px;}
.y19_c00239{bottom:537.503874px;}
.y17_c00239{bottom:537.875309px;}
.y2c_c00239{bottom:538.238502px;}
.y51_c00239{bottom:539.975192px;}
.y18_c00239{bottom:544.566810px;}
.y3_c00239{bottom:545.753758px;}
.y52_c00239{bottom:577.436970px;}
.y54_c00239{bottom:639.092781px;}
.y56_c00239{bottom:1021.440190px;}
.y4f_c00239{bottom:1128.788039px;}
.y4d_c00239{bottom:1138.751629px;}
.y4c_c00239{bottom:1150.751646px;}
.y50_c00239{bottom:1153.262414px;}
.y4e_c00239{bottom:1171.082693px;}
.h10_c00239{height:33.521532px;}
.h9_c00239{height:35.988753px;}
.ha_c00239{height:35.988755px;}
.hb_c00239{height:35.988756px;}
.h11_c00239{height:37.020556px;}
.h3_c00239{height:37.459702px;}
.h13_c00239{height:39.108240px;}
.h7_c00239{height:44.107038px;}
.h4_c00239{height:44.107039px;}
.h8_c00239{height:44.107040px;}
.h5_c00239{height:44.107042px;}
.h6_c00239{height:44.107043px;}
.h16_c00239{height:45.588598px;}
.h15_c00239{height:51.916398px;}
.he_c00239{height:57.017399px;}
.h14_c00239{height:57.575126px;}
.hf_c00239{height:57.894223px;}
.hc_c00239{height:59.068550px;}
.hd_c00239{height:67.042966px;}
.h12_c00239{height:89.376654px;}
.h2_c00239{height:1304.999946px;}
.h0_c00239{height:1304.999953px;}
.h1_c00239{height:1305.000000px;}
.w2_c00239{width:934.874961px;}
.w0_c00239{width:934.875000px;}
.w1_c00239{width:935.250000px;}
.x0_c00239{left:0.000000px;}
.x38_c00239{left:89.487450px;}
.x39_c00239{left:90.844844px;}
.x3a_c00239{left:107.230262px;}
.x3b_c00239{left:108.827167px;}
.x42_c00239{left:130.690629px;}
.x14_c00239{left:134.974838px;}
.x13_c00239{left:136.648279px;}
.x15_c00239{left:140.021272px;}
.x16_c00239{left:144.871714px;}
.x17_c00239{left:150.237526px;}
.x18_c00239{left:152.990336px;}
.x19_c00239{left:156.000220px;}
.x1a_c00239{left:159.847713px;}
.x24_c00239{left:161.443962px;}
.x1b_c00239{left:163.301377px;}
.x1c_c00239{left:171.586339px;}
.x1d_c00239{left:179.855997px;}
.x1e_c00239{left:188.287487px;}
.x1f_c00239{left:196.673970px;}
.x20_c00239{left:200.841336px;}
.x21_c00239{left:205.399483px;}
.x22_c00239{left:209.208896px;}
.x23_c00239{left:211.795693px;}
.x3_c00239{left:230.398389px;}
.x2_c00239{left:232.534609px;}
.x4_c00239{left:235.623324px;}
.x5_c00239{left:240.462566px;}
.x6_c00239{left:245.820252px;}
.x7_c00239{left:248.569815px;}
.x8_c00239{left:251.576732px;}
.x9_c00239{left:255.421336px;}
.x3f_c00239{left:256.622047px;}
.xa_c00239{left:258.708042px;}
.xb_c00239{left:263.145298px;}
.xc_c00239{left:271.763354px;}
.xd_c00239{left:283.603990px;}
.xe_c00239{left:291.041304px;}
.xf_c00239{left:294.435991px;}
.x3c_c00239{left:295.615161px;}
.x10_c00239{left:299.775542px;}
.x11_c00239{left:303.165014px;}
.x12_c00239{left:307.176807px;}
.x25_c00239{left:327.047435px;}
.x26_c00239{left:328.264734px;}
.x27_c00239{left:329.685747px;}
.x28_c00239{left:333.082971px;}
.x29_c00239{left:336.307511px;}
.x2a_c00239{left:342.189757px;}
.x2b_c00239{left:348.376740px;}
.x2c_c00239{left:354.069743px;}
.x2d_c00239{left:357.479743px;}
.x2e_c00239{left:365.386869px;}
.x2f_c00239{left:373.375785px;}
.x30_c00239{left:380.135498px;}
.x31_c00239{left:383.155707px;}
.x32_c00239{left:386.159935px;}
.x33_c00239{left:389.557910px;}
.x34_c00239{left:392.174988px;}
.x35_c00239{left:395.489533px;}
.x36_c00239{left:400.664851px;}
.x37_c00239{left:403.469600px;}
.x41_c00239{left:452.271732px;}
.x3d_c00239{left:464.896169px;}
.x40_c00239{left:664.443440px;}
.x1_c00239{left:697.320842px;}
.x3e_c00239{left:733.540711px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.v2_c00239{vertical-align:1.137536pt;}
.v1_c00239{vertical-align:2.465024pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ws5_c00239{word-spacing:-37.057398pt;}
.ws1_c00239{word-spacing:-13.485567pt;}
.ws2_c00239{word-spacing:-0.067733pt;}
.ws4_c00239{word-spacing:-0.049560pt;}
.ws6_c00239{word-spacing:0.000000pt;}
.ws3_c00239{word-spacing:256.052163pt;}
.ws0_c00239{word-spacing:588.756558pt;}
._5_c00239{width:1.305905pt;}
._0_c00239{width:3.011353pt;}
._4_c00239{width:5.826902pt;}
._1_c00239{width:8.620179pt;}
._7_c00239{width:11.280150pt;}
._3_c00239{width:12.951903pt;}
._2_c00239{width:14.903810pt;}
._6_c00239{width:21.369751pt;}
.fsa_c00239{font-size:32.000046pt;}
.fsb_c00239{font-size:35.340254pt;}
.fsd_c00239{font-size:37.333182pt;}
.fs4_c00239{font-size:42.105093pt;}
.fs1_c00239{font-size:42.105094pt;}
.fs5_c00239{font-size:42.105095pt;}
.fs2_c00239{font-size:42.105096pt;}
.fs3_c00239{font-size:42.105098pt;}
.fs0_c00239{font-size:45.921418pt;}
.fse_c00239{font-size:49.559999pt;}
.fsf_c00239{font-size:53.319997pt;}
.fs7_c00239{font-size:63.999997pt;}
.fs8_c00239{font-size:66.154880pt;}
.fs9_c00239{font-size:67.733430pt;}
.fs6_c00239{font-size:68.454656pt;}
.fsc_c00239{font-size:85.319996pt;}
.y0_c00239{bottom:0.000000pt;}
.y1_c00239{bottom:0.000007pt;}
.y55_c00239{bottom:26.134367pt;}
.y4a_c00239{bottom:81.762493pt;}
.y49_c00239{bottom:108.762491pt;}
.y48_c00239{bottom:135.762490pt;}
.y47_c00239{bottom:162.762489pt;}
.y46_c00239{bottom:189.762488pt;}
.y45_c00239{bottom:216.762487pt;}
.y44_c00239{bottom:243.762486pt;}
.y43_c00239{bottom:270.762485pt;}
.y42_c00239{bottom:297.762484pt;}
.y4b_c00239{bottom:330.410731pt;}
.y2_c00239{bottom:356.911319pt;}
.y10_c00239{bottom:438.513950pt;}
.y24_c00239{bottom:438.527466pt;}
.yf_c00239{bottom:438.980754pt;}
.y25_c00239{bottom:438.998276pt;}
.y38_c00239{bottom:439.074655pt;}
.y23_c00239{bottom:439.634173pt;}
.y39_c00239{bottom:439.815613pt;}
.y37_c00239{bottom:439.833307pt;}
.ye_c00239{bottom:439.928600pt;}
.y22_c00239{bottom:440.746230pt;}
.y36_c00239{bottom:440.753185pt;}
.yd_c00239{bottom:440.882672pt;}
.y26_c00239{bottom:441.146660pt;}
.y11_c00239{bottom:441.202767pt;}
.y3a_c00239{bottom:441.754175pt;}
.y21_c00239{bottom:442.208018pt;}
.yc_c00239{bottom:442.351046pt;}
.y35_c00239{bottom:442.711737pt;}
.y3b_c00239{bottom:442.991236pt;}
.y20_c00239{bottom:443.709077pt;}
.yb_c00239{bottom:443.856095pt;}
.y3c_c00239{bottom:444.500834pt;}
.y12_c00239{bottom:445.005059pt;}
.y1f_c00239{bottom:445.367066pt;}
.ya_c00239{bottom:445.518471pt;}
.y27_c00239{bottom:445.680465pt;}
.y34_c00239{bottom:446.081997pt;}
.y3d_c00239{bottom:446.671541pt;}
.y13_c00239{bottom:447.244339pt;}
.y3e_c00239{bottom:448.679347pt;}
.y28_c00239{bottom:448.905531pt;}
.y1e_c00239{bottom:449.504110pt;}
.y9_c00239{bottom:449.664187pt;}
.y33_c00239{bottom:450.942950pt;}
.y3f_c00239{bottom:451.585269pt;}
.y14_c00239{bottom:452.535328pt;}
.y29_c00239{bottom:453.913799pt;}
.y32_c00239{bottom:454.913093pt;}
.y1d_c00239{bottom:455.194152pt;}
.y8_c00239{bottom:455.361467pt;}
.y15_c00239{bottom:456.756200pt;}
.y40_c00239{bottom:459.049592pt;}
.y2a_c00239{bottom:459.831647pt;}
.y31_c00239{bottom:460.624248pt;}
.y1c_c00239{bottom:461.689230pt;}
.y7_c00239{bottom:461.769569pt;}
.y30_c00239{bottom:464.686327pt;}
.y6_c00239{bottom:464.844100pt;}
.y41_c00239{bottom:466.204395pt;}
.y16_c00239{bottom:467.231078pt;}
.y1b_c00239{bottom:468.055335pt;}
.y5_c00239{bottom:470.187085pt;}
.y2b_c00239{bottom:470.464933pt;}
.y2f_c00239{bottom:471.594820pt;}
.y1a_c00239{bottom:472.294264pt;}
.y2d_c00239{bottom:474.016326pt;}
.y53_c00239{bottom:474.632582pt;}
.y2e_c00239{bottom:475.056113pt;}
.y4_c00239{bottom:476.639735pt;}
.y19_c00239{bottom:477.781221pt;}
.y17_c00239{bottom:478.111386pt;}
.y2c_c00239{bottom:478.434224pt;}
.y51_c00239{bottom:479.977948pt;}
.y18_c00239{bottom:484.059387pt;}
.y3_c00239{bottom:485.114452pt;}
.y52_c00239{bottom:513.277307pt;}
.y54_c00239{bottom:568.082472pt;}
.y56_c00239{bottom:907.946836pt;}
.y4f_c00239{bottom:1003.367145pt;}
.y4d_c00239{bottom:1012.223670pt;}
.y4c_c00239{bottom:1022.890352pt;}
.y50_c00239{bottom:1025.122146pt;}
.y4e_c00239{bottom:1040.962393pt;}
.h10_c00239{height:29.796918pt;}
.h9_c00239{height:31.990003pt;}
.ha_c00239{height:31.990004pt;}
.hb_c00239{height:31.990006pt;}
.h11_c00239{height:32.907161pt;}
.h3_c00239{height:33.297513pt;}
.h13_c00239{height:34.762880pt;}
.h7_c00239{height:39.206256pt;}
.h4_c00239{height:39.206257pt;}
.h8_c00239{height:39.206258pt;}
.h5_c00239{height:39.206259pt;}
.h6_c00239{height:39.206261pt;}
.h16_c00239{height:40.523198pt;}
.h15_c00239{height:46.147909pt;}
.he_c00239{height:50.682132pt;}
.h14_c00239{height:51.177889pt;}
.hf_c00239{height:51.461532pt;}
.hc_c00239{height:52.505377pt;}
.hd_c00239{height:59.593748pt;}
.h12_c00239{height:79.445915pt;}
.h2_c00239{height:1159.999952pt;}
.h0_c00239{height:1159.999959pt;}
.h1_c00239{height:1160.000000pt;}
.w2_c00239{width:830.999965pt;}
.w0_c00239{width:831.000000pt;}
.w1_c00239{width:831.333333pt;}
.x0_c00239{left:0.000000pt;}
.x38_c00239{left:79.544400pt;}
.x39_c00239{left:80.750973pt;}
.x3a_c00239{left:95.315788pt;}
.x3b_c00239{left:96.735260pt;}
.x42_c00239{left:116.169448pt;}
.x14_c00239{left:119.977634pt;}
.x13_c00239{left:121.465137pt;}
.x15_c00239{left:124.463353pt;}
.x16_c00239{left:128.774857pt;}
.x17_c00239{left:133.544468pt;}
.x18_c00239{left:135.991410pt;}
.x19_c00239{left:138.666862pt;}
.x1a_c00239{left:142.086856pt;}
.x24_c00239{left:143.505744pt;}
.x1b_c00239{left:145.156780pt;}
.x1c_c00239{left:152.521190pt;}
.x1d_c00239{left:159.871997pt;}
.x1e_c00239{left:167.366655pt;}
.x1f_c00239{left:174.821307pt;}
.x20_c00239{left:178.525632pt;}
.x21_c00239{left:182.577318pt;}
.x22_c00239{left:185.963463pt;}
.x23_c00239{left:188.262839pt;}
.x3_c00239{left:204.798568pt;}
.x2_c00239{left:206.697430pt;}
.x4_c00239{left:209.442955pt;}
.x5_c00239{left:213.744503pt;}
.x6_c00239{left:218.506891pt;}
.x7_c00239{left:220.950947pt;}
.x8_c00239{left:223.623762pt;}
.x9_c00239{left:227.041187pt;}
.x3f_c00239{left:228.108486pt;}
.xa_c00239{left:229.962704pt;}
.xb_c00239{left:233.906932pt;}
.xc_c00239{left:241.567426pt;}
.xd_c00239{left:252.092435pt;}
.xe_c00239{left:258.703382pt;}
.xf_c00239{left:261.720880pt;}
.x3c_c00239{left:262.769032pt;}
.x10_c00239{left:266.467148pt;}
.x11_c00239{left:269.480012pt;}
.x12_c00239{left:273.046051pt;}
.x25_c00239{left:290.708831pt;}
.x26_c00239{left:291.790874pt;}
.x27_c00239{left:293.053997pt;}
.x28_c00239{left:296.073752pt;}
.x29_c00239{left:298.940009pt;}
.x2a_c00239{left:304.168673pt;}
.x2b_c00239{left:309.668213pt;}
.x2c_c00239{left:314.728661pt;}
.x2d_c00239{left:317.759772pt;}
.x2e_c00239{left:324.788328pt;}
.x2f_c00239{left:331.889587pt;}
.x30_c00239{left:337.898220pt;}
.x31_c00239{left:340.582851pt;}
.x32_c00239{left:343.253275pt;}
.x33_c00239{left:346.273697pt;}
.x34_c00239{left:348.599989pt;}
.x35_c00239{left:351.546252pt;}
.x36_c00239{left:356.146534pt;}
.x37_c00239{left:358.639645pt;}
.x41_c00239{left:402.019318pt;}
.x3d_c00239{left:413.241039pt;}
.x40_c00239{left:590.616391pt;}
.x1_c00239{left:619.840748pt;}
.x3e_c00239{left:652.036188pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e30d497d84ea8f87f85c78d4.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.171387;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.006348;font-style:normal;font-weight:normal;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_da6e830b18b2d6c8160dc922.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.000000;font-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_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;}
.ls0_c00240{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00240{word-spacing:-19.320776px;}
.ws1_c00240{word-spacing:0.000000px;}
._2_c00240{width:1.505812px;}
._c_c00240{width:2.556995px;}
._1_c00240{width:3.569665px;}
._3_c00240{width:5.091748px;}
._6_c00240{width:6.110656px;}
._0_c00240{width:7.558596px;}
._7_c00240{width:10.692855px;}
._b_c00240{width:12.387773px;}
._8_c00240{width:14.507787px;}
._e_c00240{width:15.841943px;}
._5_c00240{width:17.469909px;}
._d_c00240{width:22.368712px;}
._f_c00240{width:25.465824px;}
._4_c00240{width:27.357946px;}
._10_c00240{width:36.435882px;}
._9_c00240{width:41.857014px;}
._a_c00240{width:47.841747px;}
._11_c00240{width:60.689708px;}
.fc1_c00240{color:rgb(67,91,56);}
.fc0_c00240{color:rgb(0,0,0);}
.fs0_c00240{font-size:71.999997px;}
.fs1_c00240{font-size:74.377724px;}
.y0_c00240{bottom:0.000000px;}
.y1_c00240{bottom:0.000008px;}
.y27_c00240{bottom:29.401163px;}
.y21_c00240{bottom:83.097249px;}
.y20_c00240{bottom:113.472247px;}
.y1f_c00240{bottom:143.847246px;}
.y1e_c00240{bottom:174.222245px;}
.y1d_c00240{bottom:204.597243px;}
.y1c_c00240{bottom:237.672242px;}
.y26_c00240{bottom:281.997240px;}
.y25_c00240{bottom:312.372239px;}
.y24_c00240{bottom:342.747238px;}
.y23_c00240{bottom:373.122236px;}
.y22_c00240{bottom:406.144315px;}
.y19_c00240{bottom:450.284748px;}
.y18_c00240{bottom:480.659747px;}
.y17_c00240{bottom:511.034746px;}
.y16_c00240{bottom:541.409745px;}
.y15_c00240{bottom:571.784743px;}
.y14_c00240{bottom:602.159742px;}
.y13_c00240{bottom:632.534741px;}
.y12_c00240{bottom:662.909740px;}
.y11_c00240{bottom:693.284738px;}
.y10_c00240{bottom:723.659737px;}
.yf_c00240{bottom:754.034736px;}
.ye_c00240{bottom:784.409735px;}
.yd_c00240{bottom:814.784733px;}
.yc_c00240{bottom:845.159732px;}
.yb_c00240{bottom:875.534731px;}
.ya_c00240{bottom:905.909729px;}
.y9_c00240{bottom:936.284728px;}
.y8_c00240{bottom:966.659727px;}
.y7_c00240{bottom:997.034726px;}
.y6_c00240{bottom:1027.409724px;}
.y5_c00240{bottom:1057.784723px;}
.y1a_c00240{bottom:1093.301519px;}
.y4_c00240{bottom:1137.494419px;}
.y3_c00240{bottom:1167.869417px;}
.y2_c00240{bottom:1198.244416px;}
.y1b_c00240{bottom:1232.745414px;}
.h4_c00240{height:55.160154px;}
.h5_c00240{height:56.981762px;}
.h3_c00240{height:67.042966px;}
.h2_c00240{height:1304.999946px;}
.h0_c00240{height:1304.999953px;}
.h1_c00240{height:1305.000000px;}
.w2_c00240{width:934.874961px;}
.w0_c00240{width:934.875000px;}
.w1_c00240{width:935.250000px;}
.x0_c00240{left:0.000000px;}
.x1_c00240{left:88.581344px;}
.x2_c00240{left:90.379249px;}
.x3_c00240{left:452.271732px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ws0_c00240{word-spacing:-17.174023pt;}
.ws1_c00240{word-spacing:0.000000pt;}
._2_c00240{width:1.338500pt;}
._c_c00240{width:2.272884pt;}
._1_c00240{width:3.173035pt;}
._3_c00240{width:4.525998pt;}
._6_c00240{width:5.431694pt;}
._0_c00240{width:6.718752pt;}
._7_c00240{width:9.504760pt;}
._b_c00240{width:11.011353pt;}
._8_c00240{width:12.895811pt;}
._e_c00240{width:14.081727pt;}
._5_c00240{width:15.528808pt;}
._d_c00240{width:19.883300pt;}
._f_c00240{width:22.636288pt;}
._4_c00240{width:24.318174pt;}
._10_c00240{width:32.387450pt;}
._9_c00240{width:37.206234pt;}
._a_c00240{width:42.525997pt;}
._11_c00240{width:53.946407pt;}
.fs0_c00240{font-size:63.999997pt;}
.fs1_c00240{font-size:66.113533pt;}
.y0_c00240{bottom:0.000000pt;}
.y1_c00240{bottom:0.000007pt;}
.y27_c00240{bottom:26.134367pt;}
.y21_c00240{bottom:73.864221pt;}
.y20_c00240{bottom:100.864220pt;}
.y1f_c00240{bottom:127.864219pt;}
.y1e_c00240{bottom:154.864218pt;}
.y1d_c00240{bottom:181.864216pt;}
.y1c_c00240{bottom:211.264215pt;}
.y26_c00240{bottom:250.664214pt;}
.y25_c00240{bottom:277.664212pt;}
.y24_c00240{bottom:304.664211pt;}
.y23_c00240{bottom:331.664210pt;}
.y22_c00240{bottom:361.017169pt;}
.y19_c00240{bottom:400.253110pt;}
.y18_c00240{bottom:427.253109pt;}
.y17_c00240{bottom:454.253107pt;}
.y16_c00240{bottom:481.253106pt;}
.y15_c00240{bottom:508.253105pt;}
.y14_c00240{bottom:535.253104pt;}
.y13_c00240{bottom:562.253103pt;}
.y12_c00240{bottom:589.253102pt;}
.y11_c00240{bottom:616.253101pt;}
.y10_c00240{bottom:643.253100pt;}
.yf_c00240{bottom:670.253098pt;}
.ye_c00240{bottom:697.253097pt;}
.yd_c00240{bottom:724.253096pt;}
.yc_c00240{bottom:751.253095pt;}
.yb_c00240{bottom:778.253094pt;}
.ya_c00240{bottom:805.253093pt;}
.y9_c00240{bottom:832.253092pt;}
.y8_c00240{bottom:859.253091pt;}
.y7_c00240{bottom:886.253089pt;}
.y6_c00240{bottom:913.253088pt;}
.y5_c00240{bottom:940.253087pt;}
.y1a_c00240{bottom:971.823572pt;}
.y4_c00240{bottom:1011.106150pt;}
.y3_c00240{bottom:1038.106149pt;}
.y2_c00240{bottom:1065.106148pt;}
.y1b_c00240{bottom:1095.773701pt;}
.h4_c00240{height:49.031248pt;}
.h5_c00240{height:50.650455pt;}
.h3_c00240{height:59.593748pt;}
.h2_c00240{height:1159.999952pt;}
.h0_c00240{height:1159.999959pt;}
.h1_c00240{height:1160.000000pt;}
.w2_c00240{width:830.999965pt;}
.w0_c00240{width:831.000000pt;}
.w1_c00240{width:831.333333pt;}
.x0_c00240{left:0.000000pt;}
.x1_c00240{left:78.738973pt;}
.x2_c00240{left:80.337110pt;}
.x3_c00240{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:0.734863;font-style:normal;font-weight:normal;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_7b1ba4075f054ab0a734a845.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:0.743000;font-style:normal;font-weight: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_c00241;src:url('chunks/assets/font_ccc37c4194041bce9957ba23.woff2')format("woff");}.ff5_c00241{font-family:ff5_c00241;line-height:1.000000;font-style:normal;font-weight: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_c00241;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff6_c00241{font-family:ff6_c00241;line-height:1.006348;font-style:normal;font-weight: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_c00241;src:url('chunks/assets/font_8f33b76007e0f1d9937f5cc4.woff2')format("woff");}.ff7_c00241{font-family:ff7_c00241;line-height:1.000000;font-style:normal;font-weight: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_c00241;src:url('chunks/assets/font_e8732bb18e7e38c77fa94330.woff2')format("woff");}.ff8_c00241{font-family:ff8_c00241;line-height:1.171387;font-style:normal;font-weight: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_c00241;src:url('chunks/assets/font_6309c002018a2e5544cecfd7.woff2')format("woff");}.ff9_c00241{font-family:ff9_c00241;line-height:1.000000;font-style:normal;font-weight: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_c00241;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00241{font-family:ffa_c00241;line-height:0.940000;font-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_c00241{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00241{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00241{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00241{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00241{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00241{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00241{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00241{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00241{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00241{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00241{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00241{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00241{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00241{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00241{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00241{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00241{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00241{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00241{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00241{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00241{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00241{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00241{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00241{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00241{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00241{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00241{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00241{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00241{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00241{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00241{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00241{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00241{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00241{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00241{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00241{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00241{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00241{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00241{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00241{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00241{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00241{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00241{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00241{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00241{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00241{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00241{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00241{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00241{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00241{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00241{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00241{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00241{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00241{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00241{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00241{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00241{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00241{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00241{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00241{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00241{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00241{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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;}
.v2_c00241{vertical-align:1.280304px;}
.v1_c00241{vertical-align:2.775312px;}
.ls0_c00241{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00241{word-spacing:-41.689573px;}
.ws2_c00241{word-spacing:-19.794169px;}
.ws1_c00241{word-spacing:-15.171263px;}
.ws5_c00241{word-spacing:0.000000px;}
.ws3_c00241{word-spacing:288.058683px;}
.ws0_c00241{word-spacing:662.351128px;}
._2_c00241{width:1.144910px;}
._5_c00241{width:2.335557px;}
._4_c00241{width:8.194084px;}
._3_c00241{width:9.896485px;}
._0_c00241{width:10.977539px;}
._1_c00241{width:23.733626px;}
.fc4_c00241{color:transparent;}
.fc3_c00241{color:rgb(67,91,56);}
.fc2_c00241{color:rgb(255,255,255);}
.fc1_c00241{color:rgb(0,0,0);}
.fc0_c00241{color:rgb(9,71,81);}
.fsa_c00241{font-size:36.000051px;}
.fsb_c00241{font-size:39.757786px;}
.fse_c00241{font-size:41.999830px;}
.fs4_c00241{font-size:47.368230px;}
.fs1_c00241{font-size:47.368231px;}
.fs5_c00241{font-size:47.368232px;}
.fs2_c00241{font-size:47.368233px;}
.fs3_c00241{font-size:47.368235px;}
.fs0_c00241{font-size:51.661596px;}
.fsd_c00241{font-size:55.754999px;}
.fsf_c00241{font-size:59.984997px;}
.fs7_c00241{font-size:71.999997px;}
.fs8_c00241{font-size:74.424240px;}
.fs9_c00241{font-size:76.200109px;}
.fs6_c00241{font-size:77.011488px;}
.fsc_c00241{font-size:95.984996px;}
.y0_c00241{bottom:0.000000px;}
.y1_c00241{bottom:0.000008px;}
.y53_c00241{bottom:29.400983px;}
.y48_c00241{bottom:120.382375px;}
.y47_c00241{bottom:150.757374px;}
.y46_c00241{bottom:181.132372px;}
.y45_c00241{bottom:211.507371px;}
.y44_c00241{bottom:241.882370px;}
.y43_c00241{bottom:272.257369px;}
.y42_c00241{bottom:302.632367px;}
.y49_c00241{bottom:342.586166px;}
.y2_c00241{bottom:401.525233px;}
.y10_c00241{bottom:493.328373px;}
.y24_c00241{bottom:493.343399px;}
.yf_c00241{bottom:493.853709px;}
.y25_c00241{bottom:493.873241px;}
.y38_c00241{bottom:493.959311px;}
.y23_c00241{bottom:494.588120px;}
.y39_c00241{bottom:494.792744px;}
.y37_c00241{bottom:494.812830px;}
.ye_c00241{bottom:494.919675px;}
.y22_c00241{bottom:495.839329px;}
.y36_c00241{bottom:495.847693px;}
.yd_c00241{bottom:495.993006px;}
.y26_c00241{bottom:496.289812px;}
.y11_c00241{bottom:496.353473px;}
.y3a_c00241{bottom:496.973987px;}
.y21_c00241{bottom:497.484200px;}
.yc_c00241{bottom:497.644566px;}
.y35_c00241{bottom:498.050345px;}
.y3b_c00241{bottom:498.364996px;}
.y20_c00241{bottom:499.172711px;}
.yb_c00241{bottom:499.338251px;}
.y3c_c00241{bottom:500.063079px;}
.y12_c00241{bottom:500.630691px;}
.y1f_c00241{bottom:501.037769px;}
.ya_c00241{bottom:501.208100px;}
.y27_c00241{bottom:501.390523px;}
.y34_c00241{bottom:501.842067px;}
.y3d_c00241{bottom:502.505484px;}
.y13_c00241{bottom:503.149521px;}
.y3e_c00241{bottom:504.764445px;}
.y28_c00241{bottom:505.018723px;}
.y1e_c00241{bottom:505.692124px;}
.y9_c00241{bottom:505.871886px;}
.y33_c00241{bottom:507.310818px;}
.y3f_c00241{bottom:508.033247px;}
.y14_c00241{bottom:509.101920px;}
.y29_c00241{bottom:510.652700px;}
.y32_c00241{bottom:511.777409px;}
.y1d_c00241{bottom:512.093601px;}
.y8_c00241{bottom:512.281830px;}
.y15_c00241{bottom:513.850725px;}
.y40_c00241{bottom:516.430791px;}
.y2a_c00241{bottom:517.310242px;}
.y31_c00241{bottom:518.202100px;}
.y1c_c00241{bottom:519.400564px;}
.y7_c00241{bottom:519.490909px;}
.y30_c00241{bottom:522.772118px;}
.y6_c00241{bottom:522.949612px;}
.y41_c00241{bottom:524.479585px;}
.y16_c00241{bottom:525.634639px;}
.y1b_c00241{bottom:526.562252px;}
.y5_c00241{bottom:528.959931px;}
.y2b_c00241{bottom:529.273374px;}
.y2f_c00241{bottom:530.544173px;}
.y1a_c00241{bottom:531.331551px;}
.y2d_c00241{bottom:533.268007px;}
.y52_c00241{bottom:533.961835px;}
.y2e_c00241{bottom:534.437983px;}
.y4_c00241{bottom:536.219342px;}
.y19_c00241{bottom:537.503874px;}
.y17_c00241{bottom:537.875309px;}
.y2c_c00241{bottom:538.238862px;}
.y50_c00241{bottom:539.974652px;}
.y18_c00241{bottom:544.567170px;}
.y3_c00241{bottom:545.754118px;}
.y51_c00241{bottom:577.437150px;}
.y4f_c00241{bottom:628.435522px;}
.y54_c00241{bottom:1021.439841px;}
.y4d_c00241{bottom:1128.788391px;}
.y4b_c00241{bottom:1138.751452px;}
.y4a_c00241{bottom:1150.751469px;}
.y4e_c00241{bottom:1153.262238px;}
.y4c_c00241{bottom:1171.082779px;}
.h10_c00241{height:33.521532px;}
.h9_c00241{height:35.988753px;}
.ha_c00241{height:35.988755px;}
.hb_c00241{height:35.988756px;}
.h11_c00241{height:37.020556px;}
.h3_c00241{height:37.459702px;}
.h14_c00241{height:39.108240px;}
.h13_c00241{height:42.360732px;}
.h7_c00241{height:44.107038px;}
.h4_c00241{height:44.107039px;}
.h8_c00241{height:44.107040px;}
.h5_c00241{height:44.107042px;}
.h6_c00241{height:44.107043px;}
.h16_c00241{height:45.588598px;}
.he_c00241{height:57.017399px;}
.h15_c00241{height:57.575702px;}
.hf_c00241{height:57.894223px;}
.hc_c00241{height:59.070710px;}
.hd_c00241{height:67.042966px;}
.h12_c00241{height:89.376654px;}
.h2_c00241{height:1304.999946px;}
.h0_c00241{height:1304.999953px;}
.h1_c00241{height:1305.000000px;}
.w2_c00241{width:934.874961px;}
.w0_c00241{width:934.875000px;}
.w1_c00241{width:935.250000px;}
.x0_c00241{left:0.000000px;}
.x38_c00241{left:87.902647px;}
.x39_c00241{left:89.260034px;}
.x3a_c00241{left:107.230262px;}
.x3b_c00241{left:108.827167px;}
.x42_c00241{left:130.690629px;}
.x14_c00241{left:134.974838px;}
.x13_c00241{left:136.648279px;}
.x15_c00241{left:140.021272px;}
.x16_c00241{left:144.871714px;}
.x17_c00241{left:150.237526px;}
.x18_c00241{left:152.990336px;}
.x19_c00241{left:156.000220px;}
.x1a_c00241{left:159.847713px;}
.x24_c00241{left:161.443962px;}
.x1b_c00241{left:163.301377px;}
.x1c_c00241{left:171.586339px;}
.x1d_c00241{left:179.855997px;}
.x1e_c00241{left:188.287487px;}
.x1f_c00241{left:196.673970px;}
.x20_c00241{left:200.841336px;}
.x21_c00241{left:205.399483px;}
.x22_c00241{left:209.208896px;}
.x23_c00241{left:211.795693px;}
.x3_c00241{left:230.398389px;}
.x2_c00241{left:232.534609px;}
.x4_c00241{left:235.623324px;}
.x5_c00241{left:240.462566px;}
.x6_c00241{left:245.820252px;}
.x7_c00241{left:248.569815px;}
.x8_c00241{left:251.576732px;}
.x9_c00241{left:255.421336px;}
.x40_c00241{left:256.622047px;}
.xa_c00241{left:258.708042px;}
.xb_c00241{left:263.145298px;}
.xc_c00241{left:271.763354px;}
.xd_c00241{left:283.603990px;}
.xe_c00241{left:291.041304px;}
.xf_c00241{left:294.435991px;}
.x3c_c00241{left:295.615161px;}
.x10_c00241{left:299.775542px;}
.x11_c00241{left:303.165014px;}
.x12_c00241{left:307.176807px;}
.x25_c00241{left:327.047435px;}
.x26_c00241{left:328.264734px;}
.x27_c00241{left:329.685747px;}
.x28_c00241{left:333.082971px;}
.x29_c00241{left:336.307511px;}
.x2a_c00241{left:342.189757px;}
.x2b_c00241{left:348.376740px;}
.x2c_c00241{left:354.069743px;}
.x2d_c00241{left:357.479743px;}
.x2e_c00241{left:365.386869px;}
.x2f_c00241{left:373.375785px;}
.x30_c00241{left:380.135498px;}
.x31_c00241{left:383.155707px;}
.x32_c00241{left:386.159935px;}
.x33_c00241{left:389.557910px;}
.x34_c00241{left:392.174988px;}
.x35_c00241{left:395.489533px;}
.x36_c00241{left:400.664851px;}
.x37_c00241{left:403.469600px;}
.x41_c00241{left:452.271732px;}
.x3e_c00241{left:464.896169px;}
.x3d_c00241{left:626.935474px;}
.x1_c00241{left:697.320842px;}
.x3f_c00241{left:733.540711px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.v2_c00241{vertical-align:1.138048pt;}
.v1_c00241{vertical-align:2.466944pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws4_c00241{word-spacing:-37.057398pt;}
.ws2_c00241{word-spacing:-17.594817pt;}
.ws1_c00241{word-spacing:-13.485567pt;}
.ws5_c00241{word-spacing:0.000000pt;}
.ws3_c00241{word-spacing:256.052163pt;}
.ws0_c00241{word-spacing:588.756558pt;}
._2_c00241{width:1.017698pt;}
._5_c00241{width:2.076050pt;}
._4_c00241{width:7.283630pt;}
._3_c00241{width:8.796875pt;}
._0_c00241{width:9.757813pt;}
._1_c00241{width:21.096557pt;}
.fsa_c00241{font-size:32.000046pt;}
.fsb_c00241{font-size:35.340254pt;}
.fse_c00241{font-size:37.333182pt;}
.fs4_c00241{font-size:42.105093pt;}
.fs1_c00241{font-size:42.105094pt;}
.fs5_c00241{font-size:42.105095pt;}
.fs2_c00241{font-size:42.105096pt;}
.fs3_c00241{font-size:42.105098pt;}
.fs0_c00241{font-size:45.921418pt;}
.fsd_c00241{font-size:49.559999pt;}
.fsf_c00241{font-size:53.319997pt;}
.fs7_c00241{font-size:63.999997pt;}
.fs8_c00241{font-size:66.154880pt;}
.fs9_c00241{font-size:67.733430pt;}
.fs6_c00241{font-size:68.454656pt;}
.fsc_c00241{font-size:85.319996pt;}
.y0_c00241{bottom:0.000000pt;}
.y1_c00241{bottom:0.000007pt;}
.y53_c00241{bottom:26.134207pt;}
.y48_c00241{bottom:107.006556pt;}
.y47_c00241{bottom:134.006554pt;}
.y46_c00241{bottom:161.006553pt;}
.y45_c00241{bottom:188.006552pt;}
.y44_c00241{bottom:215.006551pt;}
.y43_c00241{bottom:242.006550pt;}
.y42_c00241{bottom:269.006549pt;}
.y49_c00241{bottom:304.521036pt;}
.y2_c00241{bottom:356.911319pt;}
.y10_c00241{bottom:438.514110pt;}
.y24_c00241{bottom:438.527466pt;}
.yf_c00241{bottom:438.981074pt;}
.y25_c00241{bottom:438.998436pt;}
.y38_c00241{bottom:439.074943pt;}
.y23_c00241{bottom:439.633885pt;}
.y39_c00241{bottom:439.815773pt;}
.y37_c00241{bottom:439.833627pt;}
.ye_c00241{bottom:439.928600pt;}
.y22_c00241{bottom:440.746070pt;}
.y36_c00241{bottom:440.753505pt;}
.yd_c00241{bottom:440.882672pt;}
.y26_c00241{bottom:441.146500pt;}
.y11_c00241{bottom:441.203087pt;}
.y3a_c00241{bottom:441.754655pt;}
.y21_c00241{bottom:442.208178pt;}
.yc_c00241{bottom:442.350726pt;}
.y35_c00241{bottom:442.711417pt;}
.y3b_c00241{bottom:442.991108pt;}
.y20_c00241{bottom:443.709077pt;}
.yb_c00241{bottom:443.856223pt;}
.y3c_c00241{bottom:444.500514pt;}
.y12_c00241{bottom:445.005059pt;}
.y1f_c00241{bottom:445.366906pt;}
.ya_c00241{bottom:445.518311pt;}
.y27_c00241{bottom:445.680465pt;}
.y34_c00241{bottom:446.081837pt;}
.y3d_c00241{bottom:446.671541pt;}
.y13_c00241{bottom:447.244019pt;}
.y3e_c00241{bottom:448.679507pt;}
.y28_c00241{bottom:448.905531pt;}
.y1e_c00241{bottom:449.504110pt;}
.y9_c00241{bottom:449.663899pt;}
.y33_c00241{bottom:450.942950pt;}
.y3f_c00241{bottom:451.585109pt;}
.y14_c00241{bottom:452.535040pt;}
.y29_c00241{bottom:453.913511pt;}
.y32_c00241{bottom:454.913253pt;}
.y1d_c00241{bottom:455.194312pt;}
.y8_c00241{bottom:455.361627pt;}
.y15_c00241{bottom:456.756200pt;}
.y40_c00241{bottom:459.049592pt;}
.y2a_c00241{bottom:459.831327pt;}
.y31_c00241{bottom:460.624088pt;}
.y1c_c00241{bottom:461.689390pt;}
.y7_c00241{bottom:461.769697pt;}
.y30_c00241{bottom:464.686327pt;}
.y6_c00241{bottom:464.844100pt;}
.y41_c00241{bottom:466.204075pt;}
.y16_c00241{bottom:467.230790pt;}
.y1b_c00241{bottom:468.055335pt;}
.y5_c00241{bottom:470.186605pt;}
.y2b_c00241{bottom:470.465221pt;}
.y2f_c00241{bottom:471.594820pt;}
.y1a_c00241{bottom:472.294712pt;}
.y2d_c00241{bottom:474.016006pt;}
.y52_c00241{bottom:474.632742pt;}
.y2e_c00241{bottom:475.055985pt;}
.y4_c00241{bottom:476.639415pt;}
.y19_c00241{bottom:477.781221pt;}
.y17_c00241{bottom:478.111386pt;}
.y2c_c00241{bottom:478.434544pt;}
.y50_c00241{bottom:479.977468pt;}
.y18_c00241{bottom:484.059707pt;}
.y3_c00241{bottom:485.114772pt;}
.y51_c00241{bottom:513.277467pt;}
.y4f_c00241{bottom:558.609353pt;}
.y54_c00241{bottom:907.946525pt;}
.y4d_c00241{bottom:1003.367459pt;}
.y4b_c00241{bottom:1012.223513pt;}
.y4a_c00241{bottom:1022.890195pt;}
.y4e_c00241{bottom:1025.121989pt;}
.y4c_c00241{bottom:1040.962470pt;}
.h10_c00241{height:29.796918pt;}
.h9_c00241{height:31.990003pt;}
.ha_c00241{height:31.990004pt;}
.hb_c00241{height:31.990006pt;}
.h11_c00241{height:32.907161pt;}
.h3_c00241{height:33.297513pt;}
.h14_c00241{height:34.762880pt;}
.h13_c00241{height:37.653984pt;}
.h7_c00241{height:39.206256pt;}
.h4_c00241{height:39.206257pt;}
.h8_c00241{height:39.206258pt;}
.h5_c00241{height:39.206259pt;}
.h6_c00241{height:39.206261pt;}
.h16_c00241{height:40.523198pt;}
.he_c00241{height:50.682132pt;}
.h15_c00241{height:51.178401pt;}
.hf_c00241{height:51.461532pt;}
.hc_c00241{height:52.507297pt;}
.hd_c00241{height:59.593748pt;}
.h12_c00241{height:79.445915pt;}
.h2_c00241{height:1159.999952pt;}
.h0_c00241{height:1159.999959pt;}
.h1_c00241{height:1160.000000pt;}
.w2_c00241{width:830.999965pt;}
.w0_c00241{width:831.000000pt;}
.w1_c00241{width:831.333333pt;}
.x0_c00241{left:0.000000pt;}
.x38_c00241{left:78.135686pt;}
.x39_c00241{left:79.342253pt;}
.x3a_c00241{left:95.315788pt;}
.x3b_c00241{left:96.735260pt;}
.x42_c00241{left:116.169448pt;}
.x14_c00241{left:119.977634pt;}
.x13_c00241{left:121.465137pt;}
.x15_c00241{left:124.463353pt;}
.x16_c00241{left:128.774857pt;}
.x17_c00241{left:133.544468pt;}
.x18_c00241{left:135.991410pt;}
.x19_c00241{left:138.666862pt;}
.x1a_c00241{left:142.086856pt;}
.x24_c00241{left:143.505744pt;}
.x1b_c00241{left:145.156780pt;}
.x1c_c00241{left:152.521190pt;}
.x1d_c00241{left:159.871997pt;}
.x1e_c00241{left:167.366655pt;}
.x1f_c00241{left:174.821307pt;}
.x20_c00241{left:178.525632pt;}
.x21_c00241{left:182.577318pt;}
.x22_c00241{left:185.963463pt;}
.x23_c00241{left:188.262839pt;}
.x3_c00241{left:204.798568pt;}
.x2_c00241{left:206.697430pt;}
.x4_c00241{left:209.442955pt;}
.x5_c00241{left:213.744503pt;}
.x6_c00241{left:218.506891pt;}
.x7_c00241{left:220.950947pt;}
.x8_c00241{left:223.623762pt;}
.x9_c00241{left:227.041187pt;}
.x40_c00241{left:228.108486pt;}
.xa_c00241{left:229.962704pt;}
.xb_c00241{left:233.906932pt;}
.xc_c00241{left:241.567426pt;}
.xd_c00241{left:252.092435pt;}
.xe_c00241{left:258.703382pt;}
.xf_c00241{left:261.720880pt;}
.x3c_c00241{left:262.769032pt;}
.x10_c00241{left:266.467148pt;}
.x11_c00241{left:269.480012pt;}
.x12_c00241{left:273.046051pt;}
.x25_c00241{left:290.708831pt;}
.x26_c00241{left:291.790874pt;}
.x27_c00241{left:293.053997pt;}
.x28_c00241{left:296.073752pt;}
.x29_c00241{left:298.940009pt;}
.x2a_c00241{left:304.168673pt;}
.x2b_c00241{left:309.668213pt;}
.x2c_c00241{left:314.728661pt;}
.x2d_c00241{left:317.759772pt;}
.x2e_c00241{left:324.788328pt;}
.x2f_c00241{left:331.889587pt;}
.x30_c00241{left:337.898220pt;}
.x31_c00241{left:340.582851pt;}
.x32_c00241{left:343.253275pt;}
.x33_c00241{left:346.273697pt;}
.x34_c00241{left:348.599989pt;}
.x35_c00241{left:351.546252pt;}
.x36_c00241{left:356.146534pt;}
.x37_c00241{left:358.639645pt;}
.x41_c00241{left:402.019318pt;}
.x3e_c00241{left:413.241039pt;}
.x3d_c00241{left:557.275977pt;}
.x1_c00241{left:619.840748pt;}
.x3f_c00241{left:652.036188pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54aa7c9d7a6759c822662798.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.000000;font-style:normal;font-weight:normal;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_a58826c1338923d777d48892.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.171387;font-style:normal;font-weight:normal;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_4cbe7d00bcc615d2a6c438e2.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.006348;font-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_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);}
.v0_c00242{vertical-align:0.000000px;}
.ls0_c00242{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00242{word-spacing:-19.320776px;}
.ws1_c00242{word-spacing:0.000000px;}
._6_c00242{width:1.029557px;}
._3_c00242{width:2.402297px;}
._8_c00242{width:3.867186px;}
._9_c00242{width:5.964821px;}
._4_c00242{width:7.921225px;}
._0_c00242{width:9.146458px;}
._7_c00242{width:10.239603px;}
._5_c00242{width:12.656251px;}
._a_c00242{width:15.513931px;}
._1_c00242{width:27.224944px;}
._2_c00242{width:28.237609px;}
._b_c00242{width:32.589842px;}
.fc1_c00242{color:rgb(67,91,56);}
.fc0_c00242{color:rgb(0,0,0);}
.fs0_c00242{font-size:71.999997px;}
.fs1_c00242{font-size:74.377724px;}
.y0_c00242{bottom:0.000000px;}
.y1_c00242{bottom:0.000008px;}
.y20_c00242{bottom:29.401163px;}
.y1e_c00242{bottom:122.444995px;}
.y1d_c00242{bottom:153.944994px;}
.y1c_c00242{bottom:203.575780px;}
.y15_c00242{bottom:278.909286px;}
.y14_c00242{bottom:310.409285px;}
.y13_c00242{bottom:341.909284px;}
.y12_c00242{bottom:373.409282px;}
.y11_c00242{bottom:404.909281px;}
.y10_c00242{bottom:436.409280px;}
.yf_c00242{bottom:467.909279px;}
.ye_c00242{bottom:499.409277px;}
.yd_c00242{bottom:530.909276px;}
.yc_c00242{bottom:562.409275px;}
.yb_c00242{bottom:593.909273px;}
.ya_c00242{bottom:625.409272px;}
.y9_c00242{bottom:656.909271px;}
.y8_c00242{bottom:688.409269px;}
.y7_c00242{bottom:719.909268px;}
.y6_c00242{bottom:751.409267px;}
.y5_c00242{bottom:782.909265px;}
.y4_c00242{bottom:814.409264px;}
.y3_c00242{bottom:845.909263px;}
.y2_c00242{bottom:877.409261px;}
.y1b_c00242{bottom:929.909139px;}
.y1a_c00242{bottom:1018.784136px;}
.y19_c00242{bottom:1050.284134px;}
.y18_c00242{bottom:1081.784133px;}
.y17_c00242{bottom:1113.284132px;}
.y16_c00242{bottom:1144.784130px;}
.y1f_c00242{bottom:1195.855560px;}
.h4_c00242{height:55.160154px;}
.h5_c00242{height:56.981762px;}
.h3_c00242{height:67.042966px;}
.h2_c00242{height:1304.999946px;}
.h0_c00242{height:1304.999953px;}
.h1_c00242{height:1305.000000px;}
.w2_c00242{width:934.874961px;}
.w0_c00242{width:934.875000px;}
.w1_c00242{width:935.250000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:88.794432px;}
.x2_c00242{left:90.166147px;}
.x3_c00242{left:452.271732px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws0_c00242{word-spacing:-17.174023pt;}
.ws1_c00242{word-spacing:0.000000pt;}
._6_c00242{width:0.915161pt;}
._3_c00242{width:2.135375pt;}
._8_c00242{width:3.437499pt;}
._9_c00242{width:5.302063pt;}
._4_c00242{width:7.041089pt;}
._0_c00242{width:8.130185pt;}
._7_c00242{width:9.101869pt;}
._5_c00242{width:11.250001pt;}
._a_c00242{width:13.790161pt;}
._1_c00242{width:24.199950pt;}
._2_c00242{width:25.100097pt;}
._b_c00242{width:28.968749pt;}
.fs0_c00242{font-size:63.999997pt;}
.fs1_c00242{font-size:66.113533pt;}
.y0_c00242{bottom:0.000000pt;}
.y1_c00242{bottom:0.000007pt;}
.y20_c00242{bottom:26.134367pt;}
.y1e_c00242{bottom:108.839995pt;}
.y1d_c00242{bottom:136.839994pt;}
.y1c_c00242{bottom:180.956248pt;}
.y15_c00242{bottom:247.919366pt;}
.y14_c00242{bottom:275.919365pt;}
.y13_c00242{bottom:303.919363pt;}
.y12_c00242{bottom:331.919362pt;}
.y11_c00242{bottom:359.919361pt;}
.y10_c00242{bottom:387.919360pt;}
.yf_c00242{bottom:415.919359pt;}
.ye_c00242{bottom:443.919358pt;}
.yd_c00242{bottom:471.919356pt;}
.yc_c00242{bottom:499.919355pt;}
.yb_c00242{bottom:527.919354pt;}
.ya_c00242{bottom:555.919353pt;}
.y9_c00242{bottom:583.919352pt;}
.y8_c00242{bottom:611.919351pt;}
.y7_c00242{bottom:639.919349pt;}
.y6_c00242{bottom:667.919348pt;}
.y5_c00242{bottom:695.919347pt;}
.y4_c00242{bottom:723.919346pt;}
.y3_c00242{bottom:751.919345pt;}
.y2_c00242{bottom:779.919344pt;}
.y1b_c00242{bottom:826.585902pt;}
.y1a_c00242{bottom:905.585898pt;}
.y19_c00242{bottom:933.585897pt;}
.y18_c00242{bottom:961.585896pt;}
.y17_c00242{bottom:989.585895pt;}
.y16_c00242{bottom:1017.585894pt;}
.y1f_c00242{bottom:1062.982720pt;}
.h4_c00242{height:49.031248pt;}
.h5_c00242{height:50.650455pt;}
.h3_c00242{height:59.593748pt;}
.h2_c00242{height:1159.999952pt;}
.h0_c00242{height:1159.999959pt;}
.h1_c00242{height:1160.000000pt;}
.w2_c00242{width:830.999965pt;}
.w0_c00242{width:831.000000pt;}
.w1_c00242{width:831.333333pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:78.928384pt;}
.x2_c00242{left:80.147686pt;}
.x3_c00242{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fca6bf8e707035a6ffc9bd78.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.006348;font-style:normal;font-weight:normal;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_7515396a05b9dbe96076aa9f.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.171387;font-style:normal;font-weight:normal;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_ccc37c4194041bce9957ba23.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.000000;font-style:normal;font-weight:normal;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_7a4bdbf10d2c24a1899932f6.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;line-height:1.000000;font-style:normal;font-weight: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_c00243;src:url('chunks/assets/font_2751cb191244325191ff1eaa.woff2')format("woff");}.ff5_c00243{font-family:ff5_c00243;line-height:1.171387;font-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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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;}
.ls0_c00243{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00243{word-spacing:-0.059985px;}
.ws1_c00243{word-spacing:0.000000px;}
._3_c00243{width:4.615010px;}
._1_c00243{width:8.537064px;}
._0_c00243{width:23.507787px;}
._2_c00243{width:32.062500px;}
.fc2_c00243{color:rgb(255,255,255);}
.fc1_c00243{color:rgb(0,0,0);}
.fc0_c00243{color:rgb(67,91,56);}
.fs1_c00243{font-size:59.984997px;}
.fs0_c00243{font-size:71.999997px;}
.y0_c00243{bottom:0.000000px;}
.y1_c00243{bottom:0.000008px;}
.y8_c00243{bottom:29.401163px;}
.y9_c00243{bottom:635.739922px;}
.y7_c00243{bottom:1033.931560px;}
.y6_c00243{bottom:1064.306558px;}
.y5_c00243{bottom:1094.681557px;}
.y4_c00243{bottom:1125.056556px;}
.y3_c00243{bottom:1155.431555px;}
.y2_c00243{bottom:1194.131553px;}
.h3_c00243{height:55.160154px;}
.h5_c00243{height:55.855171px;}
.h4_c00243{height:67.042966px;}
.h2_c00243{height:1304.999946px;}
.h0_c00243{height:1304.999953px;}
.h1_c00243{height:1305.000000px;}
.w2_c00243{width:934.874961px;}
.w0_c00243{width:934.875000px;}
.w1_c00243{width:935.250000px;}
.x0_c00243{left:0.000000px;}
.x3_c00243{left:87.902647px;}
.x1_c00243{left:93.543307px;}
.x2_c00243{left:452.271732px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws0_c00243{word-spacing:-0.053320pt;}
.ws1_c00243{word-spacing:0.000000pt;}
._3_c00243{width:4.102231pt;}
._1_c00243{width:7.588501pt;}
._0_c00243{width:20.895811pt;}
._2_c00243{width:28.500000pt;}
.fs1_c00243{font-size:53.319997pt;}
.fs0_c00243{font-size:63.999997pt;}
.y0_c00243{bottom:0.000000pt;}
.y1_c00243{bottom:0.000007pt;}
.y8_c00243{bottom:26.134367pt;}
.y9_c00243{bottom:565.102152pt;}
.y7_c00243{bottom:919.050275pt;}
.y6_c00243{bottom:946.050274pt;}
.y5_c00243{bottom:973.050273pt;}
.y4_c00243{bottom:1000.050272pt;}
.y3_c00243{bottom:1027.050271pt;}
.y2_c00243{bottom:1061.450269pt;}
.h3_c00243{height:49.031248pt;}
.h5_c00243{height:49.649041pt;}
.h4_c00243{height:59.593748pt;}
.h2_c00243{height:1159.999952pt;}
.h0_c00243{height:1159.999959pt;}
.h1_c00243{height:1160.000000pt;}
.w2_c00243{width:830.999965pt;}
.w0_c00243{width:831.000000pt;}
.w1_c00243{width:831.333333pt;}
.x0_c00243{left:0.000000pt;}
.x3_c00243{left:78.135686pt;}
.x1_c00243{left:83.149606pt;}
.x2_c00243{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:0.734863;font-style:normal;font-weight:normal;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_b233e6c8c5ad082c5b5ceeff.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:0.743000;font-style:normal;font-weight: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_c00244;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff5_c00244{font-family:ff5_c00244;line-height:0.940000;font-style:normal;font-weight: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_c00244;src:url('chunks/assets/font_a7cc19b54a17e13a629f308c.woff2')format("woff");}.ff6_c00244{font-family:ff6_c00244;line-height:1.000000;font-style:normal;font-weight: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_c00244;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff7_c00244{font-family:ff7_c00244;line-height:1.006348;font-style:normal;font-weight: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_c00244;src:url('chunks/assets/font_dae5113ca2547ac6513e766c.woff2')format("woff");}.ff8_c00244{font-family:ff8_c00244;line-height:1.000000;font-style:normal;font-weight: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_c00244;src:url('chunks/assets/font_c25f6590168371b6fc4deab8.woff2')format("woff");}.ff9_c00244{font-family:ff9_c00244;line-height:1.171387;font-style:normal;font-weight: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_c00244;src:url('chunks/assets/font_fdfb897b64eef8ccabdd326b.woff2')format("woff");}.ffa_c00244{font-family:ffa_c00244;line-height:1.000000;font-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_c00244{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00244{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00244{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00244{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00244{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00244{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00244{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00244{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00244{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00244{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00244{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00244{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00244{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00244{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00244{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00244{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00244{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00244{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00244{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00244{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00244{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00244{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00244{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00244{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00244{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00244{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00244{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00244{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00244{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00244{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00244{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00244{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00244{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00244{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00244{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00244{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00244{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00244{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00244{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00244{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00244{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00244{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00244{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00244{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00244{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00244{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00244{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00244{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00244{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00244{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00244{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00244{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00244{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00244{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00244{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00244{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00244{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00244{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00244{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00244{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00244{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00244{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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;}
.v2_c00244{vertical-align:1.279728px;}
.v1_c00244{vertical-align:2.773152px;}
.ls0_c00244{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00244{word-spacing:-41.689573px;}
.ws1_c00244{word-spacing:-15.171263px;}
.ws3_c00244{word-spacing:-0.076200px;}
.ws5_c00244{word-spacing:-0.055755px;}
.ws6_c00244{word-spacing:0.000000px;}
.ws4_c00244{word-spacing:288.058683px;}
.ws0_c00244{word-spacing:662.351128px;}
._1_c00244{width:1.450191px;}
._2_c00244{width:16.818692px;}
._0_c00244{width:32.304679px;}
.fc4_c00244{color:transparent;}
.fc3_c00244{color:rgb(67,91,56);}
.fc2_c00244{color:rgb(255,255,255);}
.fc1_c00244{color:rgb(0,0,0);}
.fc0_c00244{color:rgb(9,71,81);}
.fsb_c00244{font-size:36.000051px;}
.fsc_c00244{font-size:39.757786px;}
.fse_c00244{font-size:41.999830px;}
.fs4_c00244{font-size:47.368230px;}
.fs1_c00244{font-size:47.368231px;}
.fs5_c00244{font-size:47.368232px;}
.fs2_c00244{font-size:47.368233px;}
.fs3_c00244{font-size:47.368235px;}
.fs0_c00244{font-size:51.661596px;}
.fsf_c00244{font-size:55.754999px;}
.fs7_c00244{font-size:59.984997px;}
.fs8_c00244{font-size:71.999997px;}
.fs9_c00244{font-size:74.424240px;}
.fsa_c00244{font-size:76.200109px;}
.fs6_c00244{font-size:77.011488px;}
.fsd_c00244{font-size:95.984996px;}
.y0_c00244{bottom:0.000000px;}
.y1_c00244{bottom:0.000008px;}
.y52_c00244{bottom:29.401163px;}
.y47_c00244{bottom:180.618724px;}
.y46_c00244{bottom:210.993723px;}
.y45_c00244{bottom:241.368722px;}
.y44_c00244{bottom:271.743721px;}
.y43_c00244{bottom:302.118719px;}
.y48_c00244{bottom:336.199334px;}
.y2_c00244{bottom:401.525233px;}
.y10_c00244{bottom:493.328193px;}
.y24_c00244{bottom:493.343399px;}
.yf_c00244{bottom:493.853349px;}
.y25_c00244{bottom:493.873061px;}
.y38_c00244{bottom:493.958987px;}
.y23_c00244{bottom:494.588444px;}
.y39_c00244{bottom:494.792564px;}
.y37_c00244{bottom:494.812470px;}
.ye_c00244{bottom:494.919675px;}
.y22_c00244{bottom:495.839509px;}
.y36_c00244{bottom:495.847333px;}
.yd_c00244{bottom:495.993006px;}
.y26_c00244{bottom:496.289992px;}
.y11_c00244{bottom:496.353113px;}
.y3a_c00244{bottom:496.973447px;}
.y21_c00244{bottom:497.484020px;}
.yc_c00244{bottom:497.644926px;}
.y35_c00244{bottom:498.050705px;}
.y3b_c00244{bottom:498.365140px;}
.y20_c00244{bottom:499.172711px;}
.yb_c00244{bottom:499.338107px;}
.y3c_c00244{bottom:500.063439px;}
.y12_c00244{bottom:500.630691px;}
.y1f_c00244{bottom:501.037949px;}
.ya_c00244{bottom:501.208280px;}
.y27_c00244{bottom:501.390523px;}
.y34_c00244{bottom:501.842247px;}
.y3d_c00244{bottom:502.505484px;}
.y13_c00244{bottom:503.149881px;}
.y3e_c00244{bottom:504.764265px;}
.y28_c00244{bottom:505.018723px;}
.y1e_c00244{bottom:505.692124px;}
.y9_c00244{bottom:505.872210px;}
.y33_c00244{bottom:507.310818px;}
.y3f_c00244{bottom:508.033427px;}
.y14_c00244{bottom:509.102244px;}
.y29_c00244{bottom:510.653024px;}
.y32_c00244{bottom:511.777229px;}
.y1d_c00244{bottom:512.093421px;}
.y8_c00244{bottom:512.281650px;}
.y15_c00244{bottom:513.850725px;}
.y40_c00244{bottom:516.430791px;}
.y2a_c00244{bottom:517.310602px;}
.y31_c00244{bottom:518.202280px;}
.y1c_c00244{bottom:519.400384px;}
.y7_c00244{bottom:519.490765px;}
.y30_c00244{bottom:522.772118px;}
.y6_c00244{bottom:522.949612px;}
.y41_c00244{bottom:524.479945px;}
.y16_c00244{bottom:525.634963px;}
.y1b_c00244{bottom:526.562252px;}
.y5_c00244{bottom:528.960471px;}
.y2b_c00244{bottom:529.273050px;}
.y2f_c00244{bottom:530.544173px;}
.y1a_c00244{bottom:531.331047px;}
.y2d_c00244{bottom:533.268367px;}
.y50_c00244{bottom:533.961655px;}
.y2e_c00244{bottom:534.438127px;}
.y4_c00244{bottom:536.219702px;}
.y19_c00244{bottom:537.503874px;}
.y17_c00244{bottom:537.875309px;}
.y2c_c00244{bottom:538.238502px;}
.y4e_c00244{bottom:539.975192px;}
.y18_c00244{bottom:544.566810px;}
.y3_c00244{bottom:545.753758px;}
.y4f_c00244{bottom:577.436970px;}
.y51_c00244{bottom:639.092781px;}
.y42_c00244{bottom:1021.440190px;}
.y4c_c00244{bottom:1128.788039px;}
.y4a_c00244{bottom:1138.751629px;}
.y49_c00244{bottom:1150.751646px;}
.y4d_c00244{bottom:1153.262414px;}
.y4b_c00244{bottom:1171.082693px;}
.h11_c00244{height:33.521532px;}
.h9_c00244{height:35.988753px;}
.ha_c00244{height:35.988755px;}
.hb_c00244{height:35.988756px;}
.h12_c00244{height:37.020556px;}
.h3_c00244{height:37.459702px;}
.h14_c00244{height:39.108240px;}
.h7_c00244{height:44.107038px;}
.h4_c00244{height:44.107039px;}
.h8_c00244{height:44.107040px;}
.h5_c00244{height:44.107042px;}
.h6_c00244{height:44.107043px;}
.hd_c00244{height:45.588598px;}
.h16_c00244{height:51.916398px;}
.hf_c00244{height:57.017399px;}
.h15_c00244{height:57.575126px;}
.h10_c00244{height:57.894223px;}
.hc_c00244{height:59.068550px;}
.he_c00244{height:67.042966px;}
.h13_c00244{height:89.376654px;}
.h2_c00244{height:1304.999946px;}
.h0_c00244{height:1304.999953px;}
.h1_c00244{height:1305.000000px;}
.w2_c00244{width:934.874961px;}
.w0_c00244{width:934.875000px;}
.w1_c00244{width:935.250000px;}
.x0_c00244{left:0.000000px;}
.x39_c00244{left:89.487450px;}
.x3a_c00244{left:90.844844px;}
.x3b_c00244{left:107.230262px;}
.x3c_c00244{left:108.827167px;}
.x38_c00244{left:130.690629px;}
.x14_c00244{left:134.974838px;}
.x13_c00244{left:136.648279px;}
.x15_c00244{left:140.021272px;}
.x16_c00244{left:144.871714px;}
.x17_c00244{left:150.237526px;}
.x18_c00244{left:152.990336px;}
.x19_c00244{left:156.000220px;}
.x1a_c00244{left:159.847713px;}
.x24_c00244{left:161.443962px;}
.x1b_c00244{left:163.301377px;}
.x1c_c00244{left:171.586339px;}
.x1d_c00244{left:179.855997px;}
.x1e_c00244{left:188.287487px;}
.x1f_c00244{left:196.673970px;}
.x20_c00244{left:200.841336px;}
.x21_c00244{left:205.399483px;}
.x22_c00244{left:209.208896px;}
.x23_c00244{left:211.795693px;}
.x3_c00244{left:230.398389px;}
.x2_c00244{left:232.534609px;}
.x4_c00244{left:235.623324px;}
.x5_c00244{left:240.462566px;}
.x6_c00244{left:245.820252px;}
.x7_c00244{left:248.569815px;}
.x8_c00244{left:251.576732px;}
.x9_c00244{left:255.421336px;}
.x40_c00244{left:256.622047px;}
.xa_c00244{left:258.708042px;}
.xb_c00244{left:263.145298px;}
.xc_c00244{left:271.763354px;}
.xd_c00244{left:283.603990px;}
.xe_c00244{left:291.041304px;}
.xf_c00244{left:294.435991px;}
.x3d_c00244{left:295.615161px;}
.x10_c00244{left:299.775542px;}
.x11_c00244{left:303.165014px;}
.x12_c00244{left:307.176807px;}
.x25_c00244{left:327.047435px;}
.x26_c00244{left:328.264734px;}
.x27_c00244{left:329.685747px;}
.x28_c00244{left:333.082971px;}
.x29_c00244{left:336.307511px;}
.x2a_c00244{left:342.189757px;}
.x2b_c00244{left:348.376740px;}
.x2c_c00244{left:354.069743px;}
.x2d_c00244{left:357.479743px;}
.x2e_c00244{left:365.386869px;}
.x2f_c00244{left:373.375785px;}
.x30_c00244{left:380.135498px;}
.x31_c00244{left:383.155707px;}
.x32_c00244{left:386.159935px;}
.x33_c00244{left:389.557910px;}
.x34_c00244{left:392.174988px;}
.x35_c00244{left:395.489533px;}
.x36_c00244{left:400.664851px;}
.x37_c00244{left:403.469600px;}
.x42_c00244{left:452.271732px;}
.x3e_c00244{left:464.896169px;}
.x41_c00244{left:664.443440px;}
.x1_c00244{left:697.320842px;}
.x3f_c00244{left:733.540711px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.v2_c00244{vertical-align:1.137536pt;}
.v1_c00244{vertical-align:2.465024pt;}
.ls0_c00244{letter-spacing:0.000000pt;}
.ws2_c00244{word-spacing:-37.057398pt;}
.ws1_c00244{word-spacing:-13.485567pt;}
.ws3_c00244{word-spacing:-0.067733pt;}
.ws5_c00244{word-spacing:-0.049560pt;}
.ws6_c00244{word-spacing:0.000000pt;}
.ws4_c00244{word-spacing:256.052163pt;}
.ws0_c00244{word-spacing:588.756558pt;}
._1_c00244{width:1.289059pt;}
._2_c00244{width:14.949949pt;}
._0_c00244{width:28.715270pt;}
.fsb_c00244{font-size:32.000046pt;}
.fsc_c00244{font-size:35.340254pt;}
.fse_c00244{font-size:37.333182pt;}
.fs4_c00244{font-size:42.105093pt;}
.fs1_c00244{font-size:42.105094pt;}
.fs5_c00244{font-size:42.105095pt;}
.fs2_c00244{font-size:42.105096pt;}
.fs3_c00244{font-size:42.105098pt;}
.fs0_c00244{font-size:45.921418pt;}
.fsf_c00244{font-size:49.559999pt;}
.fs7_c00244{font-size:53.319997pt;}
.fs8_c00244{font-size:63.999997pt;}
.fs9_c00244{font-size:66.154880pt;}
.fsa_c00244{font-size:67.733430pt;}
.fs6_c00244{font-size:68.454656pt;}
.fsd_c00244{font-size:85.319996pt;}
.y0_c00244{bottom:0.000000pt;}
.y1_c00244{bottom:0.000007pt;}
.y52_c00244{bottom:26.134367pt;}
.y47_c00244{bottom:160.549977pt;}
.y46_c00244{bottom:187.549976pt;}
.y45_c00244{bottom:214.549975pt;}
.y44_c00244{bottom:241.549974pt;}
.y43_c00244{bottom:268.549973pt;}
.y48_c00244{bottom:298.843853pt;}
.y2_c00244{bottom:356.911319pt;}
.y10_c00244{bottom:438.513950pt;}
.y24_c00244{bottom:438.527466pt;}
.yf_c00244{bottom:438.980754pt;}
.y25_c00244{bottom:438.998276pt;}
.y38_c00244{bottom:439.074655pt;}
.y23_c00244{bottom:439.634173pt;}
.y39_c00244{bottom:439.815613pt;}
.y37_c00244{bottom:439.833307pt;}
.ye_c00244{bottom:439.928600pt;}
.y22_c00244{bottom:440.746230pt;}
.y36_c00244{bottom:440.753185pt;}
.yd_c00244{bottom:440.882672pt;}
.y26_c00244{bottom:441.146660pt;}
.y11_c00244{bottom:441.202767pt;}
.y3a_c00244{bottom:441.754175pt;}
.y21_c00244{bottom:442.208018pt;}
.yc_c00244{bottom:442.351046pt;}
.y35_c00244{bottom:442.711737pt;}
.y3b_c00244{bottom:442.991236pt;}
.y20_c00244{bottom:443.709077pt;}
.yb_c00244{bottom:443.856095pt;}
.y3c_c00244{bottom:444.500834pt;}
.y12_c00244{bottom:445.005059pt;}
.y1f_c00244{bottom:445.367066pt;}
.ya_c00244{bottom:445.518471pt;}
.y27_c00244{bottom:445.680465pt;}
.y34_c00244{bottom:446.081997pt;}
.y3d_c00244{bottom:446.671541pt;}
.y13_c00244{bottom:447.244339pt;}
.y3e_c00244{bottom:448.679347pt;}
.y28_c00244{bottom:448.905531pt;}
.y1e_c00244{bottom:449.504110pt;}
.y9_c00244{bottom:449.664187pt;}
.y33_c00244{bottom:450.942950pt;}
.y3f_c00244{bottom:451.585269pt;}
.y14_c00244{bottom:452.535328pt;}
.y29_c00244{bottom:453.913799pt;}
.y32_c00244{bottom:454.913093pt;}
.y1d_c00244{bottom:455.194152pt;}
.y8_c00244{bottom:455.361467pt;}
.y15_c00244{bottom:456.756200pt;}
.y40_c00244{bottom:459.049592pt;}
.y2a_c00244{bottom:459.831647pt;}
.y31_c00244{bottom:460.624248pt;}
.y1c_c00244{bottom:461.689230pt;}
.y7_c00244{bottom:461.769569pt;}
.y30_c00244{bottom:464.686327pt;}
.y6_c00244{bottom:464.844100pt;}
.y41_c00244{bottom:466.204395pt;}
.y16_c00244{bottom:467.231078pt;}
.y1b_c00244{bottom:468.055335pt;}
.y5_c00244{bottom:470.187085pt;}
.y2b_c00244{bottom:470.464933pt;}
.y2f_c00244{bottom:471.594820pt;}
.y1a_c00244{bottom:472.294264pt;}
.y2d_c00244{bottom:474.016326pt;}
.y50_c00244{bottom:474.632582pt;}
.y2e_c00244{bottom:475.056113pt;}
.y4_c00244{bottom:476.639735pt;}
.y19_c00244{bottom:477.781221pt;}
.y17_c00244{bottom:478.111386pt;}
.y2c_c00244{bottom:478.434224pt;}
.y4e_c00244{bottom:479.977948pt;}
.y18_c00244{bottom:484.059387pt;}
.y3_c00244{bottom:485.114452pt;}
.y4f_c00244{bottom:513.277307pt;}
.y51_c00244{bottom:568.082472pt;}
.y42_c00244{bottom:907.946836pt;}
.y4c_c00244{bottom:1003.367145pt;}
.y4a_c00244{bottom:1012.223670pt;}
.y49_c00244{bottom:1022.890352pt;}
.y4d_c00244{bottom:1025.122146pt;}
.y4b_c00244{bottom:1040.962393pt;}
.h11_c00244{height:29.796918pt;}
.h9_c00244{height:31.990003pt;}
.ha_c00244{height:31.990004pt;}
.hb_c00244{height:31.990006pt;}
.h12_c00244{height:32.907161pt;}
.h3_c00244{height:33.297513pt;}
.h14_c00244{height:34.762880pt;}
.h7_c00244{height:39.206256pt;}
.h4_c00244{height:39.206257pt;}
.h8_c00244{height:39.206258pt;}
.h5_c00244{height:39.206259pt;}
.h6_c00244{height:39.206261pt;}
.hd_c00244{height:40.523198pt;}
.h16_c00244{height:46.147909pt;}
.hf_c00244{height:50.682132pt;}
.h15_c00244{height:51.177889pt;}
.h10_c00244{height:51.461532pt;}
.hc_c00244{height:52.505377pt;}
.he_c00244{height:59.593748pt;}
.h13_c00244{height:79.445915pt;}
.h2_c00244{height:1159.999952pt;}
.h0_c00244{height:1159.999959pt;}
.h1_c00244{height:1160.000000pt;}
.w2_c00244{width:830.999965pt;}
.w0_c00244{width:831.000000pt;}
.w1_c00244{width:831.333333pt;}
.x0_c00244{left:0.000000pt;}
.x39_c00244{left:79.544400pt;}
.x3a_c00244{left:80.750973pt;}
.x3b_c00244{left:95.315788pt;}
.x3c_c00244{left:96.735260pt;}
.x38_c00244{left:116.169448pt;}
.x14_c00244{left:119.977634pt;}
.x13_c00244{left:121.465137pt;}
.x15_c00244{left:124.463353pt;}
.x16_c00244{left:128.774857pt;}
.x17_c00244{left:133.544468pt;}
.x18_c00244{left:135.991410pt;}
.x19_c00244{left:138.666862pt;}
.x1a_c00244{left:142.086856pt;}
.x24_c00244{left:143.505744pt;}
.x1b_c00244{left:145.156780pt;}
.x1c_c00244{left:152.521190pt;}
.x1d_c00244{left:159.871997pt;}
.x1e_c00244{left:167.366655pt;}
.x1f_c00244{left:174.821307pt;}
.x20_c00244{left:178.525632pt;}
.x21_c00244{left:182.577318pt;}
.x22_c00244{left:185.963463pt;}
.x23_c00244{left:188.262839pt;}
.x3_c00244{left:204.798568pt;}
.x2_c00244{left:206.697430pt;}
.x4_c00244{left:209.442955pt;}
.x5_c00244{left:213.744503pt;}
.x6_c00244{left:218.506891pt;}
.x7_c00244{left:220.950947pt;}
.x8_c00244{left:223.623762pt;}
.x9_c00244{left:227.041187pt;}
.x40_c00244{left:228.108486pt;}
.xa_c00244{left:229.962704pt;}
.xb_c00244{left:233.906932pt;}
.xc_c00244{left:241.567426pt;}
.xd_c00244{left:252.092435pt;}
.xe_c00244{left:258.703382pt;}
.xf_c00244{left:261.720880pt;}
.x3d_c00244{left:262.769032pt;}
.x10_c00244{left:266.467148pt;}
.x11_c00244{left:269.480012pt;}
.x12_c00244{left:273.046051pt;}
.x25_c00244{left:290.708831pt;}
.x26_c00244{left:291.790874pt;}
.x27_c00244{left:293.053997pt;}
.x28_c00244{left:296.073752pt;}
.x29_c00244{left:298.940009pt;}
.x2a_c00244{left:304.168673pt;}
.x2b_c00244{left:309.668213pt;}
.x2c_c00244{left:314.728661pt;}
.x2d_c00244{left:317.759772pt;}
.x2e_c00244{left:324.788328pt;}
.x2f_c00244{left:331.889587pt;}
.x30_c00244{left:337.898220pt;}
.x31_c00244{left:340.582851pt;}
.x32_c00244{left:343.253275pt;}
.x33_c00244{left:346.273697pt;}
.x34_c00244{left:348.599989pt;}
.x35_c00244{left:351.546252pt;}
.x36_c00244{left:356.146534pt;}
.x37_c00244{left:358.639645pt;}
.x42_c00244{left:402.019318pt;}
.x3e_c00244{left:413.241039pt;}
.x41_c00244{left:590.616391pt;}
.x1_c00244{left:619.840748pt;}
.x3f_c00244{left:652.036188pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77d734e473d52a9f9c98843f.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.171387;font-style:normal;font-weight:normal;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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.006348;font-style:normal;font-weight:normal;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_7a3f6103af9f82e24a326fb6.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.000000;font-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_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;}
.ls0_c00245{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00245{word-spacing:-19.320776px;}
.ws1_c00245{word-spacing:0.000000px;}
._5_c00245{width:1.506635px;}
._7_c00245{width:2.586741px;}
._c_c00245{width:4.050383px;}
._9_c00245{width:5.179639px;}
._e_c00245{width:6.394871px;}
._10_c00245{width:7.420718px;}
._a_c00245{width:8.537064px;}
._6_c00245{width:10.093688px;}
._3_c00245{width:14.886333px;}
._0_c00245{width:15.971717px;}
._8_c00245{width:17.083331px;}
._4_c00245{width:21.963040px;}
._d_c00245{width:25.159033px;}
._f_c00245{width:26.572220px;}
._2_c00245{width:29.185522px;}
._b_c00245{width:32.062500px;}
._1_c00245{width:56.906225px;}
.fc1_c00245{color:rgb(67,91,56);}
.fc0_c00245{color:rgb(0,0,0);}
.fs0_c00245{font-size:71.999997px;}
.fs1_c00245{font-size:74.377724px;}
.y0_c00245{bottom:0.000000px;}
.y1_c00245{bottom:0.000008px;}
.y1e_c00245{bottom:29.401163px;}
.y18_c00245{bottom:270.354733px;}
.y17_c00245{bottom:300.729731px;}
.y16_c00245{bottom:331.104730px;}
.y15_c00245{bottom:361.479729px;}
.y14_c00245{bottom:391.854728px;}
.y13_c00245{bottom:422.229726px;}
.y12_c00245{bottom:452.604725px;}
.y11_c00245{bottom:482.979724px;}
.y10_c00245{bottom:517.239986px;}
.yf_c00245{bottom:581.815056px;}
.ye_c00245{bottom:612.190054px;}
.yd_c00245{bottom:642.565053px;}
.yc_c00245{bottom:676.761164px;}
.ya_c00245{bottom:735.761990px;}
.y9_c00245{bottom:766.136988px;}
.y8_c00245{bottom:796.511987px;}
.y7_c00245{bottom:826.886986px;}
.y6_c00245{bottom:857.261985px;}
.y5_c00245{bottom:887.636983px;}
.y4_c00245{bottom:918.011982px;}
.y3_c00245{bottom:948.386981px;}
.y2_c00245{bottom:978.761980px;}
.yb_c00245{bottom:1012.962000px;}
.y1c_c00245{bottom:1069.151208px;}
.y1b_c00245{bottom:1099.526207px;}
.y1a_c00245{bottom:1129.901205px;}
.y19_c00245{bottom:1160.276204px;}
.y1d_c00245{bottom:1194.777198px;}
.h4_c00245{height:55.160154px;}
.h5_c00245{height:56.981762px;}
.h3_c00245{height:67.042966px;}
.h2_c00245{height:1304.999946px;}
.h0_c00245{height:1304.999953px;}
.h1_c00245{height:1305.000000px;}
.w2_c00245{width:934.874961px;}
.w0_c00245{width:934.875000px;}
.w1_c00245{width:935.250000px;}
.x0_c00245{left:0.000000px;}
.x2_c00245{left:88.581344px;}
.x1_c00245{left:89.934228px;}
.x3_c00245{left:452.271732px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws0_c00245{word-spacing:-17.174023pt;}
.ws1_c00245{word-spacing:0.000000pt;}
._5_c00245{width:1.339231pt;}
._7_c00245{width:2.299325pt;}
._c_c00245{width:3.600341pt;}
._9_c00245{width:4.604123pt;}
._e_c00245{width:5.684329pt;}
._10_c00245{width:6.596194pt;}
._a_c00245{width:7.588501pt;}
._6_c00245{width:8.972167pt;}
._3_c00245{width:13.232296pt;}
._0_c00245{width:14.197082pt;}
._8_c00245{width:15.185183pt;}
._4_c00245{width:19.522702pt;}
._d_c00245{width:22.363585pt;}
._f_c00245{width:23.619751pt;}
._2_c00245{width:25.942686pt;}
._b_c00245{width:28.500000pt;}
._1_c00245{width:50.583311pt;}
.fs0_c00245{font-size:63.999997pt;}
.fs1_c00245{font-size:66.113533pt;}
.y0_c00245{bottom:0.000000pt;}
.y1_c00245{bottom:0.000007pt;}
.y1e_c00245{bottom:26.134367pt;}
.y18_c00245{bottom:240.315318pt;}
.y17_c00245{bottom:267.315317pt;}
.y16_c00245{bottom:294.315316pt;}
.y15_c00245{bottom:321.315315pt;}
.y14_c00245{bottom:348.315313pt;}
.y13_c00245{bottom:375.315312pt;}
.y12_c00245{bottom:402.315311pt;}
.y11_c00245{bottom:429.315310pt;}
.y10_c00245{bottom:459.768877pt;}
.yf_c00245{bottom:517.168938pt;}
.ye_c00245{bottom:544.168937pt;}
.yd_c00245{bottom:571.168936pt;}
.yc_c00245{bottom:601.565479pt;}
.ya_c00245{bottom:654.010658pt;}
.y9_c00245{bottom:681.010656pt;}
.y8_c00245{bottom:708.010655pt;}
.y7_c00245{bottom:735.010654pt;}
.y6_c00245{bottom:762.010653pt;}
.y5_c00245{bottom:789.010652pt;}
.y4_c00245{bottom:816.010651pt;}
.y3_c00245{bottom:843.010650pt;}
.y2_c00245{bottom:870.010649pt;}
.yb_c00245{bottom:900.410666pt;}
.y1c_c00245{bottom:950.356629pt;}
.y1b_c00245{bottom:977.356628pt;}
.y1a_c00245{bottom:1004.356627pt;}
.y19_c00245{bottom:1031.356626pt;}
.y1d_c00245{bottom:1062.024176pt;}
.h4_c00245{height:49.031248pt;}
.h5_c00245{height:50.650455pt;}
.h3_c00245{height:59.593748pt;}
.h2_c00245{height:1159.999952pt;}
.h0_c00245{height:1159.999959pt;}
.h1_c00245{height:1160.000000pt;}
.w2_c00245{width:830.999965pt;}
.w0_c00245{width:831.000000pt;}
.w1_c00245{width:831.333333pt;}
.x0_c00245{left:0.000000pt;}
.x2_c00245{left:78.738973pt;}
.x1_c00245{left:79.941536pt;}
.x3_c00245{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6b62c56cd1bfca93983552a.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:0.769531;font-style:normal;font-weight:normal;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_6af50d622657189b80877400.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:0.734863;font-style:normal;font-weight: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_c00246;src:url('chunks/assets/font_450adeb7917ceca5a03b87b0.woff2')format("woff");}.ff5_c00246{font-family:ff5_c00246;line-height:1.000000;font-style:normal;font-weight: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_c00246;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff6_c00246{font-family:ff6_c00246;line-height:1.006348;font-style:normal;font-weight: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_c00246;src:url('chunks/assets/font_2c95b103b0429b37bc5aa7ce.woff2')format("woff");}.ff7_c00246{font-family:ff7_c00246;line-height:1.000000;font-style:normal;font-weight: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_c00246;src:url('chunks/assets/font_3546ba0974115fd2c9eb28b8.woff2')format("woff");}.ff8_c00246{font-family:ff8_c00246;line-height:1.171387;font-style:normal;font-weight: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_c00246;src:url('chunks/assets/font_34262a14c6c0ba8382eb25a0.woff2')format("woff");}.ff9_c00246{font-family:ff9_c00246;line-height:1.000000;font-style:normal;font-weight: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_c00246;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00246{font-family:ffa_c00246;line-height:0.940000;font-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_c00246{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m29_c00246{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m15_c00246{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00246{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m16_c00246{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m28_c00246{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00246{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00246{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00246{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m17_c00246{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00246{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00246{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00246{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m18_c00246{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m27_c00246{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00246{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00246{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00246{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00246{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00246{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m19_c00246{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00246{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m26_c00246{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00246{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00246{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00246{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00246{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1a_c00246{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m25_c00246{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00246{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00246{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00246{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00246{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1b_c00246{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m24_c00246{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00246{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00246{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00246{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00246{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1c_c00246{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00246{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m23_c00246{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00246{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00246{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1d_c00246{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00246{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00246{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00246{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1e_c00246{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00246{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00246{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m1f_c00246{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00246{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m22_c00246{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00246{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00246{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00246{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m20_c00246{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00246{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00246{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m21_c00246{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00246{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m2a_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);}
.m3f_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);}
.v0_c00246{vertical-align:0.000000px;}
.v1_c00246{vertical-align:1.390581px;}
.ls0_c00246{letter-spacing:0.000000px;}
.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:-41.689573px;}
.ws0_c00246{word-spacing:-15.171263px;}
.ws1_c00246{word-spacing:-0.076200px;}
.ws4_c00246{word-spacing:-0.055755px;}
.ws6_c00246{word-spacing:0.000000px;}
.ws2_c00246{word-spacing:276.640733px;}
.ws3_c00246{word-spacing:288.058683px;}
._3_c00246{width:1.492630px;}
._1_c00246{width:6.863570px;}
._0_c00246{width:14.343750px;}
._2_c00246{width:19.919517px;}
._4_c00246{width:21.960914px;}
._5_c00246{width:31.682782px;}
.fc4_c00246{color:transparent;}
.fc3_c00246{color:rgb(67,91,56);}
.fc2_c00246{color:rgb(9,71,81);}
.fc1_c00246{color:rgb(255,255,255);}
.fc0_c00246{color:rgb(0,0,0);}
.fsb_c00246{font-size:36.000051px;}
.fsc_c00246{font-size:39.757786px;}
.fs5_c00246{font-size:41.999830px;}
.fs3_c00246{font-size:47.368230px;}
.fs0_c00246{font-size:47.368231px;}
.fs4_c00246{font-size:47.368232px;}
.fs1_c00246{font-size:47.368233px;}
.fs2_c00246{font-size:47.368235px;}
.fs7_c00246{font-size:51.661596px;}
.fsf_c00246{font-size:55.754999px;}
.fs10_c00246{font-size:59.984997px;}
.fs8_c00246{font-size:71.999997px;}
.fse_c00246{font-size:72.584993px;}
.fs9_c00246{font-size:74.424240px;}
.fsa_c00246{font-size:76.200109px;}
.fs6_c00246{font-size:77.011488px;}
.fsd_c00246{font-size:95.984996px;}
.y0_c00246{bottom:0.000000px;}
.y1_c00246{bottom:0.000008px;}
.y53_c00246{bottom:29.400983px;}
.y4a_c00246{bottom:86.201024px;}
.y49_c00246{bottom:116.576023px;}
.y48_c00246{bottom:146.951022px;}
.y47_c00246{bottom:177.326021px;}
.y46_c00246{bottom:207.701019px;}
.y45_c00246{bottom:238.076018px;}
.y44_c00246{bottom:268.451017px;}
.y43_c00246{bottom:298.826016px;}
.y4b_c00246{bottom:338.779634px;}
.y42_c00246{bottom:401.525233px;}
.y2c_c00246{bottom:486.888370px;}
.yf_c00246{bottom:493.328373px;}
.y23_c00246{bottom:493.343399px;}
.ye_c00246{bottom:493.853709px;}
.y24_c00246{bottom:493.873241px;}
.y38_c00246{bottom:493.959311px;}
.y22_c00246{bottom:494.588120px;}
.y39_c00246{bottom:494.792744px;}
.y37_c00246{bottom:494.812830px;}
.yd_c00246{bottom:494.919675px;}
.y21_c00246{bottom:495.839329px;}
.y36_c00246{bottom:495.847693px;}
.yc_c00246{bottom:495.993006px;}
.y25_c00246{bottom:496.289812px;}
.y10_c00246{bottom:496.353473px;}
.y3a_c00246{bottom:496.973987px;}
.y20_c00246{bottom:497.484200px;}
.yb_c00246{bottom:497.644566px;}
.y35_c00246{bottom:498.050345px;}
.y3b_c00246{bottom:498.364996px;}
.y1f_c00246{bottom:499.172711px;}
.ya_c00246{bottom:499.338251px;}
.y3c_c00246{bottom:500.063079px;}
.y11_c00246{bottom:500.630691px;}
.y1e_c00246{bottom:501.037769px;}
.y9_c00246{bottom:501.208100px;}
.y26_c00246{bottom:501.390523px;}
.y34_c00246{bottom:501.842067px;}
.y3d_c00246{bottom:502.505484px;}
.y12_c00246{bottom:503.149521px;}
.y3e_c00246{bottom:504.764445px;}
.y27_c00246{bottom:505.018723px;}
.y1d_c00246{bottom:505.692124px;}
.y8_c00246{bottom:505.871886px;}
.y33_c00246{bottom:507.310818px;}
.y3f_c00246{bottom:508.033247px;}
.y13_c00246{bottom:509.101920px;}
.y28_c00246{bottom:510.652700px;}
.y32_c00246{bottom:511.777409px;}
.y1c_c00246{bottom:512.093601px;}
.y7_c00246{bottom:512.281830px;}
.y14_c00246{bottom:513.850725px;}
.y40_c00246{bottom:516.430791px;}
.y29_c00246{bottom:517.310242px;}
.y31_c00246{bottom:518.202100px;}
.y1b_c00246{bottom:519.400564px;}
.y6_c00246{bottom:519.490909px;}
.y30_c00246{bottom:522.772118px;}
.y5_c00246{bottom:522.949612px;}
.y41_c00246{bottom:524.479585px;}
.y15_c00246{bottom:525.634639px;}
.y1a_c00246{bottom:526.562252px;}
.y4_c00246{bottom:528.959931px;}
.y2a_c00246{bottom:529.273374px;}
.y2f_c00246{bottom:530.544173px;}
.y19_c00246{bottom:531.331551px;}
.y51_c00246{bottom:533.614190px;}
.y2d_c00246{bottom:533.961835px;}
.y2e_c00246{bottom:534.437983px;}
.y3_c00246{bottom:536.219342px;}
.y18_c00246{bottom:537.503874px;}
.y16_c00246{bottom:537.875309px;}
.y2b_c00246{bottom:538.238862px;}
.y17_c00246{bottom:544.567170px;}
.y2_c00246{bottom:545.754118px;}
.y52_c00246{bottom:639.092601px;}
.y54_c00246{bottom:1021.439841px;}
.y4f_c00246{bottom:1128.788391px;}
.y4d_c00246{bottom:1138.751452px;}
.y4c_c00246{bottom:1150.751469px;}
.y50_c00246{bottom:1153.262238px;}
.y4e_c00246{bottom:1171.082779px;}
.h11_c00246{height:33.521532px;}
.h8_c00246{height:35.988753px;}
.h9_c00246{height:35.988755px;}
.ha_c00246{height:35.988756px;}
.h12_c00246{height:37.020556px;}
.hd_c00246{height:37.459702px;}
.hb_c00246{height:39.108240px;}
.h6_c00246{height:44.107038px;}
.h3_c00246{height:44.107039px;}
.h7_c00246{height:44.107040px;}
.h4_c00246{height:44.107042px;}
.h5_c00246{height:44.107043px;}
.h16_c00246{height:45.588598px;}
.h15_c00246{height:51.916398px;}
.hc_c00246{height:56.295398px;}
.hf_c00246{height:57.017399px;}
.h10_c00246{height:57.894223px;}
.h14_c00246{height:58.966283px;}
.he_c00246{height:67.042966px;}
.h13_c00246{height:89.376654px;}
.h2_c00246{height:1304.999946px;}
.h0_c00246{height:1304.999953px;}
.h1_c00246{height:1305.000000px;}
.w2_c00246{width:934.874961px;}
.w0_c00246{width:934.875000px;}
.w1_c00246{width:935.250000px;}
.x0_c00246{left:0.000000px;}
.x39_c00246{left:89.487450px;}
.x3a_c00246{left:107.230262px;}
.x3b_c00246{left:108.827167px;}
.x40_c00246{left:130.690629px;}
.x13_c00246{left:134.974838px;}
.x12_c00246{left:136.648279px;}
.x14_c00246{left:140.021272px;}
.x15_c00246{left:144.871714px;}
.x16_c00246{left:150.237526px;}
.x17_c00246{left:152.990336px;}
.x18_c00246{left:156.000220px;}
.x19_c00246{left:159.847713px;}
.x3d_c00246{left:161.443962px;}
.x1a_c00246{left:163.301377px;}
.x1b_c00246{left:171.586339px;}
.x1c_c00246{left:179.855997px;}
.x1d_c00246{left:188.287487px;}
.x1e_c00246{left:196.673970px;}
.x1f_c00246{left:200.841336px;}
.x20_c00246{left:205.399483px;}
.x21_c00246{left:209.208896px;}
.x22_c00246{left:211.795693px;}
.x2_c00246{left:230.398389px;}
.x1_c00246{left:232.534609px;}
.x3_c00246{left:235.623324px;}
.x4_c00246{left:240.462566px;}
.x5_c00246{left:245.820252px;}
.x6_c00246{left:248.569815px;}
.x7_c00246{left:251.576732px;}
.x8_c00246{left:255.421336px;}
.x9_c00246{left:258.708042px;}
.xa_c00246{left:263.145298px;}
.xb_c00246{left:271.763354px;}
.xc_c00246{left:283.603990px;}
.xd_c00246{left:291.041304px;}
.xe_c00246{left:294.435991px;}
.x3c_c00246{left:295.615161px;}
.xf_c00246{left:299.775542px;}
.x10_c00246{left:303.165014px;}
.x11_c00246{left:307.176807px;}
.x25_c00246{left:327.047435px;}
.x26_c00246{left:328.264734px;}
.x27_c00246{left:329.685747px;}
.x28_c00246{left:333.082971px;}
.x29_c00246{left:336.307511px;}
.x2a_c00246{left:342.189757px;}
.x2b_c00246{left:348.376740px;}
.x24_c00246{left:351.731739px;}
.x2c_c00246{left:354.069743px;}
.x2d_c00246{left:357.479743px;}
.x2e_c00246{left:365.386869px;}
.x2f_c00246{left:373.375785px;}
.x30_c00246{left:380.135498px;}
.x31_c00246{left:383.155707px;}
.x32_c00246{left:386.159935px;}
.x33_c00246{left:389.557910px;}
.x34_c00246{left:392.174988px;}
.x35_c00246{left:395.489533px;}
.x36_c00246{left:400.664851px;}
.x37_c00246{left:403.469600px;}
.x3f_c00246{left:452.271732px;}
.x3e_c00246{left:664.443440px;}
.x38_c00246{left:697.320842px;}
.x23_c00246{left:757.088990px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.v1_c00246{vertical-align:1.236072pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.ws5_c00246{word-spacing:-37.057398pt;}
.ws0_c00246{word-spacing:-13.485567pt;}
.ws1_c00246{word-spacing:-0.067733pt;}
.ws4_c00246{word-spacing:-0.049560pt;}
.ws6_c00246{word-spacing:0.000000pt;}
.ws2_c00246{word-spacing:245.902874pt;}
.ws3_c00246{word-spacing:256.052163pt;}
._3_c00246{width:1.326782pt;}
._1_c00246{width:6.100951pt;}
._0_c00246{width:12.750000pt;}
._2_c00246{width:17.706237pt;}
._4_c00246{width:19.520813pt;}
._5_c00246{width:28.162473pt;}
.fsb_c00246{font-size:32.000046pt;}
.fsc_c00246{font-size:35.340254pt;}
.fs5_c00246{font-size:37.333182pt;}
.fs3_c00246{font-size:42.105093pt;}
.fs0_c00246{font-size:42.105094pt;}
.fs4_c00246{font-size:42.105095pt;}
.fs1_c00246{font-size:42.105096pt;}
.fs2_c00246{font-size:42.105098pt;}
.fs7_c00246{font-size:45.921418pt;}
.fsf_c00246{font-size:49.559999pt;}
.fs10_c00246{font-size:53.319997pt;}
.fs8_c00246{font-size:63.999997pt;}
.fse_c00246{font-size:64.519994pt;}
.fs9_c00246{font-size:66.154880pt;}
.fsa_c00246{font-size:67.733430pt;}
.fs6_c00246{font-size:68.454656pt;}
.fsd_c00246{font-size:85.319996pt;}
.y0_c00246{bottom:0.000000pt;}
.y1_c00246{bottom:0.000007pt;}
.y53_c00246{bottom:26.134207pt;}
.y4a_c00246{bottom:76.623133pt;}
.y49_c00246{bottom:103.623132pt;}
.y48_c00246{bottom:130.623131pt;}
.y47_c00246{bottom:157.623129pt;}
.y46_c00246{bottom:184.623128pt;}
.y45_c00246{bottom:211.623127pt;}
.y44_c00246{bottom:238.623126pt;}
.y43_c00246{bottom:265.623125pt;}
.y4b_c00246{bottom:301.137453pt;}
.y42_c00246{bottom:356.911319pt;}
.y2c_c00246{bottom:432.789662pt;}
.yf_c00246{bottom:438.514110pt;}
.y23_c00246{bottom:438.527466pt;}
.ye_c00246{bottom:438.981074pt;}
.y24_c00246{bottom:438.998436pt;}
.y38_c00246{bottom:439.074943pt;}
.y22_c00246{bottom:439.633885pt;}
.y39_c00246{bottom:439.815773pt;}
.y37_c00246{bottom:439.833627pt;}
.yd_c00246{bottom:439.928600pt;}
.y21_c00246{bottom:440.746070pt;}
.y36_c00246{bottom:440.753505pt;}
.yc_c00246{bottom:440.882672pt;}
.y25_c00246{bottom:441.146500pt;}
.y10_c00246{bottom:441.203087pt;}
.y3a_c00246{bottom:441.754655pt;}
.y20_c00246{bottom:442.208178pt;}
.yb_c00246{bottom:442.350726pt;}
.y35_c00246{bottom:442.711417pt;}
.y3b_c00246{bottom:442.991108pt;}
.y1f_c00246{bottom:443.709077pt;}
.ya_c00246{bottom:443.856223pt;}
.y3c_c00246{bottom:444.500514pt;}
.y11_c00246{bottom:445.005059pt;}
.y1e_c00246{bottom:445.366906pt;}
.y9_c00246{bottom:445.518311pt;}
.y26_c00246{bottom:445.680465pt;}
.y34_c00246{bottom:446.081837pt;}
.y3d_c00246{bottom:446.671541pt;}
.y12_c00246{bottom:447.244019pt;}
.y3e_c00246{bottom:448.679507pt;}
.y27_c00246{bottom:448.905531pt;}
.y1d_c00246{bottom:449.504110pt;}
.y8_c00246{bottom:449.663899pt;}
.y33_c00246{bottom:450.942950pt;}
.y3f_c00246{bottom:451.585109pt;}
.y13_c00246{bottom:452.535040pt;}
.y28_c00246{bottom:453.913511pt;}
.y32_c00246{bottom:454.913253pt;}
.y1c_c00246{bottom:455.194312pt;}
.y7_c00246{bottom:455.361627pt;}
.y14_c00246{bottom:456.756200pt;}
.y40_c00246{bottom:459.049592pt;}
.y29_c00246{bottom:459.831327pt;}
.y31_c00246{bottom:460.624088pt;}
.y1b_c00246{bottom:461.689390pt;}
.y6_c00246{bottom:461.769697pt;}
.y30_c00246{bottom:464.686327pt;}
.y5_c00246{bottom:464.844100pt;}
.y41_c00246{bottom:466.204075pt;}
.y15_c00246{bottom:467.230790pt;}
.y1a_c00246{bottom:468.055335pt;}
.y4_c00246{bottom:470.186605pt;}
.y2a_c00246{bottom:470.465221pt;}
.y2f_c00246{bottom:471.594820pt;}
.y19_c00246{bottom:472.294712pt;}
.y51_c00246{bottom:474.323724pt;}
.y2d_c00246{bottom:474.632742pt;}
.y2e_c00246{bottom:475.055985pt;}
.y3_c00246{bottom:476.639415pt;}
.y18_c00246{bottom:477.781221pt;}
.y16_c00246{bottom:478.111386pt;}
.y2b_c00246{bottom:478.434544pt;}
.y17_c00246{bottom:484.059707pt;}
.y2_c00246{bottom:485.114772pt;}
.y52_c00246{bottom:568.082312pt;}
.y54_c00246{bottom:907.946525pt;}
.y4f_c00246{bottom:1003.367459pt;}
.y4d_c00246{bottom:1012.223513pt;}
.y4c_c00246{bottom:1022.890195pt;}
.y50_c00246{bottom:1025.121989pt;}
.y4e_c00246{bottom:1040.962470pt;}
.h11_c00246{height:29.796918pt;}
.h8_c00246{height:31.990003pt;}
.h9_c00246{height:31.990004pt;}
.ha_c00246{height:31.990006pt;}
.h12_c00246{height:32.907161pt;}
.hd_c00246{height:33.297513pt;}
.hb_c00246{height:34.762880pt;}
.h6_c00246{height:39.206256pt;}
.h3_c00246{height:39.206257pt;}
.h7_c00246{height:39.206258pt;}
.h4_c00246{height:39.206259pt;}
.h5_c00246{height:39.206261pt;}
.h16_c00246{height:40.523198pt;}
.h15_c00246{height:46.147909pt;}
.hc_c00246{height:50.040354pt;}
.hf_c00246{height:50.682132pt;}
.h10_c00246{height:51.461532pt;}
.h14_c00246{height:52.414474pt;}
.he_c00246{height:59.593748pt;}
.h13_c00246{height:79.445915pt;}
.h2_c00246{height:1159.999952pt;}
.h0_c00246{height:1159.999959pt;}
.h1_c00246{height:1160.000000pt;}
.w2_c00246{width:830.999965pt;}
.w0_c00246{width:831.000000pt;}
.w1_c00246{width:831.333333pt;}
.x0_c00246{left:0.000000pt;}
.x39_c00246{left:79.544400pt;}
.x3a_c00246{left:95.315788pt;}
.x3b_c00246{left:96.735260pt;}
.x40_c00246{left:116.169448pt;}
.x13_c00246{left:119.977634pt;}
.x12_c00246{left:121.465137pt;}
.x14_c00246{left:124.463353pt;}
.x15_c00246{left:128.774857pt;}
.x16_c00246{left:133.544468pt;}
.x17_c00246{left:135.991410pt;}
.x18_c00246{left:138.666862pt;}
.x19_c00246{left:142.086856pt;}
.x3d_c00246{left:143.505744pt;}
.x1a_c00246{left:145.156780pt;}
.x1b_c00246{left:152.521190pt;}
.x1c_c00246{left:159.871997pt;}
.x1d_c00246{left:167.366655pt;}
.x1e_c00246{left:174.821307pt;}
.x1f_c00246{left:178.525632pt;}
.x20_c00246{left:182.577318pt;}
.x21_c00246{left:185.963463pt;}
.x22_c00246{left:188.262839pt;}
.x2_c00246{left:204.798568pt;}
.x1_c00246{left:206.697430pt;}
.x3_c00246{left:209.442955pt;}
.x4_c00246{left:213.744503pt;}
.x5_c00246{left:218.506891pt;}
.x6_c00246{left:220.950947pt;}
.x7_c00246{left:223.623762pt;}
.x8_c00246{left:227.041187pt;}
.x9_c00246{left:229.962704pt;}
.xa_c00246{left:233.906932pt;}
.xb_c00246{left:241.567426pt;}
.xc_c00246{left:252.092435pt;}
.xd_c00246{left:258.703382pt;}
.xe_c00246{left:261.720880pt;}
.x3c_c00246{left:262.769032pt;}
.xf_c00246{left:266.467148pt;}
.x10_c00246{left:269.480012pt;}
.x11_c00246{left:273.046051pt;}
.x25_c00246{left:290.708831pt;}
.x26_c00246{left:291.790874pt;}
.x27_c00246{left:293.053997pt;}
.x28_c00246{left:296.073752pt;}
.x29_c00246{left:298.940009pt;}
.x2a_c00246{left:304.168673pt;}
.x2b_c00246{left:309.668213pt;}
.x24_c00246{left:312.650435pt;}
.x2c_c00246{left:314.728661pt;}
.x2d_c00246{left:317.759772pt;}
.x2e_c00246{left:324.788328pt;}
.x2f_c00246{left:331.889587pt;}
.x30_c00246{left:337.898220pt;}
.x31_c00246{left:340.582851pt;}
.x32_c00246{left:343.253275pt;}
.x33_c00246{left:346.273697pt;}
.x34_c00246{left:348.599989pt;}
.x35_c00246{left:351.546252pt;}
.x36_c00246{left:356.146534pt;}
.x37_c00246{left:358.639645pt;}
.x3f_c00246{left:402.019318pt;}
.x3e_c00246{left:590.616391pt;}
.x38_c00246{left:619.840748pt;}
.x23_c00246{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_450adeb7917ceca5a03b87b0.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.000000;font-style:normal;font-weight:normal;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_65e0444bd44295198423ff48.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.171387;font-style:normal;font-weight:normal;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_9f04da9911fdfb9c540bc156.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.006348;font-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_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);}
.v0_c00247{vertical-align:0.000000px;}
.ls0_c00247{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00247{word-spacing:-19.320776px;}
.ws0_c00247{word-spacing:-18.703125px;}
.ws2_c00247{word-spacing:0.000000px;}
._8_c00247{width:1.432615px;}
._b_c00247{width:2.666448px;}
._3_c00247{width:3.857093px;}
._4_c00247{width:4.909034px;}
._2_c00247{width:6.769155px;}
._f_c00247{width:8.012807px;}
._c_c00247{width:9.185325px;}
._6_c00247{width:10.215364px;}
._10_c00247{width:11.225960px;}
._a_c00247{width:12.247145px;}
._7_c00247{width:14.988309px;}
._5_c00247{width:16.371068px;}
._11_c00247{width:17.648435px;}
._d_c00247{width:23.818356px;}
._e_c00247{width:28.348707px;}
._9_c00247{width:34.558594px;}
._1_c00247{width:37.818027px;}
._0_c00247{width:46.511718px;}
.fc1_c00247{color:rgb(67,91,56);}
.fc0_c00247{color:rgb(0,0,0);}
.fs0_c00247{font-size:71.999997px;}
.fs1_c00247{font-size:74.377724px;}
.y0_c00247{bottom:0.000000px;}
.y1_c00247{bottom:0.000008px;}
.y25_c00247{bottom:29.401163px;}
.y1b_c00247{bottom:115.708002px;}
.y1a_c00247{bottom:146.083001px;}
.y19_c00247{bottom:176.457999px;}
.y18_c00247{bottom:206.832998px;}
.y17_c00247{bottom:237.207997px;}
.y16_c00247{bottom:267.582996px;}
.y15_c00247{bottom:297.957994px;}
.y14_c00247{bottom:328.332993px;}
.y13_c00247{bottom:358.707992px;}
.y12_c00247{bottom:389.082991px;}
.y11_c00247{bottom:419.457989px;}
.y10_c00247{bottom:449.832988px;}
.yf_c00247{bottom:480.207987px;}
.ye_c00247{bottom:510.582986px;}
.yd_c00247{bottom:540.957984px;}
.yc_c00247{bottom:571.332983px;}
.yb_c00247{bottom:601.707982px;}
.ya_c00247{bottom:632.082980px;}
.y9_c00247{bottom:662.457979px;}
.y8_c00247{bottom:692.832978px;}
.y7_c00247{bottom:723.207977px;}
.y6_c00247{bottom:753.582975px;}
.y5_c00247{bottom:783.957974px;}
.y4_c00247{bottom:814.332973px;}
.y3_c00247{bottom:844.707972px;}
.y2_c00247{bottom:875.082970px;}
.y1c_c00247{bottom:906.431798px;}
.y20_c00247{bottom:957.961015px;}
.y1f_c00247{bottom:988.336014px;}
.y1e_c00247{bottom:1018.711012px;}
.y1d_c00247{bottom:1049.086011px;}
.y21_c00247{bottom:1083.586894px;}
.y24_c00247{bottom:1139.472197px;}
.y23_c00247{bottom:1169.847196px;}
.y22_c00247{bottom:1200.222195px;}
.h4_c00247{height:55.160154px;}
.h5_c00247{height:56.981762px;}
.h3_c00247{height:67.042966px;}
.h2_c00247{height:1304.999946px;}
.h0_c00247{height:1304.999953px;}
.h1_c00247{height:1305.000000px;}
.w2_c00247{width:934.874961px;}
.w0_c00247{width:934.875000px;}
.w1_c00247{width:935.250000px;}
.x0_c00247{left:0.000000px;}
.x1_c00247{left:88.794432px;}
.x2_c00247{left:452.271732px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws1_c00247{word-spacing:-17.174023pt;}
.ws0_c00247{word-spacing:-16.625000pt;}
.ws2_c00247{word-spacing:0.000000pt;}
._8_c00247{width:1.273435pt;}
._b_c00247{width:2.370176pt;}
._3_c00247{width:3.428527pt;}
._4_c00247{width:4.363586pt;}
._2_c00247{width:6.017027pt;}
._f_c00247{width:7.122495pt;}
._c_c00247{width:8.164733pt;}
._6_c00247{width:9.080323pt;}
._10_c00247{width:9.978631pt;}
._a_c00247{width:10.886351pt;}
._7_c00247{width:13.322941pt;}
._5_c00247{width:14.552061pt;}
._11_c00247{width:15.687498pt;}
._d_c00247{width:21.171872pt;}
._e_c00247{width:25.198851pt;}
._9_c00247{width:30.718751pt;}
._1_c00247{width:33.616024pt;}
._0_c00247{width:41.343749pt;}
.fs0_c00247{font-size:63.999997pt;}
.fs1_c00247{font-size:66.113533pt;}
.y0_c00247{bottom:0.000000pt;}
.y1_c00247{bottom:0.000007pt;}
.y25_c00247{bottom:26.134367pt;}
.y1b_c00247{bottom:102.851557pt;}
.y1a_c00247{bottom:129.851556pt;}
.y19_c00247{bottom:156.851555pt;}
.y18_c00247{bottom:183.851554pt;}
.y17_c00247{bottom:210.851553pt;}
.y16_c00247{bottom:237.851552pt;}
.y15_c00247{bottom:264.851551pt;}
.y14_c00247{bottom:291.851549pt;}
.y13_c00247{bottom:318.851548pt;}
.y12_c00247{bottom:345.851547pt;}
.y11_c00247{bottom:372.851546pt;}
.y10_c00247{bottom:399.851545pt;}
.yf_c00247{bottom:426.851544pt;}
.ye_c00247{bottom:453.851543pt;}
.yd_c00247{bottom:480.851542pt;}
.yc_c00247{bottom:507.851540pt;}
.yb_c00247{bottom:534.851539pt;}
.ya_c00247{bottom:561.851538pt;}
.y9_c00247{bottom:588.851537pt;}
.y8_c00247{bottom:615.851536pt;}
.y7_c00247{bottom:642.851535pt;}
.y6_c00247{bottom:669.851534pt;}
.y5_c00247{bottom:696.851533pt;}
.y4_c00247{bottom:723.851531pt;}
.y3_c00247{bottom:750.851530pt;}
.y2_c00247{bottom:777.851529pt;}
.y1c_c00247{bottom:805.717154pt;}
.y20_c00247{bottom:851.520902pt;}
.y1f_c00247{bottom:878.520901pt;}
.y1e_c00247{bottom:905.520900pt;}
.y1d_c00247{bottom:932.520899pt;}
.y21_c00247{bottom:963.188350pt;}
.y24_c00247{bottom:1012.864175pt;}
.y23_c00247{bottom:1039.864174pt;}
.y22_c00247{bottom:1066.864173pt;}
.h4_c00247{height:49.031248pt;}
.h5_c00247{height:50.650455pt;}
.h3_c00247{height:59.593748pt;}
.h2_c00247{height:1159.999952pt;}
.h0_c00247{height:1159.999959pt;}
.h1_c00247{height:1160.000000pt;}
.w2_c00247{width:830.999965pt;}
.w0_c00247{width:831.000000pt;}
.w1_c00247{width:831.333333pt;}
.x0_c00247{left:0.000000pt;}
.x1_c00247{left:78.928384pt;}
.x2_c00247{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e35f304532b9a5f04a86123a.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.006348;font-style:normal;font-weight:normal;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_664bd32a21e9eb24a028e1c3.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.171387;font-style:normal;font-weight:normal;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_450adeb7917ceca5a03b87b0.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.000000;font-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_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);}
.v0_c00248{vertical-align:0.000000px;}
.ls0_c00248{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00248{word-spacing:0.000000px;}
._0_c00248{width:2.601562px;}
._3_c00248{width:14.235052px;}
._2_c00248{width:15.304638px;}
._1_c00248{width:22.810501px;}
._4_c00248{width:34.114332px;}
.fc1_c00248{color:rgb(0,0,0);}
.fc0_c00248{color:rgb(67,91,56);}
.fs0_c00248{font-size:71.999997px;}
.y0_c00248{bottom:0.000000px;}
.y1_c00248{bottom:0.000008px;}
.yb_c00248{bottom:29.401163px;}
.ya_c00248{bottom:905.975469px;}
.y9_c00248{bottom:936.350468px;}
.y8_c00248{bottom:966.725467px;}
.y7_c00248{bottom:997.100465px;}
.y6_c00248{bottom:1027.475464px;}
.y5_c00248{bottom:1057.850463px;}
.y4_c00248{bottom:1096.550461px;}
.y3_c00248{bottom:1166.750109px;}
.y2_c00248{bottom:1205.446237px;}
.h3_c00248{height:55.160154px;}
.h4_c00248{height:67.042966px;}
.h2_c00248{height:1304.999946px;}
.h0_c00248{height:1304.999953px;}
.h1_c00248{height:1305.000000px;}
.w2_c00248{width:934.874961px;}
.w0_c00248{width:934.875000px;}
.w1_c00248{width:935.250000px;}
.x0_c00248{left:0.000000px;}
.x2_c00248{left:87.902647px;}
.x1_c00248{left:89.487450px;}
.x3_c00248{left:452.271732px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ws0_c00248{word-spacing:0.000000pt;}
._0_c00248{width:2.312500pt;}
._3_c00248{width:12.653380pt;}
._2_c00248{width:13.604122pt;}
._1_c00248{width:20.276001pt;}
._4_c00248{width:30.323850pt;}
.fs0_c00248{font-size:63.999997pt;}
.y0_c00248{bottom:0.000000pt;}
.y1_c00248{bottom:0.000007pt;}
.yb_c00248{bottom:26.134367pt;}
.ya_c00248{bottom:805.311528pt;}
.y9_c00248{bottom:832.311527pt;}
.y8_c00248{bottom:859.311526pt;}
.y7_c00248{bottom:886.311525pt;}
.y6_c00248{bottom:913.311524pt;}
.y5_c00248{bottom:940.311522pt;}
.y4_c00248{bottom:974.711521pt;}
.y3_c00248{bottom:1037.111208pt;}
.y2_c00248{bottom:1071.507767pt;}
.h3_c00248{height:49.031248pt;}
.h4_c00248{height:59.593748pt;}
.h2_c00248{height:1159.999952pt;}
.h0_c00248{height:1159.999959pt;}
.h1_c00248{height:1160.000000pt;}
.w2_c00248{width:830.999965pt;}
.w0_c00248{width:831.000000pt;}
.w1_c00248{width:831.333333pt;}
.x0_c00248{left:0.000000pt;}
.x2_c00248{left:78.135686pt;}
.x1_c00248{left:79.544400pt;}
.x3_c00248{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56e98596da7b59cb4f5f6a5b.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:0.769531;font-style:normal;font-weight:normal;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_d434da321b3f635d76d440fe.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:0.734863;font-style:normal;font-weight: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_c00249;src:url('chunks/assets/font_a05ba47aa45ad7e9ba06aa8a.woff2')format("woff");}.ff5_c00249{font-family:ff5_c00249;line-height:1.000000;font-style:normal;font-weight: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_c00249;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff6_c00249{font-family:ff6_c00249;line-height:1.006348;font-style:normal;font-weight: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_c00249;src:url('chunks/assets/font_2c95b103b0429b37bc5aa7ce.woff2')format("woff");}.ff7_c00249{font-family:ff7_c00249;line-height:1.000000;font-style:normal;font-weight: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_c00249;src:url('chunks/assets/font_92d3d0586b562d8eb5e17fe4.woff2')format("woff");}.ff8_c00249{font-family:ff8_c00249;line-height:1.171387;font-style:normal;font-weight: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_c00249;src:url('chunks/assets/font_3a83d41645bc701d12084a4f.woff2')format("woff");}.ff9_c00249{font-family:ff9_c00249;line-height:1.000000;font-style:normal;font-weight: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_c00249;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00249{font-family:ffa_c00249;line-height:0.940000;font-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_c00249{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m29_c00249{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m15_c00249{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00249{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m16_c00249{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m28_c00249{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00249{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00249{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00249{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m17_c00249{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00249{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00249{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00249{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m18_c00249{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m27_c00249{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00249{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00249{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00249{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00249{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00249{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m19_c00249{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00249{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m26_c00249{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00249{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00249{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00249{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00249{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1a_c00249{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m25_c00249{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00249{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00249{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00249{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00249{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1b_c00249{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m24_c00249{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00249{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00249{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00249{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00249{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1c_c00249{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00249{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m23_c00249{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00249{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00249{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1d_c00249{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00249{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00249{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00249{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1e_c00249{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00249{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00249{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m1f_c00249{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00249{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m22_c00249{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00249{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00249{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00249{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m20_c00249{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00249{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00249{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m21_c00249{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00249{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m2a_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);}
.v0_c00249{vertical-align:0.000000px;}
.v1_c00249{vertical-align:1.279728px;}
.ls0_c00249{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00249{word-spacing:-41.689573px;}
.ws0_c00249{word-spacing:-15.171263px;}
.ws1_c00249{word-spacing:-0.076200px;}
.ws3_c00249{word-spacing:-0.055755px;}
.ws5_c00249{word-spacing:0.000000px;}
.ws2_c00249{word-spacing:288.058683px;}
._1_c00249{width:1.265624px;}
._2_c00249{width:2.756195px;}
._5_c00249{width:6.594271px;}
._0_c00249{width:8.156249px;}
._4_c00249{width:9.306789px;}
._3_c00249{width:62.349608px;}
.fc4_c00249{color:transparent;}
.fc3_c00249{color:rgb(67,91,56);}
.fc2_c00249{color:rgb(9,71,81);}
.fc1_c00249{color:rgb(255,255,255);}
.fc0_c00249{color:rgb(0,0,0);}
.fsb_c00249{font-size:36.000051px;}
.fsc_c00249{font-size:39.757786px;}
.fs6_c00249{font-size:41.999830px;}
.fs3_c00249{font-size:47.368230px;}
.fs0_c00249{font-size:47.368231px;}
.fs4_c00249{font-size:47.368232px;}
.fs1_c00249{font-size:47.368233px;}
.fs2_c00249{font-size:47.368235px;}
.fs7_c00249{font-size:51.661596px;}
.fse_c00249{font-size:55.754999px;}
.fsf_c00249{font-size:59.984997px;}
.fs8_c00249{font-size:71.999997px;}
.fs9_c00249{font-size:74.424240px;}
.fsa_c00249{font-size:76.200109px;}
.fs5_c00249{font-size:77.011488px;}
.fsd_c00249{font-size:95.984996px;}
.y0_c00249{bottom:0.000000px;}
.y1_c00249{bottom:0.000008px;}
.y56_c00249{bottom:29.401163px;}
.y4c_c00249{bottom:60.243729px;}
.y4b_c00249{bottom:90.618728px;}
.y4a_c00249{bottom:120.993727px;}
.y49_c00249{bottom:151.368726px;}
.y48_c00249{bottom:181.743724px;}
.y47_c00249{bottom:212.118723px;}
.y46_c00249{bottom:242.493722px;}
.y45_c00249{bottom:272.868721px;}
.y44_c00249{bottom:303.243719px;}
.y4d_c00249{bottom:337.324334px;}
.y43_c00249{bottom:401.525233px;}
.y2d_c00249{bottom:486.888550px;}
.yf_c00249{bottom:493.328193px;}
.y23_c00249{bottom:493.343399px;}
.ye_c00249{bottom:493.853349px;}
.y24_c00249{bottom:493.873061px;}
.y39_c00249{bottom:493.958987px;}
.y22_c00249{bottom:494.588444px;}
.y3a_c00249{bottom:494.792564px;}
.y38_c00249{bottom:494.812470px;}
.yd_c00249{bottom:494.919675px;}
.y21_c00249{bottom:495.839509px;}
.y37_c00249{bottom:495.847333px;}
.yc_c00249{bottom:495.993006px;}
.y25_c00249{bottom:496.289992px;}
.y10_c00249{bottom:496.353113px;}
.y3b_c00249{bottom:496.973447px;}
.y20_c00249{bottom:497.484020px;}
.yb_c00249{bottom:497.644926px;}
.y36_c00249{bottom:498.050705px;}
.y3c_c00249{bottom:498.365140px;}
.y1f_c00249{bottom:499.172711px;}
.ya_c00249{bottom:499.338107px;}
.y3d_c00249{bottom:500.063439px;}
.y11_c00249{bottom:500.630691px;}
.y1e_c00249{bottom:501.037949px;}
.y9_c00249{bottom:501.208280px;}
.y26_c00249{bottom:501.390523px;}
.y35_c00249{bottom:501.842247px;}
.y3e_c00249{bottom:502.505484px;}
.y12_c00249{bottom:503.149881px;}
.y3f_c00249{bottom:504.764265px;}
.y27_c00249{bottom:505.018723px;}
.y1d_c00249{bottom:505.692124px;}
.y8_c00249{bottom:505.872210px;}
.y34_c00249{bottom:507.310818px;}
.y40_c00249{bottom:508.033427px;}
.y13_c00249{bottom:509.102244px;}
.y28_c00249{bottom:510.653024px;}
.y33_c00249{bottom:511.777229px;}
.y1c_c00249{bottom:512.093421px;}
.y7_c00249{bottom:512.281650px;}
.y14_c00249{bottom:513.850725px;}
.y41_c00249{bottom:516.430791px;}
.y29_c00249{bottom:517.310602px;}
.y32_c00249{bottom:518.202280px;}
.y1b_c00249{bottom:519.400384px;}
.y6_c00249{bottom:519.490765px;}
.y31_c00249{bottom:522.772118px;}
.y5_c00249{bottom:522.949612px;}
.y42_c00249{bottom:524.479945px;}
.y15_c00249{bottom:525.634963px;}
.y1a_c00249{bottom:526.562252px;}
.y4_c00249{bottom:528.960471px;}
.y2a_c00249{bottom:529.273050px;}
.y30_c00249{bottom:530.544173px;}
.y19_c00249{bottom:531.331047px;}
.y2c_c00249{bottom:533.268367px;}
.y2e_c00249{bottom:533.961655px;}
.y2f_c00249{bottom:534.438127px;}
.y3_c00249{bottom:536.219702px;}
.y18_c00249{bottom:537.503874px;}
.y16_c00249{bottom:537.875309px;}
.y2b_c00249{bottom:538.238502px;}
.y53_c00249{bottom:539.975192px;}
.y17_c00249{bottom:544.566810px;}
.y2_c00249{bottom:545.753758px;}
.y54_c00249{bottom:577.436970px;}
.y55_c00249{bottom:639.092781px;}
.y57_c00249{bottom:1021.440190px;}
.y51_c00249{bottom:1128.788039px;}
.y4f_c00249{bottom:1138.751629px;}
.y4e_c00249{bottom:1150.751646px;}
.y52_c00249{bottom:1153.262414px;}
.y50_c00249{bottom:1171.082693px;}
.h11_c00249{height:33.521532px;}
.h8_c00249{height:35.988753px;}
.h9_c00249{height:35.988755px;}
.ha_c00249{height:35.988756px;}
.h12_c00249{height:37.020556px;}
.hd_c00249{height:37.459702px;}
.hc_c00249{height:39.108240px;}
.h6_c00249{height:44.107038px;}
.h3_c00249{height:44.107039px;}
.h7_c00249{height:44.107040px;}
.h4_c00249{height:44.107042px;}
.h5_c00249{height:44.107043px;}
.h16_c00249{height:45.588598px;}
.h15_c00249{height:51.916398px;}
.hb_c00249{height:56.295398px;}
.hf_c00249{height:57.017399px;}
.h14_c00249{height:57.575126px;}
.h10_c00249{height:57.894223px;}
.he_c00249{height:67.042966px;}
.h13_c00249{height:89.376654px;}
.h2_c00249{height:1304.999946px;}
.h0_c00249{height:1304.999953px;}
.h1_c00249{height:1305.000000px;}
.w2_c00249{width:934.874961px;}
.w0_c00249{width:934.875000px;}
.w1_c00249{width:935.250000px;}
.x0_c00249{left:0.000000px;}
.x3a_c00249{left:87.902647px;}
.x3b_c00249{left:89.260034px;}
.x3c_c00249{left:107.230262px;}
.x3d_c00249{left:108.827167px;}
.x44_c00249{left:130.690629px;}
.x13_c00249{left:134.974838px;}
.x12_c00249{left:136.648279px;}
.x14_c00249{left:140.021272px;}
.x15_c00249{left:144.871714px;}
.x16_c00249{left:150.237526px;}
.x17_c00249{left:152.990336px;}
.x18_c00249{left:156.000220px;}
.x19_c00249{left:159.847713px;}
.x23_c00249{left:161.443962px;}
.x1a_c00249{left:163.301377px;}
.x1b_c00249{left:171.586339px;}
.x1c_c00249{left:179.855997px;}
.x1d_c00249{left:188.287487px;}
.x1e_c00249{left:196.673970px;}
.x1f_c00249{left:200.841336px;}
.x20_c00249{left:205.399483px;}
.x21_c00249{left:209.208896px;}
.x22_c00249{left:211.795693px;}
.x2_c00249{left:230.398389px;}
.x1_c00249{left:232.534609px;}
.x3_c00249{left:235.623324px;}
.x4_c00249{left:240.462566px;}
.x5_c00249{left:245.820252px;}
.x6_c00249{left:248.569815px;}
.x7_c00249{left:251.576732px;}
.x8_c00249{left:255.421336px;}
.x41_c00249{left:256.622047px;}
.x9_c00249{left:258.708042px;}
.xa_c00249{left:263.145298px;}
.xb_c00249{left:271.763354px;}
.xc_c00249{left:283.603990px;}
.xd_c00249{left:291.041304px;}
.xe_c00249{left:294.435991px;}
.x3e_c00249{left:295.615161px;}
.xf_c00249{left:299.775542px;}
.x10_c00249{left:303.165014px;}
.x11_c00249{left:307.176807px;}
.x26_c00249{left:327.047435px;}
.x27_c00249{left:328.264734px;}
.x28_c00249{left:329.685747px;}
.x29_c00249{left:333.082971px;}
.x2a_c00249{left:336.307511px;}
.x2b_c00249{left:342.189757px;}
.x2c_c00249{left:348.376740px;}
.x25_c00249{left:351.731739px;}
.x2d_c00249{left:354.069743px;}
.x2e_c00249{left:357.479743px;}
.x2f_c00249{left:365.386869px;}
.x30_c00249{left:373.375785px;}
.x31_c00249{left:380.135498px;}
.x32_c00249{left:383.155707px;}
.x33_c00249{left:386.159935px;}
.x34_c00249{left:389.557910px;}
.x35_c00249{left:392.174988px;}
.x36_c00249{left:395.489533px;}
.x37_c00249{left:400.664851px;}
.x38_c00249{left:403.469600px;}
.x43_c00249{left:452.271732px;}
.x3f_c00249{left:464.896169px;}
.x42_c00249{left:664.443440px;}
.x39_c00249{left:697.320842px;}
.x40_c00249{left:733.540711px;}
.x24_c00249{left:757.088990px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.v1_c00249{vertical-align:1.137536pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws4_c00249{word-spacing:-37.057398pt;}
.ws0_c00249{word-spacing:-13.485567pt;}
.ws1_c00249{word-spacing:-0.067733pt;}
.ws3_c00249{word-spacing:-0.049560pt;}
.ws5_c00249{word-spacing:0.000000pt;}
.ws2_c00249{word-spacing:256.052163pt;}
._1_c00249{width:1.124999pt;}
._2_c00249{width:2.449951pt;}
._5_c00249{width:5.861574pt;}
._0_c00249{width:7.249999pt;}
._4_c00249{width:8.272702pt;}
._3_c00249{width:55.421873pt;}
.fsb_c00249{font-size:32.000046pt;}
.fsc_c00249{font-size:35.340254pt;}
.fs6_c00249{font-size:37.333182pt;}
.fs3_c00249{font-size:42.105093pt;}
.fs0_c00249{font-size:42.105094pt;}
.fs4_c00249{font-size:42.105095pt;}
.fs1_c00249{font-size:42.105096pt;}
.fs2_c00249{font-size:42.105098pt;}
.fs7_c00249{font-size:45.921418pt;}
.fse_c00249{font-size:49.559999pt;}
.fsf_c00249{font-size:53.319997pt;}
.fs8_c00249{font-size:63.999997pt;}
.fs9_c00249{font-size:66.154880pt;}
.fsa_c00249{font-size:67.733430pt;}
.fs5_c00249{font-size:68.454656pt;}
.fsd_c00249{font-size:85.319996pt;}
.y0_c00249{bottom:0.000000pt;}
.y1_c00249{bottom:0.000007pt;}
.y56_c00249{bottom:26.134367pt;}
.y4c_c00249{bottom:53.549982pt;}
.y4b_c00249{bottom:80.549981pt;}
.y4a_c00249{bottom:107.549980pt;}
.y49_c00249{bottom:134.549978pt;}
.y48_c00249{bottom:161.549977pt;}
.y47_c00249{bottom:188.549976pt;}
.y46_c00249{bottom:215.549975pt;}
.y45_c00249{bottom:242.549974pt;}
.y44_c00249{bottom:269.549973pt;}
.y4d_c00249{bottom:299.843853pt;}
.y43_c00249{bottom:356.911319pt;}
.y2d_c00249{bottom:432.789822pt;}
.yf_c00249{bottom:438.513950pt;}
.y23_c00249{bottom:438.527466pt;}
.ye_c00249{bottom:438.980754pt;}
.y24_c00249{bottom:438.998276pt;}
.y39_c00249{bottom:439.074655pt;}
.y22_c00249{bottom:439.634173pt;}
.y3a_c00249{bottom:439.815613pt;}
.y38_c00249{bottom:439.833307pt;}
.yd_c00249{bottom:439.928600pt;}
.y21_c00249{bottom:440.746230pt;}
.y37_c00249{bottom:440.753185pt;}
.yc_c00249{bottom:440.882672pt;}
.y25_c00249{bottom:441.146660pt;}
.y10_c00249{bottom:441.202767pt;}
.y3b_c00249{bottom:441.754175pt;}
.y20_c00249{bottom:442.208018pt;}
.yb_c00249{bottom:442.351046pt;}
.y36_c00249{bottom:442.711737pt;}
.y3c_c00249{bottom:442.991236pt;}
.y1f_c00249{bottom:443.709077pt;}
.ya_c00249{bottom:443.856095pt;}
.y3d_c00249{bottom:444.500834pt;}
.y11_c00249{bottom:445.005059pt;}
.y1e_c00249{bottom:445.367066pt;}
.y9_c00249{bottom:445.518471pt;}
.y26_c00249{bottom:445.680465pt;}
.y35_c00249{bottom:446.081997pt;}
.y3e_c00249{bottom:446.671541pt;}
.y12_c00249{bottom:447.244339pt;}
.y3f_c00249{bottom:448.679347pt;}
.y27_c00249{bottom:448.905531pt;}
.y1d_c00249{bottom:449.504110pt;}
.y8_c00249{bottom:449.664187pt;}
.y34_c00249{bottom:450.942950pt;}
.y40_c00249{bottom:451.585269pt;}
.y13_c00249{bottom:452.535328pt;}
.y28_c00249{bottom:453.913799pt;}
.y33_c00249{bottom:454.913093pt;}
.y1c_c00249{bottom:455.194152pt;}
.y7_c00249{bottom:455.361467pt;}
.y14_c00249{bottom:456.756200pt;}
.y41_c00249{bottom:459.049592pt;}
.y29_c00249{bottom:459.831647pt;}
.y32_c00249{bottom:460.624248pt;}
.y1b_c00249{bottom:461.689230pt;}
.y6_c00249{bottom:461.769569pt;}
.y31_c00249{bottom:464.686327pt;}
.y5_c00249{bottom:464.844100pt;}
.y42_c00249{bottom:466.204395pt;}
.y15_c00249{bottom:467.231078pt;}
.y1a_c00249{bottom:468.055335pt;}
.y4_c00249{bottom:470.187085pt;}
.y2a_c00249{bottom:470.464933pt;}
.y30_c00249{bottom:471.594820pt;}
.y19_c00249{bottom:472.294264pt;}
.y2c_c00249{bottom:474.016326pt;}
.y2e_c00249{bottom:474.632582pt;}
.y2f_c00249{bottom:475.056113pt;}
.y3_c00249{bottom:476.639735pt;}
.y18_c00249{bottom:477.781221pt;}
.y16_c00249{bottom:478.111386pt;}
.y2b_c00249{bottom:478.434224pt;}
.y53_c00249{bottom:479.977948pt;}
.y17_c00249{bottom:484.059387pt;}
.y2_c00249{bottom:485.114452pt;}
.y54_c00249{bottom:513.277307pt;}
.y55_c00249{bottom:568.082472pt;}
.y57_c00249{bottom:907.946836pt;}
.y51_c00249{bottom:1003.367145pt;}
.y4f_c00249{bottom:1012.223670pt;}
.y4e_c00249{bottom:1022.890352pt;}
.y52_c00249{bottom:1025.122146pt;}
.y50_c00249{bottom:1040.962393pt;}
.h11_c00249{height:29.796918pt;}
.h8_c00249{height:31.990003pt;}
.h9_c00249{height:31.990004pt;}
.ha_c00249{height:31.990006pt;}
.h12_c00249{height:32.907161pt;}
.hd_c00249{height:33.297513pt;}
.hc_c00249{height:34.762880pt;}
.h6_c00249{height:39.206256pt;}
.h3_c00249{height:39.206257pt;}
.h7_c00249{height:39.206258pt;}
.h4_c00249{height:39.206259pt;}
.h5_c00249{height:39.206261pt;}
.h16_c00249{height:40.523198pt;}
.h15_c00249{height:46.147909pt;}
.hb_c00249{height:50.040354pt;}
.hf_c00249{height:50.682132pt;}
.h14_c00249{height:51.177889pt;}
.h10_c00249{height:51.461532pt;}
.he_c00249{height:59.593748pt;}
.h13_c00249{height:79.445915pt;}
.h2_c00249{height:1159.999952pt;}
.h0_c00249{height:1159.999959pt;}
.h1_c00249{height:1160.000000pt;}
.w2_c00249{width:830.999965pt;}
.w0_c00249{width:831.000000pt;}
.w1_c00249{width:831.333333pt;}
.x0_c00249{left:0.000000pt;}
.x3a_c00249{left:78.135686pt;}
.x3b_c00249{left:79.342253pt;}
.x3c_c00249{left:95.315788pt;}
.x3d_c00249{left:96.735260pt;}
.x44_c00249{left:116.169448pt;}
.x13_c00249{left:119.977634pt;}
.x12_c00249{left:121.465137pt;}
.x14_c00249{left:124.463353pt;}
.x15_c00249{left:128.774857pt;}
.x16_c00249{left:133.544468pt;}
.x17_c00249{left:135.991410pt;}
.x18_c00249{left:138.666862pt;}
.x19_c00249{left:142.086856pt;}
.x23_c00249{left:143.505744pt;}
.x1a_c00249{left:145.156780pt;}
.x1b_c00249{left:152.521190pt;}
.x1c_c00249{left:159.871997pt;}
.x1d_c00249{left:167.366655pt;}
.x1e_c00249{left:174.821307pt;}
.x1f_c00249{left:178.525632pt;}
.x20_c00249{left:182.577318pt;}
.x21_c00249{left:185.963463pt;}
.x22_c00249{left:188.262839pt;}
.x2_c00249{left:204.798568pt;}
.x1_c00249{left:206.697430pt;}
.x3_c00249{left:209.442955pt;}
.x4_c00249{left:213.744503pt;}
.x5_c00249{left:218.506891pt;}
.x6_c00249{left:220.950947pt;}
.x7_c00249{left:223.623762pt;}
.x8_c00249{left:227.041187pt;}
.x41_c00249{left:228.108486pt;}
.x9_c00249{left:229.962704pt;}
.xa_c00249{left:233.906932pt;}
.xb_c00249{left:241.567426pt;}
.xc_c00249{left:252.092435pt;}
.xd_c00249{left:258.703382pt;}
.xe_c00249{left:261.720880pt;}
.x3e_c00249{left:262.769032pt;}
.xf_c00249{left:266.467148pt;}
.x10_c00249{left:269.480012pt;}
.x11_c00249{left:273.046051pt;}
.x26_c00249{left:290.708831pt;}
.x27_c00249{left:291.790874pt;}
.x28_c00249{left:293.053997pt;}
.x29_c00249{left:296.073752pt;}
.x2a_c00249{left:298.940009pt;}
.x2b_c00249{left:304.168673pt;}
.x2c_c00249{left:309.668213pt;}
.x25_c00249{left:312.650435pt;}
.x2d_c00249{left:314.728661pt;}
.x2e_c00249{left:317.759772pt;}
.x2f_c00249{left:324.788328pt;}
.x30_c00249{left:331.889587pt;}
.x31_c00249{left:337.898220pt;}
.x32_c00249{left:340.582851pt;}
.x33_c00249{left:343.253275pt;}
.x34_c00249{left:346.273697pt;}
.x35_c00249{left:348.599989pt;}
.x36_c00249{left:351.546252pt;}
.x37_c00249{left:356.146534pt;}
.x38_c00249{left:358.639645pt;}
.x43_c00249{left:402.019318pt;}
.x3f_c00249{left:413.241039pt;}
.x42_c00249{left:590.616391pt;}
.x39_c00249{left:619.840748pt;}
.x40_c00249{left:652.036188pt;}
.x24_c00249{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_34a649c8dd107c94242aafbc.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.006348;font-style:normal;font-weight:normal;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_4fd0dee868324cd00eb4b161.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.000000;font-style:normal;font-weight:normal;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_f561cecffcbc8d847e135d1a.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.006348;font-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_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);}
.v0_c00250{vertical-align:0.000000px;}
.ls0_c00250{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00250{word-spacing:-19.320776px;}
.ws0_c00250{word-spacing:-18.703125px;}
.ws2_c00250{word-spacing:0.000000px;}
._0_c00250{width:1.200326px;}
._1_c00250{width:2.263046px;}
._4_c00250{width:3.529080px;}
._2_c00250{width:4.581093px;}
._5_c00250{width:5.672720px;}
._6_c00250{width:7.490956px;}
._b_c00250{width:8.617125px;}
._8_c00250{width:9.796850px;}
._c_c00250{width:11.188474px;}
._7_c00250{width:12.207320px;}
._9_c00250{width:19.989829px;}
._a_c00250{width:24.073858px;}
._3_c00250{width:49.612468px;}
.fc1_c00250{color:rgb(67,91,56);}
.fc0_c00250{color:rgb(0,0,0);}
.fs0_c00250{font-size:71.999997px;}
.fs1_c00250{font-size:74.377724px;}
.y0_c00250{bottom:0.000000px;}
.y1_c00250{bottom:0.000008px;}
.y1c_c00250{bottom:29.401163px;}
.y14_c00250{bottom:400.667877px;}
.y13_c00250{bottom:431.042875px;}
.y12_c00250{bottom:461.417874px;}
.y11_c00250{bottom:491.792873px;}
.y10_c00250{bottom:522.167871px;}
.yf_c00250{bottom:552.542870px;}
.ye_c00250{bottom:582.917869px;}
.yd_c00250{bottom:613.292868px;}
.yc_c00250{bottom:643.667866px;}
.yb_c00250{bottom:674.042865px;}
.ya_c00250{bottom:704.417864px;}
.y9_c00250{bottom:734.792863px;}
.y8_c00250{bottom:765.167861px;}
.y7_c00250{bottom:795.542860px;}
.y6_c00250{bottom:825.917859px;}
.y5_c00250{bottom:856.292858px;}
.y4_c00250{bottom:886.667856px;}
.y3_c00250{bottom:917.042855px;}
.y2_c00250{bottom:947.417854px;}
.y15_c00250{bottom:978.859954px;}
.y1a_c00250{bottom:1042.897215px;}
.y19_c00250{bottom:1073.272214px;}
.y18_c00250{bottom:1103.647213px;}
.y17_c00250{bottom:1134.022212px;}
.y16_c00250{bottom:1164.397210px;}
.y1b_c00250{bottom:1198.898204px;}
.h3_c00250{height:55.160154px;}
.h4_c00250{height:56.981762px;}
.h2_c00250{height:1304.999946px;}
.h0_c00250{height:1304.999953px;}
.h1_c00250{height:1305.000000px;}
.w2_c00250{width:934.874961px;}
.w0_c00250{width:934.875000px;}
.w1_c00250{width:935.250000px;}
.x0_c00250{left:0.000000px;}
.x1_c00250{left:87.902647px;}
.x2_c00250{left:452.271732px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws1_c00250{word-spacing:-17.174023pt;}
.ws0_c00250{word-spacing:-16.625000pt;}
.ws2_c00250{word-spacing:0.000000pt;}
._0_c00250{width:1.066956pt;}
._1_c00250{width:2.011596pt;}
._4_c00250{width:3.136960pt;}
._2_c00250{width:4.072082pt;}
._5_c00250{width:5.042418pt;}
._6_c00250{width:6.658628pt;}
._b_c00250{width:7.659666pt;}
._8_c00250{width:8.708311pt;}
._c_c00250{width:9.945310pt;}
._7_c00250{width:10.850951pt;}
._9_c00250{width:17.768737pt;}
._a_c00250{width:21.398985pt;}
._3_c00250{width:44.099971pt;}
.fs0_c00250{font-size:63.999997pt;}
.fs1_c00250{font-size:66.113533pt;}
.y0_c00250{bottom:0.000000pt;}
.y1_c00250{bottom:0.000007pt;}
.y1c_c00250{bottom:26.134367pt;}
.y14_c00250{bottom:356.149224pt;}
.y13_c00250{bottom:383.149222pt;}
.y12_c00250{bottom:410.149221pt;}
.y11_c00250{bottom:437.149220pt;}
.y10_c00250{bottom:464.149219pt;}
.yf_c00250{bottom:491.149218pt;}
.ye_c00250{bottom:518.149217pt;}
.yd_c00250{bottom:545.149216pt;}
.yc_c00250{bottom:572.149215pt;}
.yb_c00250{bottom:599.149213pt;}
.ya_c00250{bottom:626.149212pt;}
.y9_c00250{bottom:653.149211pt;}
.y8_c00250{bottom:680.149210pt;}
.y7_c00250{bottom:707.149209pt;}
.y6_c00250{bottom:734.149208pt;}
.y5_c00250{bottom:761.149207pt;}
.y4_c00250{bottom:788.149206pt;}
.y3_c00250{bottom:815.149204pt;}
.y2_c00250{bottom:842.149203pt;}
.y15_c00250{bottom:870.097737pt;}
.y1a_c00250{bottom:927.019747pt;}
.y19_c00250{bottom:954.019746pt;}
.y18_c00250{bottom:981.019745pt;}
.y17_c00250{bottom:1008.019744pt;}
.y16_c00250{bottom:1035.019742pt;}
.y1b_c00250{bottom:1065.687293pt;}
.h3_c00250{height:49.031248pt;}
.h4_c00250{height:50.650455pt;}
.h2_c00250{height:1159.999952pt;}
.h0_c00250{height:1159.999959pt;}
.h1_c00250{height:1160.000000pt;}
.w2_c00250{width:830.999965pt;}
.w0_c00250{width:831.000000pt;}
.w1_c00250{width:831.333333pt;}
.x0_c00250{left:0.000000pt;}
.x1_c00250{left:78.135686pt;}
.x2_c00250{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7997ac32c6b1a825d68f4ec8.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.006348;font-style:normal;font-weight:normal;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_d2aa871f10a461902001ff30.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.006348;font-style:normal;font-weight:normal;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_e008c9eba7e755bda69853d3.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.000000;font-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_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);}
.v0_c00251{vertical-align:0.000000px;}
.ls0_c00251{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00251{word-spacing:0.000000px;}
._7_c00251{width:4.097211px;}
._3_c00251{width:5.132812px;}
._5_c00251{width:8.537064px;}
._0_c00251{width:14.581053px;}
._4_c00251{width:17.050782px;}
._1_c00251{width:20.218685px;}
._6_c00251{width:32.062500px;}
._2_c00251{width:43.242187px;}
.fc1_c00251{color:rgb(0,0,0);}
.fc0_c00251{color:rgb(67,91,56);}
.fs0_c00251{font-size:71.999997px;}
.y0_c00251{bottom:0.000000px;}
.y1_c00251{bottom:0.000008px;}
.ye_c00251{bottom:29.400983px;}
.yd_c00251{bottom:827.163948px;}
.yc_c00251{bottom:857.538947px;}
.yb_c00251{bottom:887.913946px;}
.ya_c00251{bottom:918.288945px;}
.y9_c00251{bottom:948.663943px;}
.y8_c00251{bottom:987.363942px;}
.y7_c00251{bottom:1045.250377px;}
.y6_c00251{bottom:1075.625376px;}
.y5_c00251{bottom:1106.000374px;}
.y4_c00251{bottom:1136.375373px;}
.y3_c00251{bottom:1166.750372px;}
.y2_c00251{bottom:1199.772371px;}
.h3_c00251{height:55.160154px;}
.h2_c00251{height:1304.999946px;}
.h0_c00251{height:1304.999953px;}
.h1_c00251{height:1305.000000px;}
.w2_c00251{width:934.874961px;}
.w0_c00251{width:934.875000px;}
.w1_c00251{width:935.250000px;}
.x0_c00251{left:0.000000px;}
.x1_c00251{left:87.902647px;}
.x2_c00251{left:452.271732px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.ws0_c00251{word-spacing:0.000000pt;}
._7_c00251{width:3.641965pt;}
._3_c00251{width:4.562499pt;}
._5_c00251{width:7.588501pt;}
._0_c00251{width:12.960936pt;}
._4_c00251{width:15.156251pt;}
._1_c00251{width:17.972165pt;}
._6_c00251{width:28.500000pt;}
._2_c00251{width:38.437500pt;}
.fs0_c00251{font-size:63.999997pt;}
.y0_c00251{bottom:0.000000pt;}
.y1_c00251{bottom:0.000007pt;}
.ye_c00251{bottom:26.134207pt;}
.yd_c00251{bottom:735.256843pt;}
.yc_c00251{bottom:762.256842pt;}
.yb_c00251{bottom:789.256841pt;}
.ya_c00251{bottom:816.256840pt;}
.y9_c00251{bottom:843.256838pt;}
.y8_c00251{bottom:877.656837pt;}
.y7_c00251{bottom:929.111446pt;}
.y6_c00251{bottom:956.111445pt;}
.y5_c00251{bottom:983.111444pt;}
.y4_c00251{bottom:1010.111443pt;}
.y3_c00251{bottom:1037.111442pt;}
.y2_c00251{bottom:1066.464330pt;}
.h3_c00251{height:49.031248pt;}
.h2_c00251{height:1159.999952pt;}
.h0_c00251{height:1159.999959pt;}
.h1_c00251{height:1160.000000pt;}
.w2_c00251{width:830.999965pt;}
.w0_c00251{width:831.000000pt;}
.w1_c00251{width:831.333333pt;}
.x0_c00251{left:0.000000pt;}
.x1_c00251{left:78.135686pt;}
.x2_c00251{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d27d1d0aa5e211049e478469.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.000000;font-style:normal;font-weight:normal;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_c558ae1e380badd3b041ef3d.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.171387;font-style:normal;font-weight:normal;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_73002f1608132e4fa6a1c9b9.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_96e60bb4d0b7faae4f8fcb9a.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.000000;font-style:normal;font-weight: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_c00252;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff5_c00252{font-family:ff5_c00252;line-height:0.734863;font-style:normal;font-weight: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_c00252;src:url('chunks/assets/font_5abe7b5a2f20338324c8b7ab.woff2')format("woff");}.ff6_c00252{font-family:ff6_c00252;line-height:0.772949;font-style:normal;font-weight: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_c00252;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff7_c00252{font-family:ff7_c00252;line-height:0.743000;font-style:normal;font-weight: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_c00252;src:url('chunks/assets/font_85305f83874decd5084e5848.woff2')format("woff");}.ff8_c00252{font-family:ff8_c00252;line-height:1.006348;font-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_c00252{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00252{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00252{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00252{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00252{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00252{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00252{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00252{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00252{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00252{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00252{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00252{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00252{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00252{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00252{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00252{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00252{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00252{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00252{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00252{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00252{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00252{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00252{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00252{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00252{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00252{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00252{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00252{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00252{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00252{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00252{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00252{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00252{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00252{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00252{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00252{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00252{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00252{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00252{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00252{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00252{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00252{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00252{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00252{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00252{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00252{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00252{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00252{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00252{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00252{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00252{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00252{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00252{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00252{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00252{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00252{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00252{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00252{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00252{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00252{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00252{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00252{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00252{vertical-align:0.000000px;}
.v2_c00252{vertical-align:1.279584px;}
.v1_c00252{vertical-align:26.825858px;}
.ls0_c00252{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00252{word-spacing:-15.171263px;}
.ws1_c00252{word-spacing:-0.088200px;}
.ws0_c00252{word-spacing:-0.055755px;}
.ws5_c00252{word-spacing:0.000000px;}
.ws4_c00252{word-spacing:288.058683px;}
.ws2_c00252{word-spacing:1115.008845px;}
._1_c00252{width:9.396262px;}
._3_c00252{width:10.633257px;}
._5_c00252{width:13.682783px;}
._4_c00252{width:15.609376px;}
._2_c00252{width:35.246611px;}
._0_c00252{width:45.274794px;}
.fc4_c00252{color:transparent;}
.fc3_c00252{color:rgb(67,91,56);}
.fc2_c00252{color:rgb(9,71,81);}
.fc1_c00252{color:rgb(0,0,0);}
.fc0_c00252{color:rgb(255,255,255);}
.fs4_c00252{font-size:39.757786px;}
.fsd_c00252{font-size:41.999830px;}
.fs3_c00252{font-size:42.000061px;}
.fsa_c00252{font-size:47.368230px;}
.fs7_c00252{font-size:47.368231px;}
.fsb_c00252{font-size:47.368232px;}
.fs8_c00252{font-size:47.368233px;}
.fs9_c00252{font-size:47.368235px;}
.fs6_c00252{font-size:51.661596px;}
.fs0_c00252{font-size:55.754999px;}
.fs1_c00252{font-size:71.999997px;}
.fse_c00252{font-size:74.424240px;}
.fsc_c00252{font-size:77.011488px;}
.fs2_c00252{font-size:88.200132px;}
.fs5_c00252{font-size:95.984996px;}
.y0_c00252{bottom:0.000000px;}
.y1_c00252{bottom:0.000008px;}
.y52_c00252{bottom:29.401163px;}
.ya_c00252{bottom:88.120544px;}
.y9_c00252{bottom:118.495543px;}
.y8_c00252{bottom:148.870542px;}
.y7_c00252{bottom:179.245541px;}
.y6_c00252{bottom:209.620539px;}
.y5_c00252{bottom:239.995538px;}
.y4_c00252{bottom:270.370537px;}
.y3_c00252{bottom:300.745535px;}
.y51_c00252{bottom:337.324334px;}
.y10_c00252{bottom:401.525233px;}
.y1e_c00252{bottom:493.328193px;}
.y32_c00252{bottom:493.343399px;}
.y1d_c00252{bottom:493.853709px;}
.y33_c00252{bottom:493.873421px;}
.y47_c00252{bottom:493.959311px;}
.y31_c00252{bottom:494.588120px;}
.y48_c00252{bottom:494.792564px;}
.y46_c00252{bottom:494.812830px;}
.y1c_c00252{bottom:494.919675px;}
.y30_c00252{bottom:495.839509px;}
.y45_c00252{bottom:495.847693px;}
.y1b_c00252{bottom:495.993006px;}
.y34_c00252{bottom:496.289992px;}
.y1f_c00252{bottom:496.353473px;}
.y49_c00252{bottom:496.974167px;}
.y2f_c00252{bottom:497.484380px;}
.y1a_c00252{bottom:497.644566px;}
.y44_c00252{bottom:498.050345px;}
.y4a_c00252{bottom:498.364816px;}
.y2e_c00252{bottom:499.172711px;}
.y19_c00252{bottom:499.338107px;}
.y4b_c00252{bottom:500.063439px;}
.y20_c00252{bottom:500.630691px;}
.y2d_c00252{bottom:501.037625px;}
.y18_c00252{bottom:501.208280px;}
.y35_c00252{bottom:501.390523px;}
.y43_c00252{bottom:501.841887px;}
.y4c_c00252{bottom:502.505484px;}
.y21_c00252{bottom:503.149521px;}
.y4d_c00252{bottom:504.764625px;}
.y36_c00252{bottom:505.019047px;}
.y2c_c00252{bottom:505.692124px;}
.y17_c00252{bottom:505.871886px;}
.y42_c00252{bottom:507.310818px;}
.y4e_c00252{bottom:508.033427px;}
.y22_c00252{bottom:509.101920px;}
.y37_c00252{bottom:510.652700px;}
.y41_c00252{bottom:511.777229px;}
.y2b_c00252{bottom:512.093421px;}
.y16_c00252{bottom:512.281650px;}
.y23_c00252{bottom:513.850725px;}
.y4f_c00252{bottom:516.430791px;}
.y38_c00252{bottom:517.310242px;}
.y40_c00252{bottom:518.201920px;}
.y2a_c00252{bottom:519.400744px;}
.y15_c00252{bottom:519.490765px;}
.y3f_c00252{bottom:522.772118px;}
.y14_c00252{bottom:522.949612px;}
.y50_c00252{bottom:524.479585px;}
.y24_c00252{bottom:525.634639px;}
.y29_c00252{bottom:526.562252px;}
.y13_c00252{bottom:528.959751px;}
.y39_c00252{bottom:529.273374px;}
.y3e_c00252{bottom:530.544173px;}
.y28_c00252{bottom:531.331731px;}
.y3b_c00252{bottom:533.268367px;}
.y3c_c00252{bottom:533.962015px;}
.y3d_c00252{bottom:534.438127px;}
.y12_c00252{bottom:536.219342px;}
.y27_c00252{bottom:537.503874px;}
.y25_c00252{bottom:537.875309px;}
.y3a_c00252{bottom:538.238862px;}
.y26_c00252{bottom:544.567530px;}
.y11_c00252{bottom:545.754118px;}
.y2_c00252{bottom:639.092421px;}
.ye_c00252{bottom:1128.788391px;}
.yc_c00252{bottom:1133.756384px;}
.yb_c00252{bottom:1147.756405px;}
.yf_c00252{bottom:1153.262238px;}
.yd_c00252{bottom:1171.082869px;}
.hf_c00252{height:35.988753px;}
.h10_c00252{height:35.988755px;}
.h11_c00252{height:35.988756px;}
.he_c00252{height:36.289430px;}
.hb_c00252{height:36.289431px;}
.hc_c00252{height:36.289433px;}
.hd_c00252{height:36.289434px;}
.h7_c00252{height:37.020556px;}
.ha_c00252{height:37.459702px;}
.h6_c00252{height:39.108455px;}
.h3_c00252{height:51.916398px;}
.h4_c00252{height:55.160154px;}
.h13_c00252{height:56.295398px;}
.h14_c00252{height:57.017399px;}
.h15_c00252{height:57.574982px;}
.h12_c00252{height:59.002485px;}
.h5_c00252{height:67.011428px;}
.h8_c00252{height:67.042966px;}
.h9_c00252{height:89.376654px;}
.h2_c00252{height:1304.999946px;}
.h0_c00252{height:1304.999953px;}
.h1_c00252{height:1305.000000px;}
.w2_c00252{width:934.874961px;}
.w0_c00252{width:934.875000px;}
.w1_c00252{width:935.250000px;}
.x0_c00252{left:0.000000px;}
.x2_c00252{left:87.902647px;}
.x3_c00252{left:107.230262px;}
.x4_c00252{left:108.827167px;}
.x18_c00252{left:134.974838px;}
.x17_c00252{left:136.648279px;}
.x19_c00252{left:140.021272px;}
.x1a_c00252{left:144.871714px;}
.x1b_c00252{left:150.237526px;}
.x1c_c00252{left:152.990336px;}
.x1d_c00252{left:156.000220px;}
.x1e_c00252{left:159.847713px;}
.x28_c00252{left:161.443962px;}
.x1f_c00252{left:163.301377px;}
.x20_c00252{left:171.586339px;}
.x21_c00252{left:179.855997px;}
.x22_c00252{left:188.287487px;}
.x23_c00252{left:196.673970px;}
.x24_c00252{left:200.841336px;}
.x25_c00252{left:205.399483px;}
.x26_c00252{left:209.208896px;}
.x27_c00252{left:211.795693px;}
.x8_c00252{left:230.398389px;}
.x7_c00252{left:232.534609px;}
.x9_c00252{left:235.623324px;}
.xa_c00252{left:240.462566px;}
.xb_c00252{left:245.820252px;}
.xc_c00252{left:248.569815px;}
.xd_c00252{left:251.576732px;}
.xe_c00252{left:255.421336px;}
.x3d_c00252{left:256.622047px;}
.xf_c00252{left:258.708042px;}
.x10_c00252{left:263.145298px;}
.x11_c00252{left:271.763354px;}
.x12_c00252{left:283.603990px;}
.x13_c00252{left:291.041304px;}
.x5_c00252{left:295.177092px;}
.x14_c00252{left:299.775542px;}
.x15_c00252{left:303.165014px;}
.x16_c00252{left:307.176807px;}
.x2a_c00252{left:327.047435px;}
.x2b_c00252{left:328.264734px;}
.x2c_c00252{left:329.685747px;}
.x2d_c00252{left:333.082971px;}
.x2e_c00252{left:336.307511px;}
.x2f_c00252{left:342.189757px;}
.x30_c00252{left:348.376740px;}
.x29_c00252{left:351.731739px;}
.x31_c00252{left:354.069743px;}
.x32_c00252{left:357.479743px;}
.x33_c00252{left:365.386869px;}
.x34_c00252{left:373.375785px;}
.x35_c00252{left:380.135498px;}
.x36_c00252{left:383.155707px;}
.x37_c00252{left:386.159935px;}
.x38_c00252{left:389.557910px;}
.x39_c00252{left:392.174988px;}
.x3a_c00252{left:395.489533px;}
.x3b_c00252{left:400.664851px;}
.x3c_c00252{left:403.469600px;}
.x3e_c00252{left:452.271732px;}
.x1_c00252{left:664.443440px;}
.x6_c00252{left:697.320842px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.v2_c00252{vertical-align:1.137408pt;}
.v1_c00252{vertical-align:23.845207pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws3_c00252{word-spacing:-13.485567pt;}
.ws1_c00252{word-spacing:-0.078400pt;}
.ws0_c00252{word-spacing:-0.049560pt;}
.ws5_c00252{word-spacing:0.000000pt;}
.ws4_c00252{word-spacing:256.052163pt;}
.ws2_c00252{word-spacing:991.118974pt;}
._1_c00252{width:8.352233pt;}
._3_c00252{width:9.451784pt;}
._5_c00252{width:12.162474pt;}
._4_c00252{width:13.875001pt;}
._2_c00252{width:31.330321pt;}
._0_c00252{width:40.244262pt;}
.fs4_c00252{font-size:35.340254pt;}
.fsd_c00252{font-size:37.333182pt;}
.fs3_c00252{font-size:37.333388pt;}
.fsa_c00252{font-size:42.105093pt;}
.fs7_c00252{font-size:42.105094pt;}
.fsb_c00252{font-size:42.105095pt;}
.fs8_c00252{font-size:42.105096pt;}
.fs9_c00252{font-size:42.105098pt;}
.fs6_c00252{font-size:45.921418pt;}
.fs0_c00252{font-size:49.559999pt;}
.fs1_c00252{font-size:63.999997pt;}
.fse_c00252{font-size:66.154880pt;}
.fsc_c00252{font-size:68.454656pt;}
.fs2_c00252{font-size:78.400117pt;}
.fs5_c00252{font-size:85.319996pt;}
.y0_c00252{bottom:0.000000pt;}
.y1_c00252{bottom:0.000007pt;}
.y52_c00252{bottom:26.134367pt;}
.ya_c00252{bottom:78.329373pt;}
.y9_c00252{bottom:105.329372pt;}
.y8_c00252{bottom:132.329370pt;}
.y7_c00252{bottom:159.329369pt;}
.y6_c00252{bottom:186.329368pt;}
.y5_c00252{bottom:213.329367pt;}
.y4_c00252{bottom:240.329366pt;}
.y3_c00252{bottom:267.329365pt;}
.y51_c00252{bottom:299.843853pt;}
.y10_c00252{bottom:356.911319pt;}
.y1e_c00252{bottom:438.513950pt;}
.y32_c00252{bottom:438.527466pt;}
.y1d_c00252{bottom:438.981074pt;}
.y33_c00252{bottom:438.998596pt;}
.y47_c00252{bottom:439.074943pt;}
.y31_c00252{bottom:439.633885pt;}
.y48_c00252{bottom:439.815613pt;}
.y46_c00252{bottom:439.833627pt;}
.y1c_c00252{bottom:439.928600pt;}
.y30_c00252{bottom:440.746230pt;}
.y45_c00252{bottom:440.753505pt;}
.y1b_c00252{bottom:440.882672pt;}
.y34_c00252{bottom:441.146660pt;}
.y1f_c00252{bottom:441.203087pt;}
.y49_c00252{bottom:441.754815pt;}
.y2f_c00252{bottom:442.208338pt;}
.y1a_c00252{bottom:442.350726pt;}
.y44_c00252{bottom:442.711417pt;}
.y4a_c00252{bottom:442.990948pt;}
.y2e_c00252{bottom:443.709077pt;}
.y19_c00252{bottom:443.856095pt;}
.y4b_c00252{bottom:444.500834pt;}
.y20_c00252{bottom:445.005059pt;}
.y2d_c00252{bottom:445.366778pt;}
.y18_c00252{bottom:445.518471pt;}
.y35_c00252{bottom:445.680465pt;}
.y43_c00252{bottom:446.081677pt;}
.y4c_c00252{bottom:446.671541pt;}
.y21_c00252{bottom:447.244019pt;}
.y4d_c00252{bottom:448.679667pt;}
.y36_c00252{bottom:448.905819pt;}
.y2c_c00252{bottom:449.504110pt;}
.y17_c00252{bottom:449.663899pt;}
.y42_c00252{bottom:450.942950pt;}
.y4e_c00252{bottom:451.585269pt;}
.y22_c00252{bottom:452.535040pt;}
.y37_c00252{bottom:453.913511pt;}
.y41_c00252{bottom:454.913093pt;}
.y2b_c00252{bottom:455.194152pt;}
.y16_c00252{bottom:455.361467pt;}
.y23_c00252{bottom:456.756200pt;}
.y4f_c00252{bottom:459.049592pt;}
.y38_c00252{bottom:459.831327pt;}
.y40_c00252{bottom:460.623928pt;}
.y2a_c00252{bottom:461.689550pt;}
.y15_c00252{bottom:461.769569pt;}
.y3f_c00252{bottom:464.686327pt;}
.y14_c00252{bottom:464.844100pt;}
.y50_c00252{bottom:466.204075pt;}
.y24_c00252{bottom:467.230790pt;}
.y29_c00252{bottom:468.055335pt;}
.y13_c00252{bottom:470.186445pt;}
.y39_c00252{bottom:470.465221pt;}
.y3e_c00252{bottom:471.594820pt;}
.y28_c00252{bottom:472.294872pt;}
.y3b_c00252{bottom:474.016326pt;}
.y3c_c00252{bottom:474.632902pt;}
.y3d_c00252{bottom:475.056113pt;}
.y12_c00252{bottom:476.639415pt;}
.y27_c00252{bottom:477.781221pt;}
.y25_c00252{bottom:478.111386pt;}
.y3a_c00252{bottom:478.434544pt;}
.y26_c00252{bottom:484.060027pt;}
.y11_c00252{bottom:485.114772pt;}
.y2_c00252{bottom:568.082152pt;}
.ye_c00252{bottom:1003.367459pt;}
.yc_c00252{bottom:1007.783453pt;}
.yb_c00252{bottom:1020.227915pt;}
.yf_c00252{bottom:1025.121989pt;}
.yd_c00252{bottom:1040.962550pt;}
.hf_c00252{height:31.990003pt;}
.h10_c00252{height:31.990004pt;}
.h11_c00252{height:31.990006pt;}
.he_c00252{height:32.257271pt;}
.hb_c00252{height:32.257272pt;}
.hc_c00252{height:32.257274pt;}
.hd_c00252{height:32.257275pt;}
.h7_c00252{height:32.907161pt;}
.ha_c00252{height:33.297513pt;}
.h6_c00252{height:34.763072pt;}
.h3_c00252{height:46.147909pt;}
.h4_c00252{height:49.031248pt;}
.h13_c00252{height:50.040354pt;}
.h14_c00252{height:50.682132pt;}
.h15_c00252{height:51.177761pt;}
.h12_c00252{height:52.446654pt;}
.h5_c00252{height:59.565714pt;}
.h8_c00252{height:59.593748pt;}
.h9_c00252{height:79.445915pt;}
.h2_c00252{height:1159.999952pt;}
.h0_c00252{height:1159.999959pt;}
.h1_c00252{height:1160.000000pt;}
.w2_c00252{width:830.999965pt;}
.w0_c00252{width:831.000000pt;}
.w1_c00252{width:831.333333pt;}
.x0_c00252{left:0.000000pt;}
.x2_c00252{left:78.135686pt;}
.x3_c00252{left:95.315788pt;}
.x4_c00252{left:96.735260pt;}
.x18_c00252{left:119.977634pt;}
.x17_c00252{left:121.465137pt;}
.x19_c00252{left:124.463353pt;}
.x1a_c00252{left:128.774857pt;}
.x1b_c00252{left:133.544468pt;}
.x1c_c00252{left:135.991410pt;}
.x1d_c00252{left:138.666862pt;}
.x1e_c00252{left:142.086856pt;}
.x28_c00252{left:143.505744pt;}
.x1f_c00252{left:145.156780pt;}
.x20_c00252{left:152.521190pt;}
.x21_c00252{left:159.871997pt;}
.x22_c00252{left:167.366655pt;}
.x23_c00252{left:174.821307pt;}
.x24_c00252{left:178.525632pt;}
.x25_c00252{left:182.577318pt;}
.x26_c00252{left:185.963463pt;}
.x27_c00252{left:188.262839pt;}
.x8_c00252{left:204.798568pt;}
.x7_c00252{left:206.697430pt;}
.x9_c00252{left:209.442955pt;}
.xa_c00252{left:213.744503pt;}
.xb_c00252{left:218.506891pt;}
.xc_c00252{left:220.950947pt;}
.xd_c00252{left:223.623762pt;}
.xe_c00252{left:227.041187pt;}
.x3d_c00252{left:228.108486pt;}
.xf_c00252{left:229.962704pt;}
.x10_c00252{left:233.906932pt;}
.x11_c00252{left:241.567426pt;}
.x12_c00252{left:252.092435pt;}
.x13_c00252{left:258.703382pt;}
.x5_c00252{left:262.379637pt;}
.x14_c00252{left:266.467148pt;}
.x15_c00252{left:269.480012pt;}
.x16_c00252{left:273.046051pt;}
.x2a_c00252{left:290.708831pt;}
.x2b_c00252{left:291.790874pt;}
.x2c_c00252{left:293.053997pt;}
.x2d_c00252{left:296.073752pt;}
.x2e_c00252{left:298.940009pt;}
.x2f_c00252{left:304.168673pt;}
.x30_c00252{left:309.668213pt;}
.x29_c00252{left:312.650435pt;}
.x31_c00252{left:314.728661pt;}
.x32_c00252{left:317.759772pt;}
.x33_c00252{left:324.788328pt;}
.x34_c00252{left:331.889587pt;}
.x35_c00252{left:337.898220pt;}
.x36_c00252{left:340.582851pt;}
.x37_c00252{left:343.253275pt;}
.x38_c00252{left:346.273697pt;}
.x39_c00252{left:348.599989pt;}
.x3a_c00252{left:351.546252pt;}
.x3b_c00252{left:356.146534pt;}
.x3c_c00252{left:358.639645pt;}
.x3e_c00252{left:402.019318pt;}
.x1_c00252{left:590.616391pt;}
.x6_c00252{left:619.840748pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa610798baf9d51d1333b448.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.006348;font-style:normal;font-weight:normal;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_7046de81cd6215ed4ae42344.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.000000;font-style:normal;font-weight:normal;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_6c73eb2b699941bfa094bb55.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.006348;font-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_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;}
.ls1_c00253{letter-spacing:0.000000px;}
.ls0_c00253{letter-spacing:26.437499px;}
.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;}
}
.ws0_c00253{word-spacing:-18.703125px;}
.ws1_c00253{word-spacing:0.000000px;}
._0_c00253{width:1.215359px;}
._2_c00253{width:3.250854px;}
._6_c00253{width:5.209988px;}
._b_c00253{width:6.637665px;}
._9_c00253{width:9.319561px;}
._d_c00253{width:11.224385px;}
._7_c00253{width:12.548035px;}
._a_c00253{width:13.592966px;}
._c_c00253{width:15.272649px;}
._1_c00253{width:17.539671px;}
._e_c00253{width:21.527297px;}
._8_c00253{width:25.025341px;}
._3_c00253{width:26.415803px;}
._5_c00253{width:29.680664px;}
._4_c00253{width:46.681043px;}
.fc1_c00253{color:rgb(67,91,56);}
.fc0_c00253{color:rgb(0,0,0);}
.fs0_c00253{font-size:71.999997px;}
.y0_c00253{bottom:0.000000px;}
.y1_c00253{bottom:0.000008px;}
.y20_c00253{bottom:29.401163px;}
.y1f_c00253{bottom:237.920966px;}
.y1e_c00253{bottom:268.295965px;}
.y1d_c00253{bottom:301.318223px;}
.y1c_c00253{bottom:369.267875px;}
.y1b_c00253{bottom:399.642874px;}
.y1a_c00253{bottom:430.017872px;}
.y19_c00253{bottom:460.392871px;}
.y18_c00253{bottom:490.767870px;}
.y17_c00253{bottom:521.142869px;}
.y16_c00253{bottom:551.517867px;}
.y15_c00253{bottom:581.892866px;}
.y14_c00253{bottom:612.267865px;}
.y13_c00253{bottom:642.642864px;}
.y12_c00253{bottom:673.017862px;}
.y11_c00253{bottom:703.392861px;}
.y10_c00253{bottom:733.767860px;}
.yf_c00253{bottom:764.142859px;}
.ye_c00253{bottom:794.517857px;}
.yd_c00253{bottom:824.892856px;}
.yc_c00253{bottom:855.267855px;}
.yb_c00253{bottom:885.642853px;}
.ya_c00253{bottom:916.017852px;}
.y9_c00253{bottom:946.392851px;}
.y8_c00253{bottom:979.415117px;}
.y6_c00253{bottom:1043.990114px;}
.y5_c00253{bottom:1074.365113px;}
.y4_c00253{bottom:1104.740112px;}
.y3_c00253{bottom:1135.115110px;}
.y2_c00253{bottom:1165.490109px;}
.y7_c00253{bottom:1199.772371px;}
.h3_c00253{height:55.160154px;}
.h2_c00253{height:1304.999946px;}
.h0_c00253{height:1304.999953px;}
.h1_c00253{height:1305.000000px;}
.w2_c00253{width:934.874961px;}
.w0_c00253{width:934.875000px;}
.w1_c00253{width:935.250000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:87.902647px;}
.x1_c00253{left:89.140943px;}
.x3_c00253{left:452.271732px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls1_c00253{letter-spacing:0.000000pt;}
.ls0_c00253{letter-spacing:23.499999pt;}
.ws0_c00253{word-spacing:-16.625000pt;}
.ws1_c00253{word-spacing:0.000000pt;}
._0_c00253{width:1.080319pt;}
._2_c00253{width:2.889648pt;}
._6_c00253{width:4.631101pt;}
._b_c00253{width:5.900147pt;}
._9_c00253{width:8.284055pt;}
._d_c00253{width:9.977231pt;}
._7_c00253{width:11.153808pt;}
._a_c00253{width:12.082636pt;}
._c_c00253{width:13.575688pt;}
._1_c00253{width:15.590818pt;}
._e_c00253{width:19.135375pt;}
._8_c00253{width:22.244748pt;}
._3_c00253{width:23.480714pt;}
._5_c00253{width:26.382812pt;}
._4_c00253{width:41.494260pt;}
.fs0_c00253{font-size:63.999997pt;}
.y0_c00253{bottom:0.000000pt;}
.y1_c00253{bottom:0.000007pt;}
.y20_c00253{bottom:26.134367pt;}
.y1f_c00253{bottom:211.485303pt;}
.y1e_c00253{bottom:238.485302pt;}
.y1d_c00253{bottom:267.838421pt;}
.y1c_c00253{bottom:328.238111pt;}
.y1b_c00253{bottom:355.238110pt;}
.y1a_c00253{bottom:382.238109pt;}
.y19_c00253{bottom:409.238108pt;}
.y18_c00253{bottom:436.238107pt;}
.y17_c00253{bottom:463.238105pt;}
.y16_c00253{bottom:490.238104pt;}
.y15_c00253{bottom:517.238103pt;}
.y14_c00253{bottom:544.238102pt;}
.y13_c00253{bottom:571.238101pt;}
.y12_c00253{bottom:598.238100pt;}
.y11_c00253{bottom:625.238099pt;}
.y10_c00253{bottom:652.238098pt;}
.yf_c00253{bottom:679.238096pt;}
.ye_c00253{bottom:706.238095pt;}
.yd_c00253{bottom:733.238094pt;}
.yc_c00253{bottom:760.238093pt;}
.yb_c00253{bottom:787.238092pt;}
.ya_c00253{bottom:814.238091pt;}
.y9_c00253{bottom:841.238090pt;}
.y8_c00253{bottom:870.591215pt;}
.y6_c00253{bottom:927.991213pt;}
.y5_c00253{bottom:954.991211pt;}
.y4_c00253{bottom:981.991210pt;}
.y3_c00253{bottom:1008.991209pt;}
.y2_c00253{bottom:1035.991208pt;}
.y7_c00253{bottom:1066.464330pt;}
.h3_c00253{height:49.031248pt;}
.h2_c00253{height:1159.999952pt;}
.h0_c00253{height:1159.999959pt;}
.h1_c00253{height:1160.000000pt;}
.w2_c00253{width:830.999965pt;}
.w0_c00253{width:831.000000pt;}
.w1_c00253{width:831.333333pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:78.135686pt;}
.x1_c00253{left:79.236393pt;}
.x3_c00253{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_872b590cd54defca548261b0.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.006348;font-style:normal;font-weight:normal;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_06311db9fd621ad1f794c628.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.006348;font-style:normal;font-weight:normal;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_8d4d0e0a2736df95293e1313.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.000000;font-style:normal;font-weight:normal;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_8bdcfbf3db9103993633f1c7.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:0.772949;font-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_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);}
.v0_c00254{vertical-align:0.000000px;}
.ls0_c00254{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00254{word-spacing:-0.059985px;}
.ws1_c00254{word-spacing:0.000000px;}
._2_c00254{width:1.741538px;}
._3_c00254{width:4.615010px;}
._5_c00254{width:8.745808px;}
._0_c00254{width:10.238570px;}
._1_c00254{width:12.474563px;}
._4_c00254{width:21.183220px;}
._6_c00254{width:24.268591px;}
.fc1_c00254{color:rgb(0,0,0);}
.fc0_c00254{color:rgb(67,91,56);}
.fs1_c00254{font-size:59.984997px;}
.fs0_c00254{font-size:71.999997px;}
.y0_c00254{bottom:0.000000px;}
.y1_c00254{bottom:0.000008px;}
.ye_c00254{bottom:29.401163px;}
.yd_c00254{bottom:374.479436px;}
.yc_c00254{bottom:392.479436px;}
.yb_c00254{bottom:410.479435px;}
.ya_c00254{bottom:942.178673px;}
.y9_c00254{bottom:972.553672px;}
.y8_c00254{bottom:1002.928671px;}
.y7_c00254{bottom:1033.303669px;}
.y6_c00254{bottom:1063.678668px;}
.y5_c00254{bottom:1094.053667px;}
.y4_c00254{bottom:1124.428666px;}
.y3_c00254{bottom:1154.803664px;}
.y2_c00254{bottom:1194.131553px;}
.h4_c00254{height:45.955303px;}
.h3_c00254{height:55.160154px;}
.h2_c00254{height:1304.999946px;}
.h0_c00254{height:1304.999953px;}
.h1_c00254{height:1305.000000px;}
.w2_c00254{width:934.874961px;}
.w0_c00254{width:934.875000px;}
.w1_c00254{width:935.250000px;}
.x0_c00254{left:0.000000px;}
.x1_c00254{left:94.435088px;}
.x4_c00254{left:252.784588px;}
.x2_c00254{left:336.614663px;}
.x3_c00254{left:375.866614px;}
.x5_c00254{left:452.271732px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws0_c00254{word-spacing:-0.053320pt;}
.ws1_c00254{word-spacing:0.000000pt;}
._2_c00254{width:1.548034pt;}
._3_c00254{width:4.102231pt;}
._5_c00254{width:7.774051pt;}
._0_c00254{width:9.100951pt;}
._1_c00254{width:11.088501pt;}
._4_c00254{width:18.829529pt;}
._6_c00254{width:21.572081pt;}
.fs1_c00254{font-size:53.319997pt;}
.fs0_c00254{font-size:63.999997pt;}
.y0_c00254{bottom:0.000000pt;}
.y1_c00254{bottom:0.000007pt;}
.ye_c00254{bottom:26.134367pt;}
.yd_c00254{bottom:332.870610pt;}
.yc_c00254{bottom:348.870609pt;}
.yb_c00254{bottom:364.870609pt;}
.ya_c00254{bottom:837.492154pt;}
.y9_c00254{bottom:864.492153pt;}
.y8_c00254{bottom:891.492152pt;}
.y7_c00254{bottom:918.492151pt;}
.y6_c00254{bottom:945.492149pt;}
.y5_c00254{bottom:972.492148pt;}
.y4_c00254{bottom:999.492147pt;}
.y3_c00254{bottom:1026.492146pt;}
.y2_c00254{bottom:1061.450269pt;}
.h4_c00254{height:40.849158pt;}
.h3_c00254{height:49.031248pt;}
.h2_c00254{height:1159.999952pt;}
.h0_c00254{height:1159.999959pt;}
.h1_c00254{height:1160.000000pt;}
.w2_c00254{width:830.999965pt;}
.w0_c00254{width:831.000000pt;}
.w1_c00254{width:831.333333pt;}
.x0_c00254{left:0.000000pt;}
.x1_c00254{left:83.942301pt;}
.x4_c00254{left:224.697412pt;}
.x2_c00254{left:299.213034pt;}
.x3_c00254{left:334.103657pt;}
.x5_c00254{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:0.734863;font-style:normal;font-weight:normal;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_416b1edc7256a44264dfc044.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:0.743000;font-style:normal;font-weight: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_3170971f28d2560f5c1fb921.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;line-height:0.769531;font-style:normal;font-weight: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_6e8d7067c2fa04a6e5207d09.woff2')format("woff");}.ff6_c00255{font-family:ff6_c00255;line-height:1.171387;font-style:normal;font-weight: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_c00255;src:url('chunks/assets/font_70b59ba2a0ab96de283e01c9.woff2')format("woff");}.ff7_c00255{font-family:ff7_c00255;line-height:1.000000;font-style:normal;font-weight: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_c00255;src:url('chunks/assets/font_ae894e2ef7545a07e93bde0c.woff2')format("woff");}.ff8_c00255{font-family:ff8_c00255;line-height:1.006348;font-style:normal;font-weight: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_c00255;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00255{font-family:ff9_c00255;line-height:0.940000;font-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_c00255{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00255{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00255{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00255{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00255{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00255{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00255{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00255{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00255{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00255{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00255{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00255{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00255{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00255{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00255{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00255{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00255{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00255{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00255{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00255{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00255{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00255{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00255{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00255{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00255{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00255{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00255{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00255{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00255{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00255{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00255{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00255{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00255{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00255{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00255{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00255{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00255{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00255{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00255{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00255{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00255{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00255{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00255{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00255{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00255{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00255{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00255{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00255{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00255{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00255{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00255{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00255{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00255{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00255{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00255{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00255{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00255{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00255{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00255{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00255{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00255{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00255{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00255{vertical-align:0.000000px;}
.v2_c00255{vertical-align:1.280304px;}
.v1_c00255{vertical-align:2.774880px;}
.ls0_c00255{letter-spacing:0.000000px;}
.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;}
}
.ws5_c00255{word-spacing:-41.689573px;}
.ws1_c00255{word-spacing:-15.171263px;}
.ws3_c00255{word-spacing:-0.088200px;}
.ws2_c00255{word-spacing:-0.055755px;}
.ws6_c00255{word-spacing:0.000000px;}
.ws4_c00255{word-spacing:288.058683px;}
.ws0_c00255{word-spacing:662.351128px;}
._1_c00255{width:1.661132px;}
._0_c00255{width:3.766728px;}
._2_c00255{width:21.291847px;}
.fc4_c00255{color:transparent;}
.fc3_c00255{color:rgb(67,91,56);}
.fc2_c00255{color:rgb(255,255,255);}
.fc1_c00255{color:rgb(0,0,0);}
.fc0_c00255{color:rgb(9,71,81);}
.fsb_c00255{font-size:39.757786px;}
.fse_c00255{font-size:41.999830px;}
.fsa_c00255{font-size:42.000061px;}
.fs4_c00255{font-size:47.368230px;}
.fs1_c00255{font-size:47.368231px;}
.fs5_c00255{font-size:47.368232px;}
.fs2_c00255{font-size:47.368233px;}
.fs3_c00255{font-size:47.368235px;}
.fs0_c00255{font-size:51.661596px;}
.fs7_c00255{font-size:55.754999px;}
.fsf_c00255{font-size:59.984997px;}
.fs8_c00255{font-size:71.999997px;}
.fsd_c00255{font-size:74.424240px;}
.fs6_c00255{font-size:77.011488px;}
.fs9_c00255{font-size:88.200132px;}
.fsc_c00255{font-size:95.984996px;}
.y0_c00255{bottom:0.000000px;}
.y1_c00255{bottom:0.000008px;}
.y4f_c00255{bottom:29.401163px;}
.y46_c00255{bottom:209.620539px;}
.y45_c00255{bottom:239.995538px;}
.y44_c00255{bottom:270.370537px;}
.y43_c00255{bottom:300.745535px;}
.y4c_c00255{bottom:337.324226px;}
.y2_c00255{bottom:401.525233px;}
.y4e_c00255{bottom:486.888370px;}
.y10_c00255{bottom:493.328373px;}
.y24_c00255{bottom:493.343471px;}
.yf_c00255{bottom:493.853637px;}
.y25_c00255{bottom:493.873313px;}
.y38_c00255{bottom:493.959419px;}
.y23_c00255{bottom:494.588120px;}
.y39_c00255{bottom:494.792744px;}
.y37_c00255{bottom:494.812830px;}
.ye_c00255{bottom:494.919783px;}
.y22_c00255{bottom:495.839401px;}
.y36_c00255{bottom:495.847621px;}
.yd_c00255{bottom:495.993006px;}
.y26_c00255{bottom:496.289812px;}
.y11_c00255{bottom:496.353473px;}
.y3a_c00255{bottom:496.973987px;}
.y21_c00255{bottom:497.484272px;}
.yc_c00255{bottom:497.644566px;}
.y35_c00255{bottom:498.050345px;}
.y3b_c00255{bottom:498.364888px;}
.y20_c00255{bottom:499.172531px;}
.yb_c00255{bottom:499.338107px;}
.y3c_c00255{bottom:500.063187px;}
.y12_c00255{bottom:500.630691px;}
.y1f_c00255{bottom:501.037769px;}
.ya_c00255{bottom:501.208172px;}
.y27_c00255{bottom:501.390631px;}
.y34_c00255{bottom:501.842067px;}
.y3d_c00255{bottom:502.505484px;}
.y13_c00255{bottom:503.149449px;}
.y3e_c00255{bottom:504.764445px;}
.y28_c00255{bottom:505.018795px;}
.y1e_c00255{bottom:505.692124px;}
.y9_c00255{bottom:505.871886px;}
.y33_c00255{bottom:507.310818px;}
.y3f_c00255{bottom:508.033427px;}
.y14_c00255{bottom:509.101992px;}
.y29_c00255{bottom:510.652700px;}
.y32_c00255{bottom:511.777409px;}
.y1d_c00255{bottom:512.093493px;}
.y8_c00255{bottom:512.281758px;}
.y15_c00255{bottom:513.850725px;}
.y40_c00255{bottom:516.430683px;}
.y2a_c00255{bottom:517.310350px;}
.y31_c00255{bottom:518.202172px;}
.y1c_c00255{bottom:519.400636px;}
.y7_c00255{bottom:519.490837px;}
.y30_c00255{bottom:522.772046px;}
.y6_c00255{bottom:522.949612px;}
.y41_c00255{bottom:524.479585px;}
.y16_c00255{bottom:525.634639px;}
.y1b_c00255{bottom:526.562252px;}
.y5_c00255{bottom:528.959931px;}
.y2b_c00255{bottom:529.273374px;}
.y2f_c00255{bottom:530.544173px;}
.y1a_c00255{bottom:531.331479px;}
.y2d_c00255{bottom:533.268115px;}
.y4d_c00255{bottom:533.961835px;}
.y2e_c00255{bottom:534.437983px;}
.y4_c00255{bottom:536.219342px;}
.y19_c00255{bottom:537.503802px;}
.y17_c00255{bottom:537.875201px;}
.y2c_c00255{bottom:538.238934px;}
.y18_c00255{bottom:544.567278px;}
.y3_c00255{bottom:545.754118px;}
.y42_c00255{bottom:639.092601px;}
.y50_c00255{bottom:1021.439863px;}
.y4a_c00255{bottom:1128.788247px;}
.y48_c00255{bottom:1133.756518px;}
.y47_c00255{bottom:1147.756538px;}
.y4b_c00255{bottom:1153.262281px;}
.y49_c00255{bottom:1171.082779px;}
.h15_c00255{height:32.176627px;}
.h8_c00255{height:35.988753px;}
.h9_c00255{height:35.988755px;}
.ha_c00255{height:35.988756px;}
.h7_c00255{height:36.289430px;}
.h4_c00255{height:36.289431px;}
.h5_c00255{height:36.289433px;}
.h6_c00255{height:36.289434px;}
.h10_c00255{height:37.020556px;}
.h3_c00255{height:37.459702px;}
.hf_c00255{height:39.108455px;}
.h16_c00255{height:45.588598px;}
.hc_c00255{height:51.916398px;}
.hd_c00255{height:55.160154px;}
.h13_c00255{height:57.017399px;}
.h14_c00255{height:57.575702px;}
.hb_c00255{height:59.070278px;}
.he_c00255{height:67.011428px;}
.h11_c00255{height:67.042966px;}
.h12_c00255{height:89.376654px;}
.h2_c00255{height:1304.999946px;}
.h0_c00255{height:1304.999953px;}
.h1_c00255{height:1305.000000px;}
.w2_c00255{width:934.874961px;}
.w0_c00255{width:934.875000px;}
.w1_c00255{width:935.250000px;}
.x0_c00255{left:0.000000px;}
.x39_c00255{left:87.902647px;}
.x3a_c00255{left:107.230262px;}
.x3b_c00255{left:108.827167px;}
.x40_c00255{left:130.690629px;}
.x14_c00255{left:134.974838px;}
.x13_c00255{left:136.648279px;}
.x15_c00255{left:140.021272px;}
.x16_c00255{left:144.871714px;}
.x17_c00255{left:150.237526px;}
.x18_c00255{left:152.990336px;}
.x19_c00255{left:156.000220px;}
.x1a_c00255{left:159.847713px;}
.x24_c00255{left:161.443962px;}
.x1b_c00255{left:163.301377px;}
.x1c_c00255{left:171.586339px;}
.x1d_c00255{left:179.855997px;}
.x1e_c00255{left:188.287487px;}
.x1f_c00255{left:196.673970px;}
.x20_c00255{left:200.841336px;}
.x21_c00255{left:205.399483px;}
.x22_c00255{left:209.208896px;}
.x23_c00255{left:211.795693px;}
.x3_c00255{left:230.398389px;}
.x2_c00255{left:232.534609px;}
.x4_c00255{left:235.623324px;}
.x5_c00255{left:240.462566px;}
.x6_c00255{left:245.820252px;}
.x7_c00255{left:248.569815px;}
.x8_c00255{left:251.576732px;}
.x9_c00255{left:255.421336px;}
.x3d_c00255{left:256.622047px;}
.xa_c00255{left:258.708042px;}
.xb_c00255{left:263.145298px;}
.xc_c00255{left:271.763354px;}
.xd_c00255{left:283.603990px;}
.xe_c00255{left:291.041304px;}
.xf_c00255{left:294.435991px;}
.x3c_c00255{left:295.615161px;}
.x10_c00255{left:299.775542px;}
.x11_c00255{left:303.165014px;}
.x12_c00255{left:307.176807px;}
.x25_c00255{left:327.047435px;}
.x26_c00255{left:328.264734px;}
.x27_c00255{left:329.685747px;}
.x28_c00255{left:333.082971px;}
.x29_c00255{left:336.307511px;}
.x2a_c00255{left:342.189757px;}
.x2b_c00255{left:348.376740px;}
.x2c_c00255{left:354.069743px;}
.x2d_c00255{left:357.479743px;}
.x2e_c00255{left:365.386869px;}
.x2f_c00255{left:373.375785px;}
.x30_c00255{left:380.135498px;}
.x31_c00255{left:383.155707px;}
.x32_c00255{left:386.159935px;}
.x33_c00255{left:389.557910px;}
.x34_c00255{left:392.174988px;}
.x35_c00255{left:395.489533px;}
.x36_c00255{left:400.664851px;}
.x37_c00255{left:403.469600px;}
.x3f_c00255{left:452.271732px;}
.x38_c00255{left:664.443440px;}
.x1_c00255{left:697.320842px;}
.x3e_c00255{left:757.088990px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.v2_c00255{vertical-align:1.138048pt;}
.v1_c00255{vertical-align:2.466560pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws5_c00255{word-spacing:-37.057398pt;}
.ws1_c00255{word-spacing:-13.485567pt;}
.ws3_c00255{word-spacing:-0.078400pt;}
.ws2_c00255{word-spacing:-0.049560pt;}
.ws6_c00255{word-spacing:0.000000pt;}
.ws4_c00255{word-spacing:256.052163pt;}
.ws0_c00255{word-spacing:588.756558pt;}
._1_c00255{width:1.476562pt;}
._0_c00255{width:3.348203pt;}
._2_c00255{width:18.926086pt;}
.fsb_c00255{font-size:35.340254pt;}
.fse_c00255{font-size:37.333182pt;}
.fsa_c00255{font-size:37.333388pt;}
.fs4_c00255{font-size:42.105093pt;}
.fs1_c00255{font-size:42.105094pt;}
.fs5_c00255{font-size:42.105095pt;}
.fs2_c00255{font-size:42.105096pt;}
.fs3_c00255{font-size:42.105098pt;}
.fs0_c00255{font-size:45.921418pt;}
.fs7_c00255{font-size:49.559999pt;}
.fsf_c00255{font-size:53.319997pt;}
.fs8_c00255{font-size:63.999997pt;}
.fsd_c00255{font-size:66.154880pt;}
.fs6_c00255{font-size:68.454656pt;}
.fs9_c00255{font-size:78.400117pt;}
.fsc_c00255{font-size:85.319996pt;}
.y0_c00255{bottom:0.000000pt;}
.y1_c00255{bottom:0.000007pt;}
.y4f_c00255{bottom:26.134367pt;}
.y46_c00255{bottom:186.329368pt;}
.y45_c00255{bottom:213.329367pt;}
.y44_c00255{bottom:240.329366pt;}
.y43_c00255{bottom:267.329365pt;}
.y4c_c00255{bottom:299.843757pt;}
.y2_c00255{bottom:356.911319pt;}
.y4e_c00255{bottom:432.789662pt;}
.y10_c00255{bottom:438.514110pt;}
.y24_c00255{bottom:438.527530pt;}
.yf_c00255{bottom:438.981010pt;}
.y25_c00255{bottom:438.998500pt;}
.y38_c00255{bottom:439.075039pt;}
.y23_c00255{bottom:439.633885pt;}
.y39_c00255{bottom:439.815773pt;}
.y37_c00255{bottom:439.833627pt;}
.ye_c00255{bottom:439.928696pt;}
.y22_c00255{bottom:440.746134pt;}
.y36_c00255{bottom:440.753441pt;}
.yd_c00255{bottom:440.882672pt;}
.y26_c00255{bottom:441.146500pt;}
.y11_c00255{bottom:441.203087pt;}
.y3a_c00255{bottom:441.754655pt;}
.y21_c00255{bottom:442.208242pt;}
.yc_c00255{bottom:442.350726pt;}
.y35_c00255{bottom:442.711417pt;}
.y3b_c00255{bottom:442.991012pt;}
.y20_c00255{bottom:443.708917pt;}
.yb_c00255{bottom:443.856095pt;}
.y3c_c00255{bottom:444.500610pt;}
.y12_c00255{bottom:445.005059pt;}
.y1f_c00255{bottom:445.366906pt;}
.ya_c00255{bottom:445.518375pt;}
.y27_c00255{bottom:445.680561pt;}
.y34_c00255{bottom:446.081837pt;}
.y3d_c00255{bottom:446.671541pt;}
.y13_c00255{bottom:447.243955pt;}
.y3e_c00255{bottom:448.679507pt;}
.y28_c00255{bottom:448.905595pt;}
.y1e_c00255{bottom:449.504110pt;}
.y9_c00255{bottom:449.663899pt;}
.y33_c00255{bottom:450.942950pt;}
.y3f_c00255{bottom:451.585269pt;}
.y14_c00255{bottom:452.535104pt;}
.y29_c00255{bottom:453.913511pt;}
.y32_c00255{bottom:454.913253pt;}
.y1d_c00255{bottom:455.194216pt;}
.y8_c00255{bottom:455.361563pt;}
.y15_c00255{bottom:456.756200pt;}
.y40_c00255{bottom:459.049496pt;}
.y2a_c00255{bottom:459.831423pt;}
.y31_c00255{bottom:460.624152pt;}
.y1c_c00255{bottom:461.689454pt;}
.y7_c00255{bottom:461.769633pt;}
.y30_c00255{bottom:464.686263pt;}
.y6_c00255{bottom:464.844100pt;}
.y41_c00255{bottom:466.204075pt;}
.y16_c00255{bottom:467.230790pt;}
.y1b_c00255{bottom:468.055335pt;}
.y5_c00255{bottom:470.186605pt;}
.y2b_c00255{bottom:470.465221pt;}
.y2f_c00255{bottom:471.594820pt;}
.y1a_c00255{bottom:472.294648pt;}
.y2d_c00255{bottom:474.016102pt;}
.y4d_c00255{bottom:474.632742pt;}
.y2e_c00255{bottom:475.055985pt;}
.y4_c00255{bottom:476.639415pt;}
.y19_c00255{bottom:477.781157pt;}
.y17_c00255{bottom:478.111290pt;}
.y2c_c00255{bottom:478.434608pt;}
.y18_c00255{bottom:484.059803pt;}
.y3_c00255{bottom:485.114772pt;}
.y42_c00255{bottom:568.082312pt;}
.y50_c00255{bottom:907.946545pt;}
.y4a_c00255{bottom:1003.367331pt;}
.y48_c00255{bottom:1007.783571pt;}
.y47_c00255{bottom:1020.228034pt;}
.y4b_c00255{bottom:1025.122028pt;}
.y49_c00255{bottom:1040.962470pt;}
.h15_c00255{height:28.601447pt;}
.h8_c00255{height:31.990003pt;}
.h9_c00255{height:31.990004pt;}
.ha_c00255{height:31.990006pt;}
.h7_c00255{height:32.257271pt;}
.h4_c00255{height:32.257272pt;}
.h5_c00255{height:32.257274pt;}
.h6_c00255{height:32.257275pt;}
.h10_c00255{height:32.907161pt;}
.h3_c00255{height:33.297513pt;}
.hf_c00255{height:34.763072pt;}
.h16_c00255{height:40.523198pt;}
.hc_c00255{height:46.147909pt;}
.hd_c00255{height:49.031248pt;}
.h13_c00255{height:50.682132pt;}
.h14_c00255{height:51.178401pt;}
.hb_c00255{height:52.506913pt;}
.he_c00255{height:59.565714pt;}
.h11_c00255{height:59.593748pt;}
.h12_c00255{height:79.445915pt;}
.h2_c00255{height:1159.999952pt;}
.h0_c00255{height:1159.999959pt;}
.h1_c00255{height:1160.000000pt;}
.w2_c00255{width:830.999965pt;}
.w0_c00255{width:831.000000pt;}
.w1_c00255{width:831.333333pt;}
.x0_c00255{left:0.000000pt;}
.x39_c00255{left:78.135686pt;}
.x3a_c00255{left:95.315788pt;}
.x3b_c00255{left:96.735260pt;}
.x40_c00255{left:116.169448pt;}
.x14_c00255{left:119.977634pt;}
.x13_c00255{left:121.465137pt;}
.x15_c00255{left:124.463353pt;}
.x16_c00255{left:128.774857pt;}
.x17_c00255{left:133.544468pt;}
.x18_c00255{left:135.991410pt;}
.x19_c00255{left:138.666862pt;}
.x1a_c00255{left:142.086856pt;}
.x24_c00255{left:143.505744pt;}
.x1b_c00255{left:145.156780pt;}
.x1c_c00255{left:152.521190pt;}
.x1d_c00255{left:159.871997pt;}
.x1e_c00255{left:167.366655pt;}
.x1f_c00255{left:174.821307pt;}
.x20_c00255{left:178.525632pt;}
.x21_c00255{left:182.577318pt;}
.x22_c00255{left:185.963463pt;}
.x23_c00255{left:188.262839pt;}
.x3_c00255{left:204.798568pt;}
.x2_c00255{left:206.697430pt;}
.x4_c00255{left:209.442955pt;}
.x5_c00255{left:213.744503pt;}
.x6_c00255{left:218.506891pt;}
.x7_c00255{left:220.950947pt;}
.x8_c00255{left:223.623762pt;}
.x9_c00255{left:227.041187pt;}
.x3d_c00255{left:228.108486pt;}
.xa_c00255{left:229.962704pt;}
.xb_c00255{left:233.906932pt;}
.xc_c00255{left:241.567426pt;}
.xd_c00255{left:252.092435pt;}
.xe_c00255{left:258.703382pt;}
.xf_c00255{left:261.720880pt;}
.x3c_c00255{left:262.769032pt;}
.x10_c00255{left:266.467148pt;}
.x11_c00255{left:269.480012pt;}
.x12_c00255{left:273.046051pt;}
.x25_c00255{left:290.708831pt;}
.x26_c00255{left:291.790874pt;}
.x27_c00255{left:293.053997pt;}
.x28_c00255{left:296.073752pt;}
.x29_c00255{left:298.940009pt;}
.x2a_c00255{left:304.168673pt;}
.x2b_c00255{left:309.668213pt;}
.x2c_c00255{left:314.728661pt;}
.x2d_c00255{left:317.759772pt;}
.x2e_c00255{left:324.788328pt;}
.x2f_c00255{left:331.889587pt;}
.x30_c00255{left:337.898220pt;}
.x31_c00255{left:340.582851pt;}
.x32_c00255{left:343.253275pt;}
.x33_c00255{left:346.273697pt;}
.x34_c00255{left:348.599989pt;}
.x35_c00255{left:351.546252pt;}
.x36_c00255{left:356.146534pt;}
.x37_c00255{left:358.639645pt;}
.x3f_c00255{left:402.019318pt;}
.x38_c00255{left:590.616391pt;}
.x1_c00255{left:619.840748pt;}
.x3e_c00255{left:672.967991pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90b679bacbb7eaa80beabcfb.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.006348;font-style:normal;font-weight:normal;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_112fec1263b87d7b6745c834.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.006348;font-style:normal;font-weight:normal;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_1292fe46c55bb3d75896d441.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.005371;font-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_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);}
.v0_c00256{vertical-align:0.000000px;}
.ls0_c00256{letter-spacing:0.000000px;}
.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:0.000000px;}
._3_c00256{width:1.195314px;}
._9_c00256{width:2.363291px;}
._b_c00256{width:4.662596px;}
._6_c00256{width:6.302994px;}
._2_c00256{width:8.010541px;}
._4_c00256{width:9.811206px;}
._8_c00256{width:11.003201px;}
._1_c00256{width:12.550782px;}
._5_c00256{width:13.670424px;}
._0_c00256{width:15.321669px;}
._a_c00256{width:19.769195px;}
._c_c00256{width:22.071670px;}
._d_c00256{width:23.783201px;}
._7_c00256{width:26.974386px;}
._e_c00256{width:32.062500px;}
.fc1_c00256{color:rgb(67,91,56);}
.fc0_c00256{color:rgb(0,0,0);}
.fs0_c00256{font-size:71.999997px;}
.y0_c00256{bottom:0.000000px;}
.y1_c00256{bottom:0.000008px;}
.y23_c00256{bottom:29.400983px;}
.y22_c00256{bottom:110.018155px;}
.y21_c00256{bottom:140.393154px;}
.y20_c00256{bottom:170.768153px;}
.y1f_c00256{bottom:201.143152px;}
.y1e_c00256{bottom:231.518150px;}
.y1d_c00256{bottom:261.893149px;}
.y1c_c00256{bottom:298.186512px;}
.y1b_c00256{bottom:362.761689px;}
.y1a_c00256{bottom:393.136688px;}
.y19_c00256{bottom:423.511686px;}
.y18_c00256{bottom:456.533765px;}
.y17_c00256{bottom:517.906559px;}
.y16_c00256{bottom:548.281558px;}
.y15_c00256{bottom:578.656556px;}
.y14_c00256{bottom:609.031555px;}
.y13_c00256{bottom:639.406554px;}
.y12_c00256{bottom:669.781552px;}
.y11_c00256{bottom:700.156551px;}
.y10_c00256{bottom:730.531550px;}
.yf_c00256{bottom:760.906549px;}
.ye_c00256{bottom:791.281547px;}
.yd_c00256{bottom:821.656546px;}
.yc_c00256{bottom:852.031545px;}
.yb_c00256{bottom:882.406544px;}
.ya_c00256{bottom:912.781542px;}
.y9_c00256{bottom:945.803632px;}
.y7_c00256{bottom:1008.828152px;}
.y6_c00256{bottom:1039.203151px;}
.y5_c00256{bottom:1069.578150px;}
.y4_c00256{bottom:1099.953149px;}
.y3_c00256{bottom:1130.328147px;}
.y2_c00256{bottom:1160.703146px;}
.y8_c00256{bottom:1199.772371px;}
.h3_c00256{height:55.160154px;}
.h2_c00256{height:1304.999946px;}
.h0_c00256{height:1304.999953px;}
.h1_c00256{height:1305.000000px;}
.w2_c00256{width:934.874961px;}
.w0_c00256{width:934.875000px;}
.w1_c00256{width:935.250000px;}
.x0_c00256{left:0.000000px;}
.x2_c00256{left:87.902647px;}
.x1_c00256{left:89.140943px;}
.x3_c00256{left:452.271732px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws0_c00256{word-spacing:0.000000pt;}
._3_c00256{width:1.062501pt;}
._9_c00256{width:2.100703pt;}
._b_c00256{width:4.144530pt;}
._6_c00256{width:5.602661pt;}
._2_c00256{width:7.120481pt;}
._4_c00256{width:8.721072pt;}
._8_c00256{width:9.780623pt;}
._1_c00256{width:11.156251pt;}
._5_c00256{width:12.151488pt;}
._0_c00256{width:13.619261pt;}
._a_c00256{width:17.572618pt;}
._c_c00256{width:19.619262pt;}
._d_c00256{width:21.140623pt;}
._7_c00256{width:23.977232pt;}
._e_c00256{width:28.500000pt;}
.fs0_c00256{font-size:63.999997pt;}
.y0_c00256{bottom:0.000000pt;}
.y1_c00256{bottom:0.000007pt;}
.y23_c00256{bottom:26.134207pt;}
.y22_c00256{bottom:97.793916pt;}
.y21_c00256{bottom:124.793915pt;}
.y20_c00256{bottom:151.793914pt;}
.y1f_c00256{bottom:178.793913pt;}
.y1e_c00256{bottom:205.793911pt;}
.y1d_c00256{bottom:232.793910pt;}
.y1c_c00256{bottom:265.054677pt;}
.y1b_c00256{bottom:322.454835pt;}
.y1a_c00256{bottom:349.454833pt;}
.y19_c00256{bottom:376.454832pt;}
.y18_c00256{bottom:405.807791pt;}
.y17_c00256{bottom:460.361386pt;}
.y16_c00256{bottom:487.361384pt;}
.y15_c00256{bottom:514.361383pt;}
.y14_c00256{bottom:541.361382pt;}
.y13_c00256{bottom:568.361381pt;}
.y12_c00256{bottom:595.361380pt;}
.y11_c00256{bottom:622.361379pt;}
.y10_c00256{bottom:649.361378pt;}
.yf_c00256{bottom:676.361377pt;}
.ye_c00256{bottom:703.361375pt;}
.yd_c00256{bottom:730.361374pt;}
.yc_c00256{bottom:757.361373pt;}
.yb_c00256{bottom:784.361372pt;}
.ya_c00256{bottom:811.361371pt;}
.y9_c00256{bottom:840.714339pt;}
.y7_c00256{bottom:896.736135pt;}
.y6_c00256{bottom:923.736134pt;}
.y5_c00256{bottom:950.736133pt;}
.y4_c00256{bottom:977.736132pt;}
.y3_c00256{bottom:1004.736131pt;}
.y2_c00256{bottom:1031.736130pt;}
.y8_c00256{bottom:1066.464330pt;}
.h3_c00256{height:49.031248pt;}
.h2_c00256{height:1159.999952pt;}
.h0_c00256{height:1159.999959pt;}
.h1_c00256{height:1160.000000pt;}
.w2_c00256{width:830.999965pt;}
.w0_c00256{width:831.000000pt;}
.w1_c00256{width:831.333333pt;}
.x0_c00256{left:0.000000pt;}
.x2_c00256{left:78.135686pt;}
.x1_c00256{left:79.236393pt;}
.x3_c00256{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9040e1b9c0004700a7efea5e.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.000000;font-style:normal;font-weight:normal;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_e9006ffe338e6421de256563.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.006348;font-style:normal;font-weight:normal;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_6dec7f33231a4aa2208f4ec9.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.005371;font-style:normal;font-weight:normal;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_c1e0ed1fe1fb784f43636618.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:1.006348;font-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_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);}
.v0_c00257{vertical-align:0.000000px;}
.ls0_c00257{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00257{word-spacing:-15.582041px;}
.ws0_c00257{word-spacing:-0.059985px;}
.ws2_c00257{word-spacing:0.000000px;}
._1_c00257{width:3.475020px;}
._0_c00257{width:7.566475px;}
._3_c00257{width:18.173298px;}
._2_c00257{width:39.369357px;}
.fc2_c00257{color:rgb(74,93,83);}
.fc1_c00257{color:rgb(0,0,0);}
.fc0_c00257{color:rgb(93,156,116);}
.fs0_c00257{font-size:59.984997px;}
.fs1_c00257{font-size:71.999997px;}
.y0_c00257{bottom:0.000000px;}
.y1_c00257{bottom:0.000008px;}
.y8_c00257{bottom:29.401163px;}
.y6_c00257{bottom:172.474805px;}
.y5_c00257{bottom:192.724804px;}
.y4_c00257{bottom:212.974803px;}
.y3_c00257{bottom:233.224802px;}
.y2_c00257{bottom:253.474801px;}
.y7_c00257{bottom:1199.772371px;}
.h3_c00257{height:45.955303px;}
.h4_c00257{height:55.160154px;}
.h2_c00257{height:1304.999946px;}
.h0_c00257{height:1304.999953px;}
.h1_c00257{height:1305.000000px;}
.w2_c00257{width:934.874961px;}
.w0_c00257{width:934.875000px;}
.w1_c00257{width:935.250000px;}
.x0_c00257{left:0.000000px;}
.x2_c00257{left:87.902647px;}
.x1_c00257{left:133.690271px;}
.x3_c00257{left:452.271732px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws1_c00257{word-spacing:-13.850703pt;}
.ws0_c00257{word-spacing:-0.053320pt;}
.ws2_c00257{word-spacing:0.000000pt;}
._1_c00257{width:3.088907pt;}
._0_c00257{width:6.725756pt;}
._3_c00257{width:16.154043pt;}
._2_c00257{width:34.994984pt;}
.fs0_c00257{font-size:53.319997pt;}
.fs1_c00257{font-size:63.999997pt;}
.y0_c00257{bottom:0.000000pt;}
.y1_c00257{bottom:0.000007pt;}
.y8_c00257{bottom:26.134367pt;}
.y6_c00257{bottom:153.310938pt;}
.y5_c00257{bottom:171.310937pt;}
.y4_c00257{bottom:189.310936pt;}
.y3_c00257{bottom:207.310935pt;}
.y2_c00257{bottom:225.310935pt;}
.y7_c00257{bottom:1066.464330pt;}
.h3_c00257{height:40.849158pt;}
.h4_c00257{height:49.031248pt;}
.h2_c00257{height:1159.999952pt;}
.h0_c00257{height:1159.999959pt;}
.h1_c00257{height:1160.000000pt;}
.w2_c00257{width:830.999965pt;}
.w0_c00257{width:831.000000pt;}
.w1_c00257{width:831.333333pt;}
.x0_c00257{left:0.000000pt;}
.x2_c00257{left:78.135686pt;}
.x1_c00257{left:118.835797pt;}
.x3_c00257{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9040e1b9c0004700a7efea5e.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.000000;font-style:normal;font-weight:normal;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_e9006ffe338e6421de256563.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.006348;font-style:normal;font-weight:normal;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_897e4c9d5888870d20e6cf36.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.005371;font-style:normal;font-weight:normal;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_c1e0ed1fe1fb784f43636618.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:1.006348;font-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_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);}
.v0_c00258{vertical-align:0.000000px;}
.ls0_c00258{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00258{word-spacing:-0.059985px;}
.ws1_c00258{word-spacing:0.000000px;}
._2_c00258{width:1.294855px;}
._1_c00258{width:3.475020px;}
._0_c00258{width:7.566475px;}
._3_c00258{width:21.488829px;}
.fc2_c00258{color:rgb(74,93,83);}
.fc1_c00258{color:rgb(0,0,0);}
.fc0_c00258{color:rgb(93,156,116);}
.fs0_c00258{font-size:59.984997px;}
.fs1_c00258{font-size:71.999997px;}
.y0_c00258{bottom:0.000000px;}
.y1_c00258{bottom:0.000008px;}
.y8_c00258{bottom:29.401163px;}
.y6_c00258{bottom:159.821345px;}
.y5_c00258{bottom:180.071344px;}
.y4_c00258{bottom:200.321344px;}
.y3_c00258{bottom:220.571343px;}
.y2_c00258{bottom:240.821342px;}
.y7_c00258{bottom:1199.772371px;}
.h3_c00258{height:45.955303px;}
.h4_c00258{height:55.160154px;}
.h2_c00258{height:1304.999946px;}
.h0_c00258{height:1304.999953px;}
.h1_c00258{height:1305.000000px;}
.w2_c00258{width:934.874961px;}
.w0_c00258{width:934.875000px;}
.w1_c00258{width:935.250000px;}
.x0_c00258{left:0.000000px;}
.x2_c00258{left:87.902647px;}
.x1_c00258{left:133.690271px;}
.x3_c00258{left:452.271732px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws0_c00258{word-spacing:-0.053320pt;}
.ws1_c00258{word-spacing:0.000000pt;}
._2_c00258{width:1.150983pt;}
._1_c00258{width:3.088907pt;}
._0_c00258{width:6.725756pt;}
._3_c00258{width:19.101182pt;}
.fs0_c00258{font-size:53.319997pt;}
.fs1_c00258{font-size:63.999997pt;}
.y0_c00258{bottom:0.000000pt;}
.y1_c00258{bottom:0.000007pt;}
.y8_c00258{bottom:26.134367pt;}
.y6_c00258{bottom:142.063418pt;}
.y5_c00258{bottom:160.063417pt;}
.y4_c00258{bottom:178.063417pt;}
.y3_c00258{bottom:196.063416pt;}
.y2_c00258{bottom:214.063415pt;}
.y7_c00258{bottom:1066.464330pt;}
.h3_c00258{height:40.849158pt;}
.h4_c00258{height:49.031248pt;}
.h2_c00258{height:1159.999952pt;}
.h0_c00258{height:1159.999959pt;}
.h1_c00258{height:1160.000000pt;}
.w2_c00258{width:830.999965pt;}
.w0_c00258{width:831.000000pt;}
.w1_c00258{width:831.333333pt;}
.x0_c00258{left:0.000000pt;}
.x2_c00258{left:78.135686pt;}
.x1_c00258{left:118.835797pt;}
.x3_c00258{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9040e1b9c0004700a7efea5e.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.000000;font-style:normal;font-weight:normal;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_07fe5a1968cedd940013fbe7.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.006348;font-style:normal;font-weight:normal;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_f4801ca7c08b12168fadea54.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00259;src:url('chunks/assets/font_c1e0ed1fe1fb784f43636618.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;line-height:1.006348;font-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_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);}
.v0_c00259{vertical-align:0.000000px;}
.ls0_c00259{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00259{word-spacing:-0.059985px;}
.ws1_c00259{word-spacing:0.000000px;}
._3_c00259{width:2.147521px;}
._1_c00259{width:3.475020px;}
._0_c00259{width:7.566475px;}
._2_c00259{width:9.595173px;}
.fc2_c00259{color:rgb(74,93,83);}
.fc1_c00259{color:rgb(0,0,0);}
.fc0_c00259{color:rgb(93,156,116);}
.fs0_c00259{font-size:59.984997px;}
.fs1_c00259{font-size:71.999997px;}
.y0_c00259{bottom:0.000000px;}
.y1_c00259{bottom:0.000008px;}
.y8_c00259{bottom:29.401163px;}
.y6_c00259{bottom:123.704275px;}
.y5_c00259{bottom:143.954274px;}
.y4_c00259{bottom:164.204273px;}
.y3_c00259{bottom:184.454272px;}
.y2_c00259{bottom:204.704271px;}
.y7_c00259{bottom:1199.772371px;}
.h3_c00259{height:45.955303px;}
.h4_c00259{height:55.160154px;}
.h2_c00259{height:1304.999946px;}
.h0_c00259{height:1304.999953px;}
.h1_c00259{height:1305.000000px;}
.w2_c00259{width:934.874961px;}
.w0_c00259{width:934.875000px;}
.w1_c00259{width:935.250000px;}
.x0_c00259{left:0.000000px;}
.x2_c00259{left:87.902647px;}
.x1_c00259{left:133.690271px;}
.x3_c00259{left:452.271732px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws0_c00259{word-spacing:-0.053320pt;}
.ws1_c00259{word-spacing:0.000000pt;}
._3_c00259{width:1.908907pt;}
._1_c00259{width:3.088907pt;}
._0_c00259{width:6.725756pt;}
._2_c00259{width:8.529043pt;}
.fs0_c00259{font-size:53.319997pt;}
.fs1_c00259{font-size:63.999997pt;}
.y0_c00259{bottom:0.000000pt;}
.y1_c00259{bottom:0.000007pt;}
.y8_c00259{bottom:26.134367pt;}
.y6_c00259{bottom:109.959355pt;}
.y5_c00259{bottom:127.959355pt;}
.y4_c00259{bottom:145.959354pt;}
.y3_c00259{bottom:163.959353pt;}
.y2_c00259{bottom:181.959352pt;}
.y7_c00259{bottom:1066.464330pt;}
.h3_c00259{height:40.849158pt;}
.h4_c00259{height:49.031248pt;}
.h2_c00259{height:1159.999952pt;}
.h0_c00259{height:1159.999959pt;}
.h1_c00259{height:1160.000000pt;}
.w2_c00259{width:830.999965pt;}
.w0_c00259{width:831.000000pt;}
.w1_c00259{width:831.333333pt;}
.x0_c00259{left:0.000000pt;}
.x2_c00259{left:78.135686pt;}
.x1_c00259{left:118.835797pt;}
.x3_c00259{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9040e1b9c0004700a7efea5e.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.000000;font-style:normal;font-weight:normal;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_da62c80236555a2d9b871376.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.006348;font-style:normal;font-weight:normal;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_852b1ed41963fddc25ca0616.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00260;src:url('chunks/assets/font_c1e0ed1fe1fb784f43636618.woff2')format("woff");}.ff4_c00260{font-family:ff4_c00260;line-height:1.006348;font-style:normal;font-weight: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_c00260;src:url('chunks/assets/font_2af6f4db344dd858fbdbb5fe.woff2')format("woff");}.ff5_c00260{font-family:ff5_c00260;line-height:0.923000;font-style:normal;font-weight: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_c00260;src:url('chunks/assets/font_d35ace08838996efa1d0954a.woff2')format("woff");}.ff6_c00260{font-family:ff6_c00260;line-height:0.938000;font-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_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);}
.v0_c00260{vertical-align:0.000000px;}
.ls1_c00260{letter-spacing:0.000000px;}
.ls0_c00260{letter-spacing:0.000107px;}
.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;}
}
.ws0_c00260{word-spacing:-0.059985px;}
.ws1_c00260{word-spacing:0.000000px;}
._1_c00260{width:3.475020px;}
._3_c00260{width:6.001122px;}
._0_c00260{width:7.566475px;}
._2_c00260{width:9.667614px;}
._4_c00260{width:21.032569px;}
.fc2_c00260{color:rgb(74,93,83);}
.fc1_c00260{color:rgb(0,0,0);}
.fc0_c00260{color:rgb(93,156,116);}
.fs2_c00260{font-size:29.999931px;}
.fs0_c00260{font-size:59.984997px;}
.fs1_c00260{font-size:71.999997px;}
.y0_c00260{bottom:0.000000px;}
.y1_c00260{bottom:0.000008px;}
.ya_c00260{bottom:29.401163px;}
.y7_c00260{bottom:125.673835px;}
.y6_c00260{bottom:145.923834px;}
.y5_c00260{bottom:166.173833px;}
.y4_c00260{bottom:186.423832px;}
.y3_c00260{bottom:206.673831px;}
.y2_c00260{bottom:226.923831px;}
.y9_c00260{bottom:309.557543px;}
.yb_c00260{bottom:517.768585px;}
.y8_c00260{bottom:1199.772299px;}
.h5_c00260{height:21.839950px;}
.h3_c00260{height:45.955303px;}
.h4_c00260{height:55.160154px;}
.h2_c00260{height:1304.999946px;}
.h0_c00260{height:1304.999953px;}
.h1_c00260{height:1305.000000px;}
.w2_c00260{width:934.874961px;}
.w0_c00260{width:934.875000px;}
.w1_c00260{width:935.250000px;}
.x0_c00260{left:0.000000px;}
.x2_c00260{left:87.902647px;}
.x1_c00260{left:133.690271px;}
.x4_c00260{left:452.271732px;}
.x3_c00260{left:557.146910px;}
.x5_c00260{left:628.933474px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls1_c00260{letter-spacing:0.000000pt;}
.ls0_c00260{letter-spacing:0.000095pt;}
.ws0_c00260{word-spacing:-0.053320pt;}
.ws1_c00260{word-spacing:0.000000pt;}
._1_c00260{width:3.088907pt;}
._3_c00260{width:5.334331pt;}
._0_c00260{width:6.725756pt;}
._2_c00260{width:8.593435pt;}
._4_c00260{width:18.695617pt;}
.fs2_c00260{font-size:26.666605pt;}
.fs0_c00260{font-size:53.319997pt;}
.fs1_c00260{font-size:63.999997pt;}
.y0_c00260{bottom:0.000000pt;}
.y1_c00260{bottom:0.000007pt;}
.ya_c00260{bottom:26.134367pt;}
.y7_c00260{bottom:111.710075pt;}
.y6_c00260{bottom:129.710075pt;}
.y5_c00260{bottom:147.710074pt;}
.y4_c00260{bottom:165.710073pt;}
.y3_c00260{bottom:183.710072pt;}
.y2_c00260{bottom:201.710072pt;}
.y9_c00260{bottom:275.162261pt;}
.yb_c00260{bottom:460.238742pt;}
.y8_c00260{bottom:1066.464266pt;}
.h5_c00260{height:19.413289pt;}
.h3_c00260{height:40.849158pt;}
.h4_c00260{height:49.031248pt;}
.h2_c00260{height:1159.999952pt;}
.h0_c00260{height:1159.999959pt;}
.h1_c00260{height:1160.000000pt;}
.w2_c00260{width:830.999965pt;}
.w0_c00260{width:831.000000pt;}
.w1_c00260{width:831.333333pt;}
.x0_c00260{left:0.000000pt;}
.x2_c00260{left:78.135686pt;}
.x1_c00260{left:118.835797pt;}
.x4_c00260{left:402.019318pt;}
.x3_c00260{left:495.241698pt;}
.x5_c00260{left:559.051977pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44cab8874ba3e717472a70fd.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:0.775879;font-style:normal;font-weight:normal;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_5fe4fbe105781a669c8cd031.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.006348;font-style:normal;font-weight:normal;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_cd1d34c8100c0699244d5309.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.000000;font-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_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);}
.v0_c00261{vertical-align:0.000000px;}
.ls0_c00261{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00261{word-spacing:0.000000px;}
._0_c00261{width:4.767171px;}
.fc1_c00261{color:rgb(0,0,0);}
.fc0_c00261{color:rgb(67,91,56);}
.fs0_c00261{font-size:71.999997px;}
.y0_c00261{bottom:0.000000px;}
.y1_c00261{bottom:0.000008px;}
.y3_c00261{bottom:29.400983px;}
.y5_c00261{bottom:1113.231838px;}
.y4_c00261{bottom:1142.481837px;}
.y2_c00261{bottom:1199.772371px;}
.h3_c00261{height:55.160154px;}
.h2_c00261{height:1304.999946px;}
.h0_c00261{height:1304.999953px;}
.h1_c00261{height:1305.000000px;}
.w2_c00261{width:934.874961px;}
.w0_c00261{width:934.875000px;}
.w1_c00261{width:935.250000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:128.173847px;}
.x2_c00261{left:452.271732px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws0_c00261{word-spacing:0.000000pt;}
._0_c00261{width:4.237486pt;}
.fs0_c00261{font-size:63.999997pt;}
.y0_c00261{bottom:0.000000pt;}
.y1_c00261{bottom:0.000007pt;}
.y3_c00261{bottom:26.134207pt;}
.y5_c00261{bottom:989.539412pt;}
.y4_c00261{bottom:1015.539410pt;}
.y2_c00261{bottom:1066.464330pt;}
.h3_c00261{height:49.031248pt;}
.h2_c00261{height:1159.999952pt;}
.h0_c00261{height:1159.999959pt;}
.h1_c00261{height:1160.000000pt;}
.w2_c00261{width:830.999965pt;}
.w0_c00261{width:831.000000pt;}
.w1_c00261{width:831.333333pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:113.932309pt;}
.x2_c00261{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f4aad7dfa8b198729da7f26.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:0.710938;font-style:normal;font-weight:normal;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_72977064c8b77d3aa0a7b4e1.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.151614;font-style:normal;font-weight:normal;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_e42a4a39564212f962a30ce2.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.000000;font-style:normal;font-weight:normal;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_70fd2bc6a6ebc2eeb02d21a9.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.006348;font-style:normal;font-weight: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_c00262;src:url('chunks/assets/font_ab10943a7cb61ec263dc41e4.woff2')format("woff");}.ff5_c00262{font-family:ff5_c00262;line-height:1.006348;font-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_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);}
.v0_c00262{vertical-align:0.000000px;}
.ls0_c00262{letter-spacing:0.000000px;}
.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.384169px;}
.ws1_c00262{word-spacing:-0.055755px;}
.ws2_c00262{word-spacing:0.000000px;}
._0_c00262{margin-left:-6.146705px;}
._1_c00262{margin-left:-1.002822px;}
.fc0_c00262{color:rgb(255,255,255);}
.fs2_c00262{font-size:55.754999px;}
.fs1_c00262{font-size:59.984997px;}
.fs0_c00262{font-size:384.169278px;}
.y0_c00262{bottom:0.000000px;}
.y1_c00262{bottom:0.000008px;}
.ya_c00262{bottom:92.273216px;}
.y9_c00262{bottom:113.648215px;}
.y8_c00262{bottom:135.023214px;}
.y7_c00262{bottom:156.398213px;}
.y6_c00262{bottom:177.773213px;}
.y5_c00262{bottom:199.148212px;}
.y4_c00262{bottom:220.523211px;}
.y3_c00262{bottom:241.898210px;}
.y2_c00262{bottom:501.707223px;}
.yc_c00262{bottom:1207.444345px;}
.yb_c00262{bottom:1226.569344px;}
.h5_c00262{height:42.714645px;}
.h4_c00262{height:57.045732px;}
.h3_c00262{height:269.368693px;}
.h2_c00262{height:1304.999946px;}
.h0_c00262{height:1304.999953px;}
.h1_c00262{height:1305.000000px;}
.w2_c00262{width:934.874961px;}
.w0_c00262{width:934.875000px;}
.w1_c00262{width:935.250000px;}
.x0_c00262{left:0.000000px;}
.x3_c00262{left:74.153488px;}
.x2_c00262{left:87.902647px;}
.x1_c00262{left:95.100991px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls0_c00262{letter-spacing:0.000000pt;}
.ws0_c00262{word-spacing:-0.341484pt;}
.ws1_c00262{word-spacing:-0.049560pt;}
.ws2_c00262{word-spacing:0.000000pt;}
._0_c00262{margin-left:-5.463737pt;}
._1_c00262{margin-left:-0.891397pt;}
.fs2_c00262{font-size:49.559999pt;}
.fs1_c00262{font-size:53.319997pt;}
.fs0_c00262{font-size:341.483803pt;}
.y0_c00262{bottom:0.000000pt;}
.y1_c00262{bottom:0.000007pt;}
.ya_c00262{bottom:82.020637pt;}
.y9_c00262{bottom:101.020636pt;}
.y8_c00262{bottom:120.020635pt;}
.y7_c00262{bottom:139.020634pt;}
.y6_c00262{bottom:158.020633pt;}
.y5_c00262{bottom:177.020633pt;}
.y4_c00262{bottom:196.020632pt;}
.y3_c00262{bottom:215.020631pt;}
.y2_c00262{bottom:445.961976pt;}
.yc_c00262{bottom:1073.283862pt;}
.yb_c00262{bottom:1090.283862pt;}
.h5_c00262{height:37.968574pt;}
.h4_c00262{height:50.707318pt;}
.h3_c00262{height:239.438838pt;}
.h2_c00262{height:1159.999952pt;}
.h0_c00262{height:1159.999959pt;}
.h1_c00262{height:1160.000000pt;}
.w2_c00262{width:830.999965pt;}
.w0_c00262{width:831.000000pt;}
.w1_c00262{width:831.333333pt;}
.x0_c00262{left:0.000000pt;}
.x3_c00262{left:65.914212pt;}
.x2_c00262{left:78.135686pt;}
.x1_c00262{left:84.534214pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00263{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
}
.y0_c00263{bottom:0.000000px;}
.h0_c00263{height:1304.999953px;}
.h1_c00263{height:1305.000000px;}
.w0_c00263{width:934.875000px;}
.w1_c00263{width:935.250000px;}
.x0_c00263{left:0.000000px;}
@media print{
.y0_c00263{bottom:0.000000pt;}
.h0_c00263{height:1159.999959pt;}
.h1_c00263{height:1160.000000pt;}
.w0_c00263{width:831.000000pt;}
.w1_c00263{width:831.333333pt;}
.x0_c00263{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_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_3500b8c648f29a0bb8a7f82d.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.006348;font-style:normal;font-weight:normal;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_b58a4359d3834d455bd172cc.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.000000;font-style:normal;font-weight:normal;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_d7c2c5c64b7b72e3c3916105.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.000000;font-style:normal;font-weight:normal;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_7a35081970370d146f91605e.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.000000;font-style:normal;font-weight: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_c00264;src:url('chunks/assets/font_4d26b636633cdd5997239d95.woff2')format("woff");}.ff5_c00264{font-family:ff5_c00264;line-height:1.006348;font-style:normal;font-weight: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_c00264;src:url('chunks/assets/font_695b0e6671c651965e83f961.woff2')format("woff");}.ff6_c00264{font-family:ff6_c00264;line-height:1.006348;font-style:normal;font-weight: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_c00264;src:url('chunks/assets/font_cd3a412496cfe09546f38565.woff2')format("woff");}.ff7_c00264{font-family:ff7_c00264;line-height:1.006348;font-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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00264{vertical-align:0.000000px;}
.ls0_c00264{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00264{word-spacing:-18.703125px;}
.ws0_c00264{word-spacing:-0.072000px;}
.ws2_c00264{word-spacing:0.000000px;}
._a_c00264{width:3.784374px;}
._6_c00264{width:4.936913px;}
._8_c00264{width:6.193884px;}
._0_c00264{width:7.203804px;}
._f_c00264{width:9.248768px;}
._5_c00264{width:10.617189px;}
._d_c00264{width:12.208759px;}
._b_c00264{width:13.717324px;}
._11_c00264{width:16.171876px;}
._e_c00264{width:19.475859px;}
._1_c00264{width:22.570314px;}
._4_c00264{width:24.187498px;}
._7_c00264{width:26.220106px;}
._14_c00264{width:32.287441px;}
._c_c00264{width:37.740231px;}
._2_c00264{width:43.031247px;}
._9_c00264{width:48.915256px;}
._3_c00264{width:50.072521px;}
._10_c00264{width:55.699962px;}
._13_c00264{width:71.519482px;}
._12_c00264{width:87.574217px;}
.fc2_c00264{color:rgb(96,75,137);}
.fc1_c00264{color:rgb(67,39,123);}
.fc3_c00264{color:rgb(255,255,255);}
.fc0_c00264{color:rgb(0,0,0);}
.fs1_c00264{font-size:59.984997px;}
.fs0_c00264{font-size:71.999997px;}
.y0_c00264{bottom:0.000000px;}
.y1_c00264{bottom:0.000008px;}
.y15_c00264{bottom:29.401163px;}
.y14_c00264{bottom:92.048216px;}
.y13_c00264{bottom:122.423215px;}
.y12_c00264{bottom:152.798214px;}
.y11_c00264{bottom:183.173212px;}
.y10_c00264{bottom:213.548211px;}
.yf_c00264{bottom:243.923210px;}
.y1f_c00264{bottom:293.111700px;}
.y1e_c00264{bottom:313.361699px;}
.y25_c00264{bottom:318.548651px;}
.y1d_c00264{bottom:333.611698px;}
.y24_c00264{bottom:348.923649px;}
.y1c_c00264{bottom:353.861697px;}
.y23_c00264{bottom:379.298648px;}
.y22_c00264{bottom:409.673647px;}
.y21_c00264{bottom:440.048646px;}
.y20_c00264{bottom:470.423644px;}
.y1b_c00264{bottom:577.335216px;}
.y1a_c00264{bottom:597.585215px;}
.y19_c00264{bottom:617.835214px;}
.y18_c00264{bottom:638.085213px;}
.y17_c00264{bottom:658.335213px;}
.y16_c00264{bottom:678.585212px;}
.ye_c00264{bottom:765.877821px;}
.yd_c00264{bottom:796.252820px;}
.yc_c00264{bottom:826.627818px;}
.yb_c00264{bottom:857.002817px;}
.ya_c00264{bottom:887.377816px;}
.y9_c00264{bottom:917.752815px;}
.y8_c00264{bottom:948.127813px;}
.y7_c00264{bottom:978.502812px;}
.y6_c00264{bottom:1008.877811px;}
.y5_c00264{bottom:1039.252809px;}
.y4_c00264{bottom:1069.627808px;}
.y3_c00264{bottom:1100.002807px;}
.y2_c00264{bottom:1130.377806px;}
.y26_c00264{bottom:1200.600303px;}
.h4_c00264{height:45.955303px;}
.h3_c00264{height:55.160154px;}
.h2_c00264{height:1304.999946px;}
.h0_c00264{height:1304.999953px;}
.h1_c00264{height:1305.000000px;}
.w2_c00264{width:934.874961px;}
.w0_c00264{width:934.875000px;}
.w1_c00264{width:935.250000px;}
.x0_c00264{left:0.000000px;}
.x1_c00264{left:89.864283px;}
.x3_c00264{left:249.883431px;}
.x2_c00264{left:452.271732px;}
.x4_c00264{left:620.235586px;}
.x5_c00264{left:695.324462px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.ws1_c00264{word-spacing:-16.625000pt;}
.ws0_c00264{word-spacing:-0.064000pt;}
.ws2_c00264{word-spacing:0.000000pt;}
._a_c00264{width:3.363888pt;}
._6_c00264{width:4.388367pt;}
._8_c00264{width:5.505675pt;}
._0_c00264{width:6.403382pt;}
._f_c00264{width:8.221127pt;}
._5_c00264{width:9.437501pt;}
._d_c00264{width:10.852230pt;}
._b_c00264{width:12.193177pt;}
._11_c00264{width:14.375001pt;}
._e_c00264{width:17.311875pt;}
._1_c00264{width:20.062501pt;}
._4_c00264{width:21.499998pt;}
._7_c00264{width:23.306761pt;}
._14_c00264{width:28.699948pt;}
._c_c00264{width:33.546872pt;}
._2_c00264{width:38.249997pt;}
._9_c00264{width:43.480228pt;}
._3_c00264{width:44.508908pt;}
._10_c00264{width:49.511078pt;}
._13_c00264{width:63.572873pt;}
._12_c00264{width:77.843748pt;}
.fs1_c00264{font-size:53.319997pt;}
.fs0_c00264{font-size:63.999997pt;}
.y0_c00264{bottom:0.000000pt;}
.y1_c00264{bottom:0.000007pt;}
.y15_c00264{bottom:26.134367pt;}
.y14_c00264{bottom:81.820637pt;}
.y13_c00264{bottom:108.820635pt;}
.y12_c00264{bottom:135.820634pt;}
.y11_c00264{bottom:162.820633pt;}
.y10_c00264{bottom:189.820632pt;}
.yf_c00264{bottom:216.820631pt;}
.y1f_c00264{bottom:260.543733pt;}
.y1e_c00264{bottom:278.543732pt;}
.y25_c00264{bottom:283.154356pt;}
.y1d_c00264{bottom:296.543732pt;}
.y24_c00264{bottom:310.154355pt;}
.y1c_c00264{bottom:314.543731pt;}
.y23_c00264{bottom:337.154354pt;}
.y22_c00264{bottom:364.154353pt;}
.y21_c00264{bottom:391.154352pt;}
.y20_c00264{bottom:418.154351pt;}
.y1b_c00264{bottom:513.186859pt;}
.y1a_c00264{bottom:531.186858pt;}
.y19_c00264{bottom:549.186857pt;}
.y18_c00264{bottom:567.186856pt;}
.y17_c00264{bottom:585.186856pt;}
.y16_c00264{bottom:603.186855pt;}
.ye_c00264{bottom:680.780285pt;}
.yd_c00264{bottom:707.780284pt;}
.yc_c00264{bottom:734.780283pt;}
.yb_c00264{bottom:761.780282pt;}
.ya_c00264{bottom:788.780281pt;}
.y9_c00264{bottom:815.780280pt;}
.y8_c00264{bottom:842.780278pt;}
.y7_c00264{bottom:869.780277pt;}
.y6_c00264{bottom:896.780276pt;}
.y5_c00264{bottom:923.780275pt;}
.y4_c00264{bottom:950.780274pt;}
.y3_c00264{bottom:977.780273pt;}
.y2_c00264{bottom:1004.780272pt;}
.y26_c00264{bottom:1067.200269pt;}
.h4_c00264{height:40.849158pt;}
.h3_c00264{height:49.031248pt;}
.h2_c00264{height:1159.999952pt;}
.h0_c00264{height:1159.999959pt;}
.h1_c00264{height:1160.000000pt;}
.w2_c00264{width:830.999965pt;}
.w0_c00264{width:831.000000pt;}
.w1_c00264{width:831.333333pt;}
.x0_c00264{left:0.000000pt;}
.x1_c00264{left:79.879363pt;}
.x3_c00264{left:222.118605pt;}
.x2_c00264{left:402.019318pt;}
.x4_c00264{left:551.320521pt;}
.x5_c00264{left:618.066188pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_add2ed0d2f8c57e665657663.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.171387;font-style:normal;font-weight:normal;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_11be02166c1f471411482352.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.000000;font-style:normal;font-weight:normal;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_ca10f4fca79a7d9874b515af.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.006348;font-style:normal;font-weight:normal;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_fe42fba773d5e9611e82bff8.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:0.737305;font-style:normal;font-weight: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_c58ead2ea9f00301ee9a13b9.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:0.769531;font-style:normal;font-weight: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_9203fc3b0f5d01e0a08ad623.woff2')format("woff");}.ff6_c00265{font-family:ff6_c00265;line-height:1.006348;font-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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00265{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls1_c00265{letter-spacing:0.000000px;}
.ls0_c00265{letter-spacing:13.597646px;}
.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;}
}
.ws0_c00265{word-spacing:-15.582041px;}
.ws1_c00265{word-spacing:0.000000px;}
._b_c00265{margin-left:-1.001624px;}
._6_c00265{width:1.422248px;}
._0_c00265{width:2.499790px;}
._1_c00265{width:3.937295px;}
._2_c00265{width:5.016615px;}
._5_c00265{width:6.794935px;}
._4_c00265{width:8.292520px;}
._8_c00265{width:9.784104px;}
._10_c00265{width:11.428617px;}
._7_c00265{width:13.787636px;}
._13_c00265{width:17.687906px;}
._f_c00265{width:21.520303px;}
._a_c00265{width:25.549600px;}
._3_c00265{width:37.509898px;}
._12_c00265{width:40.395728px;}
._11_c00265{width:68.953188px;}
._9_c00265{width:79.635527px;}
._e_c00265{width:99.483421px;}
._d_c00265{width:108.377723px;}
._c_c00265{width:128.396970px;}
.fc2_c00265{color:rgb(96,75,137);}
.fc1_c00265{color:rgb(67,39,123);}
.fc0_c00265{color:rgb(0,0,0);}
.fs2_c00265{font-size:59.984997px;}
.fs0_c00265{font-size:71.960897px;}
.fs1_c00265{font-size:71.999997px;}
.y0_c00265{bottom:0.000000px;}
.y1_c00265{bottom:0.000008px;}
.y24_c00265{bottom:29.401163px;}
.y12_c00265{bottom:92.048288px;}
.y11_c00265{bottom:122.423287px;}
.y10_c00265{bottom:152.798286px;}
.yf_c00265{bottom:183.173284px;}
.ye_c00265{bottom:213.548283px;}
.yd_c00265{bottom:243.923282px;}
.y22_c00265{bottom:433.973214px;}
.y21_c00265{bottom:454.223213px;}
.y20_c00265{bottom:474.473212px;}
.y1f_c00265{bottom:494.723211px;}
.y1e_c00265{bottom:514.973211px;}
.y1d_c00265{bottom:535.223210px;}
.y1c_c00265{bottom:555.473209px;}
.y1b_c00265{bottom:575.723208px;}
.y1a_c00265{bottom:595.973207px;}
.y19_c00265{bottom:616.223206px;}
.y18_c00265{bottom:636.473205px;}
.y17_c00265{bottom:656.723205px;}
.y16_c00265{bottom:676.973204px;}
.y15_c00265{bottom:697.223203px;}
.y14_c00265{bottom:717.473202px;}
.y13_c00265{bottom:737.723201px;}
.yc_c00265{bottom:811.259321px;}
.yb_c00265{bottom:841.259695px;}
.ya_c00265{bottom:871.260068px;}
.y9_c00265{bottom:901.260442px;}
.y8_c00265{bottom:931.260816px;}
.y7_c00265{bottom:961.261190px;}
.y6_c00265{bottom:1011.261813px;}
.y5_c00265{bottom:1041.262186px;}
.y4_c00265{bottom:1071.262560px;}
.y3_c00265{bottom:1101.262934px;}
.y2_c00265{bottom:1131.263308px;}
.y23_c00265{bottom:1200.600033px;}
.h6_c00265{height:45.955303px;}
.h5_c00265{height:55.855171px;}
.h3_c00265{height:67.006557px;}
.h4_c00265{height:67.042966px;}
.h2_c00265{height:1304.999946px;}
.h0_c00265{height:1304.999953px;}
.h1_c00265{height:1305.000000px;}
.w2_c00265{width:934.874961px;}
.w0_c00265{width:934.875000px;}
.w1_c00265{width:935.250000px;}
.x0_c00265{left:0.000000px;}
.x2_c00265{left:87.902647px;}
.x1_c00265{left:89.864283px;}
.x5_c00265{left:452.271732px;}
.x3_c00265{left:588.840927px;}
.x4_c00265{left:688.170165px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls1_c00265{letter-spacing:0.000000pt;}
.ls0_c00265{letter-spacing:12.086796pt;}
.ws0_c00265{word-spacing:-13.850703pt;}
.ws1_c00265{word-spacing:0.000000pt;}
._b_c00265{margin-left:-0.890332pt;}
._6_c00265{width:1.264221pt;}
._0_c00265{width:2.222035pt;}
._1_c00265{width:3.499818pt;}
._2_c00265{width:4.459213pt;}
._5_c00265{width:6.039942pt;}
._4_c00265{width:7.371129pt;}
._8_c00265{width:8.696981pt;}
._10_c00265{width:10.158770pt;}
._7_c00265{width:12.255676pt;}
._13_c00265{width:15.722583pt;}
._f_c00265{width:19.129159pt;}
._a_c00265{width:22.710756pt;}
._3_c00265{width:33.342131pt;}
._12_c00265{width:35.907313pt;}
._11_c00265{width:61.291723pt;}
._9_c00265{width:70.787136pt;}
._e_c00265{width:88.429707pt;}
._d_c00265{width:96.335754pt;}
._c_c00265{width:114.130640pt;}
.fs2_c00265{font-size:53.319997pt;}
.fs0_c00265{font-size:63.965241pt;}
.fs1_c00265{font-size:63.999997pt;}
.y0_c00265{bottom:0.000000pt;}
.y1_c00265{bottom:0.000007pt;}
.y24_c00265{bottom:26.134367pt;}
.y12_c00265{bottom:81.820701pt;}
.y11_c00265{bottom:108.820699pt;}
.y10_c00265{bottom:135.820698pt;}
.yf_c00265{bottom:162.820697pt;}
.ye_c00265{bottom:189.820696pt;}
.yd_c00265{bottom:216.820695pt;}
.y22_c00265{bottom:385.753968pt;}
.y21_c00265{bottom:403.753967pt;}
.y20_c00265{bottom:421.753966pt;}
.y1f_c00265{bottom:439.753966pt;}
.y1e_c00265{bottom:457.753965pt;}
.y1d_c00265{bottom:475.753964pt;}
.y1c_c00265{bottom:493.753963pt;}
.y1b_c00265{bottom:511.753963pt;}
.y1a_c00265{bottom:529.753962pt;}
.y19_c00265{bottom:547.753961pt;}
.y18_c00265{bottom:565.753960pt;}
.y17_c00265{bottom:583.753960pt;}
.y16_c00265{bottom:601.753959pt;}
.y15_c00265{bottom:619.753958pt;}
.y14_c00265{bottom:637.753957pt;}
.y13_c00265{bottom:655.753957pt;}
.yc_c00265{bottom:721.119396pt;}
.yb_c00265{bottom:747.786395pt;}
.ya_c00265{bottom:774.453394pt;}
.y9_c00265{bottom:801.120393pt;}
.y8_c00265{bottom:827.787392pt;}
.y7_c00265{bottom:854.454391pt;}
.y6_c00265{bottom:898.899389pt;}
.y5_c00265{bottom:925.566388pt;}
.y4_c00265{bottom:952.233387pt;}
.y3_c00265{bottom:978.900386pt;}
.y2_c00265{bottom:1005.567385pt;}
.y23_c00265{bottom:1067.200029pt;}
.h6_c00265{height:40.849158pt;}
.h5_c00265{height:49.649041pt;}
.h3_c00265{height:59.561384pt;}
.h4_c00265{height:59.593748pt;}
.h2_c00265{height:1159.999952pt;}
.h0_c00265{height:1159.999959pt;}
.h1_c00265{height:1160.000000pt;}
.w2_c00265{width:830.999965pt;}
.w0_c00265{width:831.000000pt;}
.w1_c00265{width:831.333333pt;}
.x0_c00265{left:0.000000pt;}
.x2_c00265{left:78.135686pt;}
.x1_c00265{left:79.879363pt;}
.x5_c00265{left:402.019318pt;}
.x3_c00265{left:523.414157pt;}
.x4_c00265{left:611.706814pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e46051818d16afc4021e32bc.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.171387;font-style:normal;font-weight:normal;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_db61287a8d3d7cb9a83f97f4.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.006348;font-style:normal;font-weight:normal;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_01791a210d17824b6eb1f5c8.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:0.737305;font-style:normal;font-weight:normal;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_52d5d6851e26753cc9481abd.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:1.000000;font-style:normal;font-weight: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_c00266;src:url('chunks/assets/font_116b6125077544a9bbe35ffa.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:1.006348;font-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_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);}
.v1_c00266{vertical-align:-6.844346px;}
.v0_c00266{vertical-align:0.000000px;}
.ls1_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:1280.946822px;}
.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:-31.164081px;}
.ws0_c00266{word-spacing:-15.582041px;}
.ws2_c00266{word-spacing:0.000000px;}
._5_c00266{margin-left:-1.087127px;}
._4_c00266{width:1.186520px;}
._8_c00266{width:2.208938px;}
._9_c00266{width:4.862344px;}
._a_c00266{width:8.707007px;}
._0_c00266{width:9.832007px;}
._3_c00266{width:11.681898px;}
._b_c00266{width:12.777785px;}
._6_c00266{width:16.983147px;}
._c_c00266{width:25.299660px;}
._7_c00266{width:27.357948px;}
._1_c00266{width:49.921872px;}
._2_c00266{width:61.959317px;}
.fc2_c00266{color:rgb(96,75,137);}
.fc1_c00266{color:rgb(67,39,123);}
.fc0_c00266{color:rgb(0,0,0);}
.fs1_c00266{font-size:59.984997px;}
.fs0_c00266{font-size:71.999997px;}
.fs3_c00266{font-size:82.846309px;}
.fs2_c00266{font-size:82.848120px;}
.fs4_c00266{font-size:119.969995px;}
.y0_c00266{bottom:0.000000px;}
.y1_c00266{bottom:0.000008px;}
.y1a_c00266{bottom:29.400983px;}
.y9_c00266{bottom:128.907067px;}
.y18_c00266{bottom:377.483978px;}
.y17_c00266{bottom:487.243279px;}
.y16_c00266{bottom:517.618278px;}
.y15_c00266{bottom:547.993277px;}
.y14_c00266{bottom:578.368276px;}
.y13_c00266{bottom:608.743274px;}
.y12_c00266{bottom:639.118273px;}
.y11_c00266{bottom:669.493272px;}
.y10_c00266{bottom:699.868270px;}
.yf_c00266{bottom:730.243269px;}
.ye_c00266{bottom:760.618268px;}
.yd_c00266{bottom:790.993267px;}
.yc_c00266{bottom:821.368265px;}
.y19_c00266{bottom:870.118383px;}
.yb_c00266{bottom:917.221077px;}
.y8_c00266{bottom:937.471076px;}
.y7_c00266{bottom:967.846074px;}
.y6_c00266{bottom:998.221073px;}
.y5_c00266{bottom:1028.596072px;}
.y4_c00266{bottom:1058.971071px;}
.y3_c00266{bottom:1089.346069px;}
.y2_c00266{bottom:1119.721068px;}
.ya_c00266{bottom:1200.600036px;}
.h5_c00266{height:45.955303px;}
.h4_c00266{height:55.855171px;}
.h6_c00266{height:59.992072px;}
.h3_c00266{height:67.042966px;}
.h7_c00266{height:91.149078px;}
.h2_c00266{height:1304.999946px;}
.h0_c00266{height:1304.999953px;}
.h1_c00266{height:1305.000000px;}
.w2_c00266{width:934.874961px;}
.w0_c00266{width:934.875000px;}
.w1_c00266{width:935.250000px;}
.x0_c00266{left:0.000000px;}
.x1_c00266{left:87.902647px;}
.x6_c00266{left:89.864283px;}
.x2_c00266{left:136.449520px;}
.x7_c00266{left:432.150055px;}
.x8_c00266{left:452.271732px;}
.x4_c00266{left:601.450066px;}
.x5_c00266{left:629.856315px;}
.x3_c00266{left:695.324462px;}
@media print{
.v1_c00266{vertical-align:-6.083864pt;}
.v0_c00266{vertical-align:0.000000pt;}
.ls1_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:1138.619398pt;}
.ws1_c00266{word-spacing:-27.701406pt;}
.ws0_c00266{word-spacing:-13.850703pt;}
.ws2_c00266{word-spacing:0.000000pt;}
._5_c00266{margin-left:-0.966335pt;}
._4_c00266{width:1.054685pt;}
._8_c00266{width:1.963501pt;}
._9_c00266{width:4.322083pt;}
._a_c00266{width:7.739561pt;}
._0_c00266{width:8.739561pt;}
._3_c00266{width:10.383909pt;}
._b_c00266{width:11.358031pt;}
._6_c00266{width:15.096131pt;}
._c_c00266{width:22.488587pt;}
._7_c00266{width:24.318176pt;}
._1_c00266{width:44.374997pt;}
._2_c00266{width:55.074948pt;}
.fs1_c00266{font-size:53.319997pt;}
.fs0_c00266{font-size:63.999997pt;}
.fs3_c00266{font-size:73.641163pt;}
.fs2_c00266{font-size:73.642774pt;}
.fs4_c00266{font-size:106.639996pt;}
.y0_c00266{bottom:0.000000pt;}
.y1_c00266{bottom:0.000007pt;}
.y1a_c00266{bottom:26.134207pt;}
.y9_c00266{bottom:114.584059pt;}
.y18_c00266{bottom:335.541314pt;}
.y17_c00266{bottom:433.105137pt;}
.y16_c00266{bottom:460.105136pt;}
.y15_c00266{bottom:487.105135pt;}
.y14_c00266{bottom:514.105134pt;}
.y13_c00266{bottom:541.105133pt;}
.y12_c00266{bottom:568.105132pt;}
.y11_c00266{bottom:595.105130pt;}
.y10_c00266{bottom:622.105129pt;}
.yf_c00266{bottom:649.105128pt;}
.ye_c00266{bottom:676.105127pt;}
.yd_c00266{bottom:703.105126pt;}
.yc_c00266{bottom:730.105125pt;}
.y19_c00266{bottom:773.438563pt;}
.yb_c00266{bottom:815.307624pt;}
.y8_c00266{bottom:833.307623pt;}
.y7_c00266{bottom:860.307622pt;}
.y6_c00266{bottom:887.307621pt;}
.y5_c00266{bottom:914.307620pt;}
.y4_c00266{bottom:941.307618pt;}
.y3_c00266{bottom:968.307617pt;}
.y2_c00266{bottom:995.307616pt;}
.ya_c00266{bottom:1067.200032pt;}
.h5_c00266{height:40.849158pt;}
.h4_c00266{height:49.649041pt;}
.h6_c00266{height:53.326286pt;}
.h3_c00266{height:59.593748pt;}
.h7_c00266{height:81.021403pt;}
.h2_c00266{height:1159.999952pt;}
.h0_c00266{height:1159.999959pt;}
.h1_c00266{height:1160.000000pt;}
.w2_c00266{width:830.999965pt;}
.w0_c00266{width:831.000000pt;}
.w1_c00266{width:831.333333pt;}
.x0_c00266{left:0.000000pt;}
.x1_c00266{left:78.135686pt;}
.x6_c00266{left:79.879363pt;}
.x2_c00266{left:121.288462pt;}
.x7_c00266{left:384.133382pt;}
.x8_c00266{left:402.019318pt;}
.x4_c00266{left:534.622281pt;}
.x5_c00266{left:559.872280pt;}
.x3_c00266{left:618.066188pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03ad64f01c110630706a5097.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.171387;font-style:normal;font-weight:normal;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_120551c67f4165b00428de44.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.006348;font-style:normal;font-weight:normal;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_9203fc3b0f5d01e0a08ad623.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:1.006348;font-style:normal;font-weight:normal;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_79a610c48aa9b4073f21b228.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.000000;font-style:normal;font-weight: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_c00267;src:url('chunks/assets/font_15dcc8729e56583da65171a5.woff2')format("woff");}.ff5_c00267{font-family:ff5_c00267;line-height:1.000000;font-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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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;}
.ls0_c00267{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00267{word-spacing:-0.119970px;}
.ws1_c00267{word-spacing:0.000000px;}
._3_c00267{width:1.947051px;}
._4_c00267{width:3.466748px;}
._2_c00267{width:4.484893px;}
._8_c00267{width:6.234328px;}
._7_c00267{width:8.085936px;}
._1_c00267{width:10.064713px;}
._6_c00267{width:15.767575px;}
._0_c00267{width:25.165420px;}
._5_c00267{width:27.240188px;}
._c_c00267{width:33.187498px;}
._b_c00267{width:36.656223px;}
._9_c00267{width:42.066924px;}
._d_c00267{width:51.834317px;}
._a_c00267{width:57.093748px;}
.fc4_c00267{color:rgb(254,255,254);}
.fc3_c00267{color:rgb(96,75,137);}
.fc2_c00267{color:rgb(67,39,123);}
.fc1_c00267{color:rgb(8,1,0);}
.fc0_c00267{color:rgb(0,0,0);}
.fs3_c00267{font-size:48.000145px;}
.fs1_c00267{font-size:59.984997px;}
.fs0_c00267{font-size:71.999997px;}
.fs2_c00267{font-size:119.969995px;}
.y0_c00267{bottom:0.000000px;}
.y1_c00267{bottom:0.000008px;}
.yd_c00267{bottom:29.401163px;}
.y18_c00267{bottom:73.931829px;}
.y17_c00267{bottom:104.306828px;}
.y16_c00267{bottom:134.681826px;}
.ye_c00267{bottom:164.033666px;}
.y15_c00267{bottom:165.056825px;}
.y14_c00267{bottom:195.431824px;}
.y13_c00267{bottom:225.806823px;}
.y12_c00267{bottom:256.181821px;}
.y11_c00267{bottom:286.556820px;}
.y10_c00267{bottom:316.931819px;}
.yf_c00267{bottom:347.306818px;}
.y19_c00267{bottom:396.207415px;}
.ya_c00267{bottom:462.059261px;}
.y9_c00267{bottom:855.277874px;}
.y8_c00267{bottom:885.652872px;}
.y7_c00267{bottom:916.027871px;}
.y6_c00267{bottom:946.402870px;}
.y5_c00267{bottom:976.777869px;}
.y4_c00267{bottom:1007.152867px;}
.y3_c00267{bottom:1037.527866px;}
.y2_c00267{bottom:1067.902865px;}
.yc_c00267{bottom:1119.263508px;}
.yb_c00267{bottom:1200.600126px;}
.h7_c00267{height:36.468860px;}
.h5_c00267{height:45.955303px;}
.h4_c00267{height:55.855171px;}
.h3_c00267{height:67.042966px;}
.h6_c00267{height:91.149078px;}
.h2_c00267{height:1304.999946px;}
.h0_c00267{height:1304.999953px;}
.h1_c00267{height:1305.000000px;}
.w2_c00267{width:934.874961px;}
.w0_c00267{width:934.875000px;}
.w1_c00267{width:935.250000px;}
.x0_c00267{left:0.000000px;}
.x4_c00267{left:87.902647px;}
.x1_c00267{left:89.312814px;}
.x2_c00267{left:93.543307px;}
.x5_c00267{left:452.271732px;}
.x6_c00267{left:571.014909px;}
.x3_c00267{left:688.170165px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws0_c00267{word-spacing:-0.106640pt;}
.ws1_c00267{word-spacing:0.000000pt;}
._3_c00267{width:1.730712pt;}
._4_c00267{width:3.081554pt;}
._2_c00267{width:3.986572pt;}
._8_c00267{width:5.541625pt;}
._7_c00267{width:7.187499pt;}
._1_c00267{width:8.946411pt;}
._6_c00267{width:14.015622pt;}
._0_c00267{width:22.369262pt;}
._5_c00267{width:24.213501pt;}
._c_c00267{width:29.499998pt;}
._b_c00267{width:32.583310pt;}
._9_c00267{width:37.392821pt;}
._d_c00267{width:46.074948pt;}
._a_c00267{width:50.749998pt;}
.fs3_c00267{font-size:42.666796pt;}
.fs1_c00267{font-size:53.319997pt;}
.fs0_c00267{font-size:63.999997pt;}
.fs2_c00267{font-size:106.639996pt;}
.y0_c00267{bottom:0.000000pt;}
.y1_c00267{bottom:0.000007pt;}
.yd_c00267{bottom:26.134367pt;}
.y18_c00267{bottom:65.717181pt;}
.y17_c00267{bottom:92.717180pt;}
.y16_c00267{bottom:119.717179pt;}
.ye_c00267{bottom:145.807703pt;}
.y15_c00267{bottom:146.717178pt;}
.y14_c00267{bottom:173.717177pt;}
.y13_c00267{bottom:200.717176pt;}
.y12_c00267{bottom:227.717175pt;}
.y11_c00267{bottom:254.717173pt;}
.y10_c00267{bottom:281.717172pt;}
.yf_c00267{bottom:308.717171pt;}
.y19_c00267{bottom:352.184369pt;}
.ya_c00267{bottom:410.719343pt;}
.y9_c00267{bottom:760.246999pt;}
.y8_c00267{bottom:787.246998pt;}
.y7_c00267{bottom:814.246996pt;}
.y6_c00267{bottom:841.246995pt;}
.y5_c00267{bottom:868.246994pt;}
.y4_c00267{bottom:895.246993pt;}
.y3_c00267{bottom:922.246992pt;}
.y2_c00267{bottom:949.246991pt;}
.yc_c00267{bottom:994.900896pt;}
.yb_c00267{bottom:1067.200112pt;}
.h7_c00267{height:32.416765pt;}
.h5_c00267{height:40.849158pt;}
.h4_c00267{height:49.649041pt;}
.h3_c00267{height:59.593748pt;}
.h6_c00267{height:81.021403pt;}
.h2_c00267{height:1159.999952pt;}
.h0_c00267{height:1159.999959pt;}
.h1_c00267{height:1160.000000pt;}
.w2_c00267{width:830.999965pt;}
.w0_c00267{width:831.000000pt;}
.w1_c00267{width:831.333333pt;}
.x0_c00267{left:0.000000pt;}
.x4_c00267{left:78.135686pt;}
.x1_c00267{left:79.389168pt;}
.x2_c00267{left:83.149606pt;}
.x5_c00267{left:402.019318pt;}
.x6_c00267{left:507.568808pt;}
.x3_c00267{left:611.706814pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e3ed6c925f585225c4aede0.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.171387;font-style:normal;font-weight:normal;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_0df665cc2ea82f204b694b2d.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:0.734863;font-style:normal;font-weight: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_c00268;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:0.940000;font-style:normal;font-weight: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_c00268;src:url('chunks/assets/font_1aa0cdc300952aea6b7d619d.woff2')format("woff");}.ff6_c00268{font-family:ff6_c00268;line-height:1.000000;font-style:normal;font-weight: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_c00268;src:url('chunks/assets/font_7d74379c9b90b142d0f216cb.woff2')format("woff");}.ff7_c00268{font-family:ff7_c00268;line-height:1.171387;font-style:normal;font-weight: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_c00268;src:url('chunks/assets/font_9b0fa189f007a5ff9bc631c5.woff2')format("woff");}.ff8_c00268{font-family:ff8_c00268;line-height:1.000000;font-style:normal;font-weight: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_c00268;src:url('chunks/assets/font_ce7628a9cfafe79f7ac2e2fb.woff2')format("woff");}.ff9_c00268{font-family:ff9_c00268;line-height:1.006348;font-style:normal;font-weight: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_c00268;src:url('chunks/assets/font_c0e502dc2ffe93a182f0aaf0.woff2')format("woff");}.ffa_c00268{font-family:ffa_c00268;line-height:1.000000;font-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_c00268{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00268{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00268{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00268{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00268{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00268{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00268{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00268{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00268{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00268{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00268{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00268{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00268{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00268{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00268{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00268{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00268{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00268{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00268{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00268{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00268{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00268{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00268{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00268{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00268{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00268{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00268{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00268{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00268{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00268{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00268{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00268{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00268{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00268{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00268{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00268{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00268{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00268{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00268{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00268{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00268{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00268{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00268{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00268{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00268{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00268{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00268{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00268{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00268{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00268{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00268{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00268{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00268{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00268{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00268{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00268{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00268{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00268{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00268{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00268{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00268{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00268{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.ls0_c00268{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00268{word-spacing:-41.689573px;}
.ws0_c00268{word-spacing:-15.171263px;}
.ws2_c00268{word-spacing:-14.483232px;}
.ws4_c00268{word-spacing:0.000000px;}
.ws3_c00268{word-spacing:281.638789px;}
._2_c00268{width:1.054685px;}
._4_c00268{width:2.979489px;}
._3_c00268{width:9.573280px;}
._0_c00268{width:11.684647px;}
._1_c00268{width:16.197416px;}
.fc3_c00268{color:rgb(67,39,123);}
.fc2_c00268{color:rgb(9,71,81);}
.fc1_c00268{color:rgb(255,255,255);}
.fc0_c00268{color:rgb(0,0,0);}
.fsd_c00268{font-size:39.757786px;}
.fsf_c00268{font-size:41.999830px;}
.fsc_c00268{font-size:42.000118px;}
.fs4_c00268{font-size:47.368230px;}
.fs1_c00268{font-size:47.368231px;}
.fs5_c00268{font-size:47.368232px;}
.fs2_c00268{font-size:47.368233px;}
.fs3_c00268{font-size:47.368235px;}
.fs7_c00268{font-size:51.661596px;}
.fs9_c00268{font-size:55.754999px;}
.fs8_c00268{font-size:59.984997px;}
.fs0_c00268{font-size:71.999997px;}
.fsa_c00268{font-size:74.424240px;}
.fs6_c00268{font-size:77.011488px;}
.fsb_c00268{font-size:89.985250px;}
.fse_c00268{font-size:95.984996px;}
.y0_c00268{bottom:0.000000px;}
.y1_c00268{bottom:0.000008px;}
.y54_c00268{bottom:29.401163px;}
.y4a_c00268{bottom:147.995166px;}
.y49_c00268{bottom:178.370165px;}
.y48_c00268{bottom:208.745163px;}
.y47_c00268{bottom:239.120162px;}
.y46_c00268{bottom:269.495161px;}
.y45_c00268{bottom:299.870160px;}
.y4b_c00268{bottom:340.353374px;}
.y42_c00268{bottom:401.525233px;}
.y10_c00268{bottom:493.328193px;}
.y38_c00268{bottom:493.343723px;}
.yf_c00268{bottom:493.853349px;}
.y39_c00268{bottom:493.873061px;}
.y22_c00268{bottom:494.216675px;}
.y37_c00268{bottom:494.588120px;}
.ye_c00268{bottom:494.919675px;}
.y23_c00268{bottom:495.050252px;}
.y21_c00268{bottom:495.070518px;}
.y36_c00268{bottom:495.839509px;}
.yd_c00268{bottom:495.992682px;}
.y20_c00268{bottom:496.105381px;}
.y3a_c00268{bottom:496.289992px;}
.y11_c00268{bottom:496.353473px;}
.y24_c00268{bottom:497.231495px;}
.y35_c00268{bottom:497.484380px;}
.yc_c00268{bottom:497.644566px;}
.y1f_c00268{bottom:498.308033px;}
.y25_c00268{bottom:498.622864px;}
.y34_c00268{bottom:499.172711px;}
.yb_c00268{bottom:499.338107px;}
.y26_c00268{bottom:500.320767px;}
.y12_c00268{bottom:500.630691px;}
.y33_c00268{bottom:501.037949px;}
.ya_c00268{bottom:501.207920px;}
.y3b_c00268{bottom:501.390163px;}
.y1e_c00268{bottom:502.099575px;}
.y27_c00268{bottom:502.763208px;}
.y13_c00268{bottom:503.149881px;}
.y3c_c00268{bottom:505.018723px;}
.y28_c00268{bottom:505.021953px;}
.y32_c00268{bottom:505.692484px;}
.y9_c00268{bottom:505.872210px;}
.y1d_c00268{bottom:507.568506px;}
.y29_c00268{bottom:508.291115px;}
.y14_c00268{bottom:509.101920px;}
.y3d_c00268{bottom:510.652700px;}
.y1c_c00268{bottom:512.035277px;}
.y31_c00268{bottom:512.093421px;}
.y8_c00268{bottom:512.281650px;}
.y15_c00268{bottom:513.850725px;}
.y2a_c00268{bottom:516.688119px;}
.y3e_c00268{bottom:517.310242px;}
.y1b_c00268{bottom:518.459608px;}
.y30_c00268{bottom:519.400744px;}
.y7_c00268{bottom:519.491089px;}
.y6_c00268{bottom:522.949612px;}
.y1a_c00268{bottom:523.029482px;}
.y2b_c00268{bottom:524.737309px;}
.y16_c00268{bottom:525.634963px;}
.y2f_c00268{bottom:526.562252px;}
.y5_c00268{bottom:528.960111px;}
.y3f_c00268{bottom:529.273374px;}
.y19_c00268{bottom:530.801896px;}
.y2e_c00268{bottom:531.331371px;}
.y41_c00268{bottom:533.268367px;}
.y53_c00268{bottom:533.962015px;}
.y18_c00268{bottom:534.695851px;}
.y4_c00268{bottom:536.219342px;}
.y2d_c00268{bottom:537.504234px;}
.y17_c00268{bottom:537.874949px;}
.y40_c00268{bottom:538.238862px;}
.y51_c00268{bottom:539.974832px;}
.y2c_c00268{bottom:544.567170px;}
.y3_c00268{bottom:545.754118px;}
.y52_c00268{bottom:577.437330px;}
.y2_c00268{bottom:597.137663px;}
.y44_c00268{bottom:639.092421px;}
.y43_c00268{bottom:1021.439841px;}
.y4f_c00268{bottom:1128.788391px;}
.y4d_c00268{bottom:1133.738410px;}
.y4c_c00268{bottom:1147.738449px;}
.y50_c00268{bottom:1151.817140px;}
.y4e_c00268{bottom:1171.082693px;}
.h9_c00268{height:35.988753px;}
.ha_c00268{height:35.988755px;}
.hb_c00268{height:35.988756px;}
.h13_c00268{height:37.020556px;}
.hd_c00268{height:37.459702px;}
.h15_c00268{height:39.108240px;}
.h12_c00268{height:39.108509px;}
.h7_c00268{height:44.107038px;}
.h4_c00268{height:44.107039px;}
.h8_c00268{height:44.107040px;}
.h5_c00268{height:44.107042px;}
.h6_c00268{height:44.107043px;}
.he_c00268{height:45.588598px;}
.hf_c00268{height:51.916398px;}
.hc_c00268{height:56.295398px;}
.h10_c00268{height:57.017399px;}
.h3_c00268{height:67.042966px;}
.h11_c00268{height:68.367700px;}
.h14_c00268{height:89.376654px;}
.h2_c00268{height:1304.999946px;}
.h0_c00268{height:1304.999953px;}
.h1_c00268{height:1305.000000px;}
.w2_c00268{width:934.874961px;}
.w0_c00268{width:934.875000px;}
.w1_c00268{width:935.250000px;}
.x0_c00268{left:0.000000px;}
.x3b_c00268{left:89.487450px;}
.x3c_c00268{left:107.230262px;}
.x3d_c00268{left:108.827167px;}
.x39_c00268{left:130.690629px;}
.x27_c00268{left:134.974838px;}
.x26_c00268{left:136.648279px;}
.x28_c00268{left:140.021272px;}
.x29_c00268{left:144.871714px;}
.x2a_c00268{left:150.237526px;}
.x2b_c00268{left:152.990336px;}
.x2c_c00268{left:156.000220px;}
.x2d_c00268{left:159.847713px;}
.x37_c00268{left:161.443962px;}
.x2e_c00268{left:163.301377px;}
.x2f_c00268{left:171.586339px;}
.x30_c00268{left:179.855997px;}
.x31_c00268{left:188.287487px;}
.x32_c00268{left:196.673970px;}
.x33_c00268{left:200.841336px;}
.x34_c00268{left:205.399483px;}
.x35_c00268{left:209.208896px;}
.x36_c00268{left:211.795693px;}
.x3_c00268{left:230.398389px;}
.x2_c00268{left:232.534609px;}
.x4_c00268{left:235.623324px;}
.x5_c00268{left:240.462566px;}
.x6_c00268{left:245.820252px;}
.x7_c00268{left:248.569815px;}
.x8_c00268{left:251.576732px;}
.x9_c00268{left:255.421336px;}
.x3f_c00268{left:256.622047px;}
.xa_c00268{left:258.708042px;}
.xb_c00268{left:263.145298px;}
.xc_c00268{left:271.763354px;}
.xd_c00268{left:283.603990px;}
.xe_c00268{left:291.041304px;}
.xf_c00268{left:294.435991px;}
.x10_c00268{left:299.775542px;}
.x11_c00268{left:303.165014px;}
.x12_c00268{left:307.176807px;}
.x13_c00268{left:325.572760px;}
.x14_c00268{left:326.790062px;}
.x15_c00268{left:328.211075px;}
.x16_c00268{left:331.608300px;}
.x17_c00268{left:334.832839px;}
.x18_c00268{left:340.715086px;}
.x19_c00268{left:346.902068px;}
.x1a_c00268{left:352.595072px;}
.x1b_c00268{left:356.005071px;}
.x1c_c00268{left:363.912198px;}
.x1d_c00268{left:371.901113px;}
.x1e_c00268{left:378.660822px;}
.x1f_c00268{left:381.681036px;}
.x20_c00268{left:384.685260px;}
.x21_c00268{left:388.083238px;}
.x22_c00268{left:390.700316px;}
.x23_c00268{left:394.014858px;}
.x24_c00268{left:399.190176px;}
.x25_c00268{left:401.994929px;}
.x40_c00268{left:452.271732px;}
.x1_c00268{left:465.375288px;}
.x3a_c00268{left:676.878164px;}
.x38_c00268{left:697.320842px;}
.x3e_c00268{left:733.540711px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls0_c00268{letter-spacing:0.000000pt;}
.ws1_c00268{word-spacing:-37.057398pt;}
.ws0_c00268{word-spacing:-13.485567pt;}
.ws2_c00268{word-spacing:-12.873984pt;}
.ws4_c00268{word-spacing:0.000000pt;}
.ws3_c00268{word-spacing:250.345590pt;}
._2_c00268{width:0.937498pt;}
._4_c00268{width:2.648435pt;}
._3_c00268{width:8.509582pt;}
._0_c00268{width:10.386353pt;}
._1_c00268{width:14.397703pt;}
.fsd_c00268{font-size:35.340254pt;}
.fsf_c00268{font-size:37.333182pt;}
.fsc_c00268{font-size:37.333438pt;}
.fs4_c00268{font-size:42.105093pt;}
.fs1_c00268{font-size:42.105094pt;}
.fs5_c00268{font-size:42.105095pt;}
.fs2_c00268{font-size:42.105096pt;}
.fs3_c00268{font-size:42.105098pt;}
.fs7_c00268{font-size:45.921418pt;}
.fs9_c00268{font-size:49.559999pt;}
.fs8_c00268{font-size:53.319997pt;}
.fs0_c00268{font-size:63.999997pt;}
.fsa_c00268{font-size:66.154880pt;}
.fs6_c00268{font-size:68.454656pt;}
.fsb_c00268{font-size:79.986889pt;}
.fse_c00268{font-size:85.319996pt;}
.y0_c00268{bottom:0.000000pt;}
.y1_c00268{bottom:0.000007pt;}
.y54_c00268{bottom:26.134367pt;}
.y4a_c00268{bottom:131.551259pt;}
.y49_c00268{bottom:158.551257pt;}
.y48_c00268{bottom:185.551256pt;}
.y47_c00268{bottom:212.551255pt;}
.y46_c00268{bottom:239.551254pt;}
.y45_c00268{bottom:266.551253pt;}
.y4b_c00268{bottom:302.536333pt;}
.y42_c00268{bottom:356.911319pt;}
.y10_c00268{bottom:438.513950pt;}
.y38_c00268{bottom:438.527754pt;}
.yf_c00268{bottom:438.980754pt;}
.y39_c00268{bottom:438.998276pt;}
.y22_c00268{bottom:439.303711pt;}
.y37_c00268{bottom:439.633885pt;}
.ye_c00268{bottom:439.928600pt;}
.y23_c00268{bottom:440.044669pt;}
.y21_c00268{bottom:440.062683pt;}
.y36_c00268{bottom:440.746230pt;}
.yd_c00268{bottom:440.882384pt;}
.y20_c00268{bottom:440.982561pt;}
.y3a_c00268{bottom:441.146660pt;}
.y11_c00268{bottom:441.203087pt;}
.y24_c00268{bottom:441.983551pt;}
.y35_c00268{bottom:442.208338pt;}
.yc_c00268{bottom:442.350726pt;}
.y1f_c00268{bottom:442.940473pt;}
.y25_c00268{bottom:443.220324pt;}
.y34_c00268{bottom:443.709077pt;}
.yb_c00268{bottom:443.856095pt;}
.y26_c00268{bottom:444.729570pt;}
.y12_c00268{bottom:445.005059pt;}
.y33_c00268{bottom:445.367066pt;}
.ya_c00268{bottom:445.518151pt;}
.y3b_c00268{bottom:445.680145pt;}
.y1e_c00268{bottom:446.310733pt;}
.y27_c00268{bottom:446.900629pt;}
.y13_c00268{bottom:447.244339pt;}
.y3c_c00268{bottom:448.905531pt;}
.y28_c00268{bottom:448.908403pt;}
.y32_c00268{bottom:449.504430pt;}
.y9_c00268{bottom:449.664187pt;}
.y1d_c00268{bottom:451.172006pt;}
.y29_c00268{bottom:451.814325pt;}
.y14_c00268{bottom:452.535040pt;}
.y3d_c00268{bottom:453.913511pt;}
.y1c_c00268{bottom:455.142469pt;}
.y31_c00268{bottom:455.194152pt;}
.y8_c00268{bottom:455.361467pt;}
.y15_c00268{bottom:456.756200pt;}
.y2a_c00268{bottom:459.278328pt;}
.y3e_c00268{bottom:459.831327pt;}
.y1b_c00268{bottom:460.852984pt;}
.y30_c00268{bottom:461.689550pt;}
.y7_c00268{bottom:461.769857pt;}
.y6_c00268{bottom:464.844100pt;}
.y1a_c00268{bottom:464.915095pt;}
.y2b_c00268{bottom:466.433163pt;}
.y16_c00268{bottom:467.231078pt;}
.y2f_c00268{bottom:468.055335pt;}
.y5_c00268{bottom:470.186765pt;}
.y3f_c00268{bottom:470.465221pt;}
.y19_c00268{bottom:471.823908pt;}
.y2e_c00268{bottom:472.294552pt;}
.y41_c00268{bottom:474.016326pt;}
.y53_c00268{bottom:474.632902pt;}
.y18_c00268{bottom:475.285201pt;}
.y4_c00268{bottom:476.639415pt;}
.y2d_c00268{bottom:477.781541pt;}
.y17_c00268{bottom:478.111066pt;}
.y40_c00268{bottom:478.434544pt;}
.y51_c00268{bottom:479.977628pt;}
.y2c_c00268{bottom:484.059707pt;}
.y3_c00268{bottom:485.114772pt;}
.y52_c00268{bottom:513.277627pt;}
.y2_c00268{bottom:530.789034pt;}
.y44_c00268{bottom:568.082152pt;}
.y43_c00268{bottom:907.946525pt;}
.y4f_c00268{bottom:1003.367459pt;}
.y4d_c00268{bottom:1007.767476pt;}
.y4c_c00268{bottom:1020.211955pt;}
.y50_c00268{bottom:1023.837458pt;}
.y4e_c00268{bottom:1040.962393pt;}
.h9_c00268{height:31.990003pt;}
.ha_c00268{height:31.990004pt;}
.hb_c00268{height:31.990006pt;}
.h13_c00268{height:32.907161pt;}
.hd_c00268{height:33.297513pt;}
.h15_c00268{height:34.762880pt;}
.h12_c00268{height:34.763119pt;}
.h7_c00268{height:39.206256pt;}
.h4_c00268{height:39.206257pt;}
.h8_c00268{height:39.206258pt;}
.h5_c00268{height:39.206259pt;}
.h6_c00268{height:39.206261pt;}
.he_c00268{height:40.523198pt;}
.hf_c00268{height:46.147909pt;}
.hc_c00268{height:50.040354pt;}
.h10_c00268{height:50.682132pt;}
.h3_c00268{height:59.593748pt;}
.h11_c00268{height:60.771289pt;}
.h14_c00268{height:79.445915pt;}
.h2_c00268{height:1159.999952pt;}
.h0_c00268{height:1159.999959pt;}
.h1_c00268{height:1160.000000pt;}
.w2_c00268{width:830.999965pt;}
.w0_c00268{width:831.000000pt;}
.w1_c00268{width:831.333333pt;}
.x0_c00268{left:0.000000pt;}
.x3b_c00268{left:79.544400pt;}
.x3c_c00268{left:95.315788pt;}
.x3d_c00268{left:96.735260pt;}
.x39_c00268{left:116.169448pt;}
.x27_c00268{left:119.977634pt;}
.x26_c00268{left:121.465137pt;}
.x28_c00268{left:124.463353pt;}
.x29_c00268{left:128.774857pt;}
.x2a_c00268{left:133.544468pt;}
.x2b_c00268{left:135.991410pt;}
.x2c_c00268{left:138.666862pt;}
.x2d_c00268{left:142.086856pt;}
.x37_c00268{left:143.505744pt;}
.x2e_c00268{left:145.156780pt;}
.x2f_c00268{left:152.521190pt;}
.x30_c00268{left:159.871997pt;}
.x31_c00268{left:167.366655pt;}
.x32_c00268{left:174.821307pt;}
.x33_c00268{left:178.525632pt;}
.x34_c00268{left:182.577318pt;}
.x35_c00268{left:185.963463pt;}
.x36_c00268{left:188.262839pt;}
.x3_c00268{left:204.798568pt;}
.x2_c00268{left:206.697430pt;}
.x4_c00268{left:209.442955pt;}
.x5_c00268{left:213.744503pt;}
.x6_c00268{left:218.506891pt;}
.x7_c00268{left:220.950947pt;}
.x8_c00268{left:223.623762pt;}
.x9_c00268{left:227.041187pt;}
.x3f_c00268{left:228.108486pt;}
.xa_c00268{left:229.962704pt;}
.xb_c00268{left:233.906932pt;}
.xc_c00268{left:241.567426pt;}
.xd_c00268{left:252.092435pt;}
.xe_c00268{left:258.703382pt;}
.xf_c00268{left:261.720880pt;}
.x10_c00268{left:266.467148pt;}
.x11_c00268{left:269.480012pt;}
.x12_c00268{left:273.046051pt;}
.x13_c00268{left:289.398009pt;}
.x14_c00268{left:290.480055pt;}
.x15_c00268{left:291.743178pt;}
.x16_c00268{left:294.762933pt;}
.x17_c00268{left:297.629190pt;}
.x18_c00268{left:302.857854pt;}
.x19_c00268{left:308.357394pt;}
.x1a_c00268{left:313.417841pt;}
.x1b_c00268{left:316.448952pt;}
.x1c_c00268{left:323.477509pt;}
.x1d_c00268{left:330.578767pt;}
.x1e_c00268{left:336.587398pt;}
.x1f_c00268{left:339.272032pt;}
.x20_c00268{left:341.942453pt;}
.x21_c00268{left:344.962878pt;}
.x22_c00268{left:347.289170pt;}
.x23_c00268{left:350.235429pt;}
.x24_c00268{left:354.835712pt;}
.x25_c00268{left:357.328825pt;}
.x40_c00268{left:402.019318pt;}
.x1_c00268{left:413.666922pt;}
.x3a_c00268{left:601.669479pt;}
.x38_c00268{left:619.840748pt;}
.x3e_c00268{left:652.036188pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d3c87b1ca95a0ac0f1a841d.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.006348;font-style:normal;font-weight:normal;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_f562ac32ef213ed5f7de3fd1.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.171387;font-style:normal;font-weight:normal;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_fc211618a3f907ff5305d674.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.000000;font-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_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);}
.v0_c00269{vertical-align:0.000000px;}
.ls0_c00269{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00269{word-spacing:-19.320776px;}
.ws1_c00269{word-spacing:0.000000px;}
._9_c00269{width:1.167289px;}
._2_c00269{width:2.228028px;}
._4_c00269{width:3.279690px;}
._8_c00269{width:4.959710px;}
._3_c00269{width:7.958085px;}
._7_c00269{width:9.338790px;}
._5_c00269{width:11.280074px;}
._a_c00269{width:12.924660px;}
._1_c00269{width:15.093703px;}
._c_c00269{width:24.392530px;}
._6_c00269{width:27.984373px;}
._0_c00269{width:31.972963px;}
._b_c00269{width:33.321048px;}
.fc1_c00269{color:rgb(0,0,0);}
.fc0_c00269{color:rgb(67,39,123);}
.fs1_c00269{font-size:71.999997px;}
.fs0_c00269{font-size:74.377724px;}
.y0_c00269{bottom:0.000000px;}
.y1_c00269{bottom:0.000008px;}
.y22_c00269{bottom:29.401163px;}
.y21_c00269{bottom:123.868111px;}
.y20_c00269{bottom:154.243110px;}
.y1f_c00269{bottom:188.616088px;}
.y1d_c00269{bottom:249.172730px;}
.y1c_c00269{bottom:279.547728px;}
.y1b_c00269{bottom:309.922727px;}
.y1a_c00269{bottom:340.297726px;}
.y19_c00269{bottom:370.672725px;}
.y18_c00269{bottom:401.047723px;}
.y17_c00269{bottom:436.620906px;}
.y16_c00269{bottom:497.157870px;}
.y15_c00269{bottom:527.532868px;}
.y14_c00269{bottom:557.907867px;}
.y13_c00269{bottom:588.282866px;}
.y12_c00269{bottom:618.657865px;}
.y11_c00269{bottom:649.032863px;}
.y10_c00269{bottom:679.407862px;}
.yf_c00269{bottom:709.782861px;}
.ye_c00269{bottom:740.157860px;}
.yd_c00269{bottom:770.532858px;}
.yc_c00269{bottom:800.907857px;}
.yb_c00269{bottom:831.282856px;}
.ya_c00269{bottom:861.657854px;}
.y1e_c00269{bottom:901.730353px;}
.y9_c00269{bottom:967.345977px;}
.y8_c00269{bottom:997.720976px;}
.y7_c00269{bottom:1028.095974px;}
.y6_c00269{bottom:1058.470973px;}
.y5_c00269{bottom:1088.845972px;}
.y4_c00269{bottom:1119.220971px;}
.y3_c00269{bottom:1149.595969px;}
.y2_c00269{bottom:1183.180504px;}
.h5_c00269{height:55.160154px;}
.h3_c00269{height:56.981762px;}
.h4_c00269{height:67.042966px;}
.h2_c00269{height:1304.999946px;}
.h0_c00269{height:1304.999953px;}
.h1_c00269{height:1305.000000px;}
.w2_c00269{width:934.874961px;}
.w0_c00269{width:934.875000px;}
.w1_c00269{width:935.250000px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:88.794432px;}
.x2_c00269{left:452.271732px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws0_c00269{word-spacing:-17.174023pt;}
.ws1_c00269{word-spacing:0.000000pt;}
._9_c00269{width:1.037590pt;}
._2_c00269{width:1.980469pt;}
._4_c00269{width:2.915280pt;}
._8_c00269{width:4.408631pt;}
._3_c00269{width:7.073853pt;}
._7_c00269{width:8.301146pt;}
._5_c00269{width:10.026733pt;}
._a_c00269{width:11.488587pt;}
._1_c00269{width:13.416625pt;}
._c_c00269{width:21.682249pt;}
._6_c00269{width:24.874998pt;}
._0_c00269{width:28.420411pt;}
._b_c00269{width:29.618709pt;}
.fs1_c00269{font-size:63.999997pt;}
.fs0_c00269{font-size:66.113533pt;}
.y0_c00269{bottom:0.000000pt;}
.y1_c00269{bottom:0.000007pt;}
.y22_c00269{bottom:26.134367pt;}
.y21_c00269{bottom:110.104987pt;}
.y20_c00269{bottom:137.104986pt;}
.y1f_c00269{bottom:167.658745pt;}
.y1d_c00269{bottom:221.486871pt;}
.y1c_c00269{bottom:248.486870pt;}
.y1b_c00269{bottom:275.486869pt;}
.y1a_c00269{bottom:302.486867pt;}
.y19_c00269{bottom:329.486866pt;}
.y18_c00269{bottom:356.486865pt;}
.y17_c00269{bottom:388.107472pt;}
.y16_c00269{bottom:441.918106pt;}
.y15_c00269{bottom:468.918105pt;}
.y14_c00269{bottom:495.918104pt;}
.y13_c00269{bottom:522.918103pt;}
.y12_c00269{bottom:549.918102pt;}
.y11_c00269{bottom:576.918101pt;}
.y10_c00269{bottom:603.918100pt;}
.yf_c00269{bottom:630.918099pt;}
.ye_c00269{bottom:657.918097pt;}
.yd_c00269{bottom:684.918096pt;}
.yc_c00269{bottom:711.918095pt;}
.yb_c00269{bottom:738.918094pt;}
.ya_c00269{bottom:765.918093pt;}
.y1e_c00269{bottom:801.538091pt;}
.y9_c00269{bottom:859.863091pt;}
.y8_c00269{bottom:886.863089pt;}
.y7_c00269{bottom:913.863088pt;}
.y6_c00269{bottom:940.863087pt;}
.y5_c00269{bottom:967.863086pt;}
.y4_c00269{bottom:994.863085pt;}
.y3_c00269{bottom:1021.863084pt;}
.y2_c00269{bottom:1051.716004pt;}
.h5_c00269{height:49.031248pt;}
.h3_c00269{height:50.650455pt;}
.h4_c00269{height:59.593748pt;}
.h2_c00269{height:1159.999952pt;}
.h0_c00269{height:1159.999959pt;}
.h1_c00269{height:1160.000000pt;}
.w2_c00269{width:830.999965pt;}
.w0_c00269{width:831.000000pt;}
.w1_c00269{width:831.333333pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:78.928384pt;}
.x2_c00269{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fbb48c8cce885af66eb0172.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.000000;font-style:normal;font-weight:normal;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_3a0becdabf483cfcbdc0cd43.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.171387;font-style:normal;font-weight:normal;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_e6bd2018f3e37dcfa96c60d0.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.000000;font-style:normal;font-weight:normal;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_c86169fab06b4880f52e6044.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:1.006348;font-style:normal;font-weight: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_c00270;src:url('chunks/assets/font_b145ca5531e2a969e02855ab.woff2')format("woff");}.ff5_c00270{font-family:ff5_c00270;line-height:1.006348;font-style:normal;font-weight: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_c00270;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff6_c00270{font-family:ff6_c00270;line-height:0.769531;font-style:normal;font-weight: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_c00270;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff7_c00270{font-family:ff7_c00270;line-height:0.743000;font-style:normal;font-weight: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_c00270;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00270{font-family:ff8_c00270;line-height:0.734863;font-style:normal;font-weight: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_c00270;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00270{font-family:ff9_c00270;line-height:0.940000;font-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_c00270{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00270{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00270{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00270{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00270{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00270{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00270{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00270{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00270{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00270{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00270{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00270{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00270{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00270{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00270{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00270{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00270{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00270{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00270{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00270{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00270{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00270{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00270{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00270{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00270{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00270{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00270{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00270{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00270{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00270{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00270{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00270{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00270{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00270{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00270{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00270{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00270{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00270{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00270{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00270{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00270{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00270{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00270{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00270{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00270{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00270{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00270{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00270{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00270{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00270{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00270{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00270{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00270{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00270{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00270{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00270{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00270{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00270{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00270{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00270{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00270{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00270{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00270{vertical-align:0.000000px;}
.v1_c00270{vertical-align:26.826434px;}
.ls0_c00270{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00270{word-spacing:-41.689573px;}
.ws0_c00270{word-spacing:-14.483232px;}
.ws4_c00270{word-spacing:0.000000px;}
.ws2_c00270{word-spacing:281.638789px;}
.ws1_c00270{word-spacing:1115.008845px;}
._3_c00270{width:1.082771px;}
._0_c00270{width:2.243544px;}
._1_c00270{width:3.498251px;}
._2_c00270{width:4.982092px;}
.fc3_c00270{color:rgb(9,71,81);}
.fc2_c00270{color:rgb(67,39,123);}
.fc1_c00270{color:rgb(0,0,0);}
.fc0_c00270{color:rgb(255,255,255);}
.fs2_c00270{font-size:39.757786px;}
.fsd_c00270{font-size:41.999830px;}
.fs1_c00270{font-size:42.000118px;}
.fsa_c00270{font-size:47.368230px;}
.fs7_c00270{font-size:47.368231px;}
.fsb_c00270{font-size:47.368232px;}
.fs8_c00270{font-size:47.368233px;}
.fs9_c00270{font-size:47.368235px;}
.fse_c00270{font-size:51.661596px;}
.fs5_c00270{font-size:55.754999px;}
.fsf_c00270{font-size:59.984997px;}
.fs3_c00270{font-size:71.999997px;}
.fs6_c00270{font-size:74.424240px;}
.fsc_c00270{font-size:77.011488px;}
.fs0_c00270{font-size:89.985250px;}
.fs4_c00270{font-size:95.984996px;}
.y0_c00270{bottom:0.000000px;}
.y1_c00270{bottom:0.000008px;}
.y50_c00270{bottom:29.401163px;}
.yc_c00270{bottom:175.870541px;}
.yb_c00270{bottom:206.245539px;}
.ya_c00270{bottom:236.620538px;}
.y9_c00270{bottom:266.995537px;}
.y8_c00270{bottom:297.370536px;}
.yd_c00270{bottom:338.449226px;}
.y4f_c00270{bottom:401.525233px;}
.y1b_c00270{bottom:493.328373px;}
.y43_c00270{bottom:493.343471px;}
.y1a_c00270{bottom:493.853637px;}
.y44_c00270{bottom:493.873313px;}
.y2d_c00270{bottom:494.217035px;}
.y42_c00270{bottom:494.588120px;}
.y19_c00270{bottom:494.919783px;}
.y2e_c00270{bottom:495.050360px;}
.y2c_c00270{bottom:495.070410px;}
.y41_c00270{bottom:495.839401px;}
.y18_c00270{bottom:495.993006px;}
.y2b_c00270{bottom:496.105237px;}
.y45_c00270{bottom:496.289812px;}
.y1c_c00270{bottom:496.353473px;}
.y2f_c00270{bottom:497.231603px;}
.y40_c00270{bottom:497.484272px;}
.y17_c00270{bottom:497.644566px;}
.y2a_c00270{bottom:498.307961px;}
.y30_c00270{bottom:498.622504px;}
.y3f_c00270{bottom:499.172531px;}
.y16_c00270{bottom:499.338107px;}
.y31_c00270{bottom:500.320767px;}
.y1d_c00270{bottom:500.630691px;}
.y3e_c00270{bottom:501.037769px;}
.y15_c00270{bottom:501.208172px;}
.y46_c00270{bottom:501.390631px;}
.y29_c00270{bottom:502.099683px;}
.y32_c00270{bottom:502.763100px;}
.y1e_c00270{bottom:503.149449px;}
.y47_c00270{bottom:505.018795px;}
.y33_c00270{bottom:505.022133px;}
.y3d_c00270{bottom:505.692124px;}
.y14_c00270{bottom:505.871886px;}
.y28_c00270{bottom:507.568434px;}
.y34_c00270{bottom:508.291043px;}
.y1f_c00270{bottom:509.101992px;}
.y48_c00270{bottom:510.652700px;}
.y27_c00270{bottom:512.035025px;}
.y3c_c00270{bottom:512.093493px;}
.y13_c00270{bottom:512.281758px;}
.y20_c00270{bottom:513.850725px;}
.y35_c00270{bottom:516.688299px;}
.y49_c00270{bottom:517.310350px;}
.y26_c00270{bottom:518.459788px;}
.y3b_c00270{bottom:519.400636px;}
.y12_c00270{bottom:519.490837px;}
.y11_c00270{bottom:522.949612px;}
.y25_c00270{bottom:523.029662px;}
.y36_c00270{bottom:524.737309px;}
.y21_c00270{bottom:525.634639px;}
.y3a_c00270{bottom:526.562252px;}
.y10_c00270{bottom:528.959931px;}
.y4a_c00270{bottom:529.273374px;}
.y24_c00270{bottom:530.801896px;}
.y39_c00270{bottom:531.331479px;}
.y4c_c00270{bottom:533.268115px;}
.y4e_c00270{bottom:533.961835px;}
.y23_c00270{bottom:534.695563px;}
.yf_c00270{bottom:536.219342px;}
.y38_c00270{bottom:537.503802px;}
.y22_c00270{bottom:537.875201px;}
.y4b_c00270{bottom:538.238934px;}
.y37_c00270{bottom:544.567278px;}
.ye_c00270{bottom:545.754118px;}
.y4d_c00270{bottom:577.437042px;}
.y7_c00270{bottom:639.092601px;}
.y51_c00270{bottom:1021.439863px;}
.y5_c00270{bottom:1128.788247px;}
.y3_c00270{bottom:1133.738464px;}
.y2_c00270{bottom:1147.738503px;}
.y6_c00270{bottom:1151.817083px;}
.y4_c00270{bottom:1171.082779px;}
.h13_c00270{height:32.176627px;}
.hf_c00270{height:35.988753px;}
.h10_c00270{height:35.988755px;}
.h11_c00270{height:35.988756px;}
.he_c00270{height:36.289430px;}
.hb_c00270{height:36.289431px;}
.hc_c00270{height:36.289433px;}
.hd_c00270{height:36.289434px;}
.h5_c00270{height:37.020556px;}
.h15_c00270{height:37.459702px;}
.h4_c00270{height:39.108509px;}
.h16_c00270{height:45.588598px;}
.h8_c00270{height:51.916398px;}
.h9_c00270{height:55.160154px;}
.h14_c00270{height:56.295398px;}
.ha_c00270{height:57.017399px;}
.h12_c00270{height:59.003061px;}
.h6_c00270{height:67.042966px;}
.h3_c00270{height:68.367700px;}
.h7_c00270{height:89.376654px;}
.h2_c00270{height:1304.999946px;}
.h0_c00270{height:1304.999953px;}
.h1_c00270{height:1305.000000px;}
.w2_c00270{width:934.874961px;}
.w0_c00270{width:934.875000px;}
.w1_c00270{width:935.250000px;}
.x0_c00270{left:0.000000px;}
.x5_c00270{left:89.487450px;}
.x6_c00270{left:90.844844px;}
.x1_c00270{left:107.230262px;}
.x2_c00270{left:108.827167px;}
.x40_c00270{left:130.690629px;}
.x2b_c00270{left:134.974838px;}
.x2a_c00270{left:136.648279px;}
.x2c_c00270{left:140.021272px;}
.x2d_c00270{left:144.871714px;}
.x2e_c00270{left:150.237526px;}
.x2f_c00270{left:152.990336px;}
.x30_c00270{left:156.000220px;}
.x31_c00270{left:159.847713px;}
.x3b_c00270{left:161.443962px;}
.x32_c00270{left:163.301377px;}
.x33_c00270{left:171.586339px;}
.x34_c00270{left:179.855997px;}
.x35_c00270{left:188.287487px;}
.x36_c00270{left:196.673970px;}
.x37_c00270{left:200.841336px;}
.x38_c00270{left:205.399483px;}
.x39_c00270{left:209.208896px;}
.x3a_c00270{left:211.795693px;}
.x8_c00270{left:230.398389px;}
.x7_c00270{left:232.534609px;}
.x9_c00270{left:235.623324px;}
.xa_c00270{left:240.462566px;}
.xb_c00270{left:245.820252px;}
.xc_c00270{left:248.569815px;}
.xd_c00270{left:251.576732px;}
.xe_c00270{left:255.421336px;}
.x3d_c00270{left:256.622047px;}
.xf_c00270{left:258.708042px;}
.x10_c00270{left:263.145298px;}
.x11_c00270{left:271.763354px;}
.x12_c00270{left:283.603990px;}
.x13_c00270{left:291.041304px;}
.x3_c00270{left:295.177092px;}
.x14_c00270{left:299.775542px;}
.x15_c00270{left:303.165014px;}
.x16_c00270{left:307.176807px;}
.x17_c00270{left:325.572760px;}
.x18_c00270{left:326.790062px;}
.x19_c00270{left:328.211075px;}
.x1a_c00270{left:331.608300px;}
.x1b_c00270{left:334.832839px;}
.x1c_c00270{left:340.715086px;}
.x1d_c00270{left:346.902068px;}
.x1e_c00270{left:352.595072px;}
.x1f_c00270{left:356.005071px;}
.x20_c00270{left:363.912198px;}
.x21_c00270{left:371.901113px;}
.x22_c00270{left:378.660822px;}
.x23_c00270{left:381.681036px;}
.x24_c00270{left:384.685260px;}
.x25_c00270{left:388.083238px;}
.x26_c00270{left:390.700316px;}
.x27_c00270{left:394.014858px;}
.x28_c00270{left:399.190176px;}
.x29_c00270{left:401.994929px;}
.x3f_c00270{left:452.271732px;}
.x4_c00270{left:676.878164px;}
.x3e_c00270{left:697.320842px;}
.x3c_c00270{left:733.540711px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.v1_c00270{vertical-align:23.845719pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws3_c00270{word-spacing:-37.057398pt;}
.ws0_c00270{word-spacing:-12.873984pt;}
.ws4_c00270{word-spacing:0.000000pt;}
.ws2_c00270{word-spacing:250.345590pt;}
.ws1_c00270{word-spacing:991.118974pt;}
._3_c00270{width:0.962463pt;}
._0_c00270{width:1.994261pt;}
._1_c00270{width:3.109556pt;}
._2_c00270{width:4.428527pt;}
.fs2_c00270{font-size:35.340254pt;}
.fsd_c00270{font-size:37.333182pt;}
.fs1_c00270{font-size:37.333438pt;}
.fsa_c00270{font-size:42.105093pt;}
.fs7_c00270{font-size:42.105094pt;}
.fsb_c00270{font-size:42.105095pt;}
.fs8_c00270{font-size:42.105096pt;}
.fs9_c00270{font-size:42.105098pt;}
.fse_c00270{font-size:45.921418pt;}
.fs5_c00270{font-size:49.559999pt;}
.fsf_c00270{font-size:53.319997pt;}
.fs3_c00270{font-size:63.999997pt;}
.fs6_c00270{font-size:66.154880pt;}
.fsc_c00270{font-size:68.454656pt;}
.fs0_c00270{font-size:79.986889pt;}
.fs4_c00270{font-size:85.319996pt;}
.y0_c00270{bottom:0.000000pt;}
.y1_c00270{bottom:0.000007pt;}
.y50_c00270{bottom:26.134367pt;}
.yc_c00270{bottom:156.329369pt;}
.yb_c00270{bottom:183.329368pt;}
.ya_c00270{bottom:210.329367pt;}
.y9_c00270{bottom:237.329366pt;}
.y8_c00270{bottom:264.329365pt;}
.yd_c00270{bottom:300.843757pt;}
.y4f_c00270{bottom:356.911319pt;}
.y1b_c00270{bottom:438.514110pt;}
.y43_c00270{bottom:438.527530pt;}
.y1a_c00270{bottom:438.981010pt;}
.y44_c00270{bottom:438.998500pt;}
.y2d_c00270{bottom:439.304031pt;}
.y42_c00270{bottom:439.633885pt;}
.y19_c00270{bottom:439.928696pt;}
.y2e_c00270{bottom:440.044765pt;}
.y2c_c00270{bottom:440.062587pt;}
.y41_c00270{bottom:440.746134pt;}
.y18_c00270{bottom:440.882672pt;}
.y2b_c00270{bottom:440.982433pt;}
.y45_c00270{bottom:441.146500pt;}
.y1c_c00270{bottom:441.203087pt;}
.y2f_c00270{bottom:441.983647pt;}
.y40_c00270{bottom:442.208242pt;}
.y17_c00270{bottom:442.350726pt;}
.y2a_c00270{bottom:442.940409pt;}
.y30_c00270{bottom:443.220004pt;}
.y3f_c00270{bottom:443.708917pt;}
.y16_c00270{bottom:443.856095pt;}
.y31_c00270{bottom:444.729570pt;}
.y1d_c00270{bottom:445.005059pt;}
.y3e_c00270{bottom:445.366906pt;}
.y15_c00270{bottom:445.518375pt;}
.y46_c00270{bottom:445.680561pt;}
.y29_c00270{bottom:446.310829pt;}
.y32_c00270{bottom:446.900533pt;}
.y1e_c00270{bottom:447.243955pt;}
.y47_c00270{bottom:448.905595pt;}
.y33_c00270{bottom:448.908563pt;}
.y3d_c00270{bottom:449.504110pt;}
.y14_c00270{bottom:449.663899pt;}
.y28_c00270{bottom:451.171942pt;}
.y34_c00270{bottom:451.814261pt;}
.y1f_c00270{bottom:452.535104pt;}
.y48_c00270{bottom:453.913511pt;}
.y27_c00270{bottom:455.142245pt;}
.y3c_c00270{bottom:455.194216pt;}
.y13_c00270{bottom:455.361563pt;}
.y20_c00270{bottom:456.756200pt;}
.y35_c00270{bottom:459.278488pt;}
.y49_c00270{bottom:459.831423pt;}
.y26_c00270{bottom:460.853144pt;}
.y3b_c00270{bottom:461.689454pt;}
.y12_c00270{bottom:461.769633pt;}
.y11_c00270{bottom:464.844100pt;}
.y25_c00270{bottom:464.915255pt;}
.y36_c00270{bottom:466.433163pt;}
.y21_c00270{bottom:467.230790pt;}
.y3a_c00270{bottom:468.055335pt;}
.y10_c00270{bottom:470.186605pt;}
.y4a_c00270{bottom:470.465221pt;}
.y24_c00270{bottom:471.823908pt;}
.y39_c00270{bottom:472.294648pt;}
.y4c_c00270{bottom:474.016102pt;}
.y4e_c00270{bottom:474.632742pt;}
.y23_c00270{bottom:475.284945pt;}
.yf_c00270{bottom:476.639415pt;}
.y38_c00270{bottom:477.781157pt;}
.y22_c00270{bottom:478.111290pt;}
.y4b_c00270{bottom:478.434608pt;}
.y37_c00270{bottom:484.059803pt;}
.ye_c00270{bottom:485.114772pt;}
.y4d_c00270{bottom:513.277371pt;}
.y7_c00270{bottom:568.082312pt;}
.y51_c00270{bottom:907.946545pt;}
.y5_c00270{bottom:1003.367331pt;}
.y3_c00270{bottom:1007.767524pt;}
.y2_c00270{bottom:1020.212003pt;}
.y6_c00270{bottom:1023.837407pt;}
.y4_c00270{bottom:1040.962470pt;}
.h13_c00270{height:28.601447pt;}
.hf_c00270{height:31.990003pt;}
.h10_c00270{height:31.990004pt;}
.h11_c00270{height:31.990006pt;}
.he_c00270{height:32.257271pt;}
.hb_c00270{height:32.257272pt;}
.hc_c00270{height:32.257274pt;}
.hd_c00270{height:32.257275pt;}
.h5_c00270{height:32.907161pt;}
.h15_c00270{height:33.297513pt;}
.h4_c00270{height:34.763119pt;}
.h16_c00270{height:40.523198pt;}
.h8_c00270{height:46.147909pt;}
.h9_c00270{height:49.031248pt;}
.h14_c00270{height:50.040354pt;}
.ha_c00270{height:50.682132pt;}
.h12_c00270{height:52.447166pt;}
.h6_c00270{height:59.593748pt;}
.h3_c00270{height:60.771289pt;}
.h7_c00270{height:79.445915pt;}
.h2_c00270{height:1159.999952pt;}
.h0_c00270{height:1159.999959pt;}
.h1_c00270{height:1160.000000pt;}
.w2_c00270{width:830.999965pt;}
.w0_c00270{width:831.000000pt;}
.w1_c00270{width:831.333333pt;}
.x0_c00270{left:0.000000pt;}
.x5_c00270{left:79.544400pt;}
.x6_c00270{left:80.750973pt;}
.x1_c00270{left:95.315788pt;}
.x2_c00270{left:96.735260pt;}
.x40_c00270{left:116.169448pt;}
.x2b_c00270{left:119.977634pt;}
.x2a_c00270{left:121.465137pt;}
.x2c_c00270{left:124.463353pt;}
.x2d_c00270{left:128.774857pt;}
.x2e_c00270{left:133.544468pt;}
.x2f_c00270{left:135.991410pt;}
.x30_c00270{left:138.666862pt;}
.x31_c00270{left:142.086856pt;}
.x3b_c00270{left:143.505744pt;}
.x32_c00270{left:145.156780pt;}
.x33_c00270{left:152.521190pt;}
.x34_c00270{left:159.871997pt;}
.x35_c00270{left:167.366655pt;}
.x36_c00270{left:174.821307pt;}
.x37_c00270{left:178.525632pt;}
.x38_c00270{left:182.577318pt;}
.x39_c00270{left:185.963463pt;}
.x3a_c00270{left:188.262839pt;}
.x8_c00270{left:204.798568pt;}
.x7_c00270{left:206.697430pt;}
.x9_c00270{left:209.442955pt;}
.xa_c00270{left:213.744503pt;}
.xb_c00270{left:218.506891pt;}
.xc_c00270{left:220.950947pt;}
.xd_c00270{left:223.623762pt;}
.xe_c00270{left:227.041187pt;}
.x3d_c00270{left:228.108486pt;}
.xf_c00270{left:229.962704pt;}
.x10_c00270{left:233.906932pt;}
.x11_c00270{left:241.567426pt;}
.x12_c00270{left:252.092435pt;}
.x13_c00270{left:258.703382pt;}
.x3_c00270{left:262.379637pt;}
.x14_c00270{left:266.467148pt;}
.x15_c00270{left:269.480012pt;}
.x16_c00270{left:273.046051pt;}
.x17_c00270{left:289.398009pt;}
.x18_c00270{left:290.480055pt;}
.x19_c00270{left:291.743178pt;}
.x1a_c00270{left:294.762933pt;}
.x1b_c00270{left:297.629190pt;}
.x1c_c00270{left:302.857854pt;}
.x1d_c00270{left:308.357394pt;}
.x1e_c00270{left:313.417841pt;}
.x1f_c00270{left:316.448952pt;}
.x20_c00270{left:323.477509pt;}
.x21_c00270{left:330.578767pt;}
.x22_c00270{left:336.587398pt;}
.x23_c00270{left:339.272032pt;}
.x24_c00270{left:341.942453pt;}
.x25_c00270{left:344.962878pt;}
.x26_c00270{left:347.289170pt;}
.x27_c00270{left:350.235429pt;}
.x28_c00270{left:354.835712pt;}
.x29_c00270{left:357.328825pt;}
.x3f_c00270{left:402.019318pt;}
.x4_c00270{left:601.669479pt;}
.x3e_c00270{left:619.840748pt;}
.x3c_c00270{left:652.036188pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_adee2f4915c4d25c011415db.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.006348;font-style:normal;font-weight:normal;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_21fbdf03040a4e3dbc1b3f5e.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.006348;font-style:normal;font-weight:normal;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_55dc29ddb89bdf6a5d976c30.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.000000;font-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_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;}
.ls0_c00271{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00271{word-spacing:-19.320776px;}
.ws1_c00271{word-spacing:-18.703125px;}
.ws2_c00271{word-spacing:0.000000px;}
._7_c00271{width:1.340604px;}
._5_c00271{width:2.488678px;}
._2_c00271{width:3.651853px;}
._4_c00271{width:5.006196px;}
._1_c00271{width:6.385596px;}
._0_c00271{width:7.923612px;}
._9_c00271{width:9.043402px;}
._3_c00271{width:10.352144px;}
._6_c00271{width:16.480110px;}
._8_c00271{width:29.397625px;}
.fc1_c00271{color:rgb(0,0,0);}
.fc0_c00271{color:rgb(67,39,123);}
.fs1_c00271{font-size:71.999997px;}
.fs0_c00271{font-size:74.377724px;}
.y0_c00271{bottom:0.000000px;}
.y1_c00271{bottom:0.000008px;}
.y19_c00271{bottom:29.400983px;}
.y18_c00271{bottom:393.614264px;}
.y17_c00271{bottom:423.989262px;}
.y16_c00271{bottom:457.064261px;}
.y14_c00271{bottom:539.274362px;}
.y13_c00271{bottom:569.649360px;}
.y12_c00271{bottom:600.024359px;}
.y11_c00271{bottom:630.399358px;}
.y10_c00271{bottom:660.774356px;}
.yf_c00271{bottom:693.849171px;}
.ye_c00271{bottom:767.742156px;}
.yd_c00271{bottom:798.117155px;}
.yc_c00271{bottom:828.492154px;}
.yb_c00271{bottom:858.867153px;}
.ya_c00271{bottom:889.242151px;}
.y9_c00271{bottom:919.617150px;}
.y8_c00271{bottom:949.992149px;}
.y7_c00271{bottom:980.367148px;}
.y15_c00271{bottom:1013.442146px;}
.y6_c00271{bottom:1074.479370px;}
.y5_c00271{bottom:1104.854368px;}
.y4_c00271{bottom:1135.229367px;}
.y3_c00271{bottom:1165.604366px;}
.y2_c00271{bottom:1199.188987px;}
.h4_c00271{height:55.160154px;}
.h3_c00271{height:56.981762px;}
.h2_c00271{height:1304.999946px;}
.h0_c00271{height:1304.999953px;}
.h1_c00271{height:1305.000000px;}
.w2_c00271{width:934.874961px;}
.w0_c00271{width:934.875000px;}
.w1_c00271{width:935.250000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:88.794432px;}
.x2_c00271{left:90.722973px;}
.x3_c00271{left:452.271732px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws0_c00271{word-spacing:-17.174023pt;}
.ws1_c00271{word-spacing:-16.625000pt;}
.ws2_c00271{word-spacing:0.000000pt;}
._7_c00271{width:1.191648pt;}
._5_c00271{width:2.212158pt;}
._2_c00271{width:3.246091pt;}
._4_c00271{width:4.449952pt;}
._1_c00271{width:5.676086pt;}
._0_c00271{width:7.043210pt;}
._9_c00271{width:8.038579pt;}
._3_c00271{width:9.201905pt;}
._6_c00271{width:14.648987pt;}
._8_c00271{width:26.131222pt;}
.fs1_c00271{font-size:63.999997pt;}
.fs0_c00271{font-size:66.113533pt;}
.y0_c00271{bottom:0.000000pt;}
.y1_c00271{bottom:0.000007pt;}
.y19_c00271{bottom:26.134207pt;}
.y18_c00271{bottom:349.879345pt;}
.y17_c00271{bottom:376.879344pt;}
.y16_c00271{bottom:406.279343pt;}
.y14_c00271{bottom:479.354988pt;}
.y13_c00271{bottom:506.354987pt;}
.y12_c00271{bottom:533.354986pt;}
.y11_c00271{bottom:560.354985pt;}
.y10_c00271{bottom:587.354984pt;}
.yf_c00271{bottom:616.754819pt;}
.ye_c00271{bottom:682.437472pt;}
.yd_c00271{bottom:709.437471pt;}
.yc_c00271{bottom:736.437470pt;}
.yb_c00271{bottom:763.437469pt;}
.ya_c00271{bottom:790.437468pt;}
.y9_c00271{bottom:817.437467pt;}
.y8_c00271{bottom:844.437466pt;}
.y7_c00271{bottom:871.437464pt;}
.y15_c00271{bottom:900.837463pt;}
.y6_c00271{bottom:955.092773pt;}
.y5_c00271{bottom:982.092772pt;}
.y4_c00271{bottom:1009.092771pt;}
.y3_c00271{bottom:1036.092770pt;}
.y2_c00271{bottom:1065.945766pt;}
.h4_c00271{height:49.031248pt;}
.h3_c00271{height:50.650455pt;}
.h2_c00271{height:1159.999952pt;}
.h0_c00271{height:1159.999959pt;}
.h1_c00271{height:1160.000000pt;}
.w2_c00271{width:830.999965pt;}
.w0_c00271{width:831.000000pt;}
.w1_c00271{width:831.333333pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:78.928384pt;}
.x2_c00271{left:80.642643pt;}
.x3_c00271{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44cab8874ba3e717472a70fd.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:0.775879;font-style:normal;font-weight:normal;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_df8c0eefadf42ce1bbde1635.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.006348;font-style:normal;font-weight:normal;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_8b2bd74a5165756ca8c8cf76.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.000000;font-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_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);}
.v0_c00272{vertical-align:0.000000px;}
.ls0_c00272{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00272{word-spacing:0.000000px;}
._0_c00272{width:4.767171px;}
.fc1_c00272{color:rgb(0,0,0);}
.fc0_c00272{color:rgb(67,39,123);}
.fs0_c00272{font-size:71.999997px;}
.y0_c00272{bottom:0.000000px;}
.y1_c00272{bottom:0.000008px;}
.y3_c00272{bottom:29.401163px;}
.y5_c00272{bottom:1113.231752px;}
.y4_c00272{bottom:1142.481750px;}
.y2_c00272{bottom:1199.772371px;}
.h3_c00272{height:55.160154px;}
.h2_c00272{height:1304.999946px;}
.h0_c00272{height:1304.999953px;}
.h1_c00272{height:1305.000000px;}
.w2_c00272{width:934.874961px;}
.w0_c00272{width:934.875000px;}
.w1_c00272{width:935.250000px;}
.x0_c00272{left:0.000000px;}
.x1_c00272{left:128.173847px;}
.x2_c00272{left:452.271732px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ws0_c00272{word-spacing:0.000000pt;}
._0_c00272{width:4.237486pt;}
.fs0_c00272{font-size:63.999997pt;}
.y0_c00272{bottom:0.000000pt;}
.y1_c00272{bottom:0.000007pt;}
.y3_c00272{bottom:26.134367pt;}
.y5_c00272{bottom:989.539335pt;}
.y4_c00272{bottom:1015.539334pt;}
.y2_c00272{bottom:1066.464330pt;}
.h3_c00272{height:49.031248pt;}
.h2_c00272{height:1159.999952pt;}
.h0_c00272{height:1159.999959pt;}
.h1_c00272{height:1160.000000pt;}
.w2_c00272{width:830.999965pt;}
.w0_c00272{width:831.000000pt;}
.w1_c00272{width:831.333333pt;}
.x0_c00272{left:0.000000pt;}
.x1_c00272{left:113.932309pt;}
.x2_c00272{left:402.019318pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00273{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
}
.y0_c00273{bottom:0.000000px;}
.h0_c00273{height:1304.999953px;}
.h1_c00273{height:1305.000000px;}
.w0_c00273{width:934.875000px;}
.w1_c00273{width:935.250000px;}
.x0_c00273{left:0.000000px;}
@media print{
.y0_c00273{bottom:0.000000pt;}
.h0_c00273{height:1159.999959pt;}
.h1_c00273{height:1160.000000pt;}
.w0_c00273{width:831.000000pt;}
.w1_c00273{width:831.333333pt;}
.x0_c00273{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_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_c58d533d4ecc1be510650d97.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:0.709961;font-style:normal;font-weight:normal;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_c740332598556265a04133da.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.131747;font-style:normal;font-weight:normal;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_761746627980a4c33fbcc4a9.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:1.005371;font-style:normal;font-weight:normal;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_765d07432ea3fa8a9e1b7c0e.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:1.000000;font-style:normal;font-weight: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_c00274;src:url('chunks/assets/font_11d1a962eb30f8fe331fa733.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;line-height:0.723633;font-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_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;}
.ls0_c00274{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00274{word-spacing:-0.522678px;}
.ws1_c00274{word-spacing:-0.059949px;}
.ws2_c00274{word-spacing:0.000000px;}
._0_c00274{margin-left:-8.366537px;}
.fc0_c00274{color:rgb(255,255,255);}
.fs1_c00274{font-size:59.949210px;}
.fs0_c00274{font-size:522.677963px;}
.y0_c00274{bottom:0.000000px;}
.y1_c00274{bottom:0.000008px;}
.y9_c00274{bottom:92.996880px;}
.y8_c00274{bottom:114.359127px;}
.y7_c00274{bottom:135.721374px;}
.y6_c00274{bottom:157.083620px;}
.y5_c00274{bottom:178.445867px;}
.y4_c00274{bottom:199.808114px;}
.y3_c00274{bottom:221.170360px;}
.y2_c00274{bottom:509.742666px;}
.yb_c00274{bottom:1206.011805px;}
.ya_c00274{bottom:1226.249723px;}
.h6_c00274{height:45.547349px;}
.h5_c00274{height:45.869341px;}
.h4_c00274{height:55.820707px;}
.h3_c00274{height:365.976659px;}
.h2_c00274{height:1304.999946px;}
.h0_c00274{height:1304.999953px;}
.h1_c00274{height:1305.000000px;}
.w2_c00274{width:934.874961px;}
.w0_c00274{width:934.875000px;}
.w1_c00274{width:935.250000px;}
.x0_c00274{left:0.000000px;}
.x2_c00274{left:87.850202px;}
.x1_c00274{left:91.671023px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls0_c00274{letter-spacing:0.000000pt;}
.ws0_c00274{word-spacing:-0.464603pt;}
.ws1_c00274{word-spacing:-0.053288pt;}
.ws2_c00274{word-spacing:0.000000pt;}
._0_c00274{margin-left:-7.436922pt;}
.fs1_c00274{font-size:53.288186pt;}
.fs0_c00274{font-size:464.602634pt;}
.y0_c00274{bottom:0.000000pt;}
.y1_c00274{bottom:0.000007pt;}
.y9_c00274{bottom:82.663894pt;}
.y8_c00274{bottom:101.652557pt;}
.y7_c00274{bottom:120.641221pt;}
.y6_c00274{bottom:139.629885pt;}
.y5_c00274{bottom:158.618548pt;}
.y4_c00274{bottom:177.607212pt;}
.y3_c00274{bottom:196.595876pt;}
.y2_c00274{bottom:453.104592pt;}
.yb_c00274{bottom:1072.010493pt;}
.ya_c00274{bottom:1089.999753pt;}
.h6_c00274{height:40.486532pt;}
.h5_c00274{height:40.772748pt;}
.h4_c00274{height:49.618406pt;}
.h3_c00274{height:325.312586pt;}
.h2_c00274{height:1159.999952pt;}
.h0_c00274{height:1159.999959pt;}
.h1_c00274{height:1160.000000pt;}
.w2_c00274{width:830.999965pt;}
.w0_c00274{width:831.000000pt;}
.w1_c00274{width:831.333333pt;}
.x0_c00274{left:0.000000pt;}
.x2_c00274{left:78.089069pt;}
.x1_c00274{left:81.485354pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00275{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
}
.y0_c00275{bottom:0.000000px;}
.h0_c00275{height:1304.999953px;}
.h1_c00275{height:1305.000000px;}
.w0_c00275{width:934.875000px;}
.w1_c00275{width:935.250000px;}
.x0_c00275{left:0.000000px;}
@media print{
.y0_c00275{bottom:0.000000pt;}
.h0_c00275{height:1159.999959pt;}
.h1_c00275{height:1160.000000pt;}
.w0_c00275{width:831.000000pt;}
.w1_c00275{width:831.333333pt;}
.x0_c00275{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_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_0c1d1798fedc7e3a00207613.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:0.733887;font-style:normal;font-weight:normal;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_3d6a6f548dfe5a01d3c70bae.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.000000;font-style:normal;font-weight:normal;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_475d6b249f76cd82198dfbda.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.006348;font-style:normal;font-weight:normal;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_ef75ac09ec0bee8008350615.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:0.713867;font-style:normal;font-weight: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_c00276;src:url('chunks/assets/font_9a159f37eee5b316513d1eb4.woff2')format("woff");}.ff5_c00276{font-family:ff5_c00276;line-height:0.769531;font-style:normal;font-weight: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_c00276;src:url('chunks/assets/font_5c70297b73ab8cd3836f707e.woff2')format("woff");}.ff6_c00276{font-family:ff6_c00276;line-height:1.005371;font-style:normal;font-weight: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_c00276;src:url('chunks/assets/font_2b3f7d162e1e46d5bee61118.woff2')format("woff");}.ff7_c00276{font-family:ff7_c00276;line-height:0.769531;font-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_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);}
.v0_c00276{vertical-align:0.000000px;}
.v1_c00276{vertical-align:18.747538px;}
.ls1_c00276{letter-spacing:0.000000px;}
.ls0_c00276{letter-spacing:19.562530px;}
.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;}
}
.ws3_c00276{word-spacing:-18.691966px;}
.ws5_c00276{word-spacing:-18.680283px;}
.ws2_c00276{word-spacing:-15.572744px;}
.ws4_c00276{word-spacing:-0.059949px;}
.ws6_c00276{word-spacing:0.000000px;}
.ws1_c00276{word-spacing:901.842309px;}
.ws0_c00276{word-spacing:1933.483687px;}
._0_c00276{margin-left:-1046.432851px;}
._2_c00276{margin-left:-900.491531px;}
._1_c00276{margin-left:-540.515980px;}
._14_c00276{width:1.201212px;}
._6_c00276{width:3.192087px;}
._11_c00276{width:4.806916px;}
._4_c00276{width:5.874210px;}
._12_c00276{width:7.123674px;}
._d_c00276{width:9.284497px;}
._10_c00276{width:12.250476px;}
._f_c00276{width:17.645660px;}
._7_c00276{width:19.522611px;}
._15_c00276{width:20.561133px;}
._a_c00276{width:21.869717px;}
._13_c00276{width:23.447200px;}
._9_c00276{width:26.842561px;}
._e_c00276{width:28.093534px;}
._8_c00276{width:63.594058px;}
._5_c00276{width:85.568248px;}
._b_c00276{width:98.575510px;}
._c_c00276{width:104.826087px;}
._3_c00276{width:1449.211737px;}
.fc3_c00276{color:rgb(34,67,94);}
.fc1_c00276{color:rgb(0,110,129);}
.fc2_c00276{color:rgb(0,0,0);}
.fc0_c00276{color:rgb(255,255,255);}
.fs2_c00276{font-size:59.949210px;}
.fs1_c00276{font-size:64.098877px;}
.fs4_c00276{font-size:71.912067px;}
.fs3_c00276{font-size:71.957041px;}
.fs0_c00276{font-size:98.242415px;}
.y0_c00276{bottom:0.000000px;}
.y1_c00276{bottom:0.000008px;}
.y20_c00276{bottom:30.156225px;}
.y9_c00276{bottom:73.797857px;}
.y8_c00276{bottom:94.035775px;}
.y7_c00276{bottom:114.273693px;}
.y6_c00276{bottom:134.511611px;}
.y5_c00276{bottom:154.749529px;}
.y4_c00276{bottom:174.987447px;}
.y3_c00276{bottom:190.538480px;}
.y1e_c00276{bottom:248.432082px;}
.y1d_c00276{bottom:277.664630px;}
.y1c_c00276{bottom:306.897178px;}
.y1b_c00276{bottom:336.129726px;}
.y1a_c00276{bottom:365.362274px;}
.y19_c00276{bottom:394.594822px;}
.y18_c00276{bottom:423.827370px;}
.y17_c00276{bottom:453.059918px;}
.y16_c00276{bottom:509.173202px;}
.y15_c00276{bottom:533.908435px;}
.y14_c00276{bottom:558.643668px;}
.y2_c00276{bottom:807.571692px;}
.y13_c00276{bottom:867.172710px;}
.y12_c00276{bottom:896.405258px;}
.y11_c00276{bottom:925.637806px;}
.y10_c00276{bottom:954.870354px;}
.yf_c00276{bottom:984.102902px;}
.ye_c00276{bottom:1013.335450px;}
.yd_c00276{bottom:1042.567998px;}
.yc_c00276{bottom:1071.800546px;}
.yb_c00276{bottom:1101.033094px;}
.ya_c00276{bottom:1130.265642px;}
.y1f_c00276{bottom:1200.662313px;}
.h7_c00276{height:45.547349px;}
.h5_c00276{height:45.927886px;}
.h8_c00276{height:55.092790px;}
.h6_c00276{height:55.127245px;}
.h4_c00276{height:64.675424px;}
.h3_c00276{height:71.139405px;}
.h2_c00276{height:1304.999946px;}
.h0_c00276{height:1304.999953px;}
.h1_c00276{height:1305.000000px;}
.w2_c00276{width:934.874961px;}
.w0_c00276{width:934.875000px;}
.w1_c00276{width:935.250000px;}
.x0_c00276{left:0.000000px;}
.x6_c00276{left:90.552125px;}
.x4_c00276{left:92.007857px;}
.x5_c00276{left:93.487496px;}
.x2_c00276{left:285.792396px;}
.x1_c00276{left:298.736311px;}
.x8_c00276{left:451.985828px;}
.x3_c00276{left:561.362539px;}
.x7_c00276{left:772.909905px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.v1_c00276{vertical-align:16.664479pt;}
.ls1_c00276{letter-spacing:0.000000pt;}
.ls0_c00276{letter-spacing:17.388915pt;}
.ws3_c00276{word-spacing:-16.615081pt;}
.ws5_c00276{word-spacing:-16.604696pt;}
.ws2_c00276{word-spacing:-13.842439pt;}
.ws4_c00276{word-spacing:-0.053288pt;}
.ws6_c00276{word-spacing:0.000000pt;}
.ws1_c00276{word-spacing:801.637608pt;}
.ws0_c00276{word-spacing:1718.652166pt;}
._0_c00276{margin-left:-930.162534pt;}
._2_c00276{margin-left:-800.436917pt;}
._1_c00276{margin-left:-480.458649pt;}
._14_c00276{width:1.067744pt;}
._6_c00276{width:2.837410pt;}
._11_c00276{width:4.272814pt;}
._4_c00276{width:5.221520pt;}
._12_c00276{width:6.332155pt;}
._d_c00276{width:8.252886pt;}
._10_c00276{width:10.889312pt;}
._f_c00276{width:15.685031pt;}
._7_c00276{width:17.353432pt;}
._15_c00276{width:18.276563pt;}
._a_c00276{width:19.439748pt;}
._13_c00276{width:20.841955pt;}
._9_c00276{width:23.860054pt;}
._e_c00276{width:24.972031pt;}
._8_c00276{width:56.528052pt;}
._5_c00276{width:76.060665pt;}
._b_c00276{width:87.622675pt;}
._c_c00276{width:93.178744pt;}
._3_c00276{width:1288.188210pt;}
.fs2_c00276{font-size:53.288186pt;}
.fs1_c00276{font-size:56.976780pt;}
.fs4_c00276{font-size:63.921837pt;}
.fs3_c00276{font-size:63.961814pt;}
.fs0_c00276{font-size:87.326591pt;}
.y0_c00276{bottom:0.000000pt;}
.y1_c00276{bottom:0.000007pt;}
.y20_c00276{bottom:26.805533pt;}
.y9_c00276{bottom:65.598095pt;}
.y8_c00276{bottom:83.587356pt;}
.y7_c00276{bottom:101.576616pt;}
.y6_c00276{bottom:119.565876pt;}
.y5_c00276{bottom:137.555137pt;}
.y4_c00276{bottom:155.544397pt;}
.y3_c00276{bottom:169.367538pt;}
.y1e_c00276{bottom:220.828517pt;}
.y1d_c00276{bottom:246.813004pt;}
.y1c_c00276{bottom:272.797491pt;}
.y1b_c00276{bottom:298.781978pt;}
.y1a_c00276{bottom:324.766465pt;}
.y19_c00276{bottom:350.750953pt;}
.y18_c00276{bottom:376.735440pt;}
.y17_c00276{bottom:402.719927pt;}
.y16_c00276{bottom:452.598402pt;}
.y15_c00276{bottom:474.585275pt;}
.y14_c00276{bottom:496.572149pt;}
.y2_c00276{bottom:717.841504pt;}
.y13_c00276{bottom:770.820187pt;}
.y12_c00276{bottom:796.804674pt;}
.y11_c00276{bottom:822.789161pt;}
.y10_c00276{bottom:848.773648pt;}
.yf_c00276{bottom:874.758135pt;}
.ye_c00276{bottom:900.742622pt;}
.yd_c00276{bottom:926.727109pt;}
.yc_c00276{bottom:952.711596pt;}
.yb_c00276{bottom:978.696083pt;}
.ya_c00276{bottom:1004.680570pt;}
.y1f_c00276{bottom:1067.255390pt;}
.h7_c00276{height:40.486532pt;}
.h5_c00276{height:40.824787pt;}
.h8_c00276{height:48.971369pt;}
.h6_c00276{height:49.001996pt;}
.h4_c00276{height:57.489266pt;}
.h3_c00276{height:63.235027pt;}
.h2_c00276{height:1159.999952pt;}
.h0_c00276{height:1159.999959pt;}
.h1_c00276{height:1160.000000pt;}
.w2_c00276{width:830.999965pt;}
.w0_c00276{width:831.000000pt;}
.w1_c00276{width:831.333333pt;}
.x0_c00276{left:0.000000pt;}
.x6_c00276{left:80.490777pt;}
.x4_c00276{left:81.784761pt;}
.x5_c00276{left:83.099997pt;}
.x2_c00276{left:254.037685pt;}
.x1_c00276{left:265.543387pt;}
.x8_c00276{left:401.765180pt;}
.x3_c00276{left:498.988923pt;}
.x7_c00276{left:687.031027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a7e2b8bd736e4959ccdf886.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.006348;font-style:normal;font-weight:normal;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_c0dc2b1da9915ec9cff10005.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.000000;font-style:normal;font-weight:normal;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_8d5f19d7d55462824f2494b0.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00277;src:url('chunks/assets/font_2d7deaa08558454454a2b37f.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:0.713867;font-style:normal;font-weight: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_c00277;src:url('chunks/assets/font_beec0e00d8dad1028083f7fb.woff2')format("woff");}.ff5_c00277{font-family:ff5_c00277;line-height:0.716797;font-style:normal;font-weight: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_c00277;src:url('chunks/assets/font_cab21544ab1c3723b28168cd.woff2')format("woff");}.ff6_c00277{font-family:ff6_c00277;line-height:1.005371;font-style:normal;font-weight: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_c00277;src:url('chunks/assets/font_2b3f7d162e1e46d5bee61118.woff2')format("woff");}.ff7_c00277{font-family:ff7_c00277;line-height:0.769531;font-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_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);}
.v0_c00277{vertical-align:0.000000px;}
.ls2_c00277{letter-spacing:0.000000px;}
.ls1_c00277{letter-spacing:1.643518px;}
.ls0_c00277{letter-spacing:1.643563px;}
.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;}
}
.ws3_c00277{word-spacing:-35.255672px;}
.ws0_c00277{word-spacing:-18.691966px;}
.ws4_c00277{word-spacing:-18.680283px;}
.ws1_c00277{word-spacing:-15.572744px;}
.ws2_c00277{word-spacing:-0.059949px;}
.ws5_c00277{word-spacing:0.000000px;}
._10_c00277{margin-left:-1127.326320px;}
._a_c00277{width:1.592716px;}
._3_c00277{width:2.787350px;}
._7_c00277{width:3.982023px;}
._4_c00277{width:5.183758px;}
._2_c00277{width:7.129235px;}
._9_c00277{width:8.525244px;}
._5_c00277{width:11.965138px;}
._8_c00277{width:13.905129px;}
._e_c00277{width:14.956849px;}
._1_c00277{width:20.325756px;}
._b_c00277{width:21.628415px;}
._d_c00277{width:22.873972px;}
._c_c00277{width:28.999637px;}
._0_c00277{width:30.114087px;}
._6_c00277{width:31.164989px;}
._f_c00277{width:46.729915px;}
.fc2_c00277{color:rgb(0,110,129);}
.fc1_c00277{color:rgb(34,67,94);}
.fc0_c00277{color:rgb(0,0,0);}
.fs1_c00277{font-size:59.949210px;}
.fs3_c00277{font-size:71.912067px;}
.fs0_c00277{font-size:71.957041px;}
.fs2_c00277{font-size:135.721080px;}
.y0_c00277{bottom:0.000000px;}
.y1_c00277{bottom:0.000008px;}
.y20_c00277{bottom:30.156225px;}
.y1d_c00277{bottom:62.594941px;}
.y1c_c00277{bottom:91.827489px;}
.y1b_c00277{bottom:121.060037px;}
.y1a_c00277{bottom:150.292585px;}
.y19_c00277{bottom:179.525133px;}
.y18_c00277{bottom:208.757681px;}
.y17_c00277{bottom:237.990228px;}
.y16_c00277{bottom:267.222776px;}
.y15_c00277{bottom:296.455324px;}
.y14_c00277{bottom:325.687872px;}
.y13_c00277{bottom:354.920420px;}
.y12_c00277{bottom:384.152968px;}
.y11_c00277{bottom:444.671845px;}
.y10_c00277{bottom:464.909763px;}
.yf_c00277{bottom:485.147680px;}
.y1f_c00277{bottom:692.891381px;}
.ye_c00277{bottom:780.021989px;}
.yd_c00277{bottom:809.254537px;}
.yc_c00277{bottom:838.487085px;}
.yb_c00277{bottom:867.719633px;}
.ya_c00277{bottom:896.952181px;}
.y9_c00277{bottom:926.184729px;}
.y8_c00277{bottom:955.417277px;}
.y7_c00277{bottom:984.649825px;}
.y6_c00277{bottom:1013.882373px;}
.y5_c00277{bottom:1043.114921px;}
.y4_c00277{bottom:1072.347469px;}
.y3_c00277{bottom:1101.580017px;}
.y2_c00277{bottom:1130.812565px;}
.y1e_c00277{bottom:1200.662313px;}
.h5_c00277{height:45.547349px;}
.h4_c00277{height:45.927886px;}
.h7_c00277{height:55.092790px;}
.h3_c00277{height:55.127245px;}
.h6_c00277{height:97.284446px;}
.h2_c00277{height:1304.999946px;}
.h0_c00277{height:1304.999953px;}
.h1_c00277{height:1305.000000px;}
.w2_c00277{width:934.874961px;}
.w0_c00277{width:934.875000px;}
.w1_c00277{width:935.250000px;}
.x0_c00277{left:0.000000px;}
.x1_c00277{left:88.930083px;}
.x4_c00277{left:451.985828px;}
.x3_c00277{left:594.889031px;}
.x2_c00277{left:772.909905px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls2_c00277{letter-spacing:0.000000pt;}
.ls1_c00277{letter-spacing:1.460905pt;}
.ls0_c00277{letter-spacing:1.460945pt;}
.ws3_c00277{word-spacing:-31.338375pt;}
.ws0_c00277{word-spacing:-16.615081pt;}
.ws4_c00277{word-spacing:-16.604696pt;}
.ws1_c00277{word-spacing:-13.842439pt;}
.ws2_c00277{word-spacing:-0.053288pt;}
.ws5_c00277{word-spacing:0.000000pt;}
._10_c00277{margin-left:-1002.067840pt;}
._a_c00277{width:1.415748pt;}
._3_c00277{width:2.477645pt;}
._7_c00277{width:3.539576pt;}
._4_c00277{width:4.607785pt;}
._2_c00277{width:6.337098pt;}
._9_c00277{width:7.577995pt;}
._5_c00277{width:10.635678pt;}
._8_c00277{width:12.360115pt;}
._e_c00277{width:13.294977pt;}
._1_c00277{width:18.067338pt;}
._b_c00277{width:19.225258pt;}
._d_c00277{width:20.332419pt;}
._c_c00277{width:25.777455pt;}
._0_c00277{width:26.768078pt;}
._6_c00277{width:27.702212pt;}
._f_c00277{width:41.537702pt;}
.fs1_c00277{font-size:53.288186pt;}
.fs3_c00277{font-size:63.921837pt;}
.fs0_c00277{font-size:63.961814pt;}
.fs2_c00277{font-size:120.640960pt;}
.y0_c00277{bottom:0.000000pt;}
.y1_c00277{bottom:0.000007pt;}
.y20_c00277{bottom:26.805533pt;}
.y1d_c00277{bottom:55.639947pt;}
.y1c_c00277{bottom:81.624434pt;}
.y1b_c00277{bottom:107.608921pt;}
.y1a_c00277{bottom:133.593408pt;}
.y19_c00277{bottom:159.577896pt;}
.y18_c00277{bottom:185.562383pt;}
.y17_c00277{bottom:211.546870pt;}
.y16_c00277{bottom:237.531357pt;}
.y15_c00277{bottom:263.515844pt;}
.y14_c00277{bottom:289.500331pt;}
.y13_c00277{bottom:315.484818pt;}
.y12_c00277{bottom:341.469305pt;}
.y11_c00277{bottom:395.263862pt;}
.y10_c00277{bottom:413.253122pt;}
.yf_c00277{bottom:431.242383pt;}
.y1f_c00277{bottom:615.903450pt;}
.ye_c00277{bottom:693.352879pt;}
.yd_c00277{bottom:719.337366pt;}
.yc_c00277{bottom:745.321853pt;}
.yb_c00277{bottom:771.306340pt;}
.ya_c00277{bottom:797.290827pt;}
.y9_c00277{bottom:823.275314pt;}
.y8_c00277{bottom:849.259801pt;}
.y7_c00277{bottom:875.244289pt;}
.y6_c00277{bottom:901.228776pt;}
.y5_c00277{bottom:927.213263pt;}
.y4_c00277{bottom:953.197750pt;}
.y3_c00277{bottom:979.182237pt;}
.y2_c00277{bottom:1005.166724pt;}
.y1e_c00277{bottom:1067.255390pt;}
.h5_c00277{height:40.486532pt;}
.h4_c00277{height:40.824787pt;}
.h7_c00277{height:48.971369pt;}
.h3_c00277{height:49.001996pt;}
.h6_c00277{height:86.475063pt;}
.h2_c00277{height:1159.999952pt;}
.h0_c00277{height:1159.999959pt;}
.h1_c00277{height:1160.000000pt;}
.w2_c00277{width:830.999965pt;}
.w0_c00277{width:831.000000pt;}
.w1_c00277{width:831.333333pt;}
.x0_c00277{left:0.000000pt;}
.x1_c00277{left:79.048963pt;}
.x4_c00277{left:401.765180pt;}
.x3_c00277{left:528.790250pt;}
.x2_c00277{left:687.031027pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb5ba9ad031a960a378f93ba.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.006348;font-style:normal;font-weight:normal;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_088243352f1741991cceb6d6.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:0.842773;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.006348;font-style:normal;font-weight:normal;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_bba6d4a9d884d1187ce28df2.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:0.769531;font-style:normal;font-weight: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_e9fdc658f11bbf8d6136a15a.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;line-height:1.171387;font-style:normal;font-weight: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_c00278;src:url('chunks/assets/font_836eb32a2ecc2a315e8818db.woff2')format("woff");}.ff6_c00278{font-family:ff6_c00278;line-height:1.000000;font-style:normal;font-weight: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_c00278;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00278{font-family:ff7_c00278;line-height:0.769531;font-style:normal;font-weight: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_c00278;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff8_c00278{font-family:ff8_c00278;line-height:0.743000;font-style:normal;font-weight: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_c00278;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00278{font-family:ff9_c00278;line-height:0.734863;font-style:normal;font-weight: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_c00278;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00278{font-family:ffa_c00278;line-height:0.940000;font-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_c00278{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00278{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00278{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00278{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00278{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00278{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00278{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00278{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00278{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00278{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00278{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00278{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00278{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00278{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00278{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00278{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00278{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00278{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00278{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00278{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00278{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00278{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00278{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00278{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00278{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00278{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00278{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00278{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00278{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00278{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00278{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00278{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00278{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00278{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00278{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00278{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00278{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00278{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00278{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00278{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00278{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00278{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00278{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00278{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00278{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00278{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00278{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00278{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00278{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00278{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00278{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00278{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00278{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00278{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00278{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00278{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00278{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00278{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00278{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00278{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00278{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00278{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.v1_c00278{vertical-align:6.745949px;}
.ls1_c00278{letter-spacing:0.000000px;}
.ls0_c00278{letter-spacing:5.481102px;}
.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;}
}
.ws5_c00278{word-spacing:-41.664701px;}
.ws0_c00278{word-spacing:-18.691966px;}
.ws4_c00278{word-spacing:-18.680283px;}
.ws1_c00278{word-spacing:-15.162211px;}
.ws3_c00278{word-spacing:-0.055722px;}
.ws6_c00278{word-spacing:0.000000px;}
.ws2_c00278{word-spacing:281.470893px;}
._2_c00278{width:3.470224px;}
._0_c00278{width:4.527372px;}
._3_c00278{width:6.465233px;}
._4_c00278{width:22.104331px;}
._1_c00278{width:23.139050px;}
._5_c00278{width:33.951392px;}
.fc4_c00278{color:transparent;}
.fc3_c00278{color:rgb(9,71,81);}
.fc1_c00278{color:rgb(34,67,94);}
.fc2_c00278{color:rgb(255,255,255);}
.fc0_c00278{color:rgb(0,0,0);}
.fs4_c00278{font-size:39.734069px;}
.fse_c00278{font-size:41.974772px;}
.fs8_c00278{font-size:47.339969px;}
.fsb_c00278{font-size:47.339970px;}
.fs7_c00278{font-size:47.339972px;}
.fsa_c00278{font-size:47.339973px;}
.fs9_c00278{font-size:47.339974px;}
.fsc_c00278{font-size:47.339975px;}
.fsf_c00278{font-size:51.630774px;}
.fs10_c00278{font-size:55.721735px;}
.fs3_c00278{font-size:59.949210px;}
.fs11_c00278{font-size:71.912067px;}
.fs0_c00278{font-size:71.957041px;}
.fs1_c00278{font-size:74.379845px;}
.fsd_c00278{font-size:76.965540px;}
.fs6_c00278{font-size:83.919899px;}
.fs2_c00278{font-size:89.946302px;}
.fs5_c00278{font-size:95.927731px;}
.y0_c00278{bottom:0.000000px;}
.y1_c00278{bottom:0.000008px;}
.y54_c00278{bottom:30.156225px;}
.y7_c00278{bottom:150.684588px;}
.y6_c00278{bottom:181.041465px;}
.y5_c00278{bottom:211.398342px;}
.y4_c00278{bottom:241.755218px;}
.y3_c00278{bottom:272.112095px;}
.y2_c00278{bottom:302.468972px;}
.y8_c00278{bottom:339.025895px;}
.y52_c00278{bottom:402.064151px;}
.y39_c00278{bottom:487.376458px;}
.y1b_c00278{bottom:493.812629px;}
.y2f_c00278{bottom:493.827731px;}
.y1a_c00278{bottom:494.337609px;}
.y30_c00278{bottom:494.357230px;}
.y47_c00278{bottom:494.443193px;}
.y2e_c00278{bottom:495.071658px;}
.y48_c00278{bottom:495.276022px;}
.y46_c00278{bottom:495.296155px;}
.y19_c00278{bottom:495.403002px;}
.y2d_c00278{bottom:496.322201px;}
.y45_c00278{bottom:496.330407px;}
.y18_c00278{bottom:496.475623px;}
.y31_c00278{bottom:496.772332px;}
.y1c_c00278{bottom:496.835884px;}
.y49_c00278{bottom:497.456052px;}
.y2c_c00278{bottom:497.966125px;}
.y17_c00278{bottom:498.126234px;}
.y44_c00278{bottom:498.531829px;}
.y4a_c00278{bottom:498.846121px;}
.y2b_c00278{bottom:499.653306px;}
.y16_c00278{bottom:499.818769px;}
.y4b_c00278{bottom:500.543320px;}
.y1d_c00278{bottom:501.110605px;}
.y2a_c00278{bottom:501.517490px;}
.y15_c00278{bottom:501.687706px;}
.y32_c00278{bottom:501.870023px;}
.y43_c00278{bottom:502.321194px;}
.y4c_c00278{bottom:502.984214px;}
.y1e_c00278{bottom:503.627848px;}
.y4d_c00278{bottom:505.241931px;}
.y33_c00278{bottom:505.496019px;}
.y29_c00278{bottom:506.169061px;}
.y14_c00278{bottom:506.348634px;}
.y42_c00278{bottom:507.786669px;}
.y4e_c00278{bottom:508.508819px;}
.y1f_c00278{bottom:509.576794px;}
.y34_c00278{bottom:511.126606px;}
.y41_c00278{bottom:512.250649px;}
.y28_c00278{bottom:512.566592px;}
.y13_c00278{bottom:512.754669px;}
.y20_c00278{bottom:514.322677px;}
.y4f_c00278{bottom:516.901203px;}
.y35_c00278{bottom:517.780267px;}
.y40_c00278{bottom:518.671549px;}
.y27_c00278{bottom:519.869330px;}
.y12_c00278{bottom:519.959421px;}
.y3f_c00278{bottom:523.238800px;}
.y11_c00278{bottom:523.416158px;}
.y50_c00278{bottom:524.945268px;}
.y21_c00278{bottom:526.099549px;}
.y26_c00278{bottom:527.026702px;}
.y10_c00278{bottom:529.422883px;}
.y36_c00278{bottom:529.736247px;}
.y3e_c00278{bottom:531.006325px;}
.y25_c00278{bottom:531.793101px;}
.y51_c00278{bottom:533.405176px;}
.y38_c00278{bottom:533.728456px;}
.y3c_c00278{bottom:534.421816px;}
.y3d_c00278{bottom:534.897606px;}
.yf_c00278{bottom:536.678099px;}
.y24_c00278{bottom:537.961773px;}
.y22_c00278{bottom:538.332892px;}
.y37_c00278{bottom:538.696386px;}
.y3a_c00278{bottom:540.431168px;}
.y23_c00278{bottom:545.020956px;}
.ye_c00278{bottom:546.207017px;}
.y3b_c00278{bottom:577.871130px;}
.y53_c00278{bottom:639.489911px;}
.y55_c00278{bottom:1021.609033px;}
.yc_c00278{bottom:1128.893362px;}
.ya_c00278{bottom:1129.718199px;}
.y9_c00278{bottom:1147.707459px;}
.yd_c00278{bottom:1151.908468px;}
.yb_c00278{bottom:1171.162670px;}
.h11_c00278{height:32.157430px;}
.he_c00278{height:35.967282px;}
.hd_c00278{height:35.967283px;}
.hf_c00278{height:35.967285px;}
.hb_c00278{height:36.267779px;}
.ha_c00278{height:36.267781px;}
.hc_c00278{height:36.267783px;}
.h7_c00278{height:36.998472px;}
.h12_c00278{height:37.437353px;}
.h15_c00278{height:45.561399px;}
.h13_c00278{height:51.885424px;}
.h14_c00278{height:55.092790px;}
.h3_c00278{height:55.127245px;}
.h6_c00278{height:55.821847px;}
.h10_c00278{height:56.261810px;}
.h4_c00278{height:56.983387px;}
.h8_c00278{height:67.002968px;}
.h5_c00278{height:68.338108px;}
.h9_c00278{height:84.888160px;}
.h2_c00278{height:1304.999946px;}
.h0_c00278{height:1304.999953px;}
.h1_c00278{height:1305.000000px;}
.w2_c00278{width:934.874961px;}
.w0_c00278{width:934.875000px;}
.w1_c00278{width:935.250000px;}
.x0_c00278{left:0.000000px;}
.x1_c00278{left:87.850202px;}
.x2_c00278{left:107.166286px;}
.x3_c00278{left:108.762249px;}
.x42_c00278{left:130.612669px;}
.x16_c00278{left:134.894322px;}
.x15_c00278{left:136.566734px;}
.x17_c00278{left:139.937719px;}
.x18_c00278{left:144.785273px;}
.x19_c00278{left:150.147890px;}
.x1a_c00278{left:152.899057px;}
.x1b_c00278{left:155.907145px;}
.x1c_c00278{left:159.752336px;}
.x26_c00278{left:161.347648px;}
.x1d_c00278{left:163.203941px;}
.x1e_c00278{left:171.483965px;}
.x1f_c00278{left:179.748684px;}
.x20_c00278{left:188.175145px;}
.x21_c00278{left:196.556636px;}
.x22_c00278{left:200.721504px;}
.x23_c00278{left:205.276922px;}
.x24_c00278{left:209.084069px;}
.x25_c00278{left:211.669316px;}
.x6_c00278{left:230.260919px;}
.x5_c00278{left:232.395871px;}
.x7_c00278{left:235.482735px;}
.x8_c00278{left:240.319117px;}
.x9_c00278{left:245.673577px;}
.xa_c00278{left:248.421493px;}
.xb_c00278{left:251.426626px;}
.xc_c00278{left:255.268917px;}
.x2a_c00278{left:256.468921px;}
.xd_c00278{left:258.553698px;}
.xe_c00278{left:262.988294px;}
.xf_c00278{left:271.601212px;}
.x10_c00278{left:283.434780px;}
.x11_c00278{left:290.867654px;}
.x4_c00278{left:295.000980px;}
.x12_c00278{left:299.596701px;}
.x13_c00278{left:302.984150px;}
.x14_c00278{left:306.993562px;}
.x2b_c00278{left:326.852311px;}
.x2c_c00278{left:328.068878px;}
.x2d_c00278{left:329.489046px;}
.x2e_c00278{left:332.884216px;}
.x2f_c00278{left:336.106850px;}
.x30_c00278{left:341.985618px;}
.x31_c00278{left:348.168911px;}
.x3e_c00278{left:351.521903px;}
.x32_c00278{left:353.858492px;}
.x33_c00278{left:357.266466px;}
.x34_c00278{left:365.168888px;}
.x35_c00278{left:373.153024px;}
.x36_c00278{left:379.908734px;}
.x37_c00278{left:382.927125px;}
.x38_c00278{left:385.929576px;}
.x39_c00278{left:389.325508px;}
.x3a_c00278{left:391.940974px;}
.x3b_c00278{left:395.253549px;}
.x3c_c00278{left:400.425820px;}
.x3d_c00278{left:403.228875px;}
.x41_c00278{left:451.985828px;}
.x28_c00278{left:464.618828px;}
.x40_c00278{left:676.474352px;}
.x3f_c00278{left:696.904800px;}
.x29_c00278{left:733.103032px;}
.x27_c00278{left:756.637341px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.v1_c00278{vertical-align:5.996399pt;}
.ls1_c00278{letter-spacing:0.000000pt;}
.ls0_c00278{letter-spacing:4.872091pt;}
.ws5_c00278{word-spacing:-37.035289pt;}
.ws0_c00278{word-spacing:-16.615081pt;}
.ws4_c00278{word-spacing:-16.604696pt;}
.ws1_c00278{word-spacing:-13.477521pt;}
.ws3_c00278{word-spacing:-0.049530pt;}
.ws6_c00278{word-spacing:0.000000pt;}
.ws2_c00278{word-spacing:250.196349pt;}
._2_c00278{width:3.084644pt;}
._0_c00278{width:4.024331pt;}
._3_c00278{width:5.746874pt;}
._4_c00278{width:19.648294pt;}
._1_c00278{width:20.568044pt;}
._5_c00278{width:30.179016pt;}
.fs4_c00278{font-size:35.319173pt;}
.fse_c00278{font-size:37.310908pt;}
.fs8_c00278{font-size:42.079973pt;}
.fsb_c00278{font-size:42.079974pt;}
.fs7_c00278{font-size:42.079975pt;}
.fsa_c00278{font-size:42.079976pt;}
.fs9_c00278{font-size:42.079977pt;}
.fsc_c00278{font-size:42.079978pt;}
.fsf_c00278{font-size:45.894021pt;}
.fs10_c00278{font-size:49.530431pt;}
.fs3_c00278{font-size:53.288186pt;}
.fs11_c00278{font-size:63.921837pt;}
.fs0_c00278{font-size:63.961814pt;}
.fs1_c00278{font-size:66.115417pt;}
.fsd_c00278{font-size:68.413814pt;}
.fs6_c00278{font-size:74.595466pt;}
.fs2_c00278{font-size:79.952268pt;}
.fs5_c00278{font-size:85.269094pt;}
.y0_c00278{bottom:0.000000pt;}
.y1_c00278{bottom:0.000007pt;}
.y54_c00278{bottom:26.805533pt;}
.y7_c00278{bottom:133.941856pt;}
.y6_c00278{bottom:160.925747pt;}
.y5_c00278{bottom:187.909637pt;}
.y4_c00278{bottom:214.893527pt;}
.y3_c00278{bottom:241.877418pt;}
.y2_c00278{bottom:268.861308pt;}
.y8_c00278{bottom:301.356351pt;}
.y52_c00278{bottom:357.390356pt;}
.y39_c00278{bottom:433.223518pt;}
.y1b_c00278{bottom:438.944560pt;}
.y2f_c00278{bottom:438.957983pt;}
.y1a_c00278{bottom:439.411208pt;}
.y30_c00278{bottom:439.428649pt;}
.y47_c00278{bottom:439.505061pt;}
.y2e_c00278{bottom:440.063696pt;}
.y48_c00278{bottom:440.245353pt;}
.y46_c00278{bottom:440.263248pt;}
.y19_c00278{bottom:440.358224pt;}
.y2d_c00278{bottom:441.175290pt;}
.y45_c00278{bottom:441.182584pt;}
.y18_c00278{bottom:441.311665pt;}
.y31_c00278{bottom:441.575407pt;}
.y1c_c00278{bottom:441.631897pt;}
.y49_c00278{bottom:442.183157pt;}
.y2c_c00278{bottom:442.636555pt;}
.y17_c00278{bottom:442.778875pt;}
.y44_c00278{bottom:443.139403pt;}
.y4a_c00278{bottom:443.418774pt;}
.y2b_c00278{bottom:444.136272pt;}
.y16_c00278{bottom:444.283350pt;}
.y4b_c00278{bottom:444.927395pt;}
.y1d_c00278{bottom:445.431649pt;}
.y2a_c00278{bottom:445.793324pt;}
.y15_c00278{bottom:445.944627pt;}
.y32_c00278{bottom:446.106688pt;}
.y43_c00278{bottom:446.507728pt;}
.y4c_c00278{bottom:447.097079pt;}
.y1e_c00278{bottom:447.669198pt;}
.y4d_c00278{bottom:449.103939pt;}
.y33_c00278{bottom:449.329795pt;}
.y29_c00278{bottom:449.928054pt;}
.y14_c00278{bottom:450.087675pt;}
.y42_c00278{bottom:451.365928pt;}
.y4e_c00278{bottom:452.007839pt;}
.y1f_c00278{bottom:452.957150pt;}
.y34_c00278{bottom:454.334761pt;}
.y41_c00278{bottom:455.333910pt;}
.y28_c00278{bottom:455.614749pt;}
.y13_c00278{bottom:455.781928pt;}
.y20_c00278{bottom:457.175713pt;}
.y4f_c00278{bottom:459.467736pt;}
.y35_c00278{bottom:460.249126pt;}
.y40_c00278{bottom:461.041377pt;}
.y27_c00278{bottom:462.106072pt;}
.y12_c00278{bottom:462.186152pt;}
.y3f_c00278{bottom:465.101156pt;}
.y11_c00278{bottom:465.258807pt;}
.y50_c00278{bottom:466.618016pt;}
.y21_c00278{bottom:467.644044pt;}
.y26_c00278{bottom:468.468179pt;}
.y10_c00278{bottom:470.598118pt;}
.y36_c00278{bottom:470.876664pt;}
.y3e_c00278{bottom:472.005622pt;}
.y25_c00278{bottom:472.704979pt;}
.y51_c00278{bottom:474.137934pt;}
.y38_c00278{bottom:474.425294pt;}
.y3c_c00278{bottom:475.041614pt;}
.y3d_c00278{bottom:475.464539pt;}
.yf_c00278{bottom:477.047199pt;}
.y24_c00278{bottom:478.188242pt;}
.y22_c00278{bottom:478.518126pt;}
.y37_c00278{bottom:478.841232pt;}
.y3a_c00278{bottom:480.383260pt;}
.y23_c00278{bottom:484.463072pt;}
.ye_c00278{bottom:485.517349pt;}
.y3b_c00278{bottom:513.663227pt;}
.y53_c00278{bottom:568.435476pt;}
.y55_c00278{bottom:908.096918pt;}
.yc_c00278{bottom:1003.460766pt;}
.ya_c00278{bottom:1004.193955pt;}
.y9_c00278{bottom:1020.184408pt;}
.yd_c00278{bottom:1023.918638pt;}
.yb_c00278{bottom:1041.033485pt;}
.h11_c00278{height:28.584382pt;}
.he_c00278{height:31.970917pt;}
.hd_c00278{height:31.970918pt;}
.hf_c00278{height:31.970920pt;}
.hb_c00278{height:32.238026pt;}
.ha_c00278{height:32.238028pt;}
.hc_c00278{height:32.238029pt;}
.h7_c00278{height:32.887530pt;}
.h12_c00278{height:33.277647pt;}
.h15_c00278{height:40.499022pt;}
.h13_c00278{height:46.120377pt;}
.h14_c00278{height:48.971369pt;}
.h3_c00278{height:49.001996pt;}
.h6_c00278{height:49.619420pt;}
.h10_c00278{height:50.010498pt;}
.h4_c00278{height:50.651899pt;}
.h8_c00278{height:59.558193pt;}
.h5_c00278{height:60.744985pt;}
.h9_c00278{height:75.456142pt;}
.h2_c00278{height:1159.999952pt;}
.h0_c00278{height:1159.999959pt;}
.h1_c00278{height:1160.000000pt;}
.w2_c00278{width:830.999965pt;}
.w0_c00278{width:831.000000pt;}
.w1_c00278{width:831.333333pt;}
.x0_c00278{left:0.000000pt;}
.x1_c00278{left:78.089069pt;}
.x2_c00278{left:95.258921pt;}
.x3_c00278{left:96.677554pt;}
.x42_c00278{left:116.100150pt;}
.x16_c00278{left:119.906064pt;}
.x15_c00278{left:121.392652pt;}
.x17_c00278{left:124.389083pt;}
.x18_c00278{left:128.698021pt;}
.x19_c00278{left:133.464791pt;}
.x1a_c00278{left:135.910272pt;}
.x1b_c00278{left:138.584129pt;}
.x1c_c00278{left:142.002076pt;}
.x26_c00278{left:143.420132pt;}
.x1d_c00278{left:145.070170pt;}
.x1e_c00278{left:152.430191pt;}
.x1f_c00278{left:159.776608pt;}
.x20_c00278{left:167.266795pt;}
.x21_c00278{left:174.717010pt;}
.x22_c00278{left:178.419115pt;}
.x23_c00278{left:182.468375pt;}
.x24_c00278{left:185.852506pt;}
.x25_c00278{left:188.150503pt;}
.x6_c00278{left:204.676373pt;}
.x5_c00278{left:206.574107pt;}
.x7_c00278{left:209.317987pt;}
.x8_c00278{left:213.616993pt;}
.x9_c00278{left:218.376513pt;}
.xa_c00278{left:220.819105pt;}
.xb_c00278{left:223.490334pt;}
.xc_c00278{left:226.905704pt;}
.x2a_c00278{left:227.972375pt;}
.xd_c00278{left:229.825509pt;}
.xe_c00278{left:233.767373pt;}
.xf_c00278{left:241.423300pt;}
.x10_c00278{left:251.942027pt;}
.x11_c00278{left:258.549026pt;}
.x4_c00278{left:262.223093pt;}
.x12_c00278{left:266.308178pt;}
.x13_c00278{left:269.319244pt;}
.x14_c00278{left:272.883167pt;}
.x2b_c00278{left:290.535387pt;}
.x2c_c00278{left:291.616780pt;}
.x2d_c00278{left:292.879152pt;}
.x2e_c00278{left:295.897081pt;}
.x2f_c00278{left:298.761644pt;}
.x30_c00278{left:303.987216pt;}
.x31_c00278{left:309.483476pt;}
.x3e_c00278{left:312.463913pt;}
.x32_c00278{left:314.540882pt;}
.x33_c00278{left:317.570192pt;}
.x34_c00278{left:324.594567pt;}
.x35_c00278{left:331.691577pt;}
.x36_c00278{left:337.696652pt;}
.x37_c00278{left:340.379667pt;}
.x38_c00278{left:343.048512pt;}
.x39_c00278{left:346.067119pt;}
.x3a_c00278{left:348.391977pt;}
.x3b_c00278{left:351.336488pt;}
.x3c_c00278{left:355.934063pt;}
.x3d_c00278{left:358.425667pt;}
.x41_c00278{left:401.765180pt;}
.x28_c00278{left:412.994514pt;}
.x40_c00278{left:601.310535pt;}
.x3f_c00278{left:619.470933pt;}
.x29_c00278{left:651.647139pt;}
.x27_c00278{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1cbf922974bd8e3a519f918.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.006348;font-style:normal;font-weight:normal;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_c8753783c9cf15e3ef360c21.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:0.888672;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.006348;font-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_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);}
.v0_c00279{vertical-align:0.000000px;}
.ls1_c00279{letter-spacing:0.000000px;}
.ls0_c00279{letter-spacing:12.578428px;}
.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;}
}
.ws1_c00279{word-spacing:-19.309251px;}
.ws0_c00279{word-spacing:-18.691966px;}
.ws2_c00279{word-spacing:-18.680283px;}
.ws3_c00279{word-spacing:0.000000px;}
._e_c00279{width:1.222598px;}
._5_c00279{width:2.243923px;}
._2_c00279{width:3.607200px;}
._7_c00279{width:4.642451px;}
._8_c00279{width:5.780920px;}
._1_c00279{width:7.578379px;}
._0_c00279{width:9.603594px;}
._b_c00279{width:10.904153px;}
._4_c00279{width:12.553311px;}
._10_c00279{width:14.001406px;}
._c_c00279{width:16.654120px;}
._3_c00279{width:20.354990px;}
._6_c00279{width:21.508141px;}
._a_c00279{width:22.611057px;}
._d_c00279{width:23.655577px;}
._9_c00279{width:28.167646px;}
._f_c00279{width:29.416187px;}
.fc1_c00279{color:rgb(34,67,94);}
.fc0_c00279{color:rgb(0,0,0);}
.fs2_c00279{font-size:71.912067px;}
.fs0_c00279{font-size:71.957041px;}
.fs1_c00279{font-size:74.333356px;}
.y0_c00279{bottom:0.000000px;}
.y1_c00279{bottom:0.000008px;}
.y26_c00279{bottom:30.156225px;}
.y1b_c00279{bottom:72.495669px;}
.y1a_c00279{bottom:102.852546px;}
.y19_c00279{bottom:133.209423px;}
.y18_c00279{bottom:163.566299px;}
.y17_c00279{bottom:193.923176px;}
.y16_c00279{bottom:224.280053px;}
.y15_c00279{bottom:254.636930px;}
.y14_c00279{bottom:284.993806px;}
.y13_c00279{bottom:315.350683px;}
.y12_c00279{bottom:345.707560px;}
.y11_c00279{bottom:376.064437px;}
.y10_c00279{bottom:406.421313px;}
.yf_c00279{bottom:436.778190px;}
.ye_c00279{bottom:467.135067px;}
.yd_c00279{bottom:497.491944px;}
.y1c_c00279{bottom:538.865220px;}
.yc_c00279{bottom:594.750381px;}
.yb_c00279{bottom:625.107258px;}
.ya_c00279{bottom:655.464135px;}
.y9_c00279{bottom:685.821012px;}
.y8_c00279{bottom:716.177888px;}
.y7_c00279{bottom:746.534765px;}
.y6_c00279{bottom:776.891642px;}
.y5_c00279{bottom:807.248519px;}
.y4_c00279{bottom:837.605396px;}
.y3_c00279{bottom:867.962272px;}
.y2_c00279{bottom:898.319149px;}
.y1d_c00279{bottom:935.829197px;}
.y25_c00279{bottom:987.786674px;}
.y24_c00279{bottom:1018.143550px;}
.y23_c00279{bottom:1048.500427px;}
.y22_c00279{bottom:1078.857304px;}
.y21_c00279{bottom:1109.214181px;}
.y20_c00279{bottom:1139.571057px;}
.y1f_c00279{bottom:1169.927934px;}
.y1e_c00279{bottom:1200.284811px;}
.h5_c00279{height:55.092790px;}
.h3_c00279{height:55.127245px;}
.h4_c00279{height:56.947771px;}
.h2_c00279{height:1304.999946px;}
.h0_c00279{height:1304.999953px;}
.h1_c00279{height:1305.000000px;}
.w2_c00279{width:934.874961px;}
.w0_c00279{width:934.875000px;}
.w1_c00279{width:935.250000px;}
.x0_c00279{left:0.000000px;}
.x1_c00279{left:87.850202px;}
.x2_c00279{left:451.985828px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls1_c00279{letter-spacing:0.000000pt;}
.ls0_c00279{letter-spacing:11.180825pt;}
.ws1_c00279{word-spacing:-17.163779pt;}
.ws0_c00279{word-spacing:-16.615081pt;}
.ws2_c00279{word-spacing:-16.604696pt;}
.ws3_c00279{word-spacing:0.000000pt;}
._e_c00279{width:1.086753pt;}
._5_c00279{width:1.994599pt;}
._2_c00279{width:3.206400pt;}
._7_c00279{width:4.126623pt;}
._8_c00279{width:5.138596pt;}
._1_c00279{width:6.736337pt;}
._0_c00279{width:8.536528pt;}
._b_c00279{width:9.692581pt;}
._4_c00279{width:11.158499pt;}
._10_c00279{width:12.445694pt;}
._c_c00279{width:14.803663pt;}
._3_c00279{width:18.093325pt;}
._6_c00279{width:19.118348pt;}
._a_c00279{width:20.098717pt;}
._d_c00279{width:21.027180pt;}
._9_c00279{width:25.037907pt;}
._f_c00279{width:26.147721pt;}
.fs2_c00279{font-size:63.921837pt;}
.fs0_c00279{font-size:63.961814pt;}
.fs1_c00279{font-size:66.074094pt;}
.y0_c00279{bottom:0.000000pt;}
.y1_c00279{bottom:0.000007pt;}
.y26_c00279{bottom:26.805533pt;}
.y1b_c00279{bottom:64.440595pt;}
.y1a_c00279{bottom:91.424485pt;}
.y19_c00279{bottom:118.408376pt;}
.y18_c00279{bottom:145.392266pt;}
.y17_c00279{bottom:172.376157pt;}
.y16_c00279{bottom:199.360047pt;}
.y15_c00279{bottom:226.343937pt;}
.y14_c00279{bottom:253.327828pt;}
.y13_c00279{bottom:280.311718pt;}
.y12_c00279{bottom:307.295609pt;}
.y11_c00279{bottom:334.279499pt;}
.y10_c00279{bottom:361.263390pt;}
.yf_c00279{bottom:388.247280pt;}
.ye_c00279{bottom:415.231171pt;}
.yd_c00279{bottom:442.215061pt;}
.y1c_c00279{bottom:478.991306pt;}
.yc_c00279{bottom:528.667006pt;}
.yb_c00279{bottom:555.650896pt;}
.ya_c00279{bottom:582.634787pt;}
.y9_c00279{bottom:609.618677pt;}
.y8_c00279{bottom:636.602568pt;}
.y7_c00279{bottom:663.586458pt;}
.y6_c00279{bottom:690.570348pt;}
.y5_c00279{bottom:717.554239pt;}
.y4_c00279{bottom:744.538129pt;}
.y3_c00279{bottom:771.522020pt;}
.y2_c00279{bottom:798.505910pt;}
.y1d_c00279{bottom:831.848175pt;}
.y25_c00279{bottom:878.032599pt;}
.y24_c00279{bottom:905.016489pt;}
.y23_c00279{bottom:932.000380pt;}
.y22_c00279{bottom:958.984270pt;}
.y21_c00279{bottom:985.968161pt;}
.y20_c00279{bottom:1012.952051pt;}
.y1f_c00279{bottom:1039.935941pt;}
.y1e_c00279{bottom:1066.919832pt;}
.h5_c00279{height:48.971369pt;}
.h3_c00279{height:49.001996pt;}
.h4_c00279{height:50.620241pt;}
.h2_c00279{height:1159.999952pt;}
.h0_c00279{height:1159.999959pt;}
.h1_c00279{height:1160.000000pt;}
.w2_c00279{width:830.999965pt;}
.w0_c00279{width:831.000000pt;}
.w1_c00279{width:831.333333pt;}
.x0_c00279{left:0.000000pt;}
.x1_c00279{left:78.089069pt;}
.x2_c00279{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab7140be3fd92ad83a06fb63.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.006348;font-style:normal;font-weight:normal;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_263fad50dfe0a229265fbef8.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.005371;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.006348;font-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_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;}
.ls1_c00280{letter-spacing:0.000000px;}
.ls0_c00280{letter-spacing:6.394597px;}
.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;}
}
.ws0_c00280{word-spacing:-18.691966px;}
.ws1_c00280{word-spacing:-18.680283px;}
.ws2_c00280{word-spacing:0.000000px;}
._a_c00280{width:1.563447px;}
._1_c00280{width:2.881092px;}
._4_c00280{width:4.462179px;}
._0_c00280{width:6.365315px;}
._9_c00280{width:7.643226px;}
._b_c00280{width:9.159196px;}
._2_c00280{width:10.165757px;}
._8_c00280{width:12.051397px;}
._d_c00280{width:17.391959px;}
._6_c00280{width:20.092023px;}
._3_c00280{width:21.367601px;}
._5_c00280{width:28.721442px;}
._7_c00280{width:34.924462px;}
._c_c00280{width:43.971792px;}
.fc1_c00280{color:rgb(34,67,94);}
.fc0_c00280{color:rgb(0,0,0);}
.fs1_c00280{font-size:71.912067px;}
.fs0_c00280{font-size:71.957041px;}
.y0_c00280{bottom:0.000000px;}
.y1_c00280{bottom:0.000008px;}
.y18_c00280{bottom:30.156225px;}
.ya_c00280{bottom:507.646262px;}
.y9_c00280{bottom:538.003139px;}
.y8_c00280{bottom:568.360015px;}
.y7_c00280{bottom:598.716892px;}
.y6_c00280{bottom:629.073769px;}
.y5_c00280{bottom:659.430646px;}
.y4_c00280{bottom:689.787522px;}
.y3_c00280{bottom:720.144399px;}
.y2_c00280{bottom:750.501276px;}
.yb_c00280{bottom:784.960792px;}
.y17_c00280{bottom:854.529967px;}
.y16_c00280{bottom:884.886844px;}
.y15_c00280{bottom:915.243721px;}
.y14_c00280{bottom:945.600597px;}
.y13_c00280{bottom:975.957474px;}
.y12_c00280{bottom:1006.314351px;}
.y11_c00280{bottom:1036.671228px;}
.y10_c00280{bottom:1067.028104px;}
.yf_c00280{bottom:1097.384981px;}
.ye_c00280{bottom:1127.741858px;}
.yd_c00280{bottom:1158.098735px;}
.yc_c00280{bottom:1199.835078px;}
.h4_c00280{height:55.092790px;}
.h3_c00280{height:55.127245px;}
.h2_c00280{height:1304.999946px;}
.h0_c00280{height:1304.999953px;}
.h1_c00280{height:1305.000000px;}
.w2_c00280{width:934.874961px;}
.w0_c00280{width:934.875000px;}
.w1_c00280{width:935.250000px;}
.x0_c00280{left:0.000000px;}
.x1_c00280{left:87.850202px;}
.x2_c00280{left:451.985828px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls1_c00280{letter-spacing:0.000000pt;}
.ls0_c00280{letter-spacing:5.684086pt;}
.ws0_c00280{word-spacing:-16.615081pt;}
.ws1_c00280{word-spacing:-16.604696pt;}
.ws2_c00280{word-spacing:0.000000pt;}
._a_c00280{width:1.389731pt;}
._1_c00280{width:2.560971pt;}
._4_c00280{width:3.966381pt;}
._0_c00280{width:5.658058pt;}
._9_c00280{width:6.793979pt;}
._b_c00280{width:8.141508pt;}
._2_c00280{width:9.036229pt;}
._8_c00280{width:10.712353pt;}
._d_c00280{width:15.459520pt;}
._6_c00280{width:17.859576pt;}
._3_c00280{width:18.993423pt;}
._5_c00280{width:25.530170pt;}
._7_c00280{width:31.043966pt;}
._c_c00280{width:39.086038pt;}
.fs1_c00280{font-size:63.921837pt;}
.fs0_c00280{font-size:63.961814pt;}
.y0_c00280{bottom:0.000000pt;}
.y1_c00280{bottom:0.000007pt;}
.y18_c00280{bottom:26.805533pt;}
.ya_c00280{bottom:451.241122pt;}
.y9_c00280{bottom:478.225012pt;}
.y8_c00280{bottom:505.208903pt;}
.y7_c00280{bottom:532.192793pt;}
.y6_c00280{bottom:559.176684pt;}
.y5_c00280{bottom:586.160574pt;}
.y4_c00280{bottom:613.144464pt;}
.y3_c00280{bottom:640.128355pt;}
.y2_c00280{bottom:667.112245pt;}
.yb_c00280{bottom:697.742926pt;}
.y17_c00280{bottom:759.582193pt;}
.y16_c00280{bottom:786.566083pt;}
.y15_c00280{bottom:813.549974pt;}
.y14_c00280{bottom:840.533864pt;}
.y13_c00280{bottom:867.517755pt;}
.y12_c00280{bottom:894.501645pt;}
.y11_c00280{bottom:921.485536pt;}
.y10_c00280{bottom:948.469426pt;}
.yf_c00280{bottom:975.453317pt;}
.ye_c00280{bottom:1002.437207pt;}
.yd_c00280{bottom:1029.421097pt;}
.yc_c00280{bottom:1066.520069pt;}
.h4_c00280{height:48.971369pt;}
.h3_c00280{height:49.001996pt;}
.h2_c00280{height:1159.999952pt;}
.h0_c00280{height:1159.999959pt;}
.h1_c00280{height:1160.000000pt;}
.w2_c00280{width:830.999965pt;}
.w0_c00280{width:831.000000pt;}
.w1_c00280{width:831.333333pt;}
.x0_c00280{left:0.000000pt;}
.x1_c00280{left:78.089069pt;}
.x2_c00280{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bba6d4a9d884d1187ce28df2.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:0.769531;font-style:normal;font-weight:normal;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_bbce776e149889cdbb2b2e94.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.171387;font-style:normal;font-weight:normal;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_0cb67c413eb2b4fd7c1c43f5.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.171387;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.006348;font-style:normal;font-weight: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_c00281;src:url('chunks/assets/font_74438990c98d5fcc989ecccd.woff2')format("woff");}.ff5_c00281{font-family:ff5_c00281;line-height:1.005371;font-style:normal;font-weight: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_c00281;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff6_c00281{font-family:ff6_c00281;line-height:0.769531;font-style:normal;font-weight: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_c00281;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff7_c00281{font-family:ff7_c00281;line-height:0.743000;font-style:normal;font-weight: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_c00281;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00281{font-family:ff8_c00281;line-height:0.734863;font-style:normal;font-weight: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_c00281;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00281{font-family:ff9_c00281;line-height:0.940000;font-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_c00281{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00281{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00281{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00281{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00281{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00281{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00281{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00281{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00281{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00281{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00281{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00281{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00281{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00281{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00281{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00281{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00281{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00281{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00281{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00281{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00281{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00281{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00281{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00281{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00281{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00281{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00281{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00281{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00281{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00281{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00281{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00281{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00281{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00281{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00281{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00281{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00281{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00281{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00281{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00281{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00281{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00281{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00281{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00281{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00281{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00281{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00281{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00281{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00281{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00281{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00281{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00281{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00281{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00281{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00281{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00281{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00281{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00281{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00281{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00281{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00281{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00281{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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:6.745949px;}
.ls0_c00281{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00281{word-spacing:-41.664701px;}
.ws3_c00281{word-spacing:-18.680283px;}
.ws1_c00281{word-spacing:-15.162211px;}
.ws0_c00281{word-spacing:-0.055722px;}
.ws5_c00281{word-spacing:0.000000px;}
.ws2_c00281{word-spacing:281.470806px;}
._2_c00281{width:1.438142px;}
._5_c00281{width:8.106160px;}
._1_c00281{width:9.128721px;}
._6_c00281{width:11.270255px;}
._3_c00281{width:15.637873px;}
._0_c00281{width:17.452144px;}
._4_c00281{width:20.475699px;}
._7_c00281{width:27.824033px;}
.fc4_c00281{color:transparent;}
.fc3_c00281{color:rgb(9,71,81);}
.fc2_c00281{color:rgb(34,67,94);}
.fc1_c00281{color:rgb(0,0,0);}
.fc0_c00281{color:rgb(255,255,255);}
.fsf_c00281{font-size:41.974772px;}
.fs5_c00281{font-size:41.975069px;}
.fs9_c00281{font-size:47.339969px;}
.fsc_c00281{font-size:47.339970px;}
.fs8_c00281{font-size:47.339972px;}
.fsb_c00281{font-size:47.339973px;}
.fsa_c00281{font-size:47.339974px;}
.fsd_c00281{font-size:47.339975px;}
.fs10_c00281{font-size:51.630774px;}
.fs0_c00281{font-size:55.721735px;}
.fs4_c00281{font-size:59.949210px;}
.fs11_c00281{font-size:71.912067px;}
.fs1_c00281{font-size:71.957041px;}
.fs2_c00281{font-size:74.379845px;}
.fse_c00281{font-size:76.965540px;}
.fs7_c00281{font-size:83.919899px;}
.fs3_c00281{font-size:89.946302px;}
.fs6_c00281{font-size:95.927731px;}
.y0_c00281{bottom:0.000000px;}
.y1_c00281{bottom:0.000008px;}
.y57_c00281{bottom:30.156225px;}
.yb_c00281{bottom:68.245641px;}
.ya_c00281{bottom:98.602518px;}
.y9_c00281{bottom:128.959395px;}
.y8_c00281{bottom:159.316272px;}
.y7_c00281{bottom:189.673148px;}
.y6_c00281{bottom:220.030025px;}
.y5_c00281{bottom:250.386902px;}
.y4_c00281{bottom:280.743779px;}
.y3_c00281{bottom:311.100656px;}
.yc_c00281{bottom:347.657542px;}
.y56_c00281{bottom:402.064151px;}
.y3d_c00281{bottom:487.376458px;}
.y1f_c00281{bottom:493.812629px;}
.y33_c00281{bottom:493.827623px;}
.y1e_c00281{bottom:494.337609px;}
.y34_c00281{bottom:494.357158px;}
.y4b_c00281{bottom:494.443193px;}
.y32_c00281{bottom:495.071586px;}
.y4c_c00281{bottom:495.276022px;}
.y4a_c00281{bottom:495.296155px;}
.y1d_c00281{bottom:495.403002px;}
.y31_c00281{bottom:496.322201px;}
.y49_c00281{bottom:496.330407px;}
.y1c_c00281{bottom:496.475623px;}
.y35_c00281{bottom:496.772260px;}
.y20_c00281{bottom:496.835884px;}
.y4d_c00281{bottom:497.456052px;}
.y30_c00281{bottom:497.966053px;}
.y1b_c00281{bottom:498.126234px;}
.y48_c00281{bottom:498.531829px;}
.y4e_c00281{bottom:498.846121px;}
.y2f_c00281{bottom:499.653306px;}
.y1a_c00281{bottom:499.818769px;}
.y4f_c00281{bottom:500.543320px;}
.y21_c00281{bottom:501.110605px;}
.y2e_c00281{bottom:501.517382px;}
.y19_c00281{bottom:501.687706px;}
.y36_c00281{bottom:501.869915px;}
.y47_c00281{bottom:502.321194px;}
.y50_c00281{bottom:502.984214px;}
.y22_c00281{bottom:503.627848px;}
.y51_c00281{bottom:505.241931px;}
.y37_c00281{bottom:505.496019px;}
.y2d_c00281{bottom:506.168989px;}
.y18_c00281{bottom:506.348634px;}
.y46_c00281{bottom:507.786669px;}
.y52_c00281{bottom:508.508819px;}
.y23_c00281{bottom:509.576794px;}
.y38_c00281{bottom:511.126534px;}
.y45_c00281{bottom:512.250649px;}
.y2c_c00281{bottom:512.566592px;}
.y17_c00281{bottom:512.754669px;}
.y24_c00281{bottom:514.322677px;}
.y53_c00281{bottom:516.901203px;}
.y39_c00281{bottom:517.780195px;}
.y44_c00281{bottom:518.671549px;}
.y2b_c00281{bottom:519.869222px;}
.y16_c00281{bottom:519.959421px;}
.y43_c00281{bottom:523.238800px;}
.y15_c00281{bottom:523.416158px;}
.y54_c00281{bottom:524.945268px;}
.y25_c00281{bottom:526.099549px;}
.y2a_c00281{bottom:527.026630px;}
.y14_c00281{bottom:529.422883px;}
.y3a_c00281{bottom:529.736175px;}
.y42_c00281{bottom:531.006325px;}
.y29_c00281{bottom:531.792993px;}
.y55_c00281{bottom:533.405176px;}
.y3c_c00281{bottom:533.728456px;}
.y40_c00281{bottom:534.421816px;}
.y41_c00281{bottom:534.897606px;}
.y13_c00281{bottom:536.678099px;}
.y28_c00281{bottom:537.961701px;}
.y26_c00281{bottom:538.332892px;}
.y3b_c00281{bottom:538.696314px;}
.y3e_c00281{bottom:540.431168px;}
.y27_c00281{bottom:545.020884px;}
.y12_c00281{bottom:546.207017px;}
.y3f_c00281{bottom:577.871130px;}
.y2_c00281{bottom:639.489911px;}
.y58_c00281{bottom:1021.609033px;}
.y10_c00281{bottom:1128.893362px;}
.ye_c00281{bottom:1129.718199px;}
.yd_c00281{bottom:1147.707459px;}
.y11_c00281{bottom:1151.908468px;}
.yf_c00281{bottom:1170.658440px;}
.he_c00281{height:35.967282px;}
.hd_c00281{height:35.967283px;}
.hf_c00281{height:35.967285px;}
.h12_c00281{height:37.437353px;}
.h11_c00281{height:39.084907px;}
.h8_c00281{height:39.085184px;}
.hb_c00281{height:44.080723px;}
.ha_c00281{height:44.080726px;}
.hc_c00281{height:44.080728px;}
.h14_c00281{height:45.561399px;}
.h3_c00281{height:51.885424px;}
.h7_c00281{height:55.821847px;}
.h10_c00281{height:56.261810px;}
.h5_c00281{height:56.983387px;}
.h13_c00281{height:66.961090px;}
.h4_c00281{height:67.002968px;}
.h6_c00281{height:68.338108px;}
.h9_c00281{height:84.888160px;}
.h2_c00281{height:1304.999946px;}
.h0_c00281{height:1304.999953px;}
.h1_c00281{height:1305.000000px;}
.w2_c00281{width:934.874961px;}
.w0_c00281{width:934.875000px;}
.w1_c00281{width:935.250000px;}
.x0_c00281{left:0.000000px;}
.x3_c00281{left:87.850202px;}
.x2_c00281{left:89.434062px;}
.x4_c00281{left:107.166286px;}
.x5_c00281{left:108.762249px;}
.x43_c00281{left:130.612669px;}
.x18_c00281{left:134.894322px;}
.x17_c00281{left:136.566734px;}
.x19_c00281{left:139.937719px;}
.x1a_c00281{left:144.785273px;}
.x1b_c00281{left:150.147890px;}
.x1c_c00281{left:152.899057px;}
.x1d_c00281{left:155.907145px;}
.x1e_c00281{left:159.752336px;}
.x28_c00281{left:161.347648px;}
.x1f_c00281{left:163.203941px;}
.x20_c00281{left:171.483965px;}
.x21_c00281{left:179.748684px;}
.x22_c00281{left:188.175145px;}
.x23_c00281{left:196.556636px;}
.x24_c00281{left:200.721504px;}
.x25_c00281{left:205.276922px;}
.x26_c00281{left:209.084069px;}
.x27_c00281{left:211.669316px;}
.x8_c00281{left:230.260919px;}
.x7_c00281{left:232.395871px;}
.x9_c00281{left:235.482735px;}
.xa_c00281{left:240.319117px;}
.xb_c00281{left:245.673577px;}
.xc_c00281{left:248.421493px;}
.xd_c00281{left:251.426626px;}
.xe_c00281{left:255.268917px;}
.x2c_c00281{left:256.468943px;}
.xf_c00281{left:258.553698px;}
.x10_c00281{left:262.988294px;}
.x11_c00281{left:271.601212px;}
.x12_c00281{left:283.434780px;}
.x13_c00281{left:290.867654px;}
.x6_c00281{left:295.000980px;}
.x14_c00281{left:299.596701px;}
.x15_c00281{left:302.984150px;}
.x16_c00281{left:306.993562px;}
.x2d_c00281{left:326.852332px;}
.x2e_c00281{left:328.068924px;}
.x2f_c00281{left:329.489068px;}
.x30_c00281{left:332.884259px;}
.x31_c00281{left:336.106871px;}
.x32_c00281{left:341.985640px;}
.x33_c00281{left:348.168954px;}
.x40_c00281{left:351.521903px;}
.x34_c00281{left:353.858535px;}
.x35_c00281{left:357.266487px;}
.x36_c00281{left:365.168931px;}
.x37_c00281{left:373.153067px;}
.x38_c00281{left:379.908777px;}
.x39_c00281{left:382.927168px;}
.x3a_c00281{left:385.929619px;}
.x3b_c00281{left:389.325508px;}
.x3c_c00281{left:391.941018px;}
.x3d_c00281{left:395.253593px;}
.x3e_c00281{left:400.425867px;}
.x3f_c00281{left:403.228918px;}
.x42_c00281{left:451.985828px;}
.x2a_c00281{left:464.618828px;}
.x1_c00281{left:664.047008px;}
.x41_c00281{left:696.904800px;}
.x2b_c00281{left:733.103068px;}
.x29_c00281{left:756.637341px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.v1_c00281{vertical-align:5.996399pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws4_c00281{word-spacing:-37.035289pt;}
.ws3_c00281{word-spacing:-16.604696pt;}
.ws1_c00281{word-spacing:-13.477521pt;}
.ws0_c00281{word-spacing:-0.049530pt;}
.ws5_c00281{word-spacing:0.000000pt;}
.ws2_c00281{word-spacing:250.196272pt;}
._2_c00281{width:1.278348pt;}
._5_c00281{width:7.205476pt;}
._1_c00281{width:8.114419pt;}
._6_c00281{width:10.018004pt;}
._3_c00281{width:13.900332pt;}
._0_c00281{width:15.513017pt;}
._4_c00281{width:18.200621pt;}
._7_c00281{width:24.732474pt;}
.fsf_c00281{font-size:37.310908pt;}
.fs5_c00281{font-size:37.311173pt;}
.fs9_c00281{font-size:42.079973pt;}
.fsc_c00281{font-size:42.079974pt;}
.fs8_c00281{font-size:42.079975pt;}
.fsb_c00281{font-size:42.079976pt;}
.fsa_c00281{font-size:42.079977pt;}
.fsd_c00281{font-size:42.079978pt;}
.fs10_c00281{font-size:45.894021pt;}
.fs0_c00281{font-size:49.530431pt;}
.fs4_c00281{font-size:53.288186pt;}
.fs11_c00281{font-size:63.921837pt;}
.fs1_c00281{font-size:63.961814pt;}
.fs2_c00281{font-size:66.115417pt;}
.fse_c00281{font-size:68.413814pt;}
.fs7_c00281{font-size:74.595466pt;}
.fs3_c00281{font-size:79.952268pt;}
.fs6_c00281{font-size:85.269094pt;}
.y0_c00281{bottom:0.000000pt;}
.y1_c00281{bottom:0.000007pt;}
.y57_c00281{bottom:26.805533pt;}
.yb_c00281{bottom:60.662792pt;}
.ya_c00281{bottom:87.646683pt;}
.y9_c00281{bottom:114.630573pt;}
.y8_c00281{bottom:141.614464pt;}
.y7_c00281{bottom:168.598354pt;}
.y6_c00281{bottom:195.582245pt;}
.y5_c00281{bottom:222.566135pt;}
.y4_c00281{bottom:249.550026pt;}
.y3_c00281{bottom:276.533916pt;}
.yc_c00281{bottom:309.028927pt;}
.y56_c00281{bottom:357.390356pt;}
.y3d_c00281{bottom:433.223518pt;}
.y1f_c00281{bottom:438.944560pt;}
.y33_c00281{bottom:438.957887pt;}
.y1e_c00281{bottom:439.411208pt;}
.y34_c00281{bottom:439.428585pt;}
.y4b_c00281{bottom:439.505061pt;}
.y32_c00281{bottom:440.063632pt;}
.y4c_c00281{bottom:440.245353pt;}
.y4a_c00281{bottom:440.263248pt;}
.y1d_c00281{bottom:440.358224pt;}
.y31_c00281{bottom:441.175290pt;}
.y49_c00281{bottom:441.182584pt;}
.y1c_c00281{bottom:441.311665pt;}
.y35_c00281{bottom:441.575343pt;}
.y20_c00281{bottom:441.631897pt;}
.y4d_c00281{bottom:442.183157pt;}
.y30_c00281{bottom:442.636491pt;}
.y1b_c00281{bottom:442.778875pt;}
.y48_c00281{bottom:443.139403pt;}
.y4e_c00281{bottom:443.418774pt;}
.y2f_c00281{bottom:444.136272pt;}
.y1a_c00281{bottom:444.283350pt;}
.y4f_c00281{bottom:444.927395pt;}
.y21_c00281{bottom:445.431649pt;}
.y2e_c00281{bottom:445.793228pt;}
.y19_c00281{bottom:445.944627pt;}
.y36_c00281{bottom:446.106592pt;}
.y47_c00281{bottom:446.507728pt;}
.y50_c00281{bottom:447.097079pt;}
.y22_c00281{bottom:447.669198pt;}
.y51_c00281{bottom:449.103939pt;}
.y37_c00281{bottom:449.329795pt;}
.y2d_c00281{bottom:449.927990pt;}
.y18_c00281{bottom:450.087675pt;}
.y46_c00281{bottom:451.365928pt;}
.y52_c00281{bottom:452.007839pt;}
.y23_c00281{bottom:452.957150pt;}
.y38_c00281{bottom:454.334697pt;}
.y45_c00281{bottom:455.333910pt;}
.y2c_c00281{bottom:455.614749pt;}
.y17_c00281{bottom:455.781928pt;}
.y24_c00281{bottom:457.175713pt;}
.y53_c00281{bottom:459.467736pt;}
.y39_c00281{bottom:460.249062pt;}
.y44_c00281{bottom:461.041377pt;}
.y2b_c00281{bottom:462.105976pt;}
.y16_c00281{bottom:462.186152pt;}
.y43_c00281{bottom:465.101156pt;}
.y15_c00281{bottom:465.258807pt;}
.y54_c00281{bottom:466.618016pt;}
.y25_c00281{bottom:467.644044pt;}
.y2a_c00281{bottom:468.468115pt;}
.y14_c00281{bottom:470.598118pt;}
.y3a_c00281{bottom:470.876600pt;}
.y42_c00281{bottom:472.005622pt;}
.y29_c00281{bottom:472.704883pt;}
.y55_c00281{bottom:474.137934pt;}
.y3c_c00281{bottom:474.425294pt;}
.y40_c00281{bottom:475.041614pt;}
.y41_c00281{bottom:475.464539pt;}
.y13_c00281{bottom:477.047199pt;}
.y28_c00281{bottom:478.188178pt;}
.y26_c00281{bottom:478.518126pt;}
.y3b_c00281{bottom:478.841168pt;}
.y3e_c00281{bottom:480.383260pt;}
.y27_c00281{bottom:484.463008pt;}
.y12_c00281{bottom:485.517349pt;}
.y3f_c00281{bottom:513.663227pt;}
.y2_c00281{bottom:568.435476pt;}
.y58_c00281{bottom:908.096918pt;}
.y10_c00281{bottom:1003.460766pt;}
.ye_c00281{bottom:1004.193955pt;}
.yd_c00281{bottom:1020.184408pt;}
.y11_c00281{bottom:1023.918638pt;}
.yf_c00281{bottom:1040.585280pt;}
.he_c00281{height:31.970917pt;}
.hd_c00281{height:31.970918pt;}
.hf_c00281{height:31.970920pt;}
.h12_c00281{height:33.277647pt;}
.h11_c00281{height:34.742140pt;}
.h8_c00281{height:34.742386pt;}
.hb_c00281{height:39.182865pt;}
.ha_c00281{height:39.182867pt;}
.hc_c00281{height:39.182869pt;}
.h14_c00281{height:40.499022pt;}
.h3_c00281{height:46.120377pt;}
.h7_c00281{height:49.619420pt;}
.h10_c00281{height:50.010498pt;}
.h5_c00281{height:50.651899pt;}
.h13_c00281{height:59.520969pt;}
.h4_c00281{height:59.558193pt;}
.h6_c00281{height:60.744985pt;}
.h9_c00281{height:75.456142pt;}
.h2_c00281{height:1159.999952pt;}
.h0_c00281{height:1159.999959pt;}
.h1_c00281{height:1160.000000pt;}
.w2_c00281{width:830.999965pt;}
.w0_c00281{width:831.000000pt;}
.w1_c00281{width:831.333333pt;}
.x0_c00281{left:0.000000pt;}
.x3_c00281{left:78.089069pt;}
.x2_c00281{left:79.496944pt;}
.x4_c00281{left:95.258921pt;}
.x5_c00281{left:96.677554pt;}
.x43_c00281{left:116.100150pt;}
.x18_c00281{left:119.906064pt;}
.x17_c00281{left:121.392652pt;}
.x19_c00281{left:124.389083pt;}
.x1a_c00281{left:128.698021pt;}
.x1b_c00281{left:133.464791pt;}
.x1c_c00281{left:135.910272pt;}
.x1d_c00281{left:138.584129pt;}
.x1e_c00281{left:142.002076pt;}
.x28_c00281{left:143.420132pt;}
.x1f_c00281{left:145.070170pt;}
.x20_c00281{left:152.430191pt;}
.x21_c00281{left:159.776608pt;}
.x22_c00281{left:167.266795pt;}
.x23_c00281{left:174.717010pt;}
.x24_c00281{left:178.419115pt;}
.x25_c00281{left:182.468375pt;}
.x26_c00281{left:185.852506pt;}
.x27_c00281{left:188.150503pt;}
.x8_c00281{left:204.676373pt;}
.x7_c00281{left:206.574107pt;}
.x9_c00281{left:209.317987pt;}
.xa_c00281{left:213.616993pt;}
.xb_c00281{left:218.376513pt;}
.xc_c00281{left:220.819105pt;}
.xd_c00281{left:223.490334pt;}
.xe_c00281{left:226.905704pt;}
.x2c_c00281{left:227.972394pt;}
.xf_c00281{left:229.825509pt;}
.x10_c00281{left:233.767373pt;}
.x11_c00281{left:241.423300pt;}
.x12_c00281{left:251.942027pt;}
.x13_c00281{left:258.549026pt;}
.x6_c00281{left:262.223093pt;}
.x14_c00281{left:266.308178pt;}
.x15_c00281{left:269.319244pt;}
.x16_c00281{left:272.883167pt;}
.x2d_c00281{left:290.535407pt;}
.x2e_c00281{left:291.616822pt;}
.x2f_c00281{left:292.879171pt;}
.x30_c00281{left:295.897119pt;}
.x31_c00281{left:298.761663pt;}
.x32_c00281{left:303.987235pt;}
.x33_c00281{left:309.483514pt;}
.x40_c00281{left:312.463913pt;}
.x34_c00281{left:314.540920pt;}
.x35_c00281{left:317.570211pt;}
.x36_c00281{left:324.594605pt;}
.x37_c00281{left:331.691616pt;}
.x38_c00281{left:337.696690pt;}
.x39_c00281{left:340.379705pt;}
.x3a_c00281{left:343.048550pt;}
.x3b_c00281{left:346.067119pt;}
.x3c_c00281{left:348.392016pt;}
.x3d_c00281{left:351.336527pt;}
.x3e_c00281{left:355.934104pt;}
.x3f_c00281{left:358.425705pt;}
.x42_c00281{left:401.765180pt;}
.x2a_c00281{left:412.994514pt;}
.x1_c00281{left:590.264007pt;}
.x41_c00281{left:619.470933pt;}
.x2b_c00281{left:651.647171pt;}
.x29_c00281{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b899f0eae46bc20844b2630.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.171387;font-style:normal;font-weight:normal;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_0869f936e8197cbab9f164d6.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.005371;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.006348;font-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_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);}
.v0_c00282{vertical-align:0.000000px;}
.ls1_c00282{letter-spacing:0.000000px;}
.ls0_c00282{letter-spacing:25.929832px;}
.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;}
}
.ws1_c00282{word-spacing:-19.309251px;}
.ws0_c00282{word-spacing:-18.691966px;}
.ws2_c00282{word-spacing:-18.680283px;}
.ws3_c00282{word-spacing:0.000000px;}
._12_c00282{width:1.784829px;}
._9_c00282{width:3.167181px;}
._8_c00282{width:4.458952px;}
._1_c00282{width:5.557755px;}
._10_c00282{width:7.155722px;}
._e_c00282{width:8.243272px;}
._2_c00282{width:9.402185px;}
._3_c00282{width:10.430784px;}
._11_c00282{width:11.733128px;}
._d_c00282{width:14.247351px;}
._0_c00282{width:15.677332px;}
._b_c00282{width:16.775442px;}
._7_c00282{width:20.185142px;}
._5_c00282{width:22.129319px;}
._6_c00282{width:23.359196px;}
._a_c00282{width:24.674439px;}
._4_c00282{width:25.871226px;}
._c_c00282{width:28.319029px;}
._f_c00282{width:51.402906px;}
.fc1_c00282{color:rgb(34,67,94);}
.fc0_c00282{color:rgb(0,0,0);}
.fs2_c00282{font-size:71.912067px;}
.fs0_c00282{font-size:71.957041px;}
.fs1_c00282{font-size:74.333356px;}
.y0_c00282{bottom:0.000000px;}
.y1_c00282{bottom:0.000008px;}
.y27_c00282{bottom:30.156225px;}
.y18_c00282{bottom:77.523328px;}
.y17_c00282{bottom:107.880205px;}
.y16_c00282{bottom:138.237082px;}
.y15_c00282{bottom:168.593958px;}
.y14_c00282{bottom:198.950835px;}
.y13_c00282{bottom:229.307712px;}
.y12_c00282{bottom:259.664589px;}
.y11_c00282{bottom:290.021466px;}
.y10_c00282{bottom:320.378342px;}
.yf_c00282{bottom:350.735219px;}
.ye_c00282{bottom:381.092096px;}
.yd_c00282{bottom:411.448973px;}
.yc_c00282{bottom:441.805849px;}
.yb_c00282{bottom:472.162726px;}
.ya_c00282{bottom:502.519603px;}
.y9_c00282{bottom:532.876480px;}
.y8_c00282{bottom:563.233356px;}
.y7_c00282{bottom:593.590233px;}
.y6_c00282{bottom:623.947110px;}
.y5_c00282{bottom:654.303987px;}
.y4_c00282{bottom:684.660864px;}
.y3_c00282{bottom:715.017740px;}
.y2_c00282{bottom:745.374617px;}
.y25_c00282{bottom:781.835049px;}
.y24_c00282{bottom:830.889506px;}
.y23_c00282{bottom:861.246382px;}
.y22_c00282{bottom:891.603259px;}
.y21_c00282{bottom:921.960136px;}
.y20_c00282{bottom:952.317013px;}
.y1f_c00282{bottom:982.673889px;}
.y1e_c00282{bottom:1013.030766px;}
.y1d_c00282{bottom:1043.387643px;}
.y1c_c00282{bottom:1073.744520px;}
.y1b_c00282{bottom:1104.101396px;}
.y1a_c00282{bottom:1134.458273px;}
.y19_c00282{bottom:1164.815150px;}
.y26_c00282{bottom:1199.252083px;}
.h4_c00282{height:55.127245px;}
.h5_c00282{height:56.947771px;}
.h6_c00282{height:66.961090px;}
.h3_c00282{height:67.002968px;}
.h2_c00282{height:1304.999946px;}
.h0_c00282{height:1304.999953px;}
.h1_c00282{height:1305.000000px;}
.w2_c00282{width:934.874961px;}
.w0_c00282{width:934.875000px;}
.w1_c00282{width:935.250000px;}
.x0_c00282{left:0.000000px;}
.x1_c00282{left:87.404569px;}
.x2_c00282{left:88.761161px;}
.x3_c00282{left:451.985828px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls1_c00282{letter-spacing:0.000000pt;}
.ls0_c00282{letter-spacing:23.048739pt;}
.ws1_c00282{word-spacing:-17.163779pt;}
.ws0_c00282{word-spacing:-16.615081pt;}
.ws2_c00282{word-spacing:-16.604696pt;}
.ws3_c00282{word-spacing:0.000000pt;}
._12_c00282{width:1.586514pt;}
._9_c00282{width:2.815272pt;}
._8_c00282{width:3.963513pt;}
._1_c00282{width:4.940226pt;}
._10_c00282{width:6.360642pt;}
._e_c00282{width:7.327353pt;}
._2_c00282{width:8.357498pt;}
._3_c00282{width:9.271808pt;}
._11_c00282{width:10.429447pt;}
._d_c00282{width:12.664312pt;}
._0_c00282{width:13.935406pt;}
._b_c00282{width:14.911504pt;}
._7_c00282{width:17.942349pt;}
._5_c00282{width:19.670506pt;}
._6_c00282{width:20.763730pt;}
._a_c00282{width:21.932835pt;}
._4_c00282{width:22.996646pt;}
._c_c00282{width:25.172470pt;}
._f_c00282{width:45.691472pt;}
.fs2_c00282{font-size:63.921837pt;}
.fs0_c00282{font-size:63.961814pt;}
.fs1_c00282{font-size:66.074094pt;}
.y0_c00282{bottom:0.000000pt;}
.y1_c00282{bottom:0.000007pt;}
.y27_c00282{bottom:26.805533pt;}
.y18_c00282{bottom:68.909625pt;}
.y17_c00282{bottom:95.893515pt;}
.y16_c00282{bottom:122.877406pt;}
.y15_c00282{bottom:149.861296pt;}
.y14_c00282{bottom:176.845187pt;}
.y13_c00282{bottom:203.829077pt;}
.y12_c00282{bottom:230.812968pt;}
.y11_c00282{bottom:257.796858pt;}
.y10_c00282{bottom:284.780749pt;}
.yf_c00282{bottom:311.764639pt;}
.ye_c00282{bottom:338.748530pt;}
.yd_c00282{bottom:365.732420pt;}
.yc_c00282{bottom:392.716311pt;}
.yb_c00282{bottom:419.700201pt;}
.ya_c00282{bottom:446.684091pt;}
.y9_c00282{bottom:473.667982pt;}
.y8_c00282{bottom:500.651872pt;}
.y7_c00282{bottom:527.635763pt;}
.y6_c00282{bottom:554.619653pt;}
.y5_c00282{bottom:581.603544pt;}
.y4_c00282{bottom:608.587434pt;}
.y3_c00282{bottom:635.571325pt;}
.y2_c00282{bottom:662.555215pt;}
.y25_c00282{bottom:694.964488pt;}
.y24_c00282{bottom:738.568449pt;}
.y23_c00282{bottom:765.552340pt;}
.y22_c00282{bottom:792.536230pt;}
.y21_c00282{bottom:819.520121pt;}
.y20_c00282{bottom:846.504011pt;}
.y1f_c00282{bottom:873.487902pt;}
.y1e_c00282{bottom:900.471792pt;}
.y1d_c00282{bottom:927.455683pt;}
.y1c_c00282{bottom:954.439573pt;}
.y1b_c00282{bottom:981.423463pt;}
.y1a_c00282{bottom:1008.407354pt;}
.y19_c00282{bottom:1035.391244pt;}
.y26_c00282{bottom:1066.001852pt;}
.h4_c00282{height:49.001996pt;}
.h5_c00282{height:50.620241pt;}
.h6_c00282{height:59.520969pt;}
.h3_c00282{height:59.558193pt;}
.h2_c00282{height:1159.999952pt;}
.h0_c00282{height:1159.999959pt;}
.h1_c00282{height:1160.000000pt;}
.w2_c00282{width:830.999965pt;}
.w0_c00282{width:831.000000pt;}
.w1_c00282{width:831.333333pt;}
.x0_c00282{left:0.000000pt;}
.x1_c00282{left:77.692950pt;}
.x2_c00282{left:78.898810pt;}
.x3_c00282{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.006348;font-style:normal;font-weight:normal;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_ff85401bd741f121546408cd.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.006348;font-style:normal;font-weight:normal;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_63a22ece9dd073b5996b84ef.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.005371;font-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_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);}
.v0_c00283{vertical-align:0.000000px;}
.ls2_c00283{letter-spacing:0.000000px;}
.ls0_c00283{letter-spacing:7.027054px;}
.ls1_c00283{letter-spacing:16.302767px;}
.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;}
}
.ws0_c00283{word-spacing:-18.691966px;}
.ws1_c00283{word-spacing:-18.680283px;}
.ws2_c00283{word-spacing:0.000000px;}
._a_c00283{width:1.083976px;}
._9_c00283{width:2.248658px;}
._5_c00283{width:3.946817px;}
._8_c00283{width:5.038655px;}
._3_c00283{width:6.118984px;}
._2_c00283{width:7.329753px;}
._1_c00283{width:8.932114px;}
._11_c00283{width:10.725797px;}
._7_c00283{width:12.039664px;}
._6_c00283{width:13.246000px;}
._d_c00283{width:14.351106px;}
._4_c00283{width:16.273464px;}
._c_c00283{width:19.803249px;}
._12_c00283{width:24.038911px;}
._13_c00283{width:25.913430px;}
._0_c00283{width:27.253240px;}
._f_c00283{width:30.631509px;}
._b_c00283{width:36.189333px;}
._10_c00283{width:38.192042px;}
._e_c00283{width:44.539791px;}
.fc1_c00283{color:rgb(0,0,0);}
.fc0_c00283{color:rgb(34,67,94);}
.fs1_c00283{font-size:71.912067px;}
.fs0_c00283{font-size:71.957041px;}
.y0_c00283{bottom:0.000000px;}
.y1_c00283{bottom:0.000008px;}
.y27_c00283{bottom:30.156225px;}
.y26_c00283{bottom:68.052385px;}
.y25_c00283{bottom:98.409262px;}
.y24_c00283{bottom:128.766139px;}
.y23_c00283{bottom:159.123016px;}
.y22_c00283{bottom:189.479892px;}
.y21_c00283{bottom:219.836769px;}
.y20_c00283{bottom:250.193646px;}
.y1f_c00283{bottom:280.550523px;}
.y1e_c00283{bottom:310.907399px;}
.y1d_c00283{bottom:341.264276px;}
.y1c_c00283{bottom:371.621153px;}
.y1b_c00283{bottom:406.312433px;}
.y1a_c00283{bottom:467.536843px;}
.y19_c00283{bottom:497.893719px;}
.y18_c00283{bottom:528.250596px;}
.y17_c00283{bottom:558.607473px;}
.y16_c00283{bottom:588.964350px;}
.y15_c00283{bottom:619.321227px;}
.y14_c00283{bottom:649.678103px;}
.y13_c00283{bottom:680.034980px;}
.y12_c00283{bottom:710.391857px;}
.y11_c00283{bottom:740.748734px;}
.y10_c00283{bottom:771.105610px;}
.yf_c00283{bottom:801.462487px;}
.ye_c00283{bottom:831.819364px;}
.yd_c00283{bottom:862.176241px;}
.yc_c00283{bottom:892.533117px;}
.yb_c00283{bottom:922.889994px;}
.ya_c00283{bottom:953.246871px;}
.y9_c00283{bottom:983.603748px;}
.y8_c00283{bottom:1013.960624px;}
.y7_c00283{bottom:1044.317501px;}
.y6_c00283{bottom:1074.674378px;}
.y5_c00283{bottom:1105.031255px;}
.y4_c00283{bottom:1135.388132px;}
.y3_c00283{bottom:1165.745008px;}
.y2_c00283{bottom:1199.835078px;}
.h4_c00283{height:55.092790px;}
.h3_c00283{height:55.127245px;}
.h2_c00283{height:1304.999946px;}
.h0_c00283{height:1304.999953px;}
.h1_c00283{height:1305.000000px;}
.w2_c00283{width:934.874961px;}
.w0_c00283{width:934.875000px;}
.w1_c00283{width:935.250000px;}
.x0_c00283{left:0.000000px;}
.x1_c00283{left:87.850202px;}
.x2_c00283{left:451.985828px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls2_c00283{letter-spacing:0.000000pt;}
.ls0_c00283{letter-spacing:6.246271pt;}
.ls1_c00283{letter-spacing:14.491348pt;}
.ws0_c00283{word-spacing:-16.615081pt;}
.ws1_c00283{word-spacing:-16.604696pt;}
.ws2_c00283{word-spacing:0.000000pt;}
._a_c00283{width:0.963534pt;}
._9_c00283{width:1.998807pt;}
._5_c00283{width:3.508282pt;}
._8_c00283{width:4.478804pt;}
._3_c00283{width:5.439097pt;}
._2_c00283{width:6.515336pt;}
._1_c00283{width:7.939657pt;}
._11_c00283{width:9.534042pt;}
._7_c00283{width:10.701924pt;}
._6_c00283{width:11.774222pt;}
._d_c00283{width:12.756539pt;}
._4_c00283{width:14.465301pt;}
._c_c00283{width:17.602888pt;}
._12_c00283{width:21.367921pt;}
._13_c00283{width:23.034160pt;}
._0_c00283{width:24.225102pt;}
._f_c00283{width:27.228008pt;}
._b_c00283{width:32.168296pt;}
._10_c00283{width:33.948482pt;}
._e_c00283{width:39.590926pt;}
.fs1_c00283{font-size:63.921837pt;}
.fs0_c00283{font-size:63.961814pt;}
.y0_c00283{bottom:0.000000pt;}
.y1_c00283{bottom:0.000007pt;}
.y27_c00283{bottom:26.805533pt;}
.y26_c00283{bottom:60.491009pt;}
.y25_c00283{bottom:87.474900pt;}
.y24_c00283{bottom:114.458790pt;}
.y23_c00283{bottom:141.442681pt;}
.y22_c00283{bottom:168.426571pt;}
.y21_c00283{bottom:195.410461pt;}
.y20_c00283{bottom:222.394352pt;}
.y1f_c00283{bottom:249.378242pt;}
.y1e_c00283{bottom:276.362133pt;}
.y1d_c00283{bottom:303.346023pt;}
.y1c_c00283{bottom:330.329914pt;}
.y1b_c00283{bottom:361.166607pt;}
.y1a_c00283{bottom:415.588305pt;}
.y19_c00283{bottom:442.572195pt;}
.y18_c00283{bottom:469.556086pt;}
.y17_c00283{bottom:496.539976pt;}
.y16_c00283{bottom:523.523866pt;}
.y15_c00283{bottom:550.507757pt;}
.y14_c00283{bottom:577.491647pt;}
.y13_c00283{bottom:604.475538pt;}
.y12_c00283{bottom:631.459428pt;}
.y11_c00283{bottom:658.443319pt;}
.y10_c00283{bottom:685.427209pt;}
.yf_c00283{bottom:712.411100pt;}
.ye_c00283{bottom:739.394990pt;}
.yd_c00283{bottom:766.378881pt;}
.yc_c00283{bottom:793.362771pt;}
.yb_c00283{bottom:820.346661pt;}
.ya_c00283{bottom:847.330552pt;}
.y9_c00283{bottom:874.314442pt;}
.y8_c00283{bottom:901.298333pt;}
.y7_c00283{bottom:928.282223pt;}
.y6_c00283{bottom:955.266114pt;}
.y5_c00283{bottom:982.250004pt;}
.y4_c00283{bottom:1009.233895pt;}
.y3_c00283{bottom:1036.217785pt;}
.y2_c00283{bottom:1066.520069pt;}
.h4_c00283{height:48.971369pt;}
.h3_c00283{height:49.001996pt;}
.h2_c00283{height:1159.999952pt;}
.h0_c00283{height:1159.999959pt;}
.h1_c00283{height:1160.000000pt;}
.w2_c00283{width:830.999965pt;}
.w0_c00283{width:831.000000pt;}
.w1_c00283{width:831.333333pt;}
.x0_c00283{left:0.000000pt;}
.x1_c00283{left:78.089069pt;}
.x2_c00283{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70a06ff2c3a3fdb6f2c43ef4.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:0.769531;font-style:normal;font-weight:normal;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_41d737381ad34c98f32ed473.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.171387;font-style:normal;font-weight:normal;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_48fc85316de67f610e99a2cf.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.171387;font-style:normal;font-weight:normal;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_072cb1da4b0416663cb37fd3.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:0.728027;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:1.006348;font-style:normal;font-weight: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_c00284;src:url('chunks/assets/font_5d0982a1155d96dadfca0449.woff2')format("woff");}.ff6_c00284{font-family:ff6_c00284;line-height:1.000000;font-style:normal;font-weight: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_c00284;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00284{font-family:ff7_c00284;line-height:0.769531;font-style:normal;font-weight: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_c00284;src:url('chunks/assets/font_5a22212d916e36a895611655.woff2')format("woff");}.ff8_c00284{font-family:ff8_c00284;line-height:0.743000;font-style:normal;font-weight: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_c00284;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00284{font-family:ff9_c00284;line-height:0.734863;font-style:normal;font-weight: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_c00284;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00284{font-family:ffa_c00284;line-height:0.940000;font-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_c00284{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m2a_c00284{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m16_c00284{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00284{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m17_c00284{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m29_c00284{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00284{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m2b_c00284{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00284{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m18_c00284{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m3e_c00284{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m2c_c00284{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00284{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m19_c00284{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m28_c00284{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00284{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m2d_c00284{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m3d_c00284{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00284{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00284{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m1a_c00284{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m2e_c00284{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m27_c00284{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m3c_c00284{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00284{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00284{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m2f_c00284{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m1b_c00284{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m26_c00284{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00284{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m3b_c00284{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m30_c00284{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00284{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m1c_c00284{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m25_c00284{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m3a_c00284{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00284{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m39_c00284{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00284{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m1d_c00284{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m31_c00284{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m24_c00284{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m38_c00284{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00284{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m1e_c00284{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00284{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m37_c00284{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00284{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m1f_c00284{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m32_c00284{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00284{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m20_c00284{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m36_c00284{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m23_c00284{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m33_c00284{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00284{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00284{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m21_c00284{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m34_c00284{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m35_c00284{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m22_c00284{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00284{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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:6.745949px;}
.ls0_c00284{letter-spacing:0.000000px;}
.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;}
}
.ws5_c00284{word-spacing:-41.664701px;}
.ws4_c00284{word-spacing:-18.680283px;}
.ws2_c00284{word-spacing:-15.162211px;}
.ws0_c00284{word-spacing:-14.474592px;}
.ws1_c00284{word-spacing:-0.071957px;}
.ws6_c00284{word-spacing:0.000000px;}
.ws3_c00284{word-spacing:281.470806px;}
._4_c00284{width:1.783393px;}
._2_c00284{width:2.816651px;}
._6_c00284{width:4.462182px;}
._3_c00284{width:7.975709px;}
._1_c00284{width:12.277240px;}
._0_c00284{width:20.337423px;}
._5_c00284{width:21.908146px;}
.fc4_c00284{color:transparent;}
.fc3_c00284{color:rgb(9,71,81);}
.fc2_c00284{color:rgb(34,67,94);}
.fc1_c00284{color:rgb(0,0,0);}
.fc0_c00284{color:rgb(255,255,255);}
.fsf_c00284{font-size:41.974772px;}
.fs5_c00284{font-size:41.975069px;}
.fs9_c00284{font-size:47.339969px;}
.fsc_c00284{font-size:47.339970px;}
.fs8_c00284{font-size:47.339972px;}
.fsb_c00284{font-size:47.339973px;}
.fsa_c00284{font-size:47.339974px;}
.fsd_c00284{font-size:47.339975px;}
.fs10_c00284{font-size:51.630774px;}
.fs0_c00284{font-size:55.721735px;}
.fs4_c00284{font-size:59.949210px;}
.fs11_c00284{font-size:71.912067px;}
.fs1_c00284{font-size:71.957041px;}
.fs2_c00284{font-size:74.379845px;}
.fse_c00284{font-size:76.965540px;}
.fs7_c00284{font-size:83.919899px;}
.fs3_c00284{font-size:89.946302px;}
.fs6_c00284{font-size:95.927731px;}
.y0_c00284{bottom:0.000000px;}
.y1_c00284{bottom:0.000008px;}
.y56_c00284{bottom:30.156225px;}
.ya_c00284{bottom:89.970835px;}
.y9_c00284{bottom:120.327711px;}
.y8_c00284{bottom:150.684588px;}
.y7_c00284{bottom:181.041465px;}
.y6_c00284{bottom:211.398342px;}
.y5_c00284{bottom:241.755218px;}
.y4_c00284{bottom:272.112095px;}
.y3_c00284{bottom:302.468972px;}
.yb_c00284{bottom:339.025895px;}
.y55_c00284{bottom:402.064151px;}
.y3c_c00284{bottom:487.376458px;}
.y1e_c00284{bottom:493.812629px;}
.y32_c00284{bottom:493.827623px;}
.y1d_c00284{bottom:494.337609px;}
.y33_c00284{bottom:494.357158px;}
.y4a_c00284{bottom:494.443193px;}
.y31_c00284{bottom:495.071586px;}
.y4b_c00284{bottom:495.276022px;}
.y49_c00284{bottom:495.296155px;}
.y1c_c00284{bottom:495.403002px;}
.y30_c00284{bottom:496.322201px;}
.y48_c00284{bottom:496.330407px;}
.y1b_c00284{bottom:496.475623px;}
.y34_c00284{bottom:496.772260px;}
.y1f_c00284{bottom:496.835884px;}
.y4c_c00284{bottom:497.456052px;}
.y2f_c00284{bottom:497.966053px;}
.y1a_c00284{bottom:498.126234px;}
.y47_c00284{bottom:498.531829px;}
.y4d_c00284{bottom:498.846121px;}
.y2e_c00284{bottom:499.653306px;}
.y19_c00284{bottom:499.818769px;}
.y4e_c00284{bottom:500.543320px;}
.y20_c00284{bottom:501.110605px;}
.y2d_c00284{bottom:501.517382px;}
.y18_c00284{bottom:501.687706px;}
.y35_c00284{bottom:501.869915px;}
.y46_c00284{bottom:502.321194px;}
.y4f_c00284{bottom:502.984214px;}
.y21_c00284{bottom:503.627848px;}
.y50_c00284{bottom:505.241931px;}
.y36_c00284{bottom:505.496019px;}
.y2c_c00284{bottom:506.168989px;}
.y17_c00284{bottom:506.348634px;}
.y45_c00284{bottom:507.786669px;}
.y51_c00284{bottom:508.508819px;}
.y22_c00284{bottom:509.576794px;}
.y37_c00284{bottom:511.126534px;}
.y44_c00284{bottom:512.250649px;}
.y2b_c00284{bottom:512.566592px;}
.y16_c00284{bottom:512.754669px;}
.y23_c00284{bottom:514.322677px;}
.y52_c00284{bottom:516.901203px;}
.y38_c00284{bottom:517.780195px;}
.y43_c00284{bottom:518.671549px;}
.y2a_c00284{bottom:519.869222px;}
.y15_c00284{bottom:519.959421px;}
.y42_c00284{bottom:523.238800px;}
.y14_c00284{bottom:523.416158px;}
.y53_c00284{bottom:524.945268px;}
.y24_c00284{bottom:526.099549px;}
.y29_c00284{bottom:527.026630px;}
.y13_c00284{bottom:529.422883px;}
.y39_c00284{bottom:529.736175px;}
.y41_c00284{bottom:531.006325px;}
.y28_c00284{bottom:531.792993px;}
.y54_c00284{bottom:533.405176px;}
.y3b_c00284{bottom:533.728456px;}
.y3f_c00284{bottom:534.421816px;}
.y40_c00284{bottom:534.897606px;}
.y12_c00284{bottom:536.678099px;}
.y27_c00284{bottom:537.961701px;}
.y25_c00284{bottom:538.332892px;}
.y3a_c00284{bottom:538.696314px;}
.y3d_c00284{bottom:540.431168px;}
.y26_c00284{bottom:545.020884px;}
.y11_c00284{bottom:546.207017px;}
.y3e_c00284{bottom:577.871130px;}
.y2_c00284{bottom:639.489911px;}
.y57_c00284{bottom:1021.609033px;}
.yf_c00284{bottom:1128.893362px;}
.yd_c00284{bottom:1129.718199px;}
.yc_c00284{bottom:1147.707459px;}
.y10_c00284{bottom:1151.908468px;}
.ye_c00284{bottom:1170.658440px;}
.he_c00284{height:35.967282px;}
.hd_c00284{height:35.967283px;}
.hf_c00284{height:35.967285px;}
.h12_c00284{height:37.437353px;}
.h11_c00284{height:39.084907px;}
.h8_c00284{height:39.085184px;}
.hb_c00284{height:44.080723px;}
.ha_c00284{height:44.080726px;}
.hc_c00284{height:44.080728px;}
.h14_c00284{height:45.561399px;}
.h3_c00284{height:51.885424px;}
.h7_c00284{height:55.821847px;}
.h10_c00284{height:56.261810px;}
.h5_c00284{height:56.983387px;}
.h13_c00284{height:66.961090px;}
.h4_c00284{height:67.002968px;}
.h6_c00284{height:68.338108px;}
.h9_c00284{height:84.888160px;}
.h2_c00284{height:1304.999946px;}
.h0_c00284{height:1304.999953px;}
.h1_c00284{height:1305.000000px;}
.w2_c00284{width:934.874961px;}
.w0_c00284{width:934.875000px;}
.w1_c00284{width:935.250000px;}
.x0_c00284{left:0.000000px;}
.x2_c00284{left:87.850202px;}
.x3_c00284{left:107.166286px;}
.x4_c00284{left:108.762249px;}
.x42_c00284{left:130.612669px;}
.x17_c00284{left:134.894322px;}
.x16_c00284{left:136.566734px;}
.x18_c00284{left:139.937719px;}
.x19_c00284{left:144.785273px;}
.x1a_c00284{left:150.147890px;}
.x1b_c00284{left:152.899057px;}
.x1c_c00284{left:155.907145px;}
.x1d_c00284{left:159.752336px;}
.x27_c00284{left:161.347648px;}
.x1e_c00284{left:163.203941px;}
.x1f_c00284{left:171.483965px;}
.x20_c00284{left:179.748684px;}
.x21_c00284{left:188.175145px;}
.x22_c00284{left:196.556636px;}
.x23_c00284{left:200.721504px;}
.x24_c00284{left:205.276922px;}
.x25_c00284{left:209.084069px;}
.x26_c00284{left:211.669316px;}
.x7_c00284{left:230.260919px;}
.x6_c00284{left:232.395871px;}
.x8_c00284{left:235.482735px;}
.x9_c00284{left:240.319117px;}
.xa_c00284{left:245.673577px;}
.xb_c00284{left:248.421493px;}
.xc_c00284{left:251.426626px;}
.xd_c00284{left:255.268917px;}
.x2b_c00284{left:256.468943px;}
.xe_c00284{left:258.553698px;}
.xf_c00284{left:262.988294px;}
.x10_c00284{left:271.601212px;}
.x11_c00284{left:283.434780px;}
.x12_c00284{left:290.867654px;}
.x5_c00284{left:295.000980px;}
.x13_c00284{left:299.596701px;}
.x14_c00284{left:302.984150px;}
.x15_c00284{left:306.993562px;}
.x2c_c00284{left:326.852332px;}
.x2d_c00284{left:328.068924px;}
.x2e_c00284{left:329.489068px;}
.x2f_c00284{left:332.884259px;}
.x30_c00284{left:336.106871px;}
.x31_c00284{left:341.985640px;}
.x32_c00284{left:348.168954px;}
.x3f_c00284{left:351.521903px;}
.x33_c00284{left:353.858535px;}
.x34_c00284{left:357.266487px;}
.x35_c00284{left:365.168931px;}
.x36_c00284{left:373.153067px;}
.x37_c00284{left:379.908777px;}
.x38_c00284{left:382.927168px;}
.x39_c00284{left:385.929619px;}
.x3a_c00284{left:389.325508px;}
.x3b_c00284{left:391.941018px;}
.x3c_c00284{left:395.253593px;}
.x3d_c00284{left:400.425867px;}
.x3e_c00284{left:403.228918px;}
.x41_c00284{left:451.985828px;}
.x29_c00284{left:464.618828px;}
.x1_c00284{left:676.474352px;}
.x40_c00284{left:696.904800px;}
.x2a_c00284{left:733.103068px;}
.x28_c00284{left:756.637341px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.v1_c00284{vertical-align:5.996399pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws5_c00284{word-spacing:-37.035289pt;}
.ws4_c00284{word-spacing:-16.604696pt;}
.ws2_c00284{word-spacing:-13.477521pt;}
.ws0_c00284{word-spacing:-12.866304pt;}
.ws1_c00284{word-spacing:-0.063962pt;}
.ws6_c00284{word-spacing:0.000000pt;}
.ws3_c00284{word-spacing:250.196272pt;}
._4_c00284{width:1.585239pt;}
._2_c00284{width:2.503690pt;}
._6_c00284{width:3.966384pt;}
._3_c00284{width:7.089520pt;}
._1_c00284{width:10.913102pt;}
._0_c00284{width:18.077709pt;}
._5_c00284{width:19.473908pt;}
.fsf_c00284{font-size:37.310908pt;}
.fs5_c00284{font-size:37.311173pt;}
.fs9_c00284{font-size:42.079973pt;}
.fsc_c00284{font-size:42.079974pt;}
.fs8_c00284{font-size:42.079975pt;}
.fsb_c00284{font-size:42.079976pt;}
.fsa_c00284{font-size:42.079977pt;}
.fsd_c00284{font-size:42.079978pt;}
.fs10_c00284{font-size:45.894021pt;}
.fs0_c00284{font-size:49.530431pt;}
.fs4_c00284{font-size:53.288186pt;}
.fs11_c00284{font-size:63.921837pt;}
.fs1_c00284{font-size:63.961814pt;}
.fs2_c00284{font-size:66.115417pt;}
.fse_c00284{font-size:68.413814pt;}
.fs7_c00284{font-size:74.595466pt;}
.fs3_c00284{font-size:79.952268pt;}
.fs6_c00284{font-size:85.269094pt;}
.y0_c00284{bottom:0.000000pt;}
.y1_c00284{bottom:0.000007pt;}
.y56_c00284{bottom:26.805533pt;}
.ya_c00284{bottom:79.974075pt;}
.y9_c00284{bottom:106.957966pt;}
.y8_c00284{bottom:133.941856pt;}
.y7_c00284{bottom:160.925747pt;}
.y6_c00284{bottom:187.909637pt;}
.y5_c00284{bottom:214.893527pt;}
.y4_c00284{bottom:241.877418pt;}
.y3_c00284{bottom:268.861308pt;}
.yb_c00284{bottom:301.356351pt;}
.y55_c00284{bottom:357.390356pt;}
.y3c_c00284{bottom:433.223518pt;}
.y1e_c00284{bottom:438.944560pt;}
.y32_c00284{bottom:438.957887pt;}
.y1d_c00284{bottom:439.411208pt;}
.y33_c00284{bottom:439.428585pt;}
.y4a_c00284{bottom:439.505061pt;}
.y31_c00284{bottom:440.063632pt;}
.y4b_c00284{bottom:440.245353pt;}
.y49_c00284{bottom:440.263248pt;}
.y1c_c00284{bottom:440.358224pt;}
.y30_c00284{bottom:441.175290pt;}
.y48_c00284{bottom:441.182584pt;}
.y1b_c00284{bottom:441.311665pt;}
.y34_c00284{bottom:441.575343pt;}
.y1f_c00284{bottom:441.631897pt;}
.y4c_c00284{bottom:442.183157pt;}
.y2f_c00284{bottom:442.636491pt;}
.y1a_c00284{bottom:442.778875pt;}
.y47_c00284{bottom:443.139403pt;}
.y4d_c00284{bottom:443.418774pt;}
.y2e_c00284{bottom:444.136272pt;}
.y19_c00284{bottom:444.283350pt;}
.y4e_c00284{bottom:444.927395pt;}
.y20_c00284{bottom:445.431649pt;}
.y2d_c00284{bottom:445.793228pt;}
.y18_c00284{bottom:445.944627pt;}
.y35_c00284{bottom:446.106592pt;}
.y46_c00284{bottom:446.507728pt;}
.y4f_c00284{bottom:447.097079pt;}
.y21_c00284{bottom:447.669198pt;}
.y50_c00284{bottom:449.103939pt;}
.y36_c00284{bottom:449.329795pt;}
.y2c_c00284{bottom:449.927990pt;}
.y17_c00284{bottom:450.087675pt;}
.y45_c00284{bottom:451.365928pt;}
.y51_c00284{bottom:452.007839pt;}
.y22_c00284{bottom:452.957150pt;}
.y37_c00284{bottom:454.334697pt;}
.y44_c00284{bottom:455.333910pt;}
.y2b_c00284{bottom:455.614749pt;}
.y16_c00284{bottom:455.781928pt;}
.y23_c00284{bottom:457.175713pt;}
.y52_c00284{bottom:459.467736pt;}
.y38_c00284{bottom:460.249062pt;}
.y43_c00284{bottom:461.041377pt;}
.y2a_c00284{bottom:462.105976pt;}
.y15_c00284{bottom:462.186152pt;}
.y42_c00284{bottom:465.101156pt;}
.y14_c00284{bottom:465.258807pt;}
.y53_c00284{bottom:466.618016pt;}
.y24_c00284{bottom:467.644044pt;}
.y29_c00284{bottom:468.468115pt;}
.y13_c00284{bottom:470.598118pt;}
.y39_c00284{bottom:470.876600pt;}
.y41_c00284{bottom:472.005622pt;}
.y28_c00284{bottom:472.704883pt;}
.y54_c00284{bottom:474.137934pt;}
.y3b_c00284{bottom:474.425294pt;}
.y3f_c00284{bottom:475.041614pt;}
.y40_c00284{bottom:475.464539pt;}
.y12_c00284{bottom:477.047199pt;}
.y27_c00284{bottom:478.188178pt;}
.y25_c00284{bottom:478.518126pt;}
.y3a_c00284{bottom:478.841168pt;}
.y3d_c00284{bottom:480.383260pt;}
.y26_c00284{bottom:484.463008pt;}
.y11_c00284{bottom:485.517349pt;}
.y3e_c00284{bottom:513.663227pt;}
.y2_c00284{bottom:568.435476pt;}
.y57_c00284{bottom:908.096918pt;}
.yf_c00284{bottom:1003.460766pt;}
.yd_c00284{bottom:1004.193955pt;}
.yc_c00284{bottom:1020.184408pt;}
.y10_c00284{bottom:1023.918638pt;}
.ye_c00284{bottom:1040.585280pt;}
.he_c00284{height:31.970917pt;}
.hd_c00284{height:31.970918pt;}
.hf_c00284{height:31.970920pt;}
.h12_c00284{height:33.277647pt;}
.h11_c00284{height:34.742140pt;}
.h8_c00284{height:34.742386pt;}
.hb_c00284{height:39.182865pt;}
.ha_c00284{height:39.182867pt;}
.hc_c00284{height:39.182869pt;}
.h14_c00284{height:40.499022pt;}
.h3_c00284{height:46.120377pt;}
.h7_c00284{height:49.619420pt;}
.h10_c00284{height:50.010498pt;}
.h5_c00284{height:50.651899pt;}
.h13_c00284{height:59.520969pt;}
.h4_c00284{height:59.558193pt;}
.h6_c00284{height:60.744985pt;}
.h9_c00284{height:75.456142pt;}
.h2_c00284{height:1159.999952pt;}
.h0_c00284{height:1159.999959pt;}
.h1_c00284{height:1160.000000pt;}
.w2_c00284{width:830.999965pt;}
.w0_c00284{width:831.000000pt;}
.w1_c00284{width:831.333333pt;}
.x0_c00284{left:0.000000pt;}
.x2_c00284{left:78.089069pt;}
.x3_c00284{left:95.258921pt;}
.x4_c00284{left:96.677554pt;}
.x42_c00284{left:116.100150pt;}
.x17_c00284{left:119.906064pt;}
.x16_c00284{left:121.392652pt;}
.x18_c00284{left:124.389083pt;}
.x19_c00284{left:128.698021pt;}
.x1a_c00284{left:133.464791pt;}
.x1b_c00284{left:135.910272pt;}
.x1c_c00284{left:138.584129pt;}
.x1d_c00284{left:142.002076pt;}
.x27_c00284{left:143.420132pt;}
.x1e_c00284{left:145.070170pt;}
.x1f_c00284{left:152.430191pt;}
.x20_c00284{left:159.776608pt;}
.x21_c00284{left:167.266795pt;}
.x22_c00284{left:174.717010pt;}
.x23_c00284{left:178.419115pt;}
.x24_c00284{left:182.468375pt;}
.x25_c00284{left:185.852506pt;}
.x26_c00284{left:188.150503pt;}
.x7_c00284{left:204.676373pt;}
.x6_c00284{left:206.574107pt;}
.x8_c00284{left:209.317987pt;}
.x9_c00284{left:213.616993pt;}
.xa_c00284{left:218.376513pt;}
.xb_c00284{left:220.819105pt;}
.xc_c00284{left:223.490334pt;}
.xd_c00284{left:226.905704pt;}
.x2b_c00284{left:227.972394pt;}
.xe_c00284{left:229.825509pt;}
.xf_c00284{left:233.767373pt;}
.x10_c00284{left:241.423300pt;}
.x11_c00284{left:251.942027pt;}
.x12_c00284{left:258.549026pt;}
.x5_c00284{left:262.223093pt;}
.x13_c00284{left:266.308178pt;}
.x14_c00284{left:269.319244pt;}
.x15_c00284{left:272.883167pt;}
.x2c_c00284{left:290.535407pt;}
.x2d_c00284{left:291.616822pt;}
.x2e_c00284{left:292.879171pt;}
.x2f_c00284{left:295.897119pt;}
.x30_c00284{left:298.761663pt;}
.x31_c00284{left:303.987235pt;}
.x32_c00284{left:309.483514pt;}
.x3f_c00284{left:312.463913pt;}
.x33_c00284{left:314.540920pt;}
.x34_c00284{left:317.570211pt;}
.x35_c00284{left:324.594605pt;}
.x36_c00284{left:331.691616pt;}
.x37_c00284{left:337.696690pt;}
.x38_c00284{left:340.379705pt;}
.x39_c00284{left:343.048550pt;}
.x3a_c00284{left:346.067119pt;}
.x3b_c00284{left:348.392016pt;}
.x3c_c00284{left:351.336527pt;}
.x3d_c00284{left:355.934104pt;}
.x3e_c00284{left:358.425705pt;}
.x41_c00284{left:401.765180pt;}
.x29_c00284{left:412.994514pt;}
.x1_c00284{left:601.310535pt;}
.x40_c00284{left:619.470933pt;}
.x2a_c00284{left:651.647171pt;}
.x28_c00284{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_360a2f6dc3326c97d5a0afb5.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.171387;font-style:normal;font-weight:normal;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_363d1f9fa6f3e4021f0c83c7.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.000000;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.006348;font-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_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);}
.v0_c00285{vertical-align:0.000000px;}
.ls1_c00285{letter-spacing:0.000000px;}
.ls0_c00285{letter-spacing:0.070293px;}
.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;}
}
.ws1_c00285{word-spacing:-19.309251px;}
.ws0_c00285{word-spacing:-18.691966px;}
.ws2_c00285{word-spacing:-18.680283px;}
.ws3_c00285{word-spacing:0.000000px;}
._0_c00285{width:1.545951px;}
._1_c00285{width:3.267579px;}
._5_c00285{width:4.607592px;}
._a_c00285{width:6.786939px;}
._4_c00285{width:7.997392px;}
._3_c00285{width:9.124330px;}
._6_c00285{width:10.372456px;}
._10_c00285{width:12.279777px;}
._8_c00285{width:13.545952px;}
._9_c00285{width:15.213572px;}
._2_c00285{width:16.328293px;}
._f_c00285{width:17.609702px;}
._d_c00285{width:20.066083px;}
._b_c00285{width:24.581860px;}
._7_c00285{width:27.756867px;}
._c_c00285{width:30.185043px;}
._e_c00285{width:31.562939px;}
.fc1_c00285{color:rgb(34,67,94);}
.fc0_c00285{color:rgb(0,0,0);}
.fs2_c00285{font-size:71.912067px;}
.fs0_c00285{font-size:71.957041px;}
.fs1_c00285{font-size:74.333356px;}
.y0_c00285{bottom:0.000000px;}
.y1_c00285{bottom:0.000008px;}
.y24_c00285{bottom:30.156225px;}
.y17_c00285{bottom:88.812554px;}
.y16_c00285{bottom:119.169430px;}
.y15_c00285{bottom:149.526307px;}
.y14_c00285{bottom:179.883184px;}
.y13_c00285{bottom:210.240061px;}
.y12_c00285{bottom:240.596938px;}
.y11_c00285{bottom:270.953814px;}
.y10_c00285{bottom:301.310691px;}
.yf_c00285{bottom:331.667568px;}
.ye_c00285{bottom:362.024445px;}
.yd_c00285{bottom:392.381321px;}
.yc_c00285{bottom:422.738198px;}
.yb_c00285{bottom:453.095075px;}
.ya_c00285{bottom:483.451952px;}
.y9_c00285{bottom:513.808828px;}
.y8_c00285{bottom:544.165705px;}
.y7_c00285{bottom:574.522582px;}
.y6_c00285{bottom:604.879459px;}
.y5_c00285{bottom:635.236336px;}
.y4_c00285{bottom:665.593212px;}
.y3_c00285{bottom:695.950089px;}
.y2_c00285{bottom:726.306966px;}
.y18_c00285{bottom:769.368555px;}
.y21_c00285{bottom:845.173828px;}
.y20_c00285{bottom:875.530705px;}
.y1f_c00285{bottom:905.887581px;}
.y1e_c00285{bottom:936.244458px;}
.y1d_c00285{bottom:966.601335px;}
.y1c_c00285{bottom:996.958212px;}
.y1b_c00285{bottom:1027.315088px;}
.y1a_c00285{bottom:1057.671965px;}
.y19_c00285{bottom:1093.390999px;}
.y23_c00285{bottom:1169.927934px;}
.y22_c00285{bottom:1200.284811px;}
.h4_c00285{height:55.127245px;}
.h5_c00285{height:56.947771px;}
.h6_c00285{height:66.961090px;}
.h3_c00285{height:67.002968px;}
.h2_c00285{height:1304.999946px;}
.h0_c00285{height:1304.999953px;}
.h1_c00285{height:1305.000000px;}
.w2_c00285{width:934.874961px;}
.w0_c00285{width:934.875000px;}
.w1_c00285{width:935.250000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:87.850202px;}
.x2_c00285{left:451.985828px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls1_c00285{letter-spacing:0.000000pt;}
.ls0_c00285{letter-spacing:0.062482pt;}
.ws1_c00285{word-spacing:-17.163779pt;}
.ws0_c00285{word-spacing:-16.615081pt;}
.ws2_c00285{word-spacing:-16.604696pt;}
.ws3_c00285{word-spacing:0.000000pt;}
._0_c00285{width:1.374179pt;}
._1_c00285{width:2.904515pt;}
._5_c00285{width:4.095638pt;}
._a_c00285{width:6.032835pt;}
._4_c00285{width:7.108793pt;}
._3_c00285{width:8.110515pt;}
._6_c00285{width:9.219961pt;}
._10_c00285{width:10.915357pt;}
._8_c00285{width:12.040846pt;}
._9_c00285{width:13.523176pt;}
._2_c00285{width:14.514038pt;}
._f_c00285{width:15.653069pt;}
._d_c00285{width:17.836518pt;}
._b_c00285{width:21.850542pt;}
._7_c00285{width:24.672771pt;}
._c_c00285{width:26.831149pt;}
._e_c00285{width:28.055946pt;}
.fs2_c00285{font-size:63.921837pt;}
.fs0_c00285{font-size:63.961814pt;}
.fs1_c00285{font-size:66.074094pt;}
.y0_c00285{bottom:0.000000pt;}
.y1_c00285{bottom:0.000007pt;}
.y24_c00285{bottom:26.805533pt;}
.y17_c00285{bottom:78.944492pt;}
.y16_c00285{bottom:105.928383pt;}
.y15_c00285{bottom:132.912273pt;}
.y14_c00285{bottom:159.896164pt;}
.y13_c00285{bottom:186.880054pt;}
.y12_c00285{bottom:213.863944pt;}
.y11_c00285{bottom:240.847835pt;}
.y10_c00285{bottom:267.831725pt;}
.yf_c00285{bottom:294.815616pt;}
.ye_c00285{bottom:321.799506pt;}
.yd_c00285{bottom:348.783397pt;}
.yc_c00285{bottom:375.767287pt;}
.yb_c00285{bottom:402.751178pt;}
.ya_c00285{bottom:429.735068pt;}
.y9_c00285{bottom:456.718959pt;}
.y8_c00285{bottom:483.702849pt;}
.y7_c00285{bottom:510.686740pt;}
.y6_c00285{bottom:537.670630pt;}
.y5_c00285{bottom:564.654520pt;}
.y4_c00285{bottom:591.638411pt;}
.y3_c00285{bottom:618.622301pt;}
.y2_c00285{bottom:645.606192pt;}
.y18_c00285{bottom:683.883160pt;}
.y21_c00285{bottom:751.265625pt;}
.y20_c00285{bottom:778.249515pt;}
.y1f_c00285{bottom:805.233406pt;}
.y1e_c00285{bottom:832.217296pt;}
.y1d_c00285{bottom:859.201187pt;}
.y1c_c00285{bottom:886.185077pt;}
.y1b_c00285{bottom:913.168968pt;}
.y1a_c00285{bottom:940.152858pt;}
.y19_c00285{bottom:971.903110pt;}
.y23_c00285{bottom:1039.935941pt;}
.y22_c00285{bottom:1066.919832pt;}
.h4_c00285{height:49.001996pt;}
.h5_c00285{height:50.620241pt;}
.h6_c00285{height:59.520969pt;}
.h3_c00285{height:59.558193pt;}
.h2_c00285{height:1159.999952pt;}
.h0_c00285{height:1159.999959pt;}
.h1_c00285{height:1160.000000pt;}
.w2_c00285{width:830.999965pt;}
.w0_c00285{width:831.000000pt;}
.w1_c00285{width:831.333333pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:78.089069pt;}
.x2_c00285{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa614d76d2d786e47f8b374a.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.006348;font-style:normal;font-weight:normal;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_21327629ace03c0114a3745c.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.005371;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.006348;font-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_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);}
.v0_c00286{vertical-align:0.000000px;}
.ls1_c00286{letter-spacing:0.000000px;}
.ls0_c00286{letter-spacing:0.035157px;}
.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;}
}
.ws0_c00286{word-spacing:-18.691966px;}
.ws1_c00286{word-spacing:-18.680283px;}
.ws2_c00286{word-spacing:0.000000px;}
._0_c00286{width:2.133164px;}
._1_c00286{width:3.170604px;}
._8_c00286{width:4.995040px;}
._7_c00286{width:6.607420px;}
._3_c00286{width:7.612619px;}
._4_c00286{width:10.481086px;}
._9_c00286{width:16.695636px;}
._5_c00286{width:29.696306px;}
._6_c00286{width:32.169843px;}
._2_c00286{width:37.862992px;}
.fc1_c00286{color:rgb(34,67,94);}
.fc0_c00286{color:rgb(0,0,0);}
.fs1_c00286{font-size:71.912067px;}
.fs0_c00286{font-size:71.957041px;}
.y0_c00286{bottom:0.000000px;}
.y1_c00286{bottom:0.000008px;}
.y15_c00286{bottom:30.156225px;}
.y8_c00286{bottom:591.747886px;}
.y7_c00286{bottom:622.104763px;}
.y6_c00286{bottom:652.461640px;}
.y5_c00286{bottom:682.818516px;}
.y4_c00286{bottom:713.175393px;}
.y3_c00286{bottom:743.532270px;}
.y2_c00286{bottom:773.889147px;}
.y9_c00286{bottom:812.566095px;}
.y14_c00286{bottom:887.682766px;}
.y13_c00286{bottom:918.039642px;}
.y12_c00286{bottom:948.396519px;}
.y11_c00286{bottom:978.753396px;}
.y10_c00286{bottom:1009.110273px;}
.yf_c00286{bottom:1039.467149px;}
.ye_c00286{bottom:1069.824026px;}
.yd_c00286{bottom:1100.180903px;}
.yc_c00286{bottom:1130.537780px;}
.yb_c00286{bottom:1160.894657px;}
.ya_c00286{bottom:1199.835078px;}
.h4_c00286{height:55.092790px;}
.h3_c00286{height:55.127245px;}
.h2_c00286{height:1304.999946px;}
.h0_c00286{height:1304.999953px;}
.h1_c00286{height:1305.000000px;}
.w2_c00286{width:934.874961px;}
.w0_c00286{width:934.875000px;}
.w1_c00286{width:935.250000px;}
.x0_c00286{left:0.000000px;}
.x2_c00286{left:87.850202px;}
.x1_c00286{left:89.434062px;}
.x3_c00286{left:451.985828px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls1_c00286{letter-spacing:0.000000pt;}
.ls0_c00286{letter-spacing:0.031251pt;}
.ws0_c00286{word-spacing:-16.615081pt;}
.ws1_c00286{word-spacing:-16.604696pt;}
.ws2_c00286{word-spacing:0.000000pt;}
._0_c00286{width:1.896145pt;}
._1_c00286{width:2.818315pt;}
._8_c00286{width:4.440035pt;}
._7_c00286{width:5.873262pt;}
._3_c00286{width:6.766772pt;}
._4_c00286{width:9.316521pt;}
._9_c00286{width:14.840565pt;}
._5_c00286{width:26.396716pt;}
._6_c00286{width:28.595416pt;}
._2_c00286{width:33.655993pt;}
.fs1_c00286{font-size:63.921837pt;}
.fs0_c00286{font-size:63.961814pt;}
.y0_c00286{bottom:0.000000pt;}
.y1_c00286{bottom:0.000007pt;}
.y15_c00286{bottom:26.805533pt;}
.y8_c00286{bottom:525.998121pt;}
.y7_c00286{bottom:552.982011pt;}
.y6_c00286{bottom:579.965902pt;}
.y5_c00286{bottom:606.949792pt;}
.y4_c00286{bottom:633.933683pt;}
.y3_c00286{bottom:660.917573pt;}
.y2_c00286{bottom:687.901464pt;}
.y9_c00286{bottom:722.280973pt;}
.y14_c00286{bottom:789.051347pt;}
.y13_c00286{bottom:816.035238pt;}
.y12_c00286{bottom:843.019128pt;}
.y11_c00286{bottom:870.003019pt;}
.y10_c00286{bottom:896.986909pt;}
.yf_c00286{bottom:923.970800pt;}
.ye_c00286{bottom:950.954690pt;}
.yd_c00286{bottom:977.938580pt;}
.yc_c00286{bottom:1004.922471pt;}
.yb_c00286{bottom:1031.906361pt;}
.ya_c00286{bottom:1066.520069pt;}
.h4_c00286{height:48.971369pt;}
.h3_c00286{height:49.001996pt;}
.h2_c00286{height:1159.999952pt;}
.h0_c00286{height:1159.999959pt;}
.h1_c00286{height:1160.000000pt;}
.w2_c00286{width:830.999965pt;}
.w0_c00286{width:831.000000pt;}
.w1_c00286{width:831.333333pt;}
.x0_c00286{left:0.000000pt;}
.x2_c00286{left:78.089069pt;}
.x1_c00286{left:79.496944pt;}
.x3_c00286{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44cab8874ba3e717472a70fd.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:0.775879;font-style:normal;font-weight:normal;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_35b896c6a528b825994d32e9.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_c09df13aa7854b6da7d83294.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:0.929688;font-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_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);}
.v0_c00287{vertical-align:0.000000px;}
.ls0_c00287{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00287{word-spacing:-18.680283px;}
.ws1_c00287{word-spacing:0.000000px;}
._0_c00287{width:4.764327px;}
.fc1_c00287{color:rgb(0,0,0);}
.fc0_c00287{color:rgb(34,67,94);}
.fs1_c00287{font-size:71.912067px;}
.fs0_c00287{font-size:71.957041px;}
.y0_c00287{bottom:0.000000px;}
.y1_c00287{bottom:0.000008px;}
.y3_c00287{bottom:30.156225px;}
.y5_c00287{bottom:1113.346162px;}
.y4_c00287{bottom:1142.578710px;}
.y2_c00287{bottom:1199.835078px;}
.h4_c00287{height:55.092790px;}
.h3_c00287{height:55.127245px;}
.h2_c00287{height:1304.999946px;}
.h0_c00287{height:1304.999953px;}
.h1_c00287{height:1305.000000px;}
.w2_c00287{width:934.874961px;}
.w0_c00287{width:934.875000px;}
.w1_c00287{width:935.250000px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:128.097383px;}
.x2_c00287{left:451.985828px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws0_c00287{word-spacing:-16.604696pt;}
.ws1_c00287{word-spacing:0.000000pt;}
._0_c00287{width:4.234958pt;}
.fs1_c00287{font-size:63.921837pt;}
.fs0_c00287{font-size:63.961814pt;}
.y0_c00287{bottom:0.000000pt;}
.y1_c00287{bottom:0.000007pt;}
.y3_c00287{bottom:26.805533pt;}
.y5_c00287{bottom:989.641033pt;}
.y4_c00287{bottom:1015.625520pt;}
.y2_c00287{bottom:1066.520069pt;}
.h4_c00287{height:48.971369pt;}
.h3_c00287{height:49.001996pt;}
.h2_c00287{height:1159.999952pt;}
.h0_c00287{height:1159.999959pt;}
.h1_c00287{height:1160.000000pt;}
.w2_c00287{width:830.999965pt;}
.w0_c00287{width:831.000000pt;}
.w1_c00287{width:831.333333pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:113.864341pt;}
.x2_c00287{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cdaf295f025fe3ab67393ae1.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:0.710938;font-style:normal;font-weight:normal;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_a9033d3e62d34c70094c56a1.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.151614;font-style:normal;font-weight:normal;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_f838e98ddf0ec507339f7aba.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_ec630b07a951ad9d4db3c01d.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:1.006348;font-style:normal;font-weight: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_c00288;src:url('chunks/assets/font_11d1a962eb30f8fe331fa733.woff2')format("woff");}.ff5_c00288{font-family:ff5_c00288;line-height:0.723633;font-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_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);}
.v0_c00288{vertical-align:0.000000px;}
.ls0_c00288{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00288{word-spacing:-0.384790px;}
.ws1_c00288{word-spacing:-0.059949px;}
.ws2_c00288{word-spacing:0.000000px;}
._0_c00288{margin-left:-6.187507px;}
.fc0_c00288{color:rgb(255,255,255);}
.fs1_c00288{font-size:59.949210px;}
.fs0_c00288{font-size:384.790269px;}
.y0_c00288{bottom:0.000000px;}
.y1_c00288{bottom:0.000008px;}
.yd_c00288{bottom:92.996914px;}
.yc_c00288{bottom:114.359161px;}
.yb_c00288{bottom:135.721408px;}
.ya_c00288{bottom:157.083654px;}
.y9_c00288{bottom:178.445901px;}
.y8_c00288{bottom:199.808148px;}
.y7_c00288{bottom:221.170394px;}
.y6_c00288{bottom:242.532641px;}
.y5_c00288{bottom:263.894887px;}
.y4_c00288{bottom:285.257134px;}
.y3_c00288{bottom:306.619381px;}
.y2_c00288{bottom:458.219822px;}
.yf_c00288{bottom:1207.390367px;}
.ye_c00288{bottom:1227.628285px;}
.h5_c00288{height:45.927886px;}
.h4_c00288{height:57.011698px;}
.h3_c00288{height:269.804114px;}
.h2_c00288{height:1304.999946px;}
.h0_c00288{height:1304.999953px;}
.h1_c00288{height:1305.000000px;}
.w2_c00288{width:934.874961px;}
.w0_c00288{width:934.875000px;}
.w1_c00288{width:935.250000px;}
.x0_c00288{left:0.000000px;}
.x3_c00288{left:70.852479px;}
.x2_c00288{left:87.850202px;}
.x1_c00288{left:228.683561px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws0_c00288{word-spacing:-0.342036pt;}
.ws1_c00288{word-spacing:-0.053288pt;}
.ws2_c00288{word-spacing:0.000000pt;}
._0_c00288{margin-left:-5.500006pt;}
.fs1_c00288{font-size:53.288186pt;}
.fs0_c00288{font-size:342.035795pt;}
.y0_c00288{bottom:0.000000pt;}
.y1_c00288{bottom:0.000007pt;}
.yd_c00288{bottom:82.663924pt;}
.yc_c00288{bottom:101.652588pt;}
.yb_c00288{bottom:120.641251pt;}
.ya_c00288{bottom:139.629915pt;}
.y9_c00288{bottom:158.618579pt;}
.y8_c00288{bottom:177.607242pt;}
.y7_c00288{bottom:196.595906pt;}
.y6_c00288{bottom:215.584570pt;}
.y5_c00288{bottom:234.573233pt;}
.y4_c00288{bottom:253.561897pt;}
.y3_c00288{bottom:272.550561pt;}
.y2_c00288{bottom:407.306509pt;}
.yf_c00288{bottom:1073.235882pt;}
.ye_c00288{bottom:1091.225142pt;}
.h5_c00288{height:40.824787pt;}
.h4_c00288{height:50.677065pt;}
.h3_c00288{height:239.825879pt;}
.h2_c00288{height:1159.999952pt;}
.h0_c00288{height:1159.999959pt;}
.h1_c00288{height:1160.000000pt;}
.w2_c00288{width:830.999965pt;}
.w0_c00288{width:831.000000pt;}
.w1_c00288{width:831.333333pt;}
.x0_c00288{left:0.000000pt;}
.x3_c00288{left:62.979981pt;}
.x2_c00288{left:78.089069pt;}
.x1_c00288{left:203.274277pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00289{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
}
.y0_c00289{bottom:0.000000px;}
.h0_c00289{height:1304.999953px;}
.h1_c00289{height:1305.000000px;}
.w0_c00289{width:934.875000px;}
.w1_c00289{width:935.250000px;}
.x0_c00289{left:0.000000px;}
@media print{
.y0_c00289{bottom:0.000000pt;}
.h0_c00289{height:1159.999959pt;}
.h1_c00289{height:1160.000000pt;}
.w0_c00289{width:831.000000pt;}
.w1_c00289{width:831.333333pt;}
.x0_c00289{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_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_707cc36c025d0c6962944079.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:0.895508;font-style:normal;font-weight:normal;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_7dda34454418440ad122cfad.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.006348;font-style:normal;font-weight:normal;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_6eba61db7801f105285dab7c.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.000000;font-style:normal;font-weight:normal;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_9240ba04709f5b92c6d77dbe.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:1.000000;font-style:normal;font-weight: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_c00290;src:url('chunks/assets/font_0c1d1798fedc7e3a00207613.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:0.733887;font-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_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);}
.v0_c00290{vertical-align:0.000000px;}
.ls0_c00290{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00290{word-spacing:-18.691966px;}
.ws2_c00290{word-spacing:-18.680283px;}
.ws0_c00290{word-spacing:-15.572744px;}
.ws3_c00290{word-spacing:0.000000px;}
._e_c00290{width:1.139837px;}
._7_c00290{width:3.463910px;}
._8_c00290{width:4.743262px;}
._d_c00290{width:5.792240px;}
._4_c00290{width:6.949714px;}
._5_c00290{width:8.044815px;}
._14_c00290{width:9.316731px;}
._15_c00290{width:10.739559px;}
._17_c00290{width:12.625399px;}
._6_c00290{width:14.296144px;}
._3_c00290{width:17.516509px;}
._1_c00290{width:22.732521px;}
._13_c00290{width:25.387345px;}
._c_c00290{width:28.740656px;}
._1a_c00290{width:30.778502px;}
._9_c00290{width:32.240114px;}
._0_c00290{width:33.800134px;}
._16_c00290{width:36.070169px;}
._12_c00290{width:37.601362px;}
._18_c00290{width:42.774656px;}
._19_c00290{width:43.820683px;}
._b_c00290{width:50.301976px;}
._a_c00290{width:54.951568px;}
._2_c00290{width:60.784024px;}
._f_c00290{width:62.639123px;}
._11_c00290{width:64.164079px;}
._10_c00290{width:69.919195px;}
.fc2_c00290{color:rgb(255,255,255);}
.fc1_c00290{color:rgb(0,0,0);}
.fc0_c00290{color:rgb(198,111,25);}
.fs1_c00290{font-size:59.949210px;}
.fs3_c00290{font-size:71.912067px;}
.fs0_c00290{font-size:71.957041px;}
.fs2_c00290{font-size:98.242415px;}
.y0_c00290{bottom:0.000000px;}
.y1_c00290{bottom:0.000008px;}
.y2f_c00290{bottom:30.156225px;}
.y23_c00290{bottom:96.466343px;}
.y2b_c00290{bottom:99.687522px;}
.y22_c00290{bottom:116.704261px;}
.y2a_c00290{bottom:130.044399px;}
.y21_c00290{bottom:136.942179px;}
.y20_c00290{bottom:157.180097px;}
.y29_c00290{bottom:160.401276px;}
.y1f_c00290{bottom:177.418014px;}
.y28_c00290{bottom:190.758152px;}
.y1e_c00290{bottom:197.655932px;}
.y1d_c00290{bottom:217.893850px;}
.y27_c00290{bottom:221.115029px;}
.y1c_c00290{bottom:238.131768px;}
.y26_c00290{bottom:251.471906px;}
.y1b_c00290{bottom:258.369686px;}
.y25_c00290{bottom:281.828783px;}
.y24_c00290{bottom:312.185659px;}
.y13_c00290{bottom:369.388855px;}
.y12_c00290{bottom:399.745732px;}
.y2e_c00290{bottom:428.218997px;}
.y11_c00290{bottom:430.102608px;}
.y10_c00290{bottom:460.459485px;}
.yf_c00290{bottom:490.816362px;}
.ye_c00290{bottom:521.173239px;}
.yd_c00290{bottom:551.530115px;}
.yc_c00290{bottom:581.886992px;}
.y2d_c00290{bottom:635.884017px;}
.y1a_c00290{bottom:654.293970px;}
.y19_c00290{bottom:684.650847px;}
.y18_c00290{bottom:715.007724px;}
.y17_c00290{bottom:745.364601px;}
.y16_c00290{bottom:775.721477px;}
.y15_c00290{bottom:806.078354px;}
.y14_c00290{bottom:836.435231px;}
.y2c_c00290{bottom:843.549061px;}
.yb_c00290{bottom:888.137450px;}
.ya_c00290{bottom:918.494326px;}
.y9_c00290{bottom:948.851203px;}
.y8_c00290{bottom:979.208080px;}
.y7_c00290{bottom:1009.564957px;}
.y6_c00290{bottom:1039.921833px;}
.y5_c00290{bottom:1070.278710px;}
.y4_c00290{bottom:1100.635587px;}
.y3_c00290{bottom:1130.992464px;}
.y2_c00290{bottom:1199.837793px;}
.h6_c00290{height:45.547349px;}
.h5_c00290{height:45.927886px;}
.h3_c00290{height:49.505601px;}
.h8_c00290{height:55.092790px;}
.h4_c00290{height:55.127245px;}
.h7_c00290{height:71.139405px;}
.h2_c00290{height:1304.999946px;}
.h0_c00290{height:1304.999953px;}
.h1_c00290{height:1305.000000px;}
.w2_c00290{width:934.874961px;}
.w0_c00290{width:934.875000px;}
.w1_c00290{width:935.250000px;}
.x0_c00290{left:0.000000px;}
.x4_c00290{left:87.850202px;}
.x2_c00290{left:89.810669px;}
.x5_c00290{left:327.308696px;}
.x3_c00290{left:397.883349px;}
.x6_c00290{left:451.985828px;}
.x1_c00290{left:778.970740px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws1_c00290{word-spacing:-16.615081pt;}
.ws2_c00290{word-spacing:-16.604696pt;}
.ws0_c00290{word-spacing:-13.842439pt;}
.ws3_c00290{word-spacing:0.000000pt;}
._e_c00290{width:1.013188pt;}
._7_c00290{width:3.079031pt;}
._8_c00290{width:4.216233pt;}
._d_c00290{width:5.148658pt;}
._4_c00290{width:6.177523pt;}
._5_c00290{width:7.150947pt;}
._14_c00290{width:8.281539pt;}
._15_c00290{width:9.546274pt;}
._17_c00290{width:11.222577pt;}
._6_c00290{width:12.707683pt;}
._3_c00290{width:15.570231pt;}
._1_c00290{width:20.206686pt;}
._13_c00290{width:22.566529pt;}
._c_c00290{width:25.547250pt;}
._1a_c00290{width:27.358668pt;}
._9_c00290{width:28.657879pt;}
._0_c00290{width:30.044563pt;}
._16_c00290{width:32.062372pt;}
._12_c00290{width:33.423433pt;}
._18_c00290{width:38.021916pt;}
._19_c00290{width:38.951718pt;}
._b_c00290{width:44.712868pt;}
._a_c00290{width:48.845838pt;}
._2_c00290{width:54.030243pt;}
._f_c00290{width:55.679220pt;}
._11_c00290{width:57.034737pt;}
._10_c00290{width:62.150396pt;}
.fs1_c00290{font-size:53.288186pt;}
.fs3_c00290{font-size:63.921837pt;}
.fs0_c00290{font-size:63.961814pt;}
.fs2_c00290{font-size:87.326591pt;}
.y0_c00290{bottom:0.000000pt;}
.y1_c00290{bottom:0.000007pt;}
.y2f_c00290{bottom:26.805533pt;}
.y23_c00290{bottom:85.747860pt;}
.y2b_c00290{bottom:88.611131pt;}
.y22_c00290{bottom:103.737121pt;}
.y2a_c00290{bottom:115.595021pt;}
.y21_c00290{bottom:121.726381pt;}
.y20_c00290{bottom:139.715641pt;}
.y29_c00290{bottom:142.578912pt;}
.y1f_c00290{bottom:157.704902pt;}
.y28_c00290{bottom:169.562802pt;}
.y1e_c00290{bottom:175.694162pt;}
.y1d_c00290{bottom:193.683422pt;}
.y27_c00290{bottom:196.546693pt;}
.y1c_c00290{bottom:211.672683pt;}
.y26_c00290{bottom:223.530583pt;}
.y1b_c00290{bottom:229.661943pt;}
.y25_c00290{bottom:250.514474pt;}
.y24_c00290{bottom:277.498364pt;}
.y13_c00290{bottom:328.345649pt;}
.y12_c00290{bottom:355.329539pt;}
.y2e_c00290{bottom:380.639109pt;}
.y11_c00290{bottom:382.313430pt;}
.y10_c00290{bottom:409.297320pt;}
.yf_c00290{bottom:436.281211pt;}
.ye_c00290{bottom:463.265101pt;}
.yd_c00290{bottom:490.248992pt;}
.yc_c00290{bottom:517.232882pt;}
.y2d_c00290{bottom:565.230237pt;}
.y1a_c00290{bottom:581.594640pt;}
.y19_c00290{bottom:608.578531pt;}
.y18_c00290{bottom:635.562421pt;}
.y17_c00290{bottom:662.546312pt;}
.y16_c00290{bottom:689.530202pt;}
.y15_c00290{bottom:716.514093pt;}
.y14_c00290{bottom:743.497983pt;}
.y2c_c00290{bottom:749.821388pt;}
.yb_c00290{bottom:789.455511pt;}
.ya_c00290{bottom:816.439401pt;}
.y9_c00290{bottom:843.423292pt;}
.y8_c00290{bottom:870.407182pt;}
.y7_c00290{bottom:897.391073pt;}
.y6_c00290{bottom:924.374963pt;}
.y5_c00290{bottom:951.358854pt;}
.y4_c00290{bottom:978.342744pt;}
.y3_c00290{bottom:1005.326634pt;}
.y2_c00290{bottom:1066.522482pt;}
.h6_c00290{height:40.486532pt;}
.h5_c00290{height:40.824787pt;}
.h3_c00290{height:44.004979pt;}
.h8_c00290{height:48.971369pt;}
.h4_c00290{height:49.001996pt;}
.h7_c00290{height:63.235027pt;}
.h2_c00290{height:1159.999952pt;}
.h0_c00290{height:1159.999959pt;}
.h1_c00290{height:1160.000000pt;}
.w2_c00290{width:830.999965pt;}
.w0_c00290{width:831.000000pt;}
.w1_c00290{width:831.333333pt;}
.x0_c00290{left:0.000000pt;}
.x4_c00290{left:78.089069pt;}
.x2_c00290{left:79.831705pt;}
.x5_c00290{left:290.941063pt;}
.x3_c00290{left:353.674088pt;}
.x6_c00290{left:401.765180pt;}
.x1_c00290{left:692.418435pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a20131aae21a913de210efc.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.006348;font-style:normal;font-weight:normal;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_707cc36c025d0c6962944079.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:0.895508;font-style:normal;font-weight:normal;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_5dcaee99a08edc34bb563a6a.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.000000;font-style:normal;font-weight:normal;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_9e660e378e4d58b286fb2d21.woff2')format("woff");}.ff4_c00291{font-family:ff4_c00291;line-height:1.006348;font-style:normal;font-weight: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_2012cb5544474b10dc8af9ea.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;line-height:1.006348;font-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_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;}
.ls0_c00291{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws2_c00291{word-spacing:-18.680283px;}
.ws1_c00291{word-spacing:-15.572744px;}
.ws3_c00291{word-spacing:0.000000px;}
._0_c00291{width:1.746606px;}
._3_c00291{width:4.778396px;}
._10_c00291{width:6.008135px;}
._6_c00291{width:7.075639px;}
._9_c00291{width:8.202163px;}
._5_c00291{width:9.862920px;}
._f_c00291{width:12.622683px;}
._1_c00291{width:13.837877px;}
._c_c00291{width:15.119007px;}
._11_c00291{width:17.300027px;}
._12_c00291{width:18.596878px;}
._a_c00291{width:20.372006px;}
._7_c00291{width:21.617732px;}
._15_c00291{width:22.697386px;}
._17_c00291{width:24.579042px;}
._16_c00291{width:31.318773px;}
._4_c00291{width:32.472745px;}
._b_c00291{width:39.468576px;}
._d_c00291{width:40.892793px;}
._8_c00291{width:44.191389px;}
._2_c00291{width:48.223161px;}
._14_c00291{width:49.924270px;}
._e_c00291{width:51.754257px;}
._13_c00291{width:55.674113px;}
.fc1_c00291{color:rgb(198,111,25);}
.fc2_c00291{color:rgb(255,255,255);}
.fc0_c00291{color:rgb(0,0,0);}
.fs1_c00291{font-size:59.949210px;}
.fs2_c00291{font-size:71.912067px;}
.fs0_c00291{font-size:71.957041px;}
.y0_c00291{bottom:0.000000px;}
.y1_c00291{bottom:0.000008px;}
.y2c_c00291{bottom:30.156225px;}
.y2b_c00291{bottom:93.735268px;}
.y2a_c00291{bottom:124.092145px;}
.y29_c00291{bottom:154.449022px;}
.y28_c00291{bottom:184.805899px;}
.y27_c00291{bottom:215.162775px;}
.y26_c00291{bottom:245.519652px;}
.y25_c00291{bottom:275.876529px;}
.y9_c00291{bottom:318.912393px;}
.y8_c00291{bottom:349.269270px;}
.y7_c00291{bottom:379.626147px;}
.y6_c00291{bottom:409.983023px;}
.y5_c00291{bottom:440.339900px;}
.y4_c00291{bottom:470.696777px;}
.y3_c00291{bottom:501.053654px;}
.y2_c00291{bottom:531.410530px;}
.y14_c00291{bottom:574.358467px;}
.y13_c00291{bottom:604.715344px;}
.y12_c00291{bottom:635.072221px;}
.y11_c00291{bottom:665.429097px;}
.y10_c00291{bottom:695.785974px;}
.yf_c00291{bottom:726.142851px;}
.ye_c00291{bottom:756.499728px;}
.yd_c00291{bottom:786.856604px;}
.yc_c00291{bottom:817.213481px;}
.yb_c00291{bottom:847.570358px;}
.y1d_c00291{bottom:892.369811px;}
.y1c_c00291{bottom:922.726688px;}
.y1b_c00291{bottom:953.083565px;}
.y24_c00291{bottom:964.326862px;}
.y23_c00291{bottom:981.191793px;}
.y1a_c00291{bottom:983.440441px;}
.y22_c00291{bottom:998.056725px;}
.y19_c00291{bottom:1013.797318px;}
.y21_c00291{bottom:1014.921656px;}
.y20_c00291{bottom:1031.786588px;}
.y18_c00291{bottom:1044.154195px;}
.y1f_c00291{bottom:1048.651519px;}
.y1e_c00291{bottom:1065.516451px;}
.y17_c00291{bottom:1074.511072px;}
.y16_c00291{bottom:1104.867948px;}
.y15_c00291{bottom:1135.224825px;}
.ya_c00291{bottom:1199.837793px;}
.h5_c00291{height:45.927886px;}
.h4_c00291{height:49.505601px;}
.h6_c00291{height:55.092790px;}
.h3_c00291{height:55.127245px;}
.h2_c00291{height:1304.999946px;}
.h0_c00291{height:1304.999953px;}
.h1_c00291{height:1305.000000px;}
.w2_c00291{width:934.874961px;}
.w0_c00291{width:934.875000px;}
.w1_c00291{width:935.250000px;}
.x0_c00291{left:0.000000px;}
.x3_c00291{left:86.705719px;}
.x1_c00291{left:87.850202px;}
.x5_c00291{left:89.434062px;}
.x6_c00291{left:451.985828px;}
.x4_c00291{left:627.819814px;}
.x2_c00291{left:778.970740px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws0_c00291{word-spacing:-16.615081pt;}
.ws2_c00291{word-spacing:-16.604696pt;}
.ws1_c00291{word-spacing:-13.842439pt;}
.ws3_c00291{word-spacing:0.000000pt;}
._0_c00291{width:1.552538pt;}
._3_c00291{width:4.247463pt;}
._10_c00291{width:5.340564pt;}
._6_c00291{width:6.289457pt;}
._9_c00291{width:7.290812pt;}
._5_c00291{width:8.767040pt;}
._f_c00291{width:11.220163pt;}
._1_c00291{width:12.300335pt;}
._c_c00291{width:13.439118pt;}
._11_c00291{width:15.377802pt;}
._12_c00291{width:16.530558pt;}
._a_c00291{width:18.108450pt;}
._7_c00291{width:19.215762pt;}
._15_c00291{width:20.175454pt;}
._17_c00291{width:21.848037pt;}
._16_c00291{width:27.838909pt;}
._4_c00291{width:28.864662pt;}
._b_c00291{width:35.083179pt;}
._d_c00291{width:36.349149pt;}
._8_c00291{width:39.281235pt;}
._2_c00291{width:42.865032pt;}
._14_c00291{width:44.377129pt;}
._e_c00291{width:46.003784pt;}
._13_c00291{width:49.488101pt;}
.fs1_c00291{font-size:53.288186pt;}
.fs2_c00291{font-size:63.921837pt;}
.fs0_c00291{font-size:63.961814pt;}
.y0_c00291{bottom:0.000000pt;}
.y1_c00291{bottom:0.000007pt;}
.y2c_c00291{bottom:26.805533pt;}
.y2b_c00291{bottom:83.320239pt;}
.y2a_c00291{bottom:110.304129pt;}
.y29_c00291{bottom:137.288019pt;}
.y28_c00291{bottom:164.271910pt;}
.y27_c00291{bottom:191.255800pt;}
.y26_c00291{bottom:218.239691pt;}
.y25_c00291{bottom:245.223581pt;}
.y9_c00291{bottom:283.477683pt;}
.y8_c00291{bottom:310.461573pt;}
.y7_c00291{bottom:337.445464pt;}
.y6_c00291{bottom:364.429354pt;}
.y5_c00291{bottom:391.413244pt;}
.y4_c00291{bottom:418.397135pt;}
.y3_c00291{bottom:445.381025pt;}
.y2_c00291{bottom:472.364916pt;}
.y14_c00291{bottom:510.540860pt;}
.y13_c00291{bottom:537.524750pt;}
.y12_c00291{bottom:564.508641pt;}
.y11_c00291{bottom:591.492531pt;}
.y10_c00291{bottom:618.476421pt;}
.yf_c00291{bottom:645.460312pt;}
.ye_c00291{bottom:672.444202pt;}
.yd_c00291{bottom:699.428093pt;}
.yc_c00291{bottom:726.411983pt;}
.yb_c00291{bottom:753.395874pt;}
.y1d_c00291{bottom:793.217610pt;}
.y1c_c00291{bottom:820.201500pt;}
.y1b_c00291{bottom:847.185391pt;}
.y24_c00291{bottom:857.179433pt;}
.y23_c00291{bottom:872.170483pt;}
.y1a_c00291{bottom:874.169281pt;}
.y22_c00291{bottom:887.161533pt;}
.y19_c00291{bottom:901.153172pt;}
.y21_c00291{bottom:902.152583pt;}
.y20_c00291{bottom:917.143634pt;}
.y18_c00291{bottom:928.137062pt;}
.y1f_c00291{bottom:932.134684pt;}
.y1e_c00291{bottom:947.125734pt;}
.y17_c00291{bottom:955.120953pt;}
.y16_c00291{bottom:982.104843pt;}
.y15_c00291{bottom:1009.088734pt;}
.ya_c00291{bottom:1066.522482pt;}
.h5_c00291{height:40.824787pt;}
.h4_c00291{height:44.004979pt;}
.h6_c00291{height:48.971369pt;}
.h3_c00291{height:49.001996pt;}
.h2_c00291{height:1159.999952pt;}
.h0_c00291{height:1159.999959pt;}
.h1_c00291{height:1160.000000pt;}
.w2_c00291{width:830.999965pt;}
.w0_c00291{width:831.000000pt;}
.w1_c00291{width:831.333333pt;}
.x0_c00291{left:0.000000pt;}
.x3_c00291{left:77.071750pt;}
.x1_c00291{left:78.089069pt;}
.x5_c00291{left:79.496944pt;}
.x6_c00291{left:401.765180pt;}
.x4_c00291{left:558.062057pt;}
.x2_c00291{left:692.418435pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_707cc36c025d0c6962944079.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:0.895508;font-style:normal;font-weight:normal;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_fd65c0148df61abfd8e8ca0c.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.006348;font-style:normal;font-weight:normal;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_5336f69178d16ab0739661de.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.006348;font-style:normal;font-weight:normal;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_3028eac6a66d0079329184ff.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:1.000000;font-style:normal;font-weight: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_c00292;src:url('chunks/assets/font_773293fecb81370cf2fc4eab.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:0.713867;font-style:normal;font-weight: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_c00292;src:url('chunks/assets/font_12fa7e8b3dfc9a924ed4dd7c.woff2')format("woff");}.ff6_c00292{font-family:ff6_c00292;line-height:0.892090;font-style:normal;font-weight: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_c00292;src:url('chunks/assets/font_af24c93efcc5d6409d693242.woff2')format("woff");}.ff7_c00292{font-family:ff7_c00292;line-height:0.727051;font-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_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;}
.ls1_c00292{letter-spacing:0.000000px;}
.ls0_c00292{letter-spacing:0.027317px;}
.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;}
}
.ws1_c00292{word-spacing:-18.680283px;}
.ws0_c00292{word-spacing:-0.053968px;}
.ws2_c00292{word-spacing:0.000000px;}
._0_c00292{width:1.346806px;}
._3_c00292{width:2.781517px;}
._2_c00292{width:6.421588px;}
._4_c00292{width:7.464114px;}
._1_c00292{width:10.559730px;}
._5_c00292{width:11.976050px;}
.fc2_c00292{color:rgb(255,255,255);}
.fc1_c00292{color:rgb(0,0,0);}
.fc0_c00292{color:rgb(198,111,25);}
.fs3_c00292{font-size:53.967781px;}
.fs2_c00292{font-size:59.949210px;}
.fs4_c00292{font-size:71.912067px;}
.fs0_c00292{font-size:71.957041px;}
.fs1_c00292{font-size:119.898420px;}
.y0_c00292{bottom:0.000000px;}
.y1_c00292{bottom:0.000008px;}
.y10_c00292{bottom:30.156225px;}
.yf_c00292{bottom:97.060234px;}
.ye_c00292{bottom:114.149768px;}
.yc_c00292{bottom:802.804979px;}
.yb_c00292{bottom:833.161856px;}
.ya_c00292{bottom:863.518732px;}
.y9_c00292{bottom:893.875609px;}
.y8_c00292{bottom:924.232486px;}
.y7_c00292{bottom:954.589363px;}
.y6_c00292{bottom:984.946239px;}
.y5_c00292{bottom:1015.303116px;}
.y4_c00292{bottom:1045.659993px;}
.y3_c00292{bottom:1076.016870px;}
.yd_c00292{bottom:1122.845039px;}
.y2_c00292{bottom:1199.837793px;}
.h7_c00292{height:39.606238px;}
.h6_c00292{height:45.547349px;}
.h3_c00292{height:49.505601px;}
.h8_c00292{height:55.092790px;}
.h4_c00292{height:55.127245px;}
.h5_c00292{height:91.855772px;}
.h2_c00292{height:1304.999946px;}
.h0_c00292{height:1304.999953px;}
.h1_c00292{height:1305.000000px;}
.w2_c00292{width:934.874961px;}
.w0_c00292{width:934.875000px;}
.w1_c00292{width:935.250000px;}
.x0_c00292{left:0.000000px;}
.x3_c00292{left:90.668851px;}
.x2_c00292{left:93.487496px;}
.x4_c00292{left:451.985828px;}
.x1_c00292{left:778.970740px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls1_c00292{letter-spacing:0.000000pt;}
.ls0_c00292{letter-spacing:0.024282pt;}
.ws1_c00292{word-spacing:-16.604696pt;}
.ws0_c00292{word-spacing:-0.047971pt;}
.ws2_c00292{word-spacing:0.000000pt;}
._0_c00292{width:1.197161pt;}
._3_c00292{width:2.472460pt;}
._2_c00292{width:5.708078pt;}
._4_c00292{width:6.634768pt;}
._1_c00292{width:9.386426pt;}
._5_c00292{width:10.645378pt;}
.fs3_c00292{font-size:47.971361pt;}
.fs2_c00292{font-size:53.288186pt;}
.fs4_c00292{font-size:63.921837pt;}
.fs0_c00292{font-size:63.961814pt;}
.fs1_c00292{font-size:106.576373pt;}
.y0_c00292{bottom:0.000000pt;}
.y1_c00292{bottom:0.000007pt;}
.y10_c00292{bottom:26.805533pt;}
.yf_c00292{bottom:86.275764pt;}
.ye_c00292{bottom:101.466460pt;}
.yc_c00292{bottom:713.604426pt;}
.yb_c00292{bottom:740.588316pt;}
.ya_c00292{bottom:767.572206pt;}
.y9_c00292{bottom:794.556097pt;}
.y8_c00292{bottom:821.539987pt;}
.y7_c00292{bottom:848.523878pt;}
.y6_c00292{bottom:875.507768pt;}
.y5_c00292{bottom:902.491659pt;}
.y4_c00292{bottom:929.475549pt;}
.y3_c00292{bottom:956.459440pt;}
.yd_c00292{bottom:998.084479pt;}
.y2_c00292{bottom:1066.522482pt;}
.h7_c00292{height:35.205545pt;}
.h6_c00292{height:40.486532pt;}
.h3_c00292{height:44.004979pt;}
.h8_c00292{height:48.971369pt;}
.h4_c00292{height:49.001996pt;}
.h5_c00292{height:81.649575pt;}
.h2_c00292{height:1159.999952pt;}
.h0_c00292{height:1159.999959pt;}
.h1_c00292{height:1160.000000pt;}
.w2_c00292{width:830.999965pt;}
.w0_c00292{width:831.000000pt;}
.w1_c00292{width:831.333333pt;}
.x0_c00292{left:0.000000pt;}
.x3_c00292{left:80.594534pt;}
.x2_c00292{left:83.099997pt;}
.x4_c00292{left:401.765180pt;}
.x1_c00292{left:692.418435pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8758c61117f0ac4bd71e758e.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:0.734863;font-style:normal;font-weight: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_8735ed9e628f7a73d49b74cc.woff2')format("woff");}.ff5_c00293{font-family:ff5_c00293;line-height:1.000000;font-style:normal;font-weight: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_041e68b84002711fc44bae1a.woff2')format("woff");}.ff6_c00293{font-family:ff6_c00293;line-height:1.171387;font-style:normal;font-weight: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_c00293;src:url('chunks/assets/font_e737e402b403bc1e4e53ea4b.woff2')format("woff");}.ff7_c00293{font-family:ff7_c00293;line-height:1.000000;font-style:normal;font-weight: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_c00293;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00293{font-family:ff8_c00293;line-height:1.006348;font-style:normal;font-weight: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_c00293;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00293{font-family:ff9_c00293;line-height:0.940000;font-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_c00293{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00293{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00293{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00293{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00293{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00293{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00293{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00293{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00293{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00293{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00293{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00293{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00293{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00293{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00293{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00293{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00293{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00293{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00293{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00293{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00293{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00293{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00293{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00293{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00293{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00293{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00293{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00293{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00293{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00293{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00293{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00293{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00293{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00293{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00293{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00293{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00293{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00293{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00293{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00293{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00293{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00293{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00293{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00293{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00293{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00293{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00293{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00293{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00293{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00293{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00293{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00293{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00293{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00293{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00293{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00293{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00293{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00293{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00293{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00293{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00293{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00293{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.ls0_c00293{letter-spacing:0.000000px;}
.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:-41.664701px;}
.ws3_c00293{word-spacing:-18.680283px;}
.ws0_c00293{word-spacing:-15.162211px;}
.ws2_c00293{word-spacing:-14.474592px;}
.ws5_c00293{word-spacing:0.000000px;}
.ws1_c00293{word-spacing:281.470806px;}
._3_c00293{width:4.140058px;}
._2_c00293{width:13.620750px;}
._0_c00293{width:15.854108px;}
._4_c00293{width:20.308188px;}
._1_c00293{width:25.660416px;}
.fc3_c00293{color:rgb(198,111,25);}
.fc2_c00293{color:rgb(9,71,81);}
.fc1_c00293{color:rgb(255,255,255);}
.fc0_c00293{color:rgb(0,0,0);}
.fs9_c00293{font-size:41.974772px;}
.fsc_c00293{font-size:41.975069px;}
.fs2_c00293{font-size:47.339969px;}
.fs5_c00293{font-size:47.339970px;}
.fs1_c00293{font-size:47.339972px;}
.fs4_c00293{font-size:47.339973px;}
.fs3_c00293{font-size:47.339974px;}
.fs6_c00293{font-size:47.339975px;}
.fs8_c00293{font-size:51.630774px;}
.fsd_c00293{font-size:55.721735px;}
.fsb_c00293{font-size:59.949210px;}
.fse_c00293{font-size:71.912067px;}
.fs0_c00293{font-size:71.957041px;}
.fs7_c00293{font-size:76.965540px;}
.fsa_c00293{font-size:89.946302px;}
.y0_c00293{bottom:0.000000px;}
.y1_c00293{bottom:0.000008px;}
.y53_c00293{bottom:30.156225px;}
.y50_c00293{bottom:140.565600px;}
.y4f_c00293{bottom:170.922477px;}
.y4e_c00293{bottom:201.279354px;}
.y4d_c00293{bottom:231.636231px;}
.y4c_c00293{bottom:261.993108px;}
.y4b_c00293{bottom:292.349984px;}
.y51_c00293{bottom:328.365596px;}
.y42_c00293{bottom:402.064151px;}
.y10_c00293{bottom:493.812629px;}
.y38_c00293{bottom:493.827623px;}
.yf_c00293{bottom:494.337609px;}
.y39_c00293{bottom:494.357158px;}
.y22_c00293{bottom:494.700737px;}
.y37_c00293{bottom:495.071586px;}
.ye_c00293{bottom:495.403002px;}
.y23_c00293{bottom:495.533530px;}
.y21_c00293{bottom:495.553663px;}
.y36_c00293{bottom:496.322201px;}
.yd_c00293{bottom:496.475623px;}
.y20_c00293{bottom:496.587915px;}
.y3a_c00293{bottom:496.772260px;}
.y11_c00293{bottom:496.835884px;}
.y24_c00293{bottom:497.713596px;}
.y35_c00293{bottom:497.966053px;}
.yc_c00293{bottom:498.126234px;}
.y1f_c00293{bottom:498.789265px;}
.y25_c00293{bottom:499.103521px;}
.y34_c00293{bottom:499.653306px;}
.yb_c00293{bottom:499.818769px;}
.y26_c00293{bottom:500.800864px;}
.y12_c00293{bottom:501.110605px;}
.y33_c00293{bottom:501.517382px;}
.ya_c00293{bottom:501.687706px;}
.y3b_c00293{bottom:501.869915px;}
.y1e_c00293{bottom:502.578702px;}
.y27_c00293{bottom:503.241722px;}
.y13_c00293{bottom:503.627848px;}
.y3c_c00293{bottom:505.496019px;}
.y28_c00293{bottom:505.499367px;}
.y32_c00293{bottom:506.168989px;}
.y9_c00293{bottom:506.348634px;}
.y1d_c00293{bottom:508.044213px;}
.y29_c00293{bottom:508.766327px;}
.y14_c00293{bottom:509.576794px;}
.y3d_c00293{bottom:511.126534px;}
.y1c_c00293{bottom:512.508085px;}
.y31_c00293{bottom:512.566592px;}
.y8_c00293{bottom:512.754669px;}
.y15_c00293{bottom:514.322677px;}
.y2a_c00293{bottom:517.158603px;}
.y3e_c00293{bottom:517.780195px;}
.y1b_c00293{bottom:518.929057px;}
.y30_c00293{bottom:519.869222px;}
.y7_c00293{bottom:519.959421px;}
.y6_c00293{bottom:523.416158px;}
.y1a_c00293{bottom:523.496236px;}
.y2b_c00293{bottom:525.202812px;}
.y16_c00293{bottom:526.099549px;}
.y2f_c00293{bottom:527.026630px;}
.y5_c00293{bottom:529.422883px;}
.y3f_c00293{bottom:529.736175px;}
.y19_c00293{bottom:531.263725px;}
.y2e_c00293{bottom:531.792993px;}
.y41_c00293{bottom:533.728456px;}
.y4a_c00293{bottom:534.421816px;}
.y18_c00293{bottom:535.155114px;}
.y4_c00293{bottom:536.678099px;}
.y2d_c00293{bottom:537.961701px;}
.y17_c00293{bottom:538.332892px;}
.y40_c00293{bottom:538.696314px;}
.y43_c00293{bottom:540.431096px;}
.y2c_c00293{bottom:545.020884px;}
.y3_c00293{bottom:546.207017px;}
.y44_c00293{bottom:577.871130px;}
.y2_c00293{bottom:597.559761px;}
.y52_c00293{bottom:639.489911px;}
.y54_c00293{bottom:1024.443964px;}
.y48_c00293{bottom:1127.585799px;}
.y46_c00293{bottom:1129.718199px;}
.y45_c00293{bottom:1147.707459px;}
.y49_c00293{bottom:1150.991694px;}
.y47_c00293{bottom:1170.658440px;}
.hc_c00293{height:32.157430px;}
.h8_c00293{height:35.967282px;}
.h7_c00293{height:35.967283px;}
.h9_c00293{height:35.967285px;}
.h5_c00293{height:36.267779px;}
.h4_c00293{height:36.267781px;}
.h6_c00293{height:36.267783px;}
.hb_c00293{height:37.437353px;}
.hf_c00293{height:39.085184px;}
.h14_c00293{height:45.561399px;}
.h12_c00293{height:51.885424px;}
.h13_c00293{height:55.092790px;}
.h3_c00293{height:55.127245px;}
.he_c00293{height:55.821847px;}
.ha_c00293{height:56.261810px;}
.h10_c00293{height:67.002968px;}
.hd_c00293{height:68.338108px;}
.h11_c00293{height:83.753709px;}
.h2_c00293{height:1304.999946px;}
.h0_c00293{height:1304.999953px;}
.h1_c00293{height:1305.000000px;}
.w2_c00293{width:934.874961px;}
.w0_c00293{width:934.875000px;}
.w1_c00293{width:935.250000px;}
.x0_c00293{left:0.000000px;}
.x3f_c00293{left:87.850202px;}
.x3e_c00293{left:89.434062px;}
.x3a_c00293{left:107.403263px;}
.x3b_c00293{left:109.658623px;}
.x42_c00293{left:131.272077px;}
.x27_c00293{left:134.894322px;}
.x26_c00293{left:136.566734px;}
.x28_c00293{left:139.937719px;}
.x29_c00293{left:144.785273px;}
.x2a_c00293{left:150.147890px;}
.x2b_c00293{left:152.899057px;}
.x2c_c00293{left:155.907145px;}
.x2d_c00293{left:159.752336px;}
.x37_c00293{left:161.347648px;}
.x2e_c00293{left:163.203941px;}
.x2f_c00293{left:171.483965px;}
.x30_c00293{left:179.748684px;}
.x31_c00293{left:188.175145px;}
.x32_c00293{left:196.556636px;}
.x33_c00293{left:200.721504px;}
.x34_c00293{left:205.276922px;}
.x35_c00293{left:209.084069px;}
.x36_c00293{left:211.669316px;}
.x3_c00293{left:230.260919px;}
.x2_c00293{left:232.395871px;}
.x4_c00293{left:235.482735px;}
.x5_c00293{left:240.319117px;}
.x6_c00293{left:245.673577px;}
.x7_c00293{left:248.421493px;}
.x8_c00293{left:251.426626px;}
.x9_c00293{left:255.268917px;}
.x3d_c00293{left:256.468943px;}
.xa_c00293{left:258.553698px;}
.xb_c00293{left:262.988294px;}
.xc_c00293{left:271.601212px;}
.xd_c00293{left:283.434780px;}
.xe_c00293{left:290.867654px;}
.xf_c00293{left:294.260334px;}
.x3c_c00293{left:295.438786px;}
.x10_c00293{left:299.596701px;}
.x11_c00293{left:302.984150px;}
.x12_c00293{left:306.993562px;}
.x13_c00293{left:325.378518px;}
.x14_c00293{left:326.595106px;}
.x15_c00293{left:328.015253px;}
.x16_c00293{left:331.410444px;}
.x17_c00293{left:334.633053px;}
.x18_c00293{left:340.511825px;}
.x19_c00293{left:346.695139px;}
.x1a_c00293{left:352.384720px;}
.x1b_c00293{left:355.792694px;}
.x1c_c00293{left:363.695116px;}
.x1d_c00293{left:371.679253px;}
.x1e_c00293{left:378.434940px;}
.x1f_c00293{left:381.453328px;}
.x20_c00293{left:384.455783px;}
.x21_c00293{left:387.851715px;}
.x22_c00293{left:390.467224px;}
.x23_c00293{left:393.779799px;}
.x24_c00293{left:398.952070px;}
.x25_c00293{left:401.755082px;}
.x41_c00293{left:451.985828px;}
.x1_c00293{left:465.097640px;}
.x40_c00293{left:661.177232px;}
.x38_c00293{left:696.904800px;}
.x39_c00293{left:733.103068px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws4_c00293{word-spacing:-37.035289pt;}
.ws3_c00293{word-spacing:-16.604696pt;}
.ws0_c00293{word-spacing:-13.477521pt;}
.ws2_c00293{word-spacing:-12.866304pt;}
.ws5_c00293{word-spacing:0.000000pt;}
.ws1_c00293{word-spacing:250.196272pt;}
._3_c00293{width:3.680052pt;}
._2_c00293{width:12.107333pt;}
._0_c00293{width:14.092540pt;}
._4_c00293{width:18.051723pt;}
._1_c00293{width:22.809258pt;}
.fs9_c00293{font-size:37.310908pt;}
.fsc_c00293{font-size:37.311173pt;}
.fs2_c00293{font-size:42.079973pt;}
.fs5_c00293{font-size:42.079974pt;}
.fs1_c00293{font-size:42.079975pt;}
.fs4_c00293{font-size:42.079976pt;}
.fs3_c00293{font-size:42.079977pt;}
.fs6_c00293{font-size:42.079978pt;}
.fs8_c00293{font-size:45.894021pt;}
.fsd_c00293{font-size:49.530431pt;}
.fsb_c00293{font-size:53.288186pt;}
.fse_c00293{font-size:63.921837pt;}
.fs0_c00293{font-size:63.961814pt;}
.fs7_c00293{font-size:68.413814pt;}
.fsa_c00293{font-size:79.952268pt;}
.y0_c00293{bottom:0.000000pt;}
.y1_c00293{bottom:0.000007pt;}
.y53_c00293{bottom:26.805533pt;}
.y50_c00293{bottom:124.947200pt;}
.y4f_c00293{bottom:151.931091pt;}
.y4e_c00293{bottom:178.914981pt;}
.y4d_c00293{bottom:205.898872pt;}
.y4c_c00293{bottom:232.882762pt;}
.y4b_c00293{bottom:259.866653pt;}
.y51_c00293{bottom:291.880530pt;}
.y42_c00293{bottom:357.390356pt;}
.y10_c00293{bottom:438.944560pt;}
.y38_c00293{bottom:438.957887pt;}
.yf_c00293{bottom:439.411208pt;}
.y39_c00293{bottom:439.428585pt;}
.y22_c00293{bottom:439.733989pt;}
.y37_c00293{bottom:440.063632pt;}
.ye_c00293{bottom:440.358224pt;}
.y23_c00293{bottom:440.474249pt;}
.y21_c00293{bottom:440.492144pt;}
.y36_c00293{bottom:441.175290pt;}
.yd_c00293{bottom:441.311665pt;}
.y20_c00293{bottom:441.411480pt;}
.y3a_c00293{bottom:441.575343pt;}
.y11_c00293{bottom:441.631897pt;}
.y24_c00293{bottom:442.412085pt;}
.y35_c00293{bottom:442.636491pt;}
.yc_c00293{bottom:442.778875pt;}
.y1f_c00293{bottom:443.368235pt;}
.y25_c00293{bottom:443.647574pt;}
.y34_c00293{bottom:444.136272pt;}
.yb_c00293{bottom:444.283350pt;}
.y26_c00293{bottom:445.156323pt;}
.y12_c00293{bottom:445.431649pt;}
.y33_c00293{bottom:445.793228pt;}
.ya_c00293{bottom:445.944627pt;}
.y3b_c00293{bottom:446.106592pt;}
.y1e_c00293{bottom:446.736624pt;}
.y27_c00293{bottom:447.325975pt;}
.y13_c00293{bottom:447.669198pt;}
.y3c_c00293{bottom:449.329795pt;}
.y28_c00293{bottom:449.332771pt;}
.y32_c00293{bottom:449.927990pt;}
.y9_c00293{bottom:450.087675pt;}
.y1d_c00293{bottom:451.594856pt;}
.y29_c00293{bottom:452.236735pt;}
.y14_c00293{bottom:452.957150pt;}
.y3d_c00293{bottom:454.334697pt;}
.y1c_c00293{bottom:455.562742pt;}
.y31_c00293{bottom:455.614749pt;}
.y8_c00293{bottom:455.781928pt;}
.y15_c00293{bottom:457.175713pt;}
.y2a_c00293{bottom:459.696536pt;}
.y3e_c00293{bottom:460.249062pt;}
.y1b_c00293{bottom:461.270273pt;}
.y30_c00293{bottom:462.105976pt;}
.y7_c00293{bottom:462.186152pt;}
.y6_c00293{bottom:465.258807pt;}
.y1a_c00293{bottom:465.329988pt;}
.y2b_c00293{bottom:466.846944pt;}
.y16_c00293{bottom:467.644044pt;}
.y2f_c00293{bottom:468.468115pt;}
.y5_c00293{bottom:470.598118pt;}
.y3f_c00293{bottom:470.876600pt;}
.y19_c00293{bottom:472.234422pt;}
.y2e_c00293{bottom:472.704883pt;}
.y41_c00293{bottom:474.425294pt;}
.y4a_c00293{bottom:475.041614pt;}
.y18_c00293{bottom:475.693435pt;}
.y4_c00293{bottom:477.047199pt;}
.y2d_c00293{bottom:478.188178pt;}
.y17_c00293{bottom:478.518126pt;}
.y40_c00293{bottom:478.841168pt;}
.y43_c00293{bottom:480.383196pt;}
.y2c_c00293{bottom:484.463008pt;}
.y3_c00293{bottom:485.517349pt;}
.y44_c00293{bottom:513.663227pt;}
.y2_c00293{bottom:531.164232pt;}
.y52_c00293{bottom:568.435476pt;}
.y54_c00293{bottom:910.616857pt;}
.y48_c00293{bottom:1002.298488pt;}
.y46_c00293{bottom:1004.193955pt;}
.y45_c00293{bottom:1020.184408pt;}
.y49_c00293{bottom:1023.103728pt;}
.y47_c00293{bottom:1040.585280pt;}
.hc_c00293{height:28.584382pt;}
.h8_c00293{height:31.970917pt;}
.h7_c00293{height:31.970918pt;}
.h9_c00293{height:31.970920pt;}
.h5_c00293{height:32.238026pt;}
.h4_c00293{height:32.238028pt;}
.h6_c00293{height:32.238029pt;}
.hb_c00293{height:33.277647pt;}
.hf_c00293{height:34.742386pt;}
.h14_c00293{height:40.499022pt;}
.h12_c00293{height:46.120377pt;}
.h13_c00293{height:48.971369pt;}
.h3_c00293{height:49.001996pt;}
.he_c00293{height:49.619420pt;}
.ha_c00293{height:50.010498pt;}
.h10_c00293{height:59.558193pt;}
.hd_c00293{height:60.744985pt;}
.h11_c00293{height:74.447742pt;}
.h2_c00293{height:1159.999952pt;}
.h0_c00293{height:1159.999959pt;}
.h1_c00293{height:1160.000000pt;}
.w2_c00293{width:830.999965pt;}
.w0_c00293{width:831.000000pt;}
.w1_c00293{width:831.333333pt;}
.x0_c00293{left:0.000000pt;}
.x3f_c00293{left:78.089069pt;}
.x3e_c00293{left:79.496944pt;}
.x3a_c00293{left:95.469567pt;}
.x3b_c00293{left:97.474332pt;}
.x42_c00293{left:116.686291pt;}
.x27_c00293{left:119.906064pt;}
.x26_c00293{left:121.392652pt;}
.x28_c00293{left:124.389083pt;}
.x29_c00293{left:128.698021pt;}
.x2a_c00293{left:133.464791pt;}
.x2b_c00293{left:135.910272pt;}
.x2c_c00293{left:138.584129pt;}
.x2d_c00293{left:142.002076pt;}
.x37_c00293{left:143.420132pt;}
.x2e_c00293{left:145.070170pt;}
.x2f_c00293{left:152.430191pt;}
.x30_c00293{left:159.776608pt;}
.x31_c00293{left:167.266795pt;}
.x32_c00293{left:174.717010pt;}
.x33_c00293{left:178.419115pt;}
.x34_c00293{left:182.468375pt;}
.x35_c00293{left:185.852506pt;}
.x36_c00293{left:188.150503pt;}
.x3_c00293{left:204.676373pt;}
.x2_c00293{left:206.574107pt;}
.x4_c00293{left:209.317987pt;}
.x5_c00293{left:213.616993pt;}
.x6_c00293{left:218.376513pt;}
.x7_c00293{left:220.819105pt;}
.x8_c00293{left:223.490334pt;}
.x9_c00293{left:226.905704pt;}
.x3d_c00293{left:227.972394pt;}
.xa_c00293{left:229.825509pt;}
.xb_c00293{left:233.767373pt;}
.xc_c00293{left:241.423300pt;}
.xd_c00293{left:251.942027pt;}
.xe_c00293{left:258.549026pt;}
.xf_c00293{left:261.564741pt;}
.x3c_c00293{left:262.612255pt;}
.x10_c00293{left:266.308178pt;}
.x11_c00293{left:269.319244pt;}
.x12_c00293{left:272.883167pt;}
.x13_c00293{left:289.225349pt;}
.x14_c00293{left:290.306761pt;}
.x15_c00293{left:291.569114pt;}
.x16_c00293{left:294.587062pt;}
.x17_c00293{left:297.451603pt;}
.x18_c00293{left:302.677178pt;}
.x19_c00293{left:308.173457pt;}
.x1a_c00293{left:313.230862pt;}
.x1b_c00293{left:316.260173pt;}
.x1c_c00293{left:323.284548pt;}
.x1d_c00293{left:330.381558pt;}
.x1e_c00293{left:336.386614pt;}
.x1f_c00293{left:339.069625pt;}
.x20_c00293{left:341.738474pt;}
.x21_c00293{left:344.757080pt;}
.x22_c00293{left:347.081977pt;}
.x23_c00293{left:350.026488pt;}
.x24_c00293{left:354.624063pt;}
.x25_c00293{left:357.115628pt;}
.x41_c00293{left:401.765180pt;}
.x1_c00293{left:413.420124pt;}
.x40_c00293{left:587.713096pt;}
.x38_c00293{left:619.470933pt;}
.x39_c00293{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b2936489af2f34365a31573.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.006348;font-style:normal;font-weight:normal;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_98bb827838a8129dbda2426e.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.005371;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.006348;font-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_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;}
.ls1_c00294{letter-spacing:0.000000px;}
.ls0_c00294{letter-spacing:43.708281px;}
.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;}
}
.ws0_c00294{word-spacing:-18.691966px;}
.ws1_c00294{word-spacing:-18.680283px;}
.ws2_c00294{word-spacing:0.000000px;}
._8_c00294{margin-left:-18.164256px;}
._3_c00294{width:1.131539px;}
._1_c00294{width:2.277889px;}
._6_c00294{width:4.309901px;}
._a_c00294{width:5.923791px;}
._13_c00294{width:7.363177px;}
._10_c00294{width:8.432464px;}
._e_c00294{width:9.978420px;}
._5_c00294{width:11.884508px;}
._2_c00294{width:13.153357px;}
._11_c00294{width:14.248040px;}
._f_c00294{width:15.727770px;}
._9_c00294{width:17.166052px;}
._0_c00294{width:21.403213px;}
._c_c00294{width:25.569695px;}
._4_c00294{width:28.031495px;}
._7_c00294{width:29.839384px;}
._d_c00294{width:30.905524px;}
._12_c00294{width:43.676304px;}
._b_c00294{width:72.132716px;}
.fc1_c00294{color:rgb(198,111,25);}
.fc0_c00294{color:rgb(0,0,0);}
.fs1_c00294{font-size:71.912067px;}
.fs0_c00294{font-size:71.957041px;}
.y0_c00294{bottom:0.000000px;}
.y1_c00294{bottom:0.000008px;}
.y24_c00294{bottom:30.156225px;}
.y16_c00294{bottom:69.013330px;}
.y15_c00294{bottom:99.370206px;}
.y14_c00294{bottom:129.727083px;}
.y17_c00294{bottom:164.079819px;}
.y12_c00294{bottom:218.971761px;}
.y11_c00294{bottom:249.328638px;}
.y10_c00294{bottom:279.685515px;}
.yf_c00294{bottom:310.042392px;}
.ye_c00294{bottom:340.399268px;}
.yd_c00294{bottom:370.756145px;}
.y18_c00294{bottom:408.440429px;}
.yc_c00294{bottom:466.513178px;}
.yb_c00294{bottom:496.870054px;}
.ya_c00294{bottom:527.226931px;}
.y9_c00294{bottom:557.583808px;}
.y8_c00294{bottom:587.940685px;}
.y7_c00294{bottom:618.297561px;}
.y6_c00294{bottom:648.654438px;}
.y5_c00294{bottom:679.011315px;}
.y4_c00294{bottom:709.368192px;}
.y3_c00294{bottom:739.725068px;}
.y2_c00294{bottom:770.081945px;}
.y13_c00294{bottom:804.261529px;}
.y1f_c00294{bottom:866.626681px;}
.y1e_c00294{bottom:896.983558px;}
.y1d_c00294{bottom:927.340435px;}
.y1c_c00294{bottom:957.697311px;}
.y1b_c00294{bottom:988.054188px;}
.y1a_c00294{bottom:1018.411065px;}
.y19_c00294{bottom:1048.767942px;}
.y20_c00294{bottom:1082.481048px;}
.y23_c00294{bottom:1139.571057px;}
.y22_c00294{bottom:1169.927934px;}
.y21_c00294{bottom:1200.284811px;}
.h4_c00294{height:55.092790px;}
.h3_c00294{height:55.127245px;}
.h2_c00294{height:1304.999946px;}
.h0_c00294{height:1304.999953px;}
.h1_c00294{height:1305.000000px;}
.w2_c00294{width:934.874961px;}
.w0_c00294{width:934.875000px;}
.w1_c00294{width:935.250000px;}
.x0_c00294{left:0.000000px;}
.x1_c00294{left:87.850202px;}
.x2_c00294{left:451.985828px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls1_c00294{letter-spacing:0.000000pt;}
.ls0_c00294{letter-spacing:38.851805pt;}
.ws0_c00294{word-spacing:-16.615081pt;}
.ws1_c00294{word-spacing:-16.604696pt;}
.ws2_c00294{word-spacing:0.000000pt;}
._8_c00294{margin-left:-16.146006pt;}
._3_c00294{width:1.005813pt;}
._1_c00294{width:2.024790pt;}
._6_c00294{width:3.831023pt;}
._a_c00294{width:5.265592pt;}
._13_c00294{width:6.545046pt;}
._10_c00294{width:7.495524pt;}
._e_c00294{width:8.869707pt;}
._5_c00294{width:10.564007pt;}
._2_c00294{width:11.691873pt;}
._11_c00294{width:12.664924pt;}
._f_c00294{width:13.980240pt;}
._9_c00294{width:15.258713pt;}
._0_c00294{width:19.025078pt;}
._c_c00294{width:22.728618pt;}
._4_c00294{width:24.916885pt;}
._7_c00294{width:26.523897pt;}
._d_c00294{width:27.471577pt;}
._12_c00294{width:38.823381pt;}
._b_c00294{width:64.117970pt;}
.fs1_c00294{font-size:63.921837pt;}
.fs0_c00294{font-size:63.961814pt;}
.y0_c00294{bottom:0.000000pt;}
.y1_c00294{bottom:0.000007pt;}
.y24_c00294{bottom:26.805533pt;}
.y16_c00294{bottom:61.345182pt;}
.y15_c00294{bottom:88.329072pt;}
.y14_c00294{bottom:115.312963pt;}
.y17_c00294{bottom:145.848728pt;}
.y12_c00294{bottom:194.641566pt;}
.y11_c00294{bottom:221.625456pt;}
.y10_c00294{bottom:248.609346pt;}
.yf_c00294{bottom:275.593237pt;}
.ye_c00294{bottom:302.577127pt;}
.yd_c00294{bottom:329.561018pt;}
.y18_c00294{bottom:363.058159pt;}
.yc_c00294{bottom:414.678380pt;}
.yb_c00294{bottom:441.662270pt;}
.ya_c00294{bottom:468.646161pt;}
.y9_c00294{bottom:495.630051pt;}
.y8_c00294{bottom:522.613942pt;}
.y7_c00294{bottom:549.597832pt;}
.y6_c00294{bottom:576.581723pt;}
.y5_c00294{bottom:603.565613pt;}
.y4_c00294{bottom:630.549504pt;}
.y3_c00294{bottom:657.533394pt;}
.y2_c00294{bottom:684.517285pt;}
.y13_c00294{bottom:714.899137pt;}
.y1f_c00294{bottom:770.334828pt;}
.y1e_c00294{bottom:797.318718pt;}
.y1d_c00294{bottom:824.302608pt;}
.y1c_c00294{bottom:851.286499pt;}
.y1b_c00294{bottom:878.270389pt;}
.y1a_c00294{bottom:905.254280pt;}
.y19_c00294{bottom:932.238170pt;}
.y20_c00294{bottom:962.205376pt;}
.y23_c00294{bottom:1012.952051pt;}
.y22_c00294{bottom:1039.935941pt;}
.y21_c00294{bottom:1066.919832pt;}
.h4_c00294{height:48.971369pt;}
.h3_c00294{height:49.001996pt;}
.h2_c00294{height:1159.999952pt;}
.h0_c00294{height:1159.999959pt;}
.h1_c00294{height:1160.000000pt;}
.w2_c00294{width:830.999965pt;}
.w0_c00294{width:831.000000pt;}
.w1_c00294{width:831.333333pt;}
.x0_c00294{left:0.000000pt;}
.x1_c00294{left:78.089069pt;}
.x2_c00294{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e0d6859e166f5433dabdd36.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:0.734863;font-style:normal;font-weight: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_8735ed9e628f7a73d49b74cc.woff2')format("woff");}.ff5_c00295{font-family:ff5_c00295;line-height:1.000000;font-style:normal;font-weight: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_c00295;src:url('chunks/assets/font_85ac8c03a6e90727a80b9382.woff2')format("woff");}.ff6_c00295{font-family:ff6_c00295;line-height:1.171387;font-style:normal;font-weight: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_c00295;src:url('chunks/assets/font_cd05638d0df73cca4876db3d.woff2')format("woff");}.ff7_c00295{font-family:ff7_c00295;line-height:1.005371;font-style:normal;font-weight: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_c00295;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00295{font-family:ff8_c00295;line-height:1.006348;font-style:normal;font-weight: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_c00295;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00295{font-family:ff9_c00295;line-height:0.940000;font-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_c00295{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00295{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00295{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00295{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00295{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00295{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00295{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00295{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00295{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00295{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00295{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00295{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00295{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00295{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00295{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00295{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00295{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00295{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00295{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00295{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00295{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00295{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00295{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00295{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00295{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00295{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00295{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00295{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00295{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00295{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00295{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00295{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00295{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00295{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00295{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00295{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00295{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00295{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00295{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00295{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00295{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00295{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00295{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00295{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00295{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00295{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00295{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00295{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00295{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00295{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00295{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00295{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00295{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00295{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00295{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00295{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00295{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00295{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00295{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00295{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00295{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00295{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00295{vertical-align:0.000000px;}
.ls0_c00295{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00295{word-spacing:-41.664701px;}
.ws3_c00295{word-spacing:-18.680283px;}
.ws0_c00295{word-spacing:-15.162211px;}
.ws2_c00295{word-spacing:-14.474592px;}
.ws5_c00295{word-spacing:0.000000px;}
.ws1_c00295{word-spacing:281.470806px;}
._4_c00295{width:7.167595px;}
._0_c00295{width:11.335174px;}
._2_c00295{width:14.024808px;}
._1_c00295{width:15.643296px;}
._3_c00295{width:20.589272px;}
.fc3_c00295{color:rgb(198,111,25);}
.fc2_c00295{color:rgb(9,71,81);}
.fc1_c00295{color:rgb(255,255,255);}
.fc0_c00295{color:rgb(0,0,0);}
.fsc_c00295{font-size:41.974772px;}
.fsb_c00295{font-size:41.975069px;}
.fs2_c00295{font-size:47.339969px;}
.fs5_c00295{font-size:47.339970px;}
.fs1_c00295{font-size:47.339972px;}
.fs4_c00295{font-size:47.339973px;}
.fs3_c00295{font-size:47.339974px;}
.fs6_c00295{font-size:47.339975px;}
.fs8_c00295{font-size:51.630774px;}
.fsd_c00295{font-size:55.721735px;}
.fsa_c00295{font-size:59.949210px;}
.fse_c00295{font-size:71.912067px;}
.fs0_c00295{font-size:71.957041px;}
.fs7_c00295{font-size:76.965540px;}
.fs9_c00295{font-size:89.946302px;}
.y0_c00295{bottom:0.000000px;}
.y1_c00295{bottom:0.000008px;}
.y56_c00295{bottom:30.156225px;}
.y4f_c00295{bottom:91.095150px;}
.y4e_c00295{bottom:121.452027px;}
.y4d_c00295{bottom:151.808904px;}
.y4c_c00295{bottom:182.165781px;}
.y4b_c00295{bottom:212.522658px;}
.y4a_c00295{bottom:242.879534px;}
.y49_c00295{bottom:273.236411px;}
.y48_c00295{bottom:303.593288px;}
.y50_c00295{bottom:339.608900px;}
.y42_c00295{bottom:402.064151px;}
.y10_c00295{bottom:493.812629px;}
.y38_c00295{bottom:493.827623px;}
.yf_c00295{bottom:494.337609px;}
.y39_c00295{bottom:494.357158px;}
.y22_c00295{bottom:494.700737px;}
.y37_c00295{bottom:495.071586px;}
.ye_c00295{bottom:495.403002px;}
.y23_c00295{bottom:495.533530px;}
.y21_c00295{bottom:495.553663px;}
.y36_c00295{bottom:496.322201px;}
.yd_c00295{bottom:496.475623px;}
.y20_c00295{bottom:496.587915px;}
.y3a_c00295{bottom:496.772260px;}
.y11_c00295{bottom:496.835884px;}
.y24_c00295{bottom:497.713596px;}
.y35_c00295{bottom:497.966053px;}
.yc_c00295{bottom:498.126234px;}
.y1f_c00295{bottom:498.789265px;}
.y25_c00295{bottom:499.103521px;}
.y34_c00295{bottom:499.653306px;}
.yb_c00295{bottom:499.818769px;}
.y26_c00295{bottom:500.800864px;}
.y12_c00295{bottom:501.110605px;}
.y33_c00295{bottom:501.517382px;}
.ya_c00295{bottom:501.687706px;}
.y3b_c00295{bottom:501.869915px;}
.y1e_c00295{bottom:502.578702px;}
.y27_c00295{bottom:503.241722px;}
.y13_c00295{bottom:503.627848px;}
.y3c_c00295{bottom:505.496019px;}
.y28_c00295{bottom:505.499367px;}
.y32_c00295{bottom:506.168989px;}
.y9_c00295{bottom:506.348634px;}
.y1d_c00295{bottom:508.044213px;}
.y29_c00295{bottom:508.766327px;}
.y14_c00295{bottom:509.576794px;}
.y3d_c00295{bottom:511.126534px;}
.y1c_c00295{bottom:512.508085px;}
.y31_c00295{bottom:512.566592px;}
.y8_c00295{bottom:512.754669px;}
.y15_c00295{bottom:514.322677px;}
.y2a_c00295{bottom:517.158603px;}
.y3e_c00295{bottom:517.780195px;}
.y1b_c00295{bottom:518.929057px;}
.y30_c00295{bottom:519.869222px;}
.y7_c00295{bottom:519.959421px;}
.y6_c00295{bottom:523.416158px;}
.y1a_c00295{bottom:523.496236px;}
.y2b_c00295{bottom:525.202812px;}
.y16_c00295{bottom:526.099549px;}
.y2f_c00295{bottom:527.026630px;}
.y5_c00295{bottom:529.422883px;}
.y3f_c00295{bottom:529.736175px;}
.y19_c00295{bottom:531.263725px;}
.y2e_c00295{bottom:531.792993px;}
.y41_c00295{bottom:533.728456px;}
.y52_c00295{bottom:534.421816px;}
.y18_c00295{bottom:535.155114px;}
.y4_c00295{bottom:536.678099px;}
.y2d_c00295{bottom:537.961701px;}
.y17_c00295{bottom:538.332892px;}
.y40_c00295{bottom:538.696314px;}
.y51_c00295{bottom:540.431096px;}
.y2c_c00295{bottom:545.020884px;}
.y3_c00295{bottom:546.207017px;}
.y53_c00295{bottom:577.871130px;}
.y2_c00295{bottom:597.559761px;}
.y54_c00295{bottom:639.489911px;}
.y57_c00295{bottom:1024.443964px;}
.y46_c00295{bottom:1120.397315px;}
.y44_c00295{bottom:1129.718199px;}
.y55_c00295{bottom:1140.961501px;}
.y43_c00295{bottom:1147.707459px;}
.y47_c00295{bottom:1163.901725px;}
.y45_c00295{bottom:1170.658440px;}
.h11_c00295{height:32.157430px;}
.h8_c00295{height:35.967282px;}
.h7_c00295{height:35.967283px;}
.h9_c00295{height:35.967285px;}
.h5_c00295{height:36.267779px;}
.h4_c00295{height:36.267781px;}
.h6_c00295{height:36.267783px;}
.hb_c00295{height:37.437353px;}
.he_c00295{height:39.085184px;}
.h14_c00295{height:45.561399px;}
.h12_c00295{height:51.885424px;}
.h13_c00295{height:55.092790px;}
.h3_c00295{height:55.127245px;}
.hd_c00295{height:55.821847px;}
.ha_c00295{height:56.261810px;}
.hf_c00295{height:67.002968px;}
.hc_c00295{height:68.338108px;}
.h10_c00295{height:68.821218px;}
.h2_c00295{height:1304.999946px;}
.h0_c00295{height:1304.999953px;}
.h1_c00295{height:1305.000000px;}
.w2_c00295{width:934.874961px;}
.w0_c00295{width:934.875000px;}
.w1_c00295{width:935.250000px;}
.x0_c00295{left:0.000000px;}
.x3b_c00295{left:89.206783px;}
.x39_c00295{left:107.403263px;}
.x3a_c00295{left:109.658623px;}
.x40_c00295{left:131.272077px;}
.x27_c00295{left:134.894322px;}
.x26_c00295{left:136.566734px;}
.x28_c00295{left:139.937719px;}
.x29_c00295{left:144.785273px;}
.x2a_c00295{left:150.147890px;}
.x2b_c00295{left:152.899057px;}
.x2c_c00295{left:155.907145px;}
.x2d_c00295{left:159.752336px;}
.x37_c00295{left:161.347648px;}
.x2e_c00295{left:163.203941px;}
.x2f_c00295{left:171.483965px;}
.x30_c00295{left:179.748684px;}
.x31_c00295{left:188.175145px;}
.x32_c00295{left:196.556636px;}
.x33_c00295{left:200.721504px;}
.x34_c00295{left:205.276922px;}
.x35_c00295{left:209.084069px;}
.x36_c00295{left:211.669316px;}
.x3_c00295{left:230.260919px;}
.x2_c00295{left:232.395871px;}
.x4_c00295{left:235.482735px;}
.x5_c00295{left:240.319117px;}
.x6_c00295{left:245.673577px;}
.x7_c00295{left:248.421493px;}
.x8_c00295{left:251.426626px;}
.x9_c00295{left:255.268917px;}
.x3c_c00295{left:256.468943px;}
.xa_c00295{left:258.553698px;}
.xb_c00295{left:262.988294px;}
.xc_c00295{left:271.601212px;}
.xd_c00295{left:283.434780px;}
.xe_c00295{left:290.867654px;}
.xf_c00295{left:294.260334px;}
.x10_c00295{left:299.596701px;}
.x11_c00295{left:302.984150px;}
.x12_c00295{left:306.993562px;}
.x13_c00295{left:325.378518px;}
.x14_c00295{left:326.595106px;}
.x15_c00295{left:328.015253px;}
.x16_c00295{left:331.410444px;}
.x17_c00295{left:334.633053px;}
.x18_c00295{left:340.511825px;}
.x19_c00295{left:346.695139px;}
.x1a_c00295{left:352.384720px;}
.x1b_c00295{left:355.792694px;}
.x1c_c00295{left:363.695116px;}
.x1d_c00295{left:371.679253px;}
.x1e_c00295{left:378.434940px;}
.x1f_c00295{left:381.453328px;}
.x20_c00295{left:384.455783px;}
.x21_c00295{left:387.851715px;}
.x22_c00295{left:390.467224px;}
.x23_c00295{left:393.779799px;}
.x24_c00295{left:398.952070px;}
.x25_c00295{left:401.755082px;}
.x3f_c00295{left:451.985828px;}
.x1_c00295{left:465.097640px;}
.x3e_c00295{left:661.177232px;}
.x38_c00295{left:696.904800px;}
.x3d_c00295{left:733.103068px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws4_c00295{word-spacing:-37.035289pt;}
.ws3_c00295{word-spacing:-16.604696pt;}
.ws0_c00295{word-spacing:-13.477521pt;}
.ws2_c00295{word-spacing:-12.866304pt;}
.ws5_c00295{word-spacing:0.000000pt;}
.ws1_c00295{word-spacing:250.196272pt;}
._4_c00295{width:6.371196pt;}
._0_c00295{width:10.075710pt;}
._2_c00295{width:12.466496pt;}
._1_c00295{width:13.905152pt;}
._3_c00295{width:18.301575pt;}
.fsc_c00295{font-size:37.310908pt;}
.fsb_c00295{font-size:37.311173pt;}
.fs2_c00295{font-size:42.079973pt;}
.fs5_c00295{font-size:42.079974pt;}
.fs1_c00295{font-size:42.079975pt;}
.fs4_c00295{font-size:42.079976pt;}
.fs3_c00295{font-size:42.079977pt;}
.fs6_c00295{font-size:42.079978pt;}
.fs8_c00295{font-size:45.894021pt;}
.fsd_c00295{font-size:49.530431pt;}
.fsa_c00295{font-size:53.288186pt;}
.fse_c00295{font-size:63.921837pt;}
.fs0_c00295{font-size:63.961814pt;}
.fs7_c00295{font-size:68.413814pt;}
.fs9_c00295{font-size:79.952268pt;}
.y0_c00295{bottom:0.000000pt;}
.y1_c00295{bottom:0.000007pt;}
.y56_c00295{bottom:26.805533pt;}
.y4f_c00295{bottom:80.973467pt;}
.y4e_c00295{bottom:107.957358pt;}
.y4d_c00295{bottom:134.941248pt;}
.y4c_c00295{bottom:161.925138pt;}
.y4b_c00295{bottom:188.909029pt;}
.y4a_c00295{bottom:215.892919pt;}
.y49_c00295{bottom:242.876810pt;}
.y48_c00295{bottom:269.860700pt;}
.y50_c00295{bottom:301.874578pt;}
.y42_c00295{bottom:357.390356pt;}
.y10_c00295{bottom:438.944560pt;}
.y38_c00295{bottom:438.957887pt;}
.yf_c00295{bottom:439.411208pt;}
.y39_c00295{bottom:439.428585pt;}
.y22_c00295{bottom:439.733989pt;}
.y37_c00295{bottom:440.063632pt;}
.ye_c00295{bottom:440.358224pt;}
.y23_c00295{bottom:440.474249pt;}
.y21_c00295{bottom:440.492144pt;}
.y36_c00295{bottom:441.175290pt;}
.yd_c00295{bottom:441.311665pt;}
.y20_c00295{bottom:441.411480pt;}
.y3a_c00295{bottom:441.575343pt;}
.y11_c00295{bottom:441.631897pt;}
.y24_c00295{bottom:442.412085pt;}
.y35_c00295{bottom:442.636491pt;}
.yc_c00295{bottom:442.778875pt;}
.y1f_c00295{bottom:443.368235pt;}
.y25_c00295{bottom:443.647574pt;}
.y34_c00295{bottom:444.136272pt;}
.yb_c00295{bottom:444.283350pt;}
.y26_c00295{bottom:445.156323pt;}
.y12_c00295{bottom:445.431649pt;}
.y33_c00295{bottom:445.793228pt;}
.ya_c00295{bottom:445.944627pt;}
.y3b_c00295{bottom:446.106592pt;}
.y1e_c00295{bottom:446.736624pt;}
.y27_c00295{bottom:447.325975pt;}
.y13_c00295{bottom:447.669198pt;}
.y3c_c00295{bottom:449.329795pt;}
.y28_c00295{bottom:449.332771pt;}
.y32_c00295{bottom:449.927990pt;}
.y9_c00295{bottom:450.087675pt;}
.y1d_c00295{bottom:451.594856pt;}
.y29_c00295{bottom:452.236735pt;}
.y14_c00295{bottom:452.957150pt;}
.y3d_c00295{bottom:454.334697pt;}
.y1c_c00295{bottom:455.562742pt;}
.y31_c00295{bottom:455.614749pt;}
.y8_c00295{bottom:455.781928pt;}
.y15_c00295{bottom:457.175713pt;}
.y2a_c00295{bottom:459.696536pt;}
.y3e_c00295{bottom:460.249062pt;}
.y1b_c00295{bottom:461.270273pt;}
.y30_c00295{bottom:462.105976pt;}
.y7_c00295{bottom:462.186152pt;}
.y6_c00295{bottom:465.258807pt;}
.y1a_c00295{bottom:465.329988pt;}
.y2b_c00295{bottom:466.846944pt;}
.y16_c00295{bottom:467.644044pt;}
.y2f_c00295{bottom:468.468115pt;}
.y5_c00295{bottom:470.598118pt;}
.y3f_c00295{bottom:470.876600pt;}
.y19_c00295{bottom:472.234422pt;}
.y2e_c00295{bottom:472.704883pt;}
.y41_c00295{bottom:474.425294pt;}
.y52_c00295{bottom:475.041614pt;}
.y18_c00295{bottom:475.693435pt;}
.y4_c00295{bottom:477.047199pt;}
.y2d_c00295{bottom:478.188178pt;}
.y17_c00295{bottom:478.518126pt;}
.y40_c00295{bottom:478.841168pt;}
.y51_c00295{bottom:480.383196pt;}
.y2c_c00295{bottom:484.463008pt;}
.y3_c00295{bottom:485.517349pt;}
.y53_c00295{bottom:513.663227pt;}
.y2_c00295{bottom:531.164232pt;}
.y54_c00295{bottom:568.435476pt;}
.y57_c00295{bottom:910.616857pt;}
.y46_c00295{bottom:995.908725pt;}
.y44_c00295{bottom:1004.193955pt;}
.y55_c00295{bottom:1014.188001pt;}
.y43_c00295{bottom:1020.184408pt;}
.y47_c00295{bottom:1034.579311pt;}
.y45_c00295{bottom:1040.585280pt;}
.h11_c00295{height:28.584382pt;}
.h8_c00295{height:31.970917pt;}
.h7_c00295{height:31.970918pt;}
.h9_c00295{height:31.970920pt;}
.h5_c00295{height:32.238026pt;}
.h4_c00295{height:32.238028pt;}
.h6_c00295{height:32.238029pt;}
.hb_c00295{height:33.277647pt;}
.he_c00295{height:34.742386pt;}
.h14_c00295{height:40.499022pt;}
.h12_c00295{height:46.120377pt;}
.h13_c00295{height:48.971369pt;}
.h3_c00295{height:49.001996pt;}
.hd_c00295{height:49.619420pt;}
.ha_c00295{height:50.010498pt;}
.hf_c00295{height:59.558193pt;}
.hc_c00295{height:60.744985pt;}
.h10_c00295{height:61.174416pt;}
.h2_c00295{height:1159.999952pt;}
.h0_c00295{height:1159.999959pt;}
.h1_c00295{height:1160.000000pt;}
.w2_c00295{width:830.999965pt;}
.w0_c00295{width:831.000000pt;}
.w1_c00295{width:831.333333pt;}
.x0_c00295{left:0.000000pt;}
.x3b_c00295{left:79.294918pt;}
.x39_c00295{left:95.469567pt;}
.x3a_c00295{left:97.474332pt;}
.x40_c00295{left:116.686291pt;}
.x27_c00295{left:119.906064pt;}
.x26_c00295{left:121.392652pt;}
.x28_c00295{left:124.389083pt;}
.x29_c00295{left:128.698021pt;}
.x2a_c00295{left:133.464791pt;}
.x2b_c00295{left:135.910272pt;}
.x2c_c00295{left:138.584129pt;}
.x2d_c00295{left:142.002076pt;}
.x37_c00295{left:143.420132pt;}
.x2e_c00295{left:145.070170pt;}
.x2f_c00295{left:152.430191pt;}
.x30_c00295{left:159.776608pt;}
.x31_c00295{left:167.266795pt;}
.x32_c00295{left:174.717010pt;}
.x33_c00295{left:178.419115pt;}
.x34_c00295{left:182.468375pt;}
.x35_c00295{left:185.852506pt;}
.x36_c00295{left:188.150503pt;}
.x3_c00295{left:204.676373pt;}
.x2_c00295{left:206.574107pt;}
.x4_c00295{left:209.317987pt;}
.x5_c00295{left:213.616993pt;}
.x6_c00295{left:218.376513pt;}
.x7_c00295{left:220.819105pt;}
.x8_c00295{left:223.490334pt;}
.x9_c00295{left:226.905704pt;}
.x3c_c00295{left:227.972394pt;}
.xa_c00295{left:229.825509pt;}
.xb_c00295{left:233.767373pt;}
.xc_c00295{left:241.423300pt;}
.xd_c00295{left:251.942027pt;}
.xe_c00295{left:258.549026pt;}
.xf_c00295{left:261.564741pt;}
.x10_c00295{left:266.308178pt;}
.x11_c00295{left:269.319244pt;}
.x12_c00295{left:272.883167pt;}
.x13_c00295{left:289.225349pt;}
.x14_c00295{left:290.306761pt;}
.x15_c00295{left:291.569114pt;}
.x16_c00295{left:294.587062pt;}
.x17_c00295{left:297.451603pt;}
.x18_c00295{left:302.677178pt;}
.x19_c00295{left:308.173457pt;}
.x1a_c00295{left:313.230862pt;}
.x1b_c00295{left:316.260173pt;}
.x1c_c00295{left:323.284548pt;}
.x1d_c00295{left:330.381558pt;}
.x1e_c00295{left:336.386614pt;}
.x1f_c00295{left:339.069625pt;}
.x20_c00295{left:341.738474pt;}
.x21_c00295{left:344.757080pt;}
.x22_c00295{left:347.081977pt;}
.x23_c00295{left:350.026488pt;}
.x24_c00295{left:354.624063pt;}
.x25_c00295{left:357.115628pt;}
.x3f_c00295{left:401.765180pt;}
.x1_c00295{left:413.420124pt;}
.x3e_c00295{left:587.713096pt;}
.x38_c00295{left:619.470933pt;}
.x3d_c00295{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_adbf75840dd5c666a715e915.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.006348;font-style:normal;font-weight:normal;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_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.006348;font-style:normal;font-weight:normal;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_42be26fac1f5eefe06dcf667.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.005371;font-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_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;}
.ls0_c00296{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00296{word-spacing:-18.680283px;}
.ws2_c00296{word-spacing:0.000000px;}
._0_c00296{width:1.077387px;}
._d_c00296{width:2.155059px;}
._3_c00296{width:3.466727px;}
._2_c00296{width:4.508978px;}
._8_c00296{width:6.413012px;}
._e_c00296{width:7.472079px;}
._12_c00296{width:8.901780px;}
._9_c00296{width:10.531179px;}
._a_c00296{width:12.453462px;}
._4_c00296{width:14.278918px;}
._7_c00296{width:15.631494px;}
._10_c00296{width:16.747717px;}
._b_c00296{width:20.653089px;}
._f_c00296{width:23.294686px;}
._6_c00296{width:26.671511px;}
._11_c00296{width:27.998976px;}
._13_c00296{width:29.123006px;}
._5_c00296{width:31.021222px;}
._c_c00296{width:40.967728px;}
._1_c00296{width:54.118338px;}
.fc1_c00296{color:rgb(198,111,25);}
.fc0_c00296{color:rgb(0,0,0);}
.fs1_c00296{font-size:71.912067px;}
.fs0_c00296{font-size:71.957041px;}
.y0_c00296{bottom:0.000000px;}
.y1_c00296{bottom:0.000008px;}
.y26_c00296{bottom:30.156225px;}
.y20_c00296{bottom:84.509713px;}
.y1f_c00296{bottom:114.866589px;}
.y1e_c00296{bottom:145.223466px;}
.y1d_c00296{bottom:175.580343px;}
.y1c_c00296{bottom:205.937220px;}
.y1b_c00296{bottom:236.294096px;}
.y1a_c00296{bottom:266.650973px;}
.y19_c00296{bottom:297.007850px;}
.y18_c00296{bottom:327.364727px;}
.y17_c00296{bottom:357.721604px;}
.y16_c00296{bottom:388.078480px;}
.y21_c00296{bottom:418.728473px;}
.ya_c00296{bottom:464.105733px;}
.y9_c00296{bottom:494.462609px;}
.y8_c00296{bottom:524.819486px;}
.y7_c00296{bottom:555.176363px;}
.y6_c00296{bottom:585.533240px;}
.y5_c00296{bottom:615.890116px;}
.y4_c00296{bottom:646.246993px;}
.y3_c00296{bottom:676.603870px;}
.y2_c00296{bottom:706.960747px;}
.yb_c00296{bottom:741.019215px;}
.y14_c00296{bottom:786.431643px;}
.y13_c00296{bottom:816.788520px;}
.y12_c00296{bottom:847.145397px;}
.y11_c00296{bottom:877.502274px;}
.y10_c00296{bottom:907.859151px;}
.yf_c00296{bottom:938.216027px;}
.ye_c00296{bottom:968.572904px;}
.yd_c00296{bottom:998.929781px;}
.yc_c00296{bottom:1029.286658px;}
.y15_c00296{bottom:1063.345105px;}
.y25_c00296{bottom:1109.214181px;}
.y24_c00296{bottom:1139.571057px;}
.y23_c00296{bottom:1169.927934px;}
.y22_c00296{bottom:1200.284811px;}
.h4_c00296{height:55.092790px;}
.h3_c00296{height:55.127245px;}
.h2_c00296{height:1304.999946px;}
.h0_c00296{height:1304.999953px;}
.h1_c00296{height:1305.000000px;}
.w2_c00296{width:934.874961px;}
.w0_c00296{width:934.875000px;}
.w1_c00296{width:935.250000px;}
.x0_c00296{left:0.000000px;}
.x1_c00296{left:87.850202px;}
.x2_c00296{left:451.985828px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws0_c00296{word-spacing:-16.615081pt;}
.ws1_c00296{word-spacing:-16.604696pt;}
.ws2_c00296{word-spacing:0.000000pt;}
._0_c00296{width:0.957678pt;}
._d_c00296{width:1.915608pt;}
._3_c00296{width:3.081536pt;}
._2_c00296{width:4.007981pt;}
._8_c00296{width:5.700456pt;}
._e_c00296{width:6.641848pt;}
._12_c00296{width:7.912694pt;}
._9_c00296{width:9.361048pt;}
._a_c00296{width:11.069744pt;}
._4_c00296{width:12.692372pt;}
._7_c00296{width:13.894661pt;}
._10_c00296{width:14.886859pt;}
._b_c00296{width:18.358301pt;}
._f_c00296{width:20.706388pt;}
._6_c00296{width:23.708010pt;}
._11_c00296{width:24.887979pt;}
._13_c00296{width:25.887116pt;}
._5_c00296{width:27.574420pt;}
._c_c00296{width:36.415759pt;}
._1_c00296{width:48.105190pt;}
.fs1_c00296{font-size:63.921837pt;}
.fs0_c00296{font-size:63.961814pt;}
.y0_c00296{bottom:0.000000pt;}
.y1_c00296{bottom:0.000007pt;}
.y26_c00296{bottom:26.805533pt;}
.y20_c00296{bottom:75.119745pt;}
.y1f_c00296{bottom:102.103635pt;}
.y1e_c00296{bottom:129.087526pt;}
.y1d_c00296{bottom:156.071416pt;}
.y1c_c00296{bottom:183.055306pt;}
.y1b_c00296{bottom:210.039197pt;}
.y1a_c00296{bottom:237.023087pt;}
.y19_c00296{bottom:264.006978pt;}
.y18_c00296{bottom:290.990868pt;}
.y17_c00296{bottom:317.974759pt;}
.y16_c00296{bottom:344.958649pt;}
.y21_c00296{bottom:372.203087pt;}
.ya_c00296{bottom:412.538429pt;}
.y9_c00296{bottom:439.522319pt;}
.y8_c00296{bottom:466.506210pt;}
.y7_c00296{bottom:493.490100pt;}
.y6_c00296{bottom:520.473991pt;}
.y5_c00296{bottom:547.457881pt;}
.y4_c00296{bottom:574.441772pt;}
.y3_c00296{bottom:601.425662pt;}
.y2_c00296{bottom:628.409553pt;}
.yb_c00296{bottom:658.683747pt;}
.y14_c00296{bottom:699.050350pt;}
.y13_c00296{bottom:726.034240pt;}
.y12_c00296{bottom:753.018131pt;}
.y11_c00296{bottom:780.002021pt;}
.y10_c00296{bottom:806.985912pt;}
.yf_c00296{bottom:833.969802pt;}
.ye_c00296{bottom:860.953693pt;}
.yd_c00296{bottom:887.937583pt;}
.yc_c00296{bottom:914.921473pt;}
.y15_c00296{bottom:945.195649pt;}
.y25_c00296{bottom:985.968161pt;}
.y24_c00296{bottom:1012.952051pt;}
.y23_c00296{bottom:1039.935941pt;}
.y22_c00296{bottom:1066.919832pt;}
.h4_c00296{height:48.971369pt;}
.h3_c00296{height:49.001996pt;}
.h2_c00296{height:1159.999952pt;}
.h0_c00296{height:1159.999959pt;}
.h1_c00296{height:1160.000000pt;}
.w2_c00296{width:830.999965pt;}
.w0_c00296{width:831.000000pt;}
.w1_c00296{width:831.333333pt;}
.x0_c00296{left:0.000000pt;}
.x1_c00296{left:78.089069pt;}
.x2_c00296{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c4c772b8c1e4f08f4ceaba1b.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.000000;font-style:normal;font-weight:normal;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_2e9c412d4c9e26538124041e.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.006348;font-style:normal;font-weight:normal;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_b0db107dc8a863e8ff002732.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.005371;font-style:normal;font-weight:normal;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_af24c93efcc5d6409d693242.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:0.727051;font-style:normal;font-weight: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_90e64c1a087bdf787665e583.woff2')format("woff");}.ff5_c00297{font-family:ff5_c00297;line-height:0.965332;font-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_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);}
.v0_c00297{vertical-align:0.000000px;}
.ls0_c00297{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00297{word-spacing:-18.680283px;}
.ws0_c00297{word-spacing:-12.461265px;}
.ws2_c00297{word-spacing:-0.053968px;}
.ws1_c00297{word-spacing:-0.047971px;}
.ws4_c00297{word-spacing:0.000000px;}
._1_c00297{width:2.834234px;}
._3_c00297{width:15.727770px;}
._2_c00297{width:17.227947px;}
._0_c00297{width:33.066076px;}
.fc2_c00297{color:rgb(255,255,255);}
.fc1_c00297{color:rgb(0,0,0);}
.fc0_c00297{color:rgb(198,111,25);}
.fs0_c00297{font-size:47.971186px;}
.fs2_c00297{font-size:53.967781px;}
.fs3_c00297{font-size:71.912067px;}
.fs1_c00297{font-size:71.957041px;}
.y0_c00297{bottom:0.000000px;}
.y1_c00297{bottom:0.000008px;}
.ya_c00297{bottom:30.156225px;}
.y9_c00297{bottom:97.068046px;}
.y4_c00297{bottom:700.970181px;}
.y3_c00297{bottom:716.960576px;}
.y2_c00297{bottom:732.950971px;}
.y8_c00297{bottom:1097.925892px;}
.y7_c00297{bottom:1128.282769px;}
.y6_c00297{bottom:1158.639645px;}
.y5_c00297{bottom:1199.835078px;}
.h3_c00297{height:36.751362px;}
.h6_c00297{height:39.131911px;}
.h4_c00297{height:54.670486px;}
.h7_c00297{height:55.092790px;}
.h5_c00297{height:55.127245px;}
.h2_c00297{height:1304.999946px;}
.h0_c00297{height:1304.999953px;}
.h1_c00297{height:1305.000000px;}
.w2_c00297{width:934.874961px;}
.w0_c00297{width:934.875000px;}
.w1_c00297{width:935.250000px;}
.x0_c00297{left:0.000000px;}
.x3_c00297{left:87.850202px;}
.x2_c00297{left:89.434062px;}
.x4_c00297{left:96.692439px;}
.x5_c00297{left:451.985828px;}
.x1_c00297{left:583.333701px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws3_c00297{word-spacing:-16.604696pt;}
.ws0_c00297{word-spacing:-11.076680pt;}
.ws2_c00297{word-spacing:-0.047971pt;}
.ws1_c00297{word-spacing:-0.042641pt;}
.ws4_c00297{word-spacing:0.000000pt;}
._1_c00297{width:2.519319pt;}
._3_c00297{width:13.980240pt;}
._2_c00297{width:15.313730pt;}
._0_c00297{width:29.392067pt;}
.fs0_c00297{font-size:42.641054pt;}
.fs2_c00297{font-size:47.971361pt;}
.fs3_c00297{font-size:63.921837pt;}
.fs1_c00297{font-size:63.961814pt;}
.y0_c00297{bottom:0.000000pt;}
.y1_c00297{bottom:0.000007pt;}
.ya_c00297{bottom:26.805533pt;}
.y9_c00297{bottom:86.282708pt;}
.y4_c00297{bottom:623.084605pt;}
.y3_c00297{bottom:637.298290pt;}
.y2_c00297{bottom:651.511975pt;}
.y8_c00297{bottom:975.934126pt;}
.y7_c00297{bottom:1002.918017pt;}
.y6_c00297{bottom:1029.901907pt;}
.y5_c00297{bottom:1066.520069pt;}
.h3_c00297{height:32.667878pt;}
.h6_c00297{height:34.783921pt;}
.h4_c00297{height:48.595988pt;}
.h7_c00297{height:48.971369pt;}
.h5_c00297{height:49.001996pt;}
.h2_c00297{height:1159.999952pt;}
.h0_c00297{height:1159.999959pt;}
.h1_c00297{height:1160.000000pt;}
.w2_c00297{width:830.999965pt;}
.w0_c00297{width:831.000000pt;}
.w1_c00297{width:831.333333pt;}
.x0_c00297{left:0.000000pt;}
.x3_c00297{left:78.089069pt;}
.x2_c00297{left:79.496944pt;}
.x4_c00297{left:85.948835pt;}
.x5_c00297{left:401.765180pt;}
.x1_c00297{left:518.518846pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d089e57a3e5b31843e8cfef9.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00298{font-family:ff4_c00298;line-height:0.734863;font-style:normal;font-weight: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_d211d197d2c8ab8b7e0b8479.woff2')format("woff");}.ff5_c00298{font-family:ff5_c00298;line-height:1.000000;font-style:normal;font-weight: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_d949bbe6b217488181dede49.woff2')format("woff");}.ff6_c00298{font-family:ff6_c00298;line-height:1.171387;font-style:normal;font-weight: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_c00298;src:url('chunks/assets/font_19d95dfa55b0be38ea2cb20b.woff2')format("woff");}.ff7_c00298{font-family:ff7_c00298;line-height:1.000000;font-style:normal;font-weight: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_c00298;src:url('chunks/assets/font_f3ff8d80db7f6f983638e365.woff2')format("woff");}.ff8_c00298{font-family:ff8_c00298;line-height:1.000000;font-style:normal;font-weight: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_c00298;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff9_c00298{font-family:ff9_c00298;line-height:1.006348;font-style:normal;font-weight: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_c00298;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00298{font-family:ffa_c00298;line-height:0.940000;font-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_c00298{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00298{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00298{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00298{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00298{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00298{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00298{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00298{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00298{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00298{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00298{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00298{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00298{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00298{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00298{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00298{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00298{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00298{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00298{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00298{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00298{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00298{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00298{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00298{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00298{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00298{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00298{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00298{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00298{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00298{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00298{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00298{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00298{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00298{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00298{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00298{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00298{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00298{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00298{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00298{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00298{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00298{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00298{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00298{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00298{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00298{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00298{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00298{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00298{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00298{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00298{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00298{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00298{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00298{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00298{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00298{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00298{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00298{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00298{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00298{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00298{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00298{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00298{vertical-align:0.000000px;}
.ls0_c00298{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00298{word-spacing:-41.664701px;}
.ws3_c00298{word-spacing:-18.680283px;}
.ws0_c00298{word-spacing:-15.162211px;}
.ws2_c00298{word-spacing:-14.474592px;}
.ws5_c00298{word-spacing:0.000000px;}
.ws1_c00298{word-spacing:281.470806px;}
._3_c00298{margin-left:-18.691974px;}
._2_c00298{width:4.534784px;}
._1_c00298{width:10.348917px;}
._0_c00298{width:14.679475px;}
._5_c00298{width:15.706905px;}
._6_c00298{width:17.165161px;}
._4_c00298{width:34.588687px;}
.fc3_c00298{color:rgb(198,111,25);}
.fc2_c00298{color:rgb(9,71,81);}
.fc1_c00298{color:rgb(255,255,255);}
.fc0_c00298{color:rgb(0,0,0);}
.fs9_c00298{font-size:41.974772px;}
.fsc_c00298{font-size:41.975069px;}
.fs2_c00298{font-size:47.339969px;}
.fs5_c00298{font-size:47.339970px;}
.fs1_c00298{font-size:47.339972px;}
.fs4_c00298{font-size:47.339973px;}
.fs3_c00298{font-size:47.339974px;}
.fs6_c00298{font-size:47.339975px;}
.fs8_c00298{font-size:51.630774px;}
.fsd_c00298{font-size:55.721735px;}
.fsb_c00298{font-size:59.949210px;}
.fse_c00298{font-size:71.912067px;}
.fs0_c00298{font-size:71.957041px;}
.fs7_c00298{font-size:76.965540px;}
.fsa_c00298{font-size:89.946302px;}
.y0_c00298{bottom:0.000000px;}
.y1_c00298{bottom:0.000008px;}
.y55_c00298{bottom:30.156225px;}
.y52_c00298{bottom:88.840327px;}
.y51_c00298{bottom:119.197203px;}
.y50_c00298{bottom:149.554080px;}
.y4f_c00298{bottom:179.910957px;}
.y4e_c00298{bottom:210.267834px;}
.y4d_c00298{bottom:240.624710px;}
.y4c_c00298{bottom:270.981587px;}
.y4b_c00298{bottom:301.338464px;}
.y53_c00298{bottom:337.354076px;}
.y42_c00298{bottom:402.064151px;}
.y10_c00298{bottom:493.812629px;}
.y38_c00298{bottom:493.827623px;}
.yf_c00298{bottom:494.337609px;}
.y39_c00298{bottom:494.357158px;}
.y22_c00298{bottom:494.700737px;}
.y37_c00298{bottom:495.071586px;}
.ye_c00298{bottom:495.403002px;}
.y23_c00298{bottom:495.533530px;}
.y21_c00298{bottom:495.553663px;}
.y36_c00298{bottom:496.322201px;}
.yd_c00298{bottom:496.475623px;}
.y20_c00298{bottom:496.587915px;}
.y3a_c00298{bottom:496.772260px;}
.y11_c00298{bottom:496.835884px;}
.y24_c00298{bottom:497.713596px;}
.y35_c00298{bottom:497.966053px;}
.yc_c00298{bottom:498.126234px;}
.y1f_c00298{bottom:498.789265px;}
.y25_c00298{bottom:499.103521px;}
.y34_c00298{bottom:499.653306px;}
.yb_c00298{bottom:499.818769px;}
.y26_c00298{bottom:500.800864px;}
.y12_c00298{bottom:501.110605px;}
.y33_c00298{bottom:501.517382px;}
.ya_c00298{bottom:501.687706px;}
.y3b_c00298{bottom:501.869915px;}
.y1e_c00298{bottom:502.578702px;}
.y27_c00298{bottom:503.241722px;}
.y13_c00298{bottom:503.627848px;}
.y3c_c00298{bottom:505.496019px;}
.y28_c00298{bottom:505.499367px;}
.y32_c00298{bottom:506.168989px;}
.y9_c00298{bottom:506.348634px;}
.y1d_c00298{bottom:508.044213px;}
.y29_c00298{bottom:508.766327px;}
.y14_c00298{bottom:509.576794px;}
.y3d_c00298{bottom:511.126534px;}
.y1c_c00298{bottom:512.508085px;}
.y31_c00298{bottom:512.566592px;}
.y8_c00298{bottom:512.754669px;}
.y15_c00298{bottom:514.322677px;}
.y2a_c00298{bottom:517.158603px;}
.y3e_c00298{bottom:517.780195px;}
.y1b_c00298{bottom:518.929057px;}
.y30_c00298{bottom:519.869222px;}
.y7_c00298{bottom:519.959421px;}
.y6_c00298{bottom:523.416158px;}
.y1a_c00298{bottom:523.496236px;}
.y2b_c00298{bottom:525.202812px;}
.y16_c00298{bottom:526.099549px;}
.y2f_c00298{bottom:527.026630px;}
.y5_c00298{bottom:529.422883px;}
.y3f_c00298{bottom:529.736175px;}
.y19_c00298{bottom:531.263725px;}
.y2e_c00298{bottom:531.792993px;}
.y41_c00298{bottom:533.728456px;}
.y4a_c00298{bottom:534.421816px;}
.y18_c00298{bottom:535.155114px;}
.y4_c00298{bottom:536.678099px;}
.y2d_c00298{bottom:537.961701px;}
.y17_c00298{bottom:538.332892px;}
.y40_c00298{bottom:538.696314px;}
.y43_c00298{bottom:540.431096px;}
.y2c_c00298{bottom:545.020884px;}
.y3_c00298{bottom:546.207017px;}
.y44_c00298{bottom:577.871130px;}
.y2_c00298{bottom:597.559761px;}
.y54_c00298{bottom:639.489911px;}
.y56_c00298{bottom:1024.443964px;}
.y48_c00298{bottom:1127.585799px;}
.y46_c00298{bottom:1129.718199px;}
.y45_c00298{bottom:1147.707459px;}
.y49_c00298{bottom:1150.991694px;}
.y47_c00298{bottom:1170.658440px;}
.hc_c00298{height:32.157430px;}
.h8_c00298{height:35.967282px;}
.h7_c00298{height:35.967283px;}
.h9_c00298{height:35.967285px;}
.h5_c00298{height:36.267779px;}
.h4_c00298{height:36.267781px;}
.h6_c00298{height:36.267783px;}
.hb_c00298{height:37.437353px;}
.hf_c00298{height:39.085184px;}
.h14_c00298{height:45.561399px;}
.h12_c00298{height:51.885424px;}
.h13_c00298{height:55.092790px;}
.h3_c00298{height:55.127245px;}
.he_c00298{height:55.821847px;}
.ha_c00298{height:56.261810px;}
.h10_c00298{height:67.002968px;}
.hd_c00298{height:68.338108px;}
.h11_c00298{height:83.753709px;}
.h2_c00298{height:1304.999946px;}
.h0_c00298{height:1304.999953px;}
.h1_c00298{height:1305.000000px;}
.w2_c00298{width:934.874961px;}
.w0_c00298{width:934.875000px;}
.w1_c00298{width:935.250000px;}
.x0_c00298{left:0.000000px;}
.x3f_c00298{left:87.850202px;}
.x3e_c00298{left:89.434062px;}
.x3a_c00298{left:107.403263px;}
.x3b_c00298{left:109.658623px;}
.x42_c00298{left:131.272077px;}
.x27_c00298{left:134.894322px;}
.x26_c00298{left:136.566734px;}
.x28_c00298{left:139.937719px;}
.x29_c00298{left:144.785273px;}
.x2a_c00298{left:150.147890px;}
.x2b_c00298{left:152.899057px;}
.x2c_c00298{left:155.907145px;}
.x2d_c00298{left:159.752336px;}
.x37_c00298{left:161.347648px;}
.x2e_c00298{left:163.203941px;}
.x2f_c00298{left:171.483965px;}
.x30_c00298{left:179.748684px;}
.x31_c00298{left:188.175145px;}
.x32_c00298{left:196.556636px;}
.x33_c00298{left:200.721504px;}
.x34_c00298{left:205.276922px;}
.x35_c00298{left:209.084069px;}
.x36_c00298{left:211.669316px;}
.x3_c00298{left:230.260919px;}
.x2_c00298{left:232.395871px;}
.x4_c00298{left:235.482735px;}
.x5_c00298{left:240.319117px;}
.x6_c00298{left:245.673577px;}
.x7_c00298{left:248.421493px;}
.x8_c00298{left:251.426626px;}
.x9_c00298{left:255.268917px;}
.x3d_c00298{left:256.468943px;}
.xa_c00298{left:258.553698px;}
.xb_c00298{left:262.988294px;}
.xc_c00298{left:271.601212px;}
.xd_c00298{left:283.434780px;}
.xe_c00298{left:290.867654px;}
.xf_c00298{left:294.260334px;}
.x3c_c00298{left:295.438786px;}
.x10_c00298{left:299.596701px;}
.x11_c00298{left:302.984150px;}
.x12_c00298{left:306.993562px;}
.x13_c00298{left:325.378518px;}
.x14_c00298{left:326.595106px;}
.x15_c00298{left:328.015253px;}
.x16_c00298{left:331.410444px;}
.x17_c00298{left:334.633053px;}
.x18_c00298{left:340.511825px;}
.x19_c00298{left:346.695139px;}
.x1a_c00298{left:352.384720px;}
.x1b_c00298{left:355.792694px;}
.x1c_c00298{left:363.695116px;}
.x1d_c00298{left:371.679253px;}
.x1e_c00298{left:378.434940px;}
.x1f_c00298{left:381.453328px;}
.x20_c00298{left:384.455783px;}
.x21_c00298{left:387.851715px;}
.x22_c00298{left:390.467224px;}
.x23_c00298{left:393.779799px;}
.x24_c00298{left:398.952070px;}
.x25_c00298{left:401.755082px;}
.x41_c00298{left:451.985828px;}
.x1_c00298{left:465.097640px;}
.x40_c00298{left:661.177232px;}
.x38_c00298{left:696.904800px;}
.x39_c00298{left:733.103068px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws4_c00298{word-spacing:-37.035289pt;}
.ws3_c00298{word-spacing:-16.604696pt;}
.ws0_c00298{word-spacing:-13.477521pt;}
.ws2_c00298{word-spacing:-12.866304pt;}
.ws5_c00298{word-spacing:0.000000pt;}
.ws1_c00298{word-spacing:250.196272pt;}
._3_c00298{margin-left:-16.615088pt;}
._2_c00298{width:4.030919pt;}
._1_c00298{width:9.199037pt;}
._0_c00298{width:13.048422pt;}
._5_c00298{width:13.961693pt;}
._6_c00298{width:15.257921pt;}
._4_c00298{width:30.745499pt;}
.fs9_c00298{font-size:37.310908pt;}
.fsc_c00298{font-size:37.311173pt;}
.fs2_c00298{font-size:42.079973pt;}
.fs5_c00298{font-size:42.079974pt;}
.fs1_c00298{font-size:42.079975pt;}
.fs4_c00298{font-size:42.079976pt;}
.fs3_c00298{font-size:42.079977pt;}
.fs6_c00298{font-size:42.079978pt;}
.fs8_c00298{font-size:45.894021pt;}
.fsd_c00298{font-size:49.530431pt;}
.fsb_c00298{font-size:53.288186pt;}
.fse_c00298{font-size:63.921837pt;}
.fs0_c00298{font-size:63.961814pt;}
.fs7_c00298{font-size:68.413814pt;}
.fsa_c00298{font-size:79.952268pt;}
.y0_c00298{bottom:0.000000pt;}
.y1_c00298{bottom:0.000007pt;}
.y55_c00298{bottom:26.805533pt;}
.y52_c00298{bottom:78.969179pt;}
.y51_c00298{bottom:105.953070pt;}
.y50_c00298{bottom:132.936960pt;}
.y4f_c00298{bottom:159.920851pt;}
.y4e_c00298{bottom:186.904741pt;}
.y4d_c00298{bottom:213.888631pt;}
.y4c_c00298{bottom:240.872522pt;}
.y4b_c00298{bottom:267.856412pt;}
.y53_c00298{bottom:299.870290pt;}
.y42_c00298{bottom:357.390356pt;}
.y10_c00298{bottom:438.944560pt;}
.y38_c00298{bottom:438.957887pt;}
.yf_c00298{bottom:439.411208pt;}
.y39_c00298{bottom:439.428585pt;}
.y22_c00298{bottom:439.733989pt;}
.y37_c00298{bottom:440.063632pt;}
.ye_c00298{bottom:440.358224pt;}
.y23_c00298{bottom:440.474249pt;}
.y21_c00298{bottom:440.492144pt;}
.y36_c00298{bottom:441.175290pt;}
.yd_c00298{bottom:441.311665pt;}
.y20_c00298{bottom:441.411480pt;}
.y3a_c00298{bottom:441.575343pt;}
.y11_c00298{bottom:441.631897pt;}
.y24_c00298{bottom:442.412085pt;}
.y35_c00298{bottom:442.636491pt;}
.yc_c00298{bottom:442.778875pt;}
.y1f_c00298{bottom:443.368235pt;}
.y25_c00298{bottom:443.647574pt;}
.y34_c00298{bottom:444.136272pt;}
.yb_c00298{bottom:444.283350pt;}
.y26_c00298{bottom:445.156323pt;}
.y12_c00298{bottom:445.431649pt;}
.y33_c00298{bottom:445.793228pt;}
.ya_c00298{bottom:445.944627pt;}
.y3b_c00298{bottom:446.106592pt;}
.y1e_c00298{bottom:446.736624pt;}
.y27_c00298{bottom:447.325975pt;}
.y13_c00298{bottom:447.669198pt;}
.y3c_c00298{bottom:449.329795pt;}
.y28_c00298{bottom:449.332771pt;}
.y32_c00298{bottom:449.927990pt;}
.y9_c00298{bottom:450.087675pt;}
.y1d_c00298{bottom:451.594856pt;}
.y29_c00298{bottom:452.236735pt;}
.y14_c00298{bottom:452.957150pt;}
.y3d_c00298{bottom:454.334697pt;}
.y1c_c00298{bottom:455.562742pt;}
.y31_c00298{bottom:455.614749pt;}
.y8_c00298{bottom:455.781928pt;}
.y15_c00298{bottom:457.175713pt;}
.y2a_c00298{bottom:459.696536pt;}
.y3e_c00298{bottom:460.249062pt;}
.y1b_c00298{bottom:461.270273pt;}
.y30_c00298{bottom:462.105976pt;}
.y7_c00298{bottom:462.186152pt;}
.y6_c00298{bottom:465.258807pt;}
.y1a_c00298{bottom:465.329988pt;}
.y2b_c00298{bottom:466.846944pt;}
.y16_c00298{bottom:467.644044pt;}
.y2f_c00298{bottom:468.468115pt;}
.y5_c00298{bottom:470.598118pt;}
.y3f_c00298{bottom:470.876600pt;}
.y19_c00298{bottom:472.234422pt;}
.y2e_c00298{bottom:472.704883pt;}
.y41_c00298{bottom:474.425294pt;}
.y4a_c00298{bottom:475.041614pt;}
.y18_c00298{bottom:475.693435pt;}
.y4_c00298{bottom:477.047199pt;}
.y2d_c00298{bottom:478.188178pt;}
.y17_c00298{bottom:478.518126pt;}
.y40_c00298{bottom:478.841168pt;}
.y43_c00298{bottom:480.383196pt;}
.y2c_c00298{bottom:484.463008pt;}
.y3_c00298{bottom:485.517349pt;}
.y44_c00298{bottom:513.663227pt;}
.y2_c00298{bottom:531.164232pt;}
.y54_c00298{bottom:568.435476pt;}
.y56_c00298{bottom:910.616857pt;}
.y48_c00298{bottom:1002.298488pt;}
.y46_c00298{bottom:1004.193955pt;}
.y45_c00298{bottom:1020.184408pt;}
.y49_c00298{bottom:1023.103728pt;}
.y47_c00298{bottom:1040.585280pt;}
.hc_c00298{height:28.584382pt;}
.h8_c00298{height:31.970917pt;}
.h7_c00298{height:31.970918pt;}
.h9_c00298{height:31.970920pt;}
.h5_c00298{height:32.238026pt;}
.h4_c00298{height:32.238028pt;}
.h6_c00298{height:32.238029pt;}
.hb_c00298{height:33.277647pt;}
.hf_c00298{height:34.742386pt;}
.h14_c00298{height:40.499022pt;}
.h12_c00298{height:46.120377pt;}
.h13_c00298{height:48.971369pt;}
.h3_c00298{height:49.001996pt;}
.he_c00298{height:49.619420pt;}
.ha_c00298{height:50.010498pt;}
.h10_c00298{height:59.558193pt;}
.hd_c00298{height:60.744985pt;}
.h11_c00298{height:74.447742pt;}
.h2_c00298{height:1159.999952pt;}
.h0_c00298{height:1159.999959pt;}
.h1_c00298{height:1160.000000pt;}
.w2_c00298{width:830.999965pt;}
.w0_c00298{width:831.000000pt;}
.w1_c00298{width:831.333333pt;}
.x0_c00298{left:0.000000pt;}
.x3f_c00298{left:78.089069pt;}
.x3e_c00298{left:79.496944pt;}
.x3a_c00298{left:95.469567pt;}
.x3b_c00298{left:97.474332pt;}
.x42_c00298{left:116.686291pt;}
.x27_c00298{left:119.906064pt;}
.x26_c00298{left:121.392652pt;}
.x28_c00298{left:124.389083pt;}
.x29_c00298{left:128.698021pt;}
.x2a_c00298{left:133.464791pt;}
.x2b_c00298{left:135.910272pt;}
.x2c_c00298{left:138.584129pt;}
.x2d_c00298{left:142.002076pt;}
.x37_c00298{left:143.420132pt;}
.x2e_c00298{left:145.070170pt;}
.x2f_c00298{left:152.430191pt;}
.x30_c00298{left:159.776608pt;}
.x31_c00298{left:167.266795pt;}
.x32_c00298{left:174.717010pt;}
.x33_c00298{left:178.419115pt;}
.x34_c00298{left:182.468375pt;}
.x35_c00298{left:185.852506pt;}
.x36_c00298{left:188.150503pt;}
.x3_c00298{left:204.676373pt;}
.x2_c00298{left:206.574107pt;}
.x4_c00298{left:209.317987pt;}
.x5_c00298{left:213.616993pt;}
.x6_c00298{left:218.376513pt;}
.x7_c00298{left:220.819105pt;}
.x8_c00298{left:223.490334pt;}
.x9_c00298{left:226.905704pt;}
.x3d_c00298{left:227.972394pt;}
.xa_c00298{left:229.825509pt;}
.xb_c00298{left:233.767373pt;}
.xc_c00298{left:241.423300pt;}
.xd_c00298{left:251.942027pt;}
.xe_c00298{left:258.549026pt;}
.xf_c00298{left:261.564741pt;}
.x3c_c00298{left:262.612255pt;}
.x10_c00298{left:266.308178pt;}
.x11_c00298{left:269.319244pt;}
.x12_c00298{left:272.883167pt;}
.x13_c00298{left:289.225349pt;}
.x14_c00298{left:290.306761pt;}
.x15_c00298{left:291.569114pt;}
.x16_c00298{left:294.587062pt;}
.x17_c00298{left:297.451603pt;}
.x18_c00298{left:302.677178pt;}
.x19_c00298{left:308.173457pt;}
.x1a_c00298{left:313.230862pt;}
.x1b_c00298{left:316.260173pt;}
.x1c_c00298{left:323.284548pt;}
.x1d_c00298{left:330.381558pt;}
.x1e_c00298{left:336.386614pt;}
.x1f_c00298{left:339.069625pt;}
.x20_c00298{left:341.738474pt;}
.x21_c00298{left:344.757080pt;}
.x22_c00298{left:347.081977pt;}
.x23_c00298{left:350.026488pt;}
.x24_c00298{left:354.624063pt;}
.x25_c00298{left:357.115628pt;}
.x41_c00298{left:401.765180pt;}
.x1_c00298{left:413.420124pt;}
.x40_c00298{left:587.713096pt;}
.x38_c00298{left:619.470933pt;}
.x39_c00298{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cad5028184ae93b88f6ece36.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.171387;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.006348;font-style:normal;font-weight:normal;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_76bbfa04c3e24c0c09431a47.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.005371;font-style:normal;font-weight:normal;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_9040e1b9c0004700a7efea5e.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:1.000000;font-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_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);}
.v0_c00299{vertical-align:0.000000px;}
.ls0_c00299{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00299{word-spacing:-18.680283px;}
.ws0_c00299{word-spacing:-0.047972px;}
.ws2_c00299{word-spacing:0.000000px;}
._5_c00299{margin-left:-18.691963px;}
._0_c00299{width:1.545950px;}
._8_c00299{width:2.889877px;}
._13_c00299{width:4.091887px;}
._11_c00299{width:5.412622px;}
._e_c00299{width:6.916568px;}
._12_c00299{width:11.102747px;}
._a_c00299{width:15.623461px;}
._b_c00299{width:16.755674px;}
._1_c00299{width:20.205388px;}
._c_c00299{width:22.111869px;}
._15_c00299{width:23.227572px;}
._9_c00299{width:25.217039px;}
._16_c00299{width:27.645558px;}
._3_c00299{width:29.457359px;}
._17_c00299{width:30.961174px;}
._14_c00299{width:32.285406px;}
._7_c00299{width:36.856904px;}
._10_c00299{width:42.443554px;}
._2_c00299{width:43.474000px;}
._4_c00299{width:45.078555px;}
._f_c00299{width:48.072808px;}
._6_c00299{width:81.457563px;}
._d_c00299{width:127.445126px;}
.fc2_c00299{color:rgb(223,147,70);}
.fc1_c00299{color:rgb(198,111,25);}
.fc0_c00299{color:rgb(0,0,0);}
.fs1_c00299{font-size:47.971511px;}
.fs2_c00299{font-size:71.912067px;}
.fs0_c00299{font-size:71.957041px;}
.y0_c00299{bottom:0.000000px;}
.y1_c00299{bottom:0.000008px;}
.y2a_c00299{bottom:30.156225px;}
.y27_c00299{bottom:52.530528px;}
.y26_c00299{bottom:82.887405px;}
.y25_c00299{bottom:113.244282px;}
.y24_c00299{bottom:143.601159px;}
.y28_c00299{bottom:177.953787px;}
.y23_c00299{bottom:238.257459px;}
.y22_c00299{bottom:268.614335px;}
.y21_c00299{bottom:298.971212px;}
.y29_c00299{bottom:331.033844px;}
.y1f_c00299{bottom:391.108121px;}
.y1e_c00299{bottom:421.464997px;}
.y1d_c00299{bottom:451.821874px;}
.y1c_c00299{bottom:482.178751px;}
.y1b_c00299{bottom:512.535628px;}
.y1a_c00299{bottom:542.892505px;}
.y19_c00299{bottom:573.249381px;}
.y18_c00299{bottom:603.606258px;}
.y17_c00299{bottom:633.963135px;}
.y16_c00299{bottom:664.320012px;}
.y15_c00299{bottom:694.676888px;}
.y20_c00299{bottom:728.856472px;}
.y5_c00299{bottom:788.908428px;}
.y4_c00299{bottom:819.265304px;}
.y3_c00299{bottom:849.622181px;}
.y2_c00299{bottom:879.979058px;}
.y6_c00299{bottom:913.336646px;}
.y14_c00299{bottom:945.591297px;}
.y13_c00299{bottom:961.581800px;}
.yf_c00299{bottom:971.835846px;}
.y12_c00299{bottom:977.572304px;}
.y11_c00299{bottom:993.562807px;}
.ye_c00299{bottom:1001.068394px;}
.y10_c00299{bottom:1009.553311px;}
.yd_c00299{bottom:1030.300942px;}
.yc_c00299{bottom:1059.533490px;}
.yb_c00299{bottom:1088.766038px;}
.ya_c00299{bottom:1117.998586px;}
.y9_c00299{bottom:1147.231134px;}
.y8_c00299{bottom:1176.463682px;}
.y7_c00299{bottom:1205.696230px;}
.h5_c00299{height:44.668785px;}
.h4_c00299{height:55.127245px;}
.h6_c00299{height:66.961090px;}
.h3_c00299{height:67.002968px;}
.h2_c00299{height:1304.999946px;}
.h0_c00299{height:1304.999953px;}
.h1_c00299{height:1305.000000px;}
.w2_c00299{width:934.874961px;}
.w0_c00299{width:934.875000px;}
.w1_c00299{width:935.250000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:87.850202px;}
.x3_c00299{left:451.985828px;}
.x2_c00299{left:584.199818px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws1_c00299{word-spacing:-16.604696pt;}
.ws0_c00299{word-spacing:-0.042641pt;}
.ws2_c00299{word-spacing:0.000000pt;}
._5_c00299{margin-left:-16.615078pt;}
._0_c00299{width:1.374178pt;}
._8_c00299{width:2.568780pt;}
._13_c00299{width:3.637233pt;}
._11_c00299{width:4.811219pt;}
._e_c00299{width:6.148060pt;}
._12_c00299{width:9.869108pt;}
._a_c00299{width:13.887521pt;}
._b_c00299{width:14.893932pt;}
._1_c00299{width:17.960345pt;}
._c_c00299{width:19.654994pt;}
._15_c00299{width:20.646731pt;}
._9_c00299{width:22.415146pt;}
._16_c00299{width:24.573829pt;}
._3_c00299{width:26.184319pt;}
._17_c00299{width:27.521044pt;}
._14_c00299{width:28.698138pt;}
._7_c00299{width:32.761692pt;}
._10_c00299{width:37.727604pt;}
._2_c00299{width:38.643555pt;}
._4_c00299{width:40.069827pt;}
._f_c00299{width:42.731385pt;}
._6_c00299{width:72.406723pt;}
._d_c00299{width:113.284556pt;}
.fs1_c00299{font-size:42.641343pt;}
.fs2_c00299{font-size:63.921837pt;}
.fs0_c00299{font-size:63.961814pt;}
.y0_c00299{bottom:0.000000pt;}
.y1_c00299{bottom:0.000007pt;}
.y2a_c00299{bottom:26.805533pt;}
.y27_c00299{bottom:46.693803pt;}
.y26_c00299{bottom:73.677693pt;}
.y25_c00299{bottom:100.661584pt;}
.y24_c00299{bottom:127.645474pt;}
.y28_c00299{bottom:158.181144pt;}
.y23_c00299{bottom:211.784408pt;}
.y22_c00299{bottom:238.768298pt;}
.y21_c00299{bottom:265.752188pt;}
.y29_c00299{bottom:294.252306pt;}
.y1f_c00299{bottom:347.651663pt;}
.y1e_c00299{bottom:374.635553pt;}
.y1d_c00299{bottom:401.619444pt;}
.y1c_c00299{bottom:428.603334pt;}
.y1b_c00299{bottom:455.587225pt;}
.y1a_c00299{bottom:482.571115pt;}
.y19_c00299{bottom:509.555006pt;}
.y18_c00299{bottom:536.538896pt;}
.y17_c00299{bottom:563.522787pt;}
.y16_c00299{bottom:590.506677pt;}
.y15_c00299{bottom:617.490567pt;}
.y20_c00299{bottom:647.872419pt;}
.y5_c00299{bottom:701.251936pt;}
.y4_c00299{bottom:728.235826pt;}
.y3_c00299{bottom:755.219717pt;}
.y2_c00299{bottom:782.203607pt;}
.y6_c00299{bottom:811.854797pt;}
.y14_c00299{bottom:840.525597pt;}
.y13_c00299{bottom:854.739378pt;}
.yf_c00299{bottom:863.854085pt;}
.y12_c00299{bottom:868.953159pt;}
.y11_c00299{bottom:883.166940pt;}
.ye_c00299{bottom:889.838572pt;}
.y10_c00299{bottom:897.380721pt;}
.yd_c00299{bottom:915.823059pt;}
.yc_c00299{bottom:941.807547pt;}
.yb_c00299{bottom:967.792034pt;}
.ya_c00299{bottom:993.776521pt;}
.y9_c00299{bottom:1019.761008pt;}
.y8_c00299{bottom:1045.745495pt;}
.y7_c00299{bottom:1071.729982pt;}
.h5_c00299{height:39.705586pt;}
.h4_c00299{height:49.001996pt;}
.h6_c00299{height:59.520969pt;}
.h3_c00299{height:59.558193pt;}
.h2_c00299{height:1159.999952pt;}
.h0_c00299{height:1159.999959pt;}
.h1_c00299{height:1160.000000pt;}
.w2_c00299{width:830.999965pt;}
.w0_c00299{width:831.000000pt;}
.w1_c00299{width:831.333333pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:78.089069pt;}
.x3_c00299{left:401.765180pt;}
.x2_c00299{left:519.288727pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ef6fe121f047aa81bfaf8cd.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.006348;font-style:normal;font-weight:normal;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_d0647cf0c2d48444ac5533d0.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:0.772949;font-style:normal;font-weight:normal;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_4fe88a69156a9f5f80834035.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_a630e2828473315e57a512d5.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:1.000000;font-style:normal;font-weight: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_c00300;src:url('chunks/assets/font_ef8d57cf7a1cf2e84ae6f8ef.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;line-height:1.000000;font-style:normal;font-weight: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_c00300;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff6_c00300{font-family:ff6_c00300;line-height:1.006348;font-style:normal;font-weight: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_c00300;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00300{font-family:ff7_c00300;line-height:0.769531;font-style:normal;font-weight: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_c00300;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff8_c00300{font-family:ff8_c00300;line-height:0.743000;font-style:normal;font-weight: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_c00300;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00300{font-family:ff9_c00300;line-height:0.734863;font-style:normal;font-weight: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_c00300;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00300{font-family:ffa_c00300;line-height:0.940000;font-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_c00300{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00300{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00300{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00300{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00300{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00300{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00300{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00300{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00300{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00300{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00300{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00300{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00300{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00300{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00300{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00300{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00300{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00300{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00300{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00300{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00300{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00300{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00300{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00300{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00300{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00300{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00300{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00300{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00300{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00300{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00300{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00300{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00300{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00300{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00300{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00300{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00300{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00300{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00300{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00300{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00300{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00300{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00300{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00300{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00300{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00300{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00300{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00300{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00300{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00300{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00300{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00300{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00300{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00300{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00300{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00300{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00300{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00300{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00300{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00300{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00300{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00300{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00300{vertical-align:0.000000px;}
.v1_c00300{vertical-align:26.810561px;}
.ls0_c00300{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00300{word-spacing:-41.664701px;}
.ws2_c00300{word-spacing:-18.680283px;}
.ws4_c00300{word-spacing:0.000000px;}
.ws1_c00300{word-spacing:281.470806px;}
.ws0_c00300{word-spacing:1114.343689px;}
._1_c00300{width:1.146288px;}
._4_c00300{width:2.428728px;}
._0_c00300{width:3.998969px;}
._3_c00300{width:5.094615px;}
._2_c00300{width:48.609651px;}
.fc3_c00300{color:rgb(9,71,81);}
.fc2_c00300{color:rgb(198,111,25);}
.fc1_c00300{color:rgb(255,255,255);}
.fc0_c00300{color:rgb(0,0,0);}
.fsd_c00300{font-size:41.974772px;}
.fs4_c00300{font-size:41.975069px;}
.fs7_c00300{font-size:47.339969px;}
.fsa_c00300{font-size:47.339970px;}
.fs6_c00300{font-size:47.339972px;}
.fs9_c00300{font-size:47.339973px;}
.fs8_c00300{font-size:47.339974px;}
.fsb_c00300{font-size:47.339975px;}
.fse_c00300{font-size:51.630774px;}
.fs1_c00300{font-size:55.721735px;}
.fs3_c00300{font-size:59.949210px;}
.fsf_c00300{font-size:71.912067px;}
.fs0_c00300{font-size:71.957041px;}
.fsc_c00300{font-size:76.965540px;}
.fs2_c00300{font-size:89.946302px;}
.fs5_c00300{font-size:95.927731px;}
.y0_c00300{bottom:0.000000px;}
.y1_c00300{bottom:0.000008px;}
.y52_c00300{bottom:30.156225px;}
.y9_c00300{bottom:119.203417px;}
.y8_c00300{bottom:149.560294px;}
.y7_c00300{bottom:179.917171px;}
.y6_c00300{bottom:210.274048px;}
.y5_c00300{bottom:240.630924px;}
.y4_c00300{bottom:270.987801px;}
.yf_c00300{bottom:307.003413px;}
.y51_c00300{bottom:402.064151px;}
.y1d_c00300{bottom:493.812629px;}
.y45_c00300{bottom:493.827623px;}
.y1c_c00300{bottom:494.337609px;}
.y46_c00300{bottom:494.357158px;}
.y2f_c00300{bottom:494.700737px;}
.y44_c00300{bottom:495.071586px;}
.y1b_c00300{bottom:495.403002px;}
.y30_c00300{bottom:495.533530px;}
.y2e_c00300{bottom:495.553663px;}
.y43_c00300{bottom:496.322201px;}
.y1a_c00300{bottom:496.475623px;}
.y2d_c00300{bottom:496.587915px;}
.y47_c00300{bottom:496.772260px;}
.y1e_c00300{bottom:496.835884px;}
.y31_c00300{bottom:497.713596px;}
.y42_c00300{bottom:497.966053px;}
.y19_c00300{bottom:498.126234px;}
.y2c_c00300{bottom:498.789265px;}
.y32_c00300{bottom:499.103521px;}
.y41_c00300{bottom:499.653306px;}
.y18_c00300{bottom:499.818769px;}
.y33_c00300{bottom:500.800864px;}
.y1f_c00300{bottom:501.110605px;}
.y40_c00300{bottom:501.517382px;}
.y17_c00300{bottom:501.687706px;}
.y48_c00300{bottom:501.869915px;}
.y2b_c00300{bottom:502.578702px;}
.y34_c00300{bottom:503.241722px;}
.y20_c00300{bottom:503.627848px;}
.y49_c00300{bottom:505.496019px;}
.y35_c00300{bottom:505.499367px;}
.y3f_c00300{bottom:506.168989px;}
.y16_c00300{bottom:506.348634px;}
.y2a_c00300{bottom:508.044213px;}
.y36_c00300{bottom:508.766327px;}
.y21_c00300{bottom:509.576794px;}
.y4a_c00300{bottom:511.126534px;}
.y29_c00300{bottom:512.508085px;}
.y3e_c00300{bottom:512.566592px;}
.y15_c00300{bottom:512.754669px;}
.y22_c00300{bottom:514.322677px;}
.y37_c00300{bottom:517.158603px;}
.y4b_c00300{bottom:517.780195px;}
.y28_c00300{bottom:518.929057px;}
.y3d_c00300{bottom:519.869222px;}
.y14_c00300{bottom:519.959421px;}
.y13_c00300{bottom:523.416158px;}
.y27_c00300{bottom:523.496236px;}
.y38_c00300{bottom:525.202812px;}
.y23_c00300{bottom:526.099549px;}
.y3c_c00300{bottom:527.026630px;}
.y12_c00300{bottom:529.422883px;}
.y4c_c00300{bottom:529.736175px;}
.y26_c00300{bottom:531.263725px;}
.y3b_c00300{bottom:531.792993px;}
.y4e_c00300{bottom:533.728456px;}
.y4f_c00300{bottom:534.421816px;}
.y25_c00300{bottom:535.155114px;}
.y11_c00300{bottom:536.678099px;}
.y3a_c00300{bottom:537.961701px;}
.y24_c00300{bottom:538.332892px;}
.y4d_c00300{bottom:538.696314px;}
.y39_c00300{bottom:545.020884px;}
.y10_c00300{bottom:546.207017px;}
.y50_c00300{bottom:577.871130px;}
.y2_c00300{bottom:597.559761px;}
.y3_c00300{bottom:639.489911px;}
.y53_c00300{bottom:1024.443964px;}
.yd_c00300{bottom:1127.585799px;}
.yb_c00300{bottom:1129.718199px;}
.ya_c00300{bottom:1147.707459px;}
.ye_c00300{bottom:1150.017273px;}
.yc_c00300{bottom:1170.658440px;}
.h12_c00300{height:32.157430px;}
.he_c00300{height:35.967282px;}
.hd_c00300{height:35.967283px;}
.hf_c00300{height:35.967285px;}
.hb_c00300{height:36.267779px;}
.ha_c00300{height:36.267781px;}
.hc_c00300{height:36.267783px;}
.h13_c00300{height:37.437353px;}
.h7_c00300{height:39.085184px;}
.h15_c00300{height:45.561399px;}
.h4_c00300{height:51.885424px;}
.h14_c00300{height:55.092790px;}
.h3_c00300{height:55.127245px;}
.h6_c00300{height:55.821847px;}
.h11_c00300{height:56.261810px;}
.h10_c00300{height:58.967991px;}
.h8_c00300{height:67.002968px;}
.h5_c00300{height:68.338108px;}
.h9_c00300{height:89.323331px;}
.h2_c00300{height:1304.999946px;}
.h0_c00300{height:1304.999953px;}
.h1_c00300{height:1305.000000px;}
.w2_c00300{width:934.874961px;}
.w0_c00300{width:934.875000px;}
.w1_c00300{width:935.250000px;}
.x0_c00300{left:0.000000px;}
.x3_c00300{left:89.206783px;}
.x4_c00300{left:108.062661px;}
.x5_c00300{left:109.658623px;}
.x41_c00300{left:131.272077px;}
.x2c_c00300{left:134.894322px;}
.x2b_c00300{left:136.566734px;}
.x2d_c00300{left:139.937719px;}
.x2e_c00300{left:144.785273px;}
.x2f_c00300{left:150.147890px;}
.x30_c00300{left:152.899057px;}
.x31_c00300{left:155.907145px;}
.x32_c00300{left:159.752336px;}
.x3c_c00300{left:161.347648px;}
.x33_c00300{left:163.203941px;}
.x34_c00300{left:171.483965px;}
.x35_c00300{left:179.748684px;}
.x36_c00300{left:188.175145px;}
.x37_c00300{left:196.556636px;}
.x38_c00300{left:200.721504px;}
.x39_c00300{left:205.276922px;}
.x3a_c00300{left:209.084069px;}
.x3b_c00300{left:211.669316px;}
.x8_c00300{left:230.260919px;}
.x7_c00300{left:232.395871px;}
.x9_c00300{left:235.482735px;}
.xa_c00300{left:240.319117px;}
.xb_c00300{left:245.673577px;}
.xc_c00300{left:248.421493px;}
.xd_c00300{left:251.426626px;}
.xe_c00300{left:255.268917px;}
.x3d_c00300{left:256.468943px;}
.xf_c00300{left:258.553698px;}
.x10_c00300{left:262.988294px;}
.x11_c00300{left:271.601212px;}
.x12_c00300{left:283.434780px;}
.x13_c00300{left:290.867654px;}
.x14_c00300{left:294.260334px;}
.x6_c00300{left:295.438786px;}
.x15_c00300{left:299.596701px;}
.x16_c00300{left:302.984150px;}
.x17_c00300{left:306.993562px;}
.x18_c00300{left:325.378518px;}
.x19_c00300{left:326.595106px;}
.x1a_c00300{left:328.015253px;}
.x1b_c00300{left:331.410444px;}
.x1c_c00300{left:334.633053px;}
.x1d_c00300{left:340.511825px;}
.x1e_c00300{left:346.695139px;}
.x1f_c00300{left:352.384720px;}
.x20_c00300{left:355.792694px;}
.x21_c00300{left:363.695116px;}
.x22_c00300{left:371.679253px;}
.x23_c00300{left:378.434940px;}
.x24_c00300{left:381.453328px;}
.x25_c00300{left:384.455783px;}
.x26_c00300{left:387.851715px;}
.x27_c00300{left:390.467224px;}
.x28_c00300{left:393.779799px;}
.x29_c00300{left:398.952070px;}
.x2a_c00300{left:401.755082px;}
.x40_c00300{left:451.985828px;}
.x1_c00300{left:465.097640px;}
.x2_c00300{left:676.474352px;}
.x3f_c00300{left:696.904800px;}
.x3e_c00300{left:733.103068px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.v1_c00300{vertical-align:23.831609pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws3_c00300{word-spacing:-37.035289pt;}
.ws2_c00300{word-spacing:-16.604696pt;}
.ws4_c00300{word-spacing:0.000000pt;}
.ws1_c00300{word-spacing:250.196272pt;}
.ws0_c00300{word-spacing:990.527723pt;}
._1_c00300{width:1.018922pt;}
._4_c00300{width:2.158869pt;}
._0_c00300{width:3.554639pt;}
._3_c00300{width:4.528547pt;}
._2_c00300{width:43.208578pt;}
.fsd_c00300{font-size:37.310908pt;}
.fs4_c00300{font-size:37.311173pt;}
.fs7_c00300{font-size:42.079973pt;}
.fsa_c00300{font-size:42.079974pt;}
.fs6_c00300{font-size:42.079975pt;}
.fs9_c00300{font-size:42.079976pt;}
.fs8_c00300{font-size:42.079977pt;}
.fsb_c00300{font-size:42.079978pt;}
.fse_c00300{font-size:45.894021pt;}
.fs1_c00300{font-size:49.530431pt;}
.fs3_c00300{font-size:53.288186pt;}
.fsf_c00300{font-size:63.921837pt;}
.fs0_c00300{font-size:63.961814pt;}
.fsc_c00300{font-size:68.413814pt;}
.fs2_c00300{font-size:79.952268pt;}
.fs5_c00300{font-size:85.269094pt;}
.y0_c00300{bottom:0.000000pt;}
.y1_c00300{bottom:0.000007pt;}
.y52_c00300{bottom:26.805533pt;}
.y9_c00300{bottom:105.958593pt;}
.y8_c00300{bottom:132.942484pt;}
.y7_c00300{bottom:159.926374pt;}
.y6_c00300{bottom:186.910265pt;}
.y5_c00300{bottom:213.894155pt;}
.y4_c00300{bottom:240.878046pt;}
.yf_c00300{bottom:272.891923pt;}
.y51_c00300{bottom:357.390356pt;}
.y1d_c00300{bottom:438.944560pt;}
.y45_c00300{bottom:438.957887pt;}
.y1c_c00300{bottom:439.411208pt;}
.y46_c00300{bottom:439.428585pt;}
.y2f_c00300{bottom:439.733989pt;}
.y44_c00300{bottom:440.063632pt;}
.y1b_c00300{bottom:440.358224pt;}
.y30_c00300{bottom:440.474249pt;}
.y2e_c00300{bottom:440.492144pt;}
.y43_c00300{bottom:441.175290pt;}
.y1a_c00300{bottom:441.311665pt;}
.y2d_c00300{bottom:441.411480pt;}
.y47_c00300{bottom:441.575343pt;}
.y1e_c00300{bottom:441.631897pt;}
.y31_c00300{bottom:442.412085pt;}
.y42_c00300{bottom:442.636491pt;}
.y19_c00300{bottom:442.778875pt;}
.y2c_c00300{bottom:443.368235pt;}
.y32_c00300{bottom:443.647574pt;}
.y41_c00300{bottom:444.136272pt;}
.y18_c00300{bottom:444.283350pt;}
.y33_c00300{bottom:445.156323pt;}
.y1f_c00300{bottom:445.431649pt;}
.y40_c00300{bottom:445.793228pt;}
.y17_c00300{bottom:445.944627pt;}
.y48_c00300{bottom:446.106592pt;}
.y2b_c00300{bottom:446.736624pt;}
.y34_c00300{bottom:447.325975pt;}
.y20_c00300{bottom:447.669198pt;}
.y49_c00300{bottom:449.329795pt;}
.y35_c00300{bottom:449.332771pt;}
.y3f_c00300{bottom:449.927990pt;}
.y16_c00300{bottom:450.087675pt;}
.y2a_c00300{bottom:451.594856pt;}
.y36_c00300{bottom:452.236735pt;}
.y21_c00300{bottom:452.957150pt;}
.y4a_c00300{bottom:454.334697pt;}
.y29_c00300{bottom:455.562742pt;}
.y3e_c00300{bottom:455.614749pt;}
.y15_c00300{bottom:455.781928pt;}
.y22_c00300{bottom:457.175713pt;}
.y37_c00300{bottom:459.696536pt;}
.y4b_c00300{bottom:460.249062pt;}
.y28_c00300{bottom:461.270273pt;}
.y3d_c00300{bottom:462.105976pt;}
.y14_c00300{bottom:462.186152pt;}
.y13_c00300{bottom:465.258807pt;}
.y27_c00300{bottom:465.329988pt;}
.y38_c00300{bottom:466.846944pt;}
.y23_c00300{bottom:467.644044pt;}
.y3c_c00300{bottom:468.468115pt;}
.y12_c00300{bottom:470.598118pt;}
.y4c_c00300{bottom:470.876600pt;}
.y26_c00300{bottom:472.234422pt;}
.y3b_c00300{bottom:472.704883pt;}
.y4e_c00300{bottom:474.425294pt;}
.y4f_c00300{bottom:475.041614pt;}
.y25_c00300{bottom:475.693435pt;}
.y11_c00300{bottom:477.047199pt;}
.y3a_c00300{bottom:478.188178pt;}
.y24_c00300{bottom:478.518126pt;}
.y4d_c00300{bottom:478.841168pt;}
.y39_c00300{bottom:484.463008pt;}
.y10_c00300{bottom:485.517349pt;}
.y50_c00300{bottom:513.663227pt;}
.y2_c00300{bottom:531.164232pt;}
.y3_c00300{bottom:568.435476pt;}
.y53_c00300{bottom:910.616857pt;}
.yd_c00300{bottom:1002.298488pt;}
.yb_c00300{bottom:1004.193955pt;}
.ya_c00300{bottom:1020.184408pt;}
.ye_c00300{bottom:1022.237576pt;}
.yc_c00300{bottom:1040.585280pt;}
.h12_c00300{height:28.584382pt;}
.he_c00300{height:31.970917pt;}
.hd_c00300{height:31.970918pt;}
.hf_c00300{height:31.970920pt;}
.hb_c00300{height:32.238026pt;}
.ha_c00300{height:32.238028pt;}
.hc_c00300{height:32.238029pt;}
.h13_c00300{height:33.277647pt;}
.h7_c00300{height:34.742386pt;}
.h15_c00300{height:40.499022pt;}
.h4_c00300{height:46.120377pt;}
.h14_c00300{height:48.971369pt;}
.h3_c00300{height:49.001996pt;}
.h6_c00300{height:49.619420pt;}
.h11_c00300{height:50.010498pt;}
.h10_c00300{height:52.415992pt;}
.h8_c00300{height:59.558193pt;}
.h5_c00300{height:60.744985pt;}
.h9_c00300{height:79.398517pt;}
.h2_c00300{height:1159.999952pt;}
.h0_c00300{height:1159.999959pt;}
.h1_c00300{height:1160.000000pt;}
.w2_c00300{width:830.999965pt;}
.w0_c00300{width:831.000000pt;}
.w1_c00300{width:831.333333pt;}
.x0_c00300{left:0.000000pt;}
.x3_c00300{left:79.294918pt;}
.x4_c00300{left:96.055698pt;}
.x5_c00300{left:97.474332pt;}
.x41_c00300{left:116.686291pt;}
.x2c_c00300{left:119.906064pt;}
.x2b_c00300{left:121.392652pt;}
.x2d_c00300{left:124.389083pt;}
.x2e_c00300{left:128.698021pt;}
.x2f_c00300{left:133.464791pt;}
.x30_c00300{left:135.910272pt;}
.x31_c00300{left:138.584129pt;}
.x32_c00300{left:142.002076pt;}
.x3c_c00300{left:143.420132pt;}
.x33_c00300{left:145.070170pt;}
.x34_c00300{left:152.430191pt;}
.x35_c00300{left:159.776608pt;}
.x36_c00300{left:167.266795pt;}
.x37_c00300{left:174.717010pt;}
.x38_c00300{left:178.419115pt;}
.x39_c00300{left:182.468375pt;}
.x3a_c00300{left:185.852506pt;}
.x3b_c00300{left:188.150503pt;}
.x8_c00300{left:204.676373pt;}
.x7_c00300{left:206.574107pt;}
.x9_c00300{left:209.317987pt;}
.xa_c00300{left:213.616993pt;}
.xb_c00300{left:218.376513pt;}
.xc_c00300{left:220.819105pt;}
.xd_c00300{left:223.490334pt;}
.xe_c00300{left:226.905704pt;}
.x3d_c00300{left:227.972394pt;}
.xf_c00300{left:229.825509pt;}
.x10_c00300{left:233.767373pt;}
.x11_c00300{left:241.423300pt;}
.x12_c00300{left:251.942027pt;}
.x13_c00300{left:258.549026pt;}
.x14_c00300{left:261.564741pt;}
.x6_c00300{left:262.612255pt;}
.x15_c00300{left:266.308178pt;}
.x16_c00300{left:269.319244pt;}
.x17_c00300{left:272.883167pt;}
.x18_c00300{left:289.225349pt;}
.x19_c00300{left:290.306761pt;}
.x1a_c00300{left:291.569114pt;}
.x1b_c00300{left:294.587062pt;}
.x1c_c00300{left:297.451603pt;}
.x1d_c00300{left:302.677178pt;}
.x1e_c00300{left:308.173457pt;}
.x1f_c00300{left:313.230862pt;}
.x20_c00300{left:316.260173pt;}
.x21_c00300{left:323.284548pt;}
.x22_c00300{left:330.381558pt;}
.x23_c00300{left:336.386614pt;}
.x24_c00300{left:339.069625pt;}
.x25_c00300{left:341.738474pt;}
.x26_c00300{left:344.757080pt;}
.x27_c00300{left:347.081977pt;}
.x28_c00300{left:350.026488pt;}
.x29_c00300{left:354.624063pt;}
.x2a_c00300{left:357.115628pt;}
.x40_c00300{left:401.765180pt;}
.x1_c00300{left:413.420124pt;}
.x2_c00300{left:601.310535pt;}
.x3f_c00300{left:619.470933pt;}
.x3e_c00300{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33d5463775aecdef914d0b32.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.171387;font-style:normal;font-weight:normal;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_a5269f309204e6f629509f33.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.000000;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.006348;font-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_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);}
.v0_c00301{vertical-align:0.000000px;}
.ls0_c00301{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00301{word-spacing:-18.691966px;}
.ws1_c00301{word-spacing:-18.680283px;}
.ws2_c00301{word-spacing:0.000000px;}
._2_c00301{width:1.578683px;}
._3_c00301{width:3.551068px;}
._d_c00301{width:4.706263px;}
._8_c00301{width:5.762185px;}
._b_c00301{width:9.204481px;}
._5_c00301{width:10.603026px;}
._c_c00301{width:11.723541px;}
._6_c00301{width:12.859508px;}
._7_c00301{width:14.194652px;}
._f_c00301{width:15.727770px;}
._1_c00301{width:16.807427px;}
._e_c00301{width:21.038828px;}
._0_c00301{width:22.320435px;}
._10_c00301{width:24.235514px;}
._9_c00301{width:33.153628px;}
._a_c00301{width:43.666075px;}
._4_c00301{width:50.961726px;}
.fc1_c00301{color:rgb(198,111,25);}
.fc0_c00301{color:rgb(0,0,0);}
.fs1_c00301{font-size:71.912067px;}
.fs0_c00301{font-size:71.957041px;}
.y0_c00301{bottom:0.000000px;}
.y1_c00301{bottom:0.000008px;}
.y27_c00301{bottom:30.156225px;}
.y25_c00301{bottom:78.119183px;}
.y24_c00301{bottom:108.476060px;}
.y23_c00301{bottom:138.832937px;}
.y22_c00301{bottom:169.189813px;}
.y26_c00301{bottom:199.996406px;}
.y16_c00301{bottom:236.569220px;}
.y15_c00301{bottom:266.926097px;}
.y14_c00301{bottom:297.282974px;}
.y13_c00301{bottom:327.639851px;}
.y12_c00301{bottom:357.996727px;}
.y11_c00301{bottom:388.353604px;}
.y10_c00301{bottom:418.710481px;}
.yf_c00301{bottom:449.067358px;}
.ye_c00301{bottom:479.424234px;}
.yd_c00301{bottom:509.781111px;}
.yc_c00301{bottom:540.137988px;}
.yb_c00301{bottom:570.494865px;}
.ya_c00301{bottom:601.301421px;}
.y21_c00301{bottom:641.208866px;}
.y20_c00301{bottom:671.565743px;}
.y1f_c00301{bottom:701.922619px;}
.y1e_c00301{bottom:732.279496px;}
.y1d_c00301{bottom:762.636373px;}
.y1c_c00301{bottom:792.993250px;}
.y1b_c00301{bottom:823.350126px;}
.y1a_c00301{bottom:853.707003px;}
.y19_c00301{bottom:884.063880px;}
.y18_c00301{bottom:914.420757px;}
.y17_c00301{bottom:945.150172px;}
.y8_c00301{bottom:983.405337px;}
.y7_c00301{bottom:1013.762214px;}
.y6_c00301{bottom:1044.119091px;}
.y5_c00301{bottom:1074.475968px;}
.y4_c00301{bottom:1104.832844px;}
.y3_c00301{bottom:1135.189721px;}
.y2_c00301{bottom:1165.546598px;}
.y9_c00301{bottom:1199.835078px;}
.h4_c00301{height:55.127245px;}
.h5_c00301{height:66.961090px;}
.h3_c00301{height:67.002968px;}
.h2_c00301{height:1304.999946px;}
.h0_c00301{height:1304.999953px;}
.h1_c00301{height:1305.000000px;}
.w2_c00301{width:934.874961px;}
.w0_c00301{width:934.875000px;}
.w1_c00301{width:935.250000px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:87.850202px;}
.x2_c00301{left:451.985828px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws0_c00301{word-spacing:-16.615081pt;}
.ws1_c00301{word-spacing:-16.604696pt;}
.ws2_c00301{word-spacing:0.000000pt;}
._2_c00301{width:1.403274pt;}
._3_c00301{width:3.156505pt;}
._d_c00301{width:4.183345pt;}
._8_c00301{width:5.121942pt;}
._b_c00301{width:8.181761pt;}
._5_c00301{width:9.424912pt;}
._c_c00301{width:10.420925pt;}
._6_c00301{width:11.430674pt;}
._7_c00301{width:12.617469pt;}
._f_c00301{width:13.980240pt;}
._1_c00301{width:14.939935pt;}
._e_c00301{width:18.701181pt;}
._0_c00301{width:19.840386pt;}
._10_c00301{width:21.542679pt;}
._9_c00301{width:29.469892pt;}
._a_c00301{width:38.814289pt;}
._4_c00301{width:45.299312pt;}
.fs1_c00301{font-size:63.921837pt;}
.fs0_c00301{font-size:63.961814pt;}
.y0_c00301{bottom:0.000000pt;}
.y1_c00301{bottom:0.000007pt;}
.y27_c00301{bottom:26.805533pt;}
.y25_c00301{bottom:69.439274pt;}
.y24_c00301{bottom:96.423164pt;}
.y23_c00301{bottom:123.407055pt;}
.y22_c00301{bottom:150.390945pt;}
.y26_c00301{bottom:177.774583pt;}
.y16_c00301{bottom:210.283751pt;}
.y15_c00301{bottom:237.267642pt;}
.y14_c00301{bottom:264.251532pt;}
.y13_c00301{bottom:291.235423pt;}
.y12_c00301{bottom:318.219313pt;}
.y11_c00301{bottom:345.203204pt;}
.y10_c00301{bottom:372.187094pt;}
.yf_c00301{bottom:399.170985pt;}
.ye_c00301{bottom:426.154875pt;}
.yd_c00301{bottom:453.138766pt;}
.yc_c00301{bottom:480.122656pt;}
.yb_c00301{bottom:507.106546pt;}
.ya_c00301{bottom:534.490152pt;}
.y21_c00301{bottom:569.963436pt;}
.y20_c00301{bottom:596.947327pt;}
.y1f_c00301{bottom:623.931217pt;}
.y1e_c00301{bottom:650.915108pt;}
.y1d_c00301{bottom:677.898998pt;}
.y1c_c00301{bottom:704.882889pt;}
.y1b_c00301{bottom:731.866779pt;}
.y1a_c00301{bottom:758.850670pt;}
.y19_c00301{bottom:785.834560pt;}
.y18_c00301{bottom:812.818450pt;}
.y17_c00301{bottom:840.133487pt;}
.y8_c00301{bottom:874.138078pt;}
.y7_c00301{bottom:901.121968pt;}
.y6_c00301{bottom:928.105859pt;}
.y5_c00301{bottom:955.089749pt;}
.y4_c00301{bottom:982.073639pt;}
.y3_c00301{bottom:1009.057530pt;}
.y2_c00301{bottom:1036.041420pt;}
.y9_c00301{bottom:1066.520069pt;}
.h4_c00301{height:49.001996pt;}
.h5_c00301{height:59.520969pt;}
.h3_c00301{height:59.558193pt;}
.h2_c00301{height:1159.999952pt;}
.h0_c00301{height:1159.999959pt;}
.h1_c00301{height:1160.000000pt;}
.w2_c00301{width:830.999965pt;}
.w0_c00301{width:831.000000pt;}
.w1_c00301{width:831.333333pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:78.089069pt;}
.x2_c00301{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a940a9f0a22830d185ca3fa.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.006348;font-style:normal;font-weight:normal;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_d0647cf0c2d48444ac5533d0.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:0.772949;font-style:normal;font-weight:normal;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_65c6ce1dfc9d75c6d0161986.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.171387;font-style:normal;font-weight:normal;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_97876f3d86a6f168fc308acf.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:1.000000;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff5_c00302{font-family:ff5_c00302;line-height:0.769531;font-style:normal;font-weight: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_a97e3e502ef57b893b58724b.woff2')format("woff");}.ff6_c00302{font-family:ff6_c00302;line-height:0.719000;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00302{font-family:ff7_c00302;line-height:1.006348;font-style:normal;font-weight: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_c00302;src:url('chunks/assets/font_18e60f48a5a4ca68e8cf5302.woff2')format("woff");}.ff8_c00302{font-family:ff8_c00302;line-height:1.117000;font-style:normal;font-weight: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_c00302;src:url('chunks/assets/font_f18aedea60ded63bc7ea983d.woff2')format("woff");}.ff9_c00302{font-family:ff9_c00302;line-height:1.119000;font-style:normal;font-weight: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_c00302;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ffa_c00302{font-family:ffa_c00302;line-height:0.734863;font-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_c00302{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00302{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00302{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00302{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00302{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00302{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00302{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00302{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00302{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00302{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00302{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00302{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00302{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00302{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00302{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00302{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00302{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00302{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00302{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00302{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00302{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00302{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00302{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00302{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00302{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00302{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00302{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00302{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00302{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00302{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00302{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00302{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00302{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00302{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00302{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00302{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00302{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00302{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00302{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00302{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00302{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00302{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00302{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00302{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00302{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00302{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00302{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00302{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00302{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00302{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00302{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00302{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00302{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00302{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00302{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00302{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00302{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00302{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00302{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00302{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00302{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00302{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00302{vertical-align:0.000000px;}
.v1_c00302{vertical-align:26.810849px;}
.ls0_c00302{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00302{word-spacing:-46.789543px;}
.ws4_c00302{word-spacing:-42.361774px;}
.ws6_c00302{word-spacing:-41.664701px;}
.ws5_c00302{word-spacing:-18.680283px;}
.ws0_c00302{word-spacing:-14.474592px;}
.ws7_c00302{word-spacing:0.000000px;}
.ws2_c00302{word-spacing:269.850737px;}
.ws1_c00302{word-spacing:1102.723706px;}
._6_c00302{margin-left:-18.691968px;}
._2_c00302{width:3.443256px;}
._4_c00302{width:6.511689px;}
._5_c00302{width:7.583800px;}
._1_c00302{width:16.192283px;}
._3_c00302{width:20.708676px;}
._0_c00302{width:35.292012px;}
.fc4_c00302{color:transparent;}
.fc3_c00302{color:rgb(9,71,81);}
.fc2_c00302{color:rgb(198,111,25);}
.fc1_c00302{color:rgb(255,255,255);}
.fc0_c00302{color:rgb(0,0,0);}
.fsc_c00302{font-size:41.974772px;}
.fs4_c00302{font-size:41.975069px;}
.fs6_c00302{font-size:47.339969px;}
.fs9_c00302{font-size:47.339970px;}
.fs5_c00302{font-size:47.339972px;}
.fs8_c00302{font-size:47.339973px;}
.fs7_c00302{font-size:47.339974px;}
.fsa_c00302{font-size:47.339975px;}
.fse_c00302{font-size:51.630774px;}
.fs1_c00302{font-size:55.721735px;}
.fs3_c00302{font-size:59.949210px;}
.fsf_c00302{font-size:60.952192px;}
.fsd_c00302{font-size:67.323083px;}
.fs10_c00302{font-size:71.912067px;}
.fs0_c00302{font-size:71.957041px;}
.fsb_c00302{font-size:76.965540px;}
.fs2_c00302{font-size:89.946302px;}
.y0_c00302{bottom:0.000000px;}
.y1_c00302{bottom:0.000008px;}
.y56_c00302{bottom:30.156225px;}
.ya_c00302{bottom:97.446112px;}
.y9_c00302{bottom:127.802989px;}
.y8_c00302{bottom:158.159866px;}
.y7_c00302{bottom:188.516743px;}
.y6_c00302{bottom:218.873619px;}
.y5_c00302{bottom:249.230496px;}
.y4_c00302{bottom:279.587373px;}
.y51_c00302{bottom:318.246645px;}
.y53_c00302{bottom:402.064151px;}
.y1d_c00302{bottom:488.797686px;}
.y45_c00302{bottom:488.812751px;}
.y1c_c00302{bottom:489.322665px;}
.y46_c00302{bottom:489.342286px;}
.y2f_c00302{bottom:489.685757px;}
.y44_c00302{bottom:490.056714px;}
.y1b_c00302{bottom:490.388130px;}
.y30_c00302{bottom:490.518694px;}
.y2e_c00302{bottom:490.538719px;}
.y43_c00302{bottom:491.307329px;}
.y1a_c00302{bottom:491.460752px;}
.y2d_c00302{bottom:491.572971px;}
.y47_c00302{bottom:491.757389px;}
.y1e_c00302{bottom:491.820940px;}
.y31_c00302{bottom:492.698652px;}
.y42_c00302{bottom:492.951181px;}
.y19_c00302{bottom:493.111291px;}
.y2c_c00302{bottom:493.774393px;}
.y32_c00302{bottom:494.088685px;}
.y41_c00302{bottom:494.638434px;}
.y18_c00302{bottom:494.803825px;}
.y33_c00302{bottom:495.785920px;}
.y1f_c00302{bottom:496.095661px;}
.y40_c00302{bottom:496.502546px;}
.y17_c00302{bottom:496.672762px;}
.y48_c00302{bottom:496.855152px;}
.y2b_c00302{bottom:497.563758px;}
.y34_c00302{bottom:498.226778px;}
.y20_c00302{bottom:498.612904px;}
.y49_c00302{bottom:500.481148px;}
.y35_c00302{bottom:500.484495px;}
.y3f_c00302{bottom:501.154117px;}
.y16_c00302{bottom:501.333762px;}
.y2a_c00302{bottom:503.029233px;}
.y36_c00302{bottom:503.751383px;}
.y21_c00302{bottom:504.561850px;}
.y4a_c00302{bottom:506.111662px;}
.y29_c00302{bottom:507.493213px;}
.y3e_c00302{bottom:507.551720px;}
.y15_c00302{bottom:507.739689px;}
.y22_c00302{bottom:509.307805px;}
.y37_c00302{bottom:512.143767px;}
.y4b_c00302{bottom:512.765323px;}
.y28_c00302{bottom:513.914114px;}
.y3d_c00302{bottom:514.854387px;}
.y14_c00302{bottom:514.944477px;}
.y13_c00302{bottom:518.401214px;}
.y27_c00302{bottom:518.481364px;}
.y38_c00302{bottom:520.187940px;}
.y23_c00302{bottom:521.084677px;}
.y3c_c00302{bottom:522.011758px;}
.y12_c00302{bottom:524.407939px;}
.y4c_c00302{bottom:524.721304px;}
.y26_c00302{bottom:526.248889px;}
.y3b_c00302{bottom:526.778157px;}
.y4e_c00302{bottom:528.713512px;}
.y50_c00302{bottom:529.406872px;}
.y25_c00302{bottom:530.140170px;}
.y11_c00302{bottom:531.663155px;}
.y3a_c00302{bottom:532.946829px;}
.y24_c00302{bottom:533.317948px;}
.y4d_c00302{bottom:533.681443px;}
.y39_c00302{bottom:540.006012px;}
.y10_c00302{bottom:541.192181px;}
.y4f_c00302{bottom:572.856223px;}
.y2_c00302{bottom:597.559761px;}
.y3_c00302{bottom:639.489911px;}
.y54_c00302{bottom:641.588639px;}
.y57_c00302{bottom:929.256753px;}
.y52_c00302{bottom:975.992524px;}
.y55_c00302{bottom:1025.725019px;}
.ye_c00302{bottom:1127.585799px;}
.yc_c00302{bottom:1129.718199px;}
.yb_c00302{bottom:1147.707459px;}
.yf_c00302{bottom:1150.991694px;}
.yd_c00302{bottom:1170.658440px;}
.h11_c00302{height:32.157430px;}
.he_c00302{height:35.967282px;}
.hd_c00302{height:35.967283px;}
.hf_c00302{height:35.967285px;}
.hb_c00302{height:36.267779px;}
.ha_c00302{height:36.267781px;}
.hc_c00302{height:36.267783px;}
.h14_c00302{height:37.437353px;}
.h7_c00302{height:39.085184px;}
.h4_c00302{height:51.885424px;}
.h16_c00302{height:55.092790px;}
.h3_c00302{height:55.127245px;}
.h12_c00302{height:55.338224px;}
.h6_c00302{height:55.821847px;}
.h17_c00302{height:56.292308px;}
.h15_c00302{height:57.234109px;}
.h10_c00302{height:58.968279px;}
.h13_c00302{height:63.216375px;}
.h8_c00302{height:67.002968px;}
.h5_c00302{height:68.338108px;}
.h9_c00302{height:83.753709px;}
.h2_c00302{height:1304.999946px;}
.h0_c00302{height:1304.999953px;}
.h1_c00302{height:1305.000000px;}
.w2_c00302{width:934.874961px;}
.w0_c00302{width:934.875000px;}
.w1_c00302{width:935.250000px;}
.x0_c00302{left:0.000000px;}
.x3_c00302{left:89.206783px;}
.x4_c00302{left:108.062661px;}
.x5_c00302{left:109.658623px;}
.x41_c00302{left:112.166164px;}
.x3e_c00302{left:123.126220px;}
.x43_c00302{left:131.272077px;}
.x2b_c00302{left:136.250892px;}
.x2a_c00302{left:137.923304px;}
.x2c_c00302{left:141.294289px;}
.x2d_c00302{left:146.141843px;}
.x2e_c00302{left:151.504460px;}
.x2f_c00302{left:154.255626px;}
.x30_c00302{left:157.263726px;}
.x31_c00302{left:161.108906px;}
.x3b_c00302{left:162.704218px;}
.x32_c00302{left:164.560511px;}
.x33_c00302{left:172.840535px;}
.x34_c00302{left:181.105254px;}
.x35_c00302{left:189.531715px;}
.x36_c00302{left:197.913206px;}
.x37_c00302{left:202.078074px;}
.x38_c00302{left:206.633492px;}
.x39_c00302{left:210.440639px;}
.x3a_c00302{left:213.025908px;}
.x8_c00302{left:231.617511px;}
.x7_c00302{left:233.752441px;}
.x9_c00302{left:236.839305px;}
.xa_c00302{left:241.675687px;}
.xb_c00302{left:247.030147px;}
.xc_c00302{left:249.778063px;}
.xd_c00302{left:252.783196px;}
.xe_c00302{left:256.625487px;}
.x3d_c00302{left:257.825513px;}
.xf_c00302{left:259.910267px;}
.x10_c00302{left:264.344864px;}
.x11_c00302{left:272.957782px;}
.x12_c00302{left:284.791350px;}
.x13_c00302{left:292.224224px;}
.x6_c00302{left:295.438786px;}
.x14_c00302{left:300.953271px;}
.x15_c00302{left:304.340720px;}
.x16_c00302{left:308.350132px;}
.x17_c00302{left:326.735088px;}
.x18_c00302{left:327.951676px;}
.x19_c00302{left:329.371823px;}
.x1a_c00302{left:332.767014px;}
.x1b_c00302{left:335.989645px;}
.x1c_c00302{left:341.868395px;}
.x1d_c00302{left:348.051709px;}
.x1e_c00302{left:353.741290px;}
.x1f_c00302{left:357.149260px;}
.x20_c00302{left:365.051686px;}
.x21_c00302{left:373.035823px;}
.x22_c00302{left:379.791532px;}
.x23_c00302{left:382.809920px;}
.x24_c00302{left:385.812374px;}
.x25_c00302{left:389.208264px;}
.x26_c00302{left:391.823773px;}
.x27_c00302{left:395.136348px;}
.x28_c00302{left:400.308619px;}
.x29_c00302{left:403.111673px;}
.x42_c00302{left:451.985828px;}
.x1_c00302{left:465.097640px;}
.x2_c00302{left:676.474352px;}
.x40_c00302{left:689.936767px;}
.x3f_c00302{left:696.904800px;}
.x3c_c00302{left:734.459620px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.v1_c00302{vertical-align:23.831865pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.ws3_c00302{word-spacing:-41.590705pt;}
.ws4_c00302{word-spacing:-37.654910pt;}
.ws6_c00302{word-spacing:-37.035289pt;}
.ws5_c00302{word-spacing:-16.604696pt;}
.ws0_c00302{word-spacing:-12.866304pt;}
.ws7_c00302{word-spacing:0.000000pt;}
.ws2_c00302{word-spacing:239.867322pt;}
.ws1_c00302{word-spacing:980.198850pt;}
._6_c00302{margin-left:-16.615083pt;}
._2_c00302{width:3.060672pt;}
._4_c00302{width:5.788168pt;}
._5_c00302{width:6.741155pt;}
._1_c00302{width:14.393140pt;}
._3_c00302{width:18.407712pt;}
._0_c00302{width:31.370677pt;}
.fsc_c00302{font-size:37.310908pt;}
.fs4_c00302{font-size:37.311173pt;}
.fs6_c00302{font-size:42.079973pt;}
.fs9_c00302{font-size:42.079974pt;}
.fs5_c00302{font-size:42.079975pt;}
.fs8_c00302{font-size:42.079976pt;}
.fs7_c00302{font-size:42.079977pt;}
.fsa_c00302{font-size:42.079978pt;}
.fse_c00302{font-size:45.894021pt;}
.fs1_c00302{font-size:49.530431pt;}
.fs3_c00302{font-size:53.288186pt;}
.fsf_c00302{font-size:54.179727pt;}
.fsd_c00302{font-size:59.842741pt;}
.fs10_c00302{font-size:63.921837pt;}
.fs0_c00302{font-size:63.961814pt;}
.fsb_c00302{font-size:68.413814pt;}
.fs2_c00302{font-size:79.952268pt;}
.y0_c00302{bottom:0.000000pt;}
.y1_c00302{bottom:0.000007pt;}
.y56_c00302{bottom:26.805533pt;}
.ya_c00302{bottom:86.618766pt;}
.y9_c00302{bottom:113.602657pt;}
.y8_c00302{bottom:140.586547pt;}
.y7_c00302{bottom:167.570438pt;}
.y6_c00302{bottom:194.554328pt;}
.y5_c00302{bottom:221.538219pt;}
.y4_c00302{bottom:248.522109pt;}
.y51_c00302{bottom:282.885907pt;}
.y53_c00302{bottom:357.390356pt;}
.y1d_c00302{bottom:434.486832pt;}
.y45_c00302{bottom:434.500223pt;}
.y1c_c00302{bottom:434.953480pt;}
.y46_c00302{bottom:434.970921pt;}
.y2f_c00302{bottom:435.276229pt;}
.y44_c00302{bottom:435.605968pt;}
.y1b_c00302{bottom:435.900560pt;}
.y30_c00302{bottom:436.016617pt;}
.y2e_c00302{bottom:436.034417pt;}
.y43_c00302{bottom:436.717626pt;}
.y1a_c00302{bottom:436.854002pt;}
.y2d_c00302{bottom:436.953752pt;}
.y47_c00302{bottom:437.117679pt;}
.y1e_c00302{bottom:437.174169pt;}
.y31_c00302{bottom:437.954358pt;}
.y42_c00302{bottom:438.178828pt;}
.y19_c00302{bottom:438.321147pt;}
.y2c_c00302{bottom:438.910572pt;}
.y32_c00302{bottom:439.189942pt;}
.y41_c00302{bottom:439.678608pt;}
.y18_c00302{bottom:439.825623pt;}
.y33_c00302{bottom:440.698595pt;}
.y1f_c00302{bottom:440.973921pt;}
.y40_c00302{bottom:441.335597pt;}
.y17_c00302{bottom:441.486900pt;}
.y48_c00302{bottom:441.649024pt;}
.y2b_c00302{bottom:442.278896pt;}
.y34_c00302{bottom:442.868247pt;}
.y20_c00302{bottom:443.211470pt;}
.y49_c00302{bottom:444.872131pt;}
.y35_c00302{bottom:444.875107pt;}
.y3f_c00302{bottom:445.470326pt;}
.y16_c00302{bottom:445.630011pt;}
.y2a_c00302{bottom:447.137096pt;}
.y36_c00302{bottom:447.779007pt;}
.y21_c00302{bottom:448.499422pt;}
.y4a_c00302{bottom:449.877033pt;}
.y29_c00302{bottom:451.105078pt;}
.y3e_c00302{bottom:451.157085pt;}
.y15_c00302{bottom:451.324168pt;}
.y22_c00302{bottom:452.718049pt;}
.y37_c00302{bottom:455.238904pt;}
.y4b_c00302{bottom:455.791398pt;}
.y28_c00302{bottom:456.812545pt;}
.y3d_c00302{bottom:457.648344pt;}
.y14_c00302{bottom:457.728424pt;}
.y13_c00302{bottom:460.801079pt;}
.y27_c00302{bottom:460.872324pt;}
.y38_c00302{bottom:462.389280pt;}
.y23_c00302{bottom:463.186380pt;}
.y3c_c00302{bottom:464.010451pt;}
.y12_c00302{bottom:466.140390pt;}
.y4c_c00302{bottom:466.418937pt;}
.y26_c00302{bottom:467.776790pt;}
.y3b_c00302{bottom:468.247251pt;}
.y4e_c00302{bottom:469.967566pt;}
.y50_c00302{bottom:470.583886pt;}
.y25_c00302{bottom:471.235707pt;}
.y11_c00302{bottom:472.589471pt;}
.y3a_c00302{bottom:473.730514pt;}
.y24_c00302{bottom:474.060398pt;}
.y4d_c00302{bottom:474.383505pt;}
.y39_c00302{bottom:480.005344pt;}
.y10_c00302{bottom:481.059717pt;}
.y4f_c00302{bottom:509.205531pt;}
.y2_c00302{bottom:531.164232pt;}
.y3_c00302{bottom:568.435476pt;}
.y54_c00302{bottom:570.301012pt;}
.y57_c00302{bottom:826.006003pt;}
.y52_c00302{bottom:867.548910pt;}
.y55_c00302{bottom:911.755573pt;}
.ye_c00302{bottom:1002.298488pt;}
.yc_c00302{bottom:1004.193955pt;}
.yb_c00302{bottom:1020.184408pt;}
.yf_c00302{bottom:1023.103728pt;}
.yd_c00302{bottom:1040.585280pt;}
.h11_c00302{height:28.584382pt;}
.he_c00302{height:31.970917pt;}
.hd_c00302{height:31.970918pt;}
.hf_c00302{height:31.970920pt;}
.hb_c00302{height:32.238026pt;}
.ha_c00302{height:32.238028pt;}
.hc_c00302{height:32.238029pt;}
.h14_c00302{height:33.277647pt;}
.h7_c00302{height:34.742386pt;}
.h4_c00302{height:46.120377pt;}
.h16_c00302{height:48.971369pt;}
.h3_c00302{height:49.001996pt;}
.h12_c00302{height:49.189532pt;}
.h6_c00302{height:49.619420pt;}
.h17_c00302{height:50.037607pt;}
.h15_c00302{height:50.874763pt;}
.h10_c00302{height:52.416248pt;}
.h13_c00302{height:56.192334pt;}
.h8_c00302{height:59.558193pt;}
.h5_c00302{height:60.744985pt;}
.h9_c00302{height:74.447742pt;}
.h2_c00302{height:1159.999952pt;}
.h0_c00302{height:1159.999959pt;}
.h1_c00302{height:1160.000000pt;}
.w2_c00302{width:830.999965pt;}
.w0_c00302{width:831.000000pt;}
.w1_c00302{width:831.333333pt;}
.x0_c00302{left:0.000000pt;}
.x3_c00302{left:79.294918pt;}
.x4_c00302{left:96.055698pt;}
.x5_c00302{left:97.474332pt;}
.x41_c00302{left:99.703257pt;}
.x3e_c00302{left:109.445529pt;}
.x43_c00302{left:116.686291pt;}
.x2b_c00302{left:121.111904pt;}
.x2a_c00302{left:122.598492pt;}
.x2c_c00302{left:125.594923pt;}
.x2d_c00302{left:129.903861pt;}
.x2e_c00302{left:134.670631pt;}
.x2f_c00302{left:137.116112pt;}
.x30_c00302{left:139.789979pt;}
.x31_c00302{left:143.207916pt;}
.x3b_c00302{left:144.625972pt;}
.x32_c00302{left:146.276010pt;}
.x33_c00302{left:153.636031pt;}
.x34_c00302{left:160.982448pt;}
.x35_c00302{left:168.472635pt;}
.x36_c00302{left:175.922850pt;}
.x37_c00302{left:179.624955pt;}
.x38_c00302{left:183.674215pt;}
.x39_c00302{left:187.058346pt;}
.x3a_c00302{left:189.356362pt;}
.x8_c00302{left:205.882232pt;}
.x7_c00302{left:207.779947pt;}
.x9_c00302{left:210.523827pt;}
.xa_c00302{left:214.822832pt;}
.xb_c00302{left:219.582352pt;}
.xc_c00302{left:222.024945pt;}
.xd_c00302{left:224.696174pt;}
.xe_c00302{left:228.111544pt;}
.x3d_c00302{left:229.178234pt;}
.xf_c00302{left:231.031349pt;}
.x10_c00302{left:234.973212pt;}
.x11_c00302{left:242.629140pt;}
.x12_c00302{left:253.147867pt;}
.x13_c00302{left:259.754866pt;}
.x6_c00302{left:262.612255pt;}
.x14_c00302{left:267.514018pt;}
.x15_c00302{left:270.525084pt;}
.x16_c00302{left:274.089007pt;}
.x17_c00302{left:290.431189pt;}
.x18_c00302{left:291.512601pt;}
.x19_c00302{left:292.774954pt;}
.x1a_c00302{left:295.792902pt;}
.x1b_c00302{left:298.657462pt;}
.x1c_c00302{left:303.883018pt;}
.x1d_c00302{left:309.379297pt;}
.x1e_c00302{left:314.436702pt;}
.x1f_c00302{left:317.466009pt;}
.x20_c00302{left:324.490388pt;}
.x21_c00302{left:331.587398pt;}
.x22_c00302{left:337.592473pt;}
.x23_c00302{left:340.275484pt;}
.x24_c00302{left:342.944333pt;}
.x25_c00302{left:345.962901pt;}
.x26_c00302{left:348.287798pt;}
.x27_c00302{left:351.232309pt;}
.x28_c00302{left:355.829883pt;}
.x29_c00302{left:358.321487pt;}
.x42_c00302{left:401.765180pt;}
.x1_c00302{left:413.420124pt;}
.x2_c00302{left:601.310535pt;}
.x40_c00302{left:613.277126pt;}
.x3f_c00302{left:619.470933pt;}
.x3c_c00302{left:652.852995pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_563c512936d9c669cf03da82.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.171387;font-style:normal;font-weight:normal;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_62ab048033f6daa8b8baa031.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.000000;font-style:normal;font-weight:normal;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_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.006348;font-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_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;}
.ls0_c00303{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00303{word-spacing:-18.680283px;}
.ws1_c00303{word-spacing:0.000000px;}
._a_c00303{width:1.470601px;}
._9_c00303{width:2.499279px;}
._0_c00303{width:3.583797px;}
._2_c00303{width:4.923606px;}
._e_c00303{width:6.050115px;}
._f_c00303{width:7.076336px;}
._4_c00303{width:8.086122px;}
._d_c00303{width:9.585678px;}
._3_c00303{width:10.935171px;}
._c_c00303{width:12.310241px;}
._6_c00303{width:14.147778px;}
._7_c00303{width:15.334557px;}
._8_c00303{width:16.501842px;}
._1_c00303{width:17.590963px;}
._b_c00303{width:27.977010px;}
._10_c00303{width:29.012953px;}
._11_c00303{width:33.006022px;}
._5_c00303{width:38.756882px;}
.fc1_c00303{color:rgb(198,111,25);}
.fc0_c00303{color:rgb(0,0,0);}
.fs1_c00303{font-size:71.912067px;}
.fs0_c00303{font-size:71.957041px;}
.y0_c00303{bottom:0.000000px;}
.y1_c00303{bottom:0.000008px;}
.y26_c00303{bottom:30.156225px;}
.y24_c00303{bottom:63.861274px;}
.y23_c00303{bottom:94.218150px;}
.y22_c00303{bottom:124.575027px;}
.y21_c00303{bottom:154.931904px;}
.y20_c00303{bottom:185.288781px;}
.y1f_c00303{bottom:215.645657px;}
.y1e_c00303{bottom:246.002534px;}
.y1d_c00303{bottom:276.359411px;}
.y1c_c00303{bottom:306.716288px;}
.y1b_c00303{bottom:346.396448px;}
.y1a_c00303{bottom:408.978535px;}
.y19_c00303{bottom:439.335412px;}
.y18_c00303{bottom:469.692289px;}
.y17_c00303{bottom:500.049166px;}
.y16_c00303{bottom:530.406042px;}
.y15_c00303{bottom:560.762919px;}
.y14_c00303{bottom:591.119796px;}
.y13_c00303{bottom:621.476673px;}
.y12_c00303{bottom:651.833549px;}
.y11_c00303{bottom:682.190426px;}
.y10_c00303{bottom:712.547303px;}
.yf_c00303{bottom:742.904180px;}
.ye_c00303{bottom:773.261057px;}
.yd_c00303{bottom:803.617933px;}
.yc_c00303{bottom:833.974810px;}
.yb_c00303{bottom:864.331687px;}
.ya_c00303{bottom:894.688564px;}
.y25_c00303{bottom:929.143025px;}
.y8_c00303{bottom:983.405337px;}
.y7_c00303{bottom:1013.762214px;}
.y6_c00303{bottom:1044.119091px;}
.y5_c00303{bottom:1074.475968px;}
.y4_c00303{bottom:1104.832844px;}
.y3_c00303{bottom:1135.189721px;}
.y2_c00303{bottom:1165.546598px;}
.y9_c00303{bottom:1199.835078px;}
.h4_c00303{height:55.127245px;}
.h5_c00303{height:66.961090px;}
.h3_c00303{height:67.002968px;}
.h2_c00303{height:1304.999946px;}
.h0_c00303{height:1304.999953px;}
.h1_c00303{height:1305.000000px;}
.w2_c00303{width:934.874961px;}
.w0_c00303{width:934.875000px;}
.w1_c00303{width:935.250000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:87.850202px;}
.x2_c00303{left:451.985828px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws0_c00303{word-spacing:-16.604696pt;}
.ws1_c00303{word-spacing:0.000000pt;}
._a_c00303{width:1.307201pt;}
._9_c00303{width:2.221582pt;}
._0_c00303{width:3.185597pt;}
._2_c00303{width:4.376539pt;}
._e_c00303{width:5.377880pt;}
._f_c00303{width:6.290077pt;}
._4_c00303{width:7.187664pt;}
._d_c00303{width:8.520603pt;}
._3_c00303{width:9.720152pt;}
._c_c00303{width:10.942437pt;}
._6_c00303{width:12.575803pt;}
._7_c00303{width:13.630718pt;}
._8_c00303{width:14.668304pt;}
._1_c00303{width:15.636412pt;}
._b_c00303{width:24.868453pt;}
._10_c00303{width:25.789292pt;}
._11_c00303{width:29.338686pt;}
._5_c00303{width:34.450562pt;}
.fs1_c00303{font-size:63.921837pt;}
.fs0_c00303{font-size:63.961814pt;}
.y0_c00303{bottom:0.000000pt;}
.y1_c00303{bottom:0.000007pt;}
.y26_c00303{bottom:26.805533pt;}
.y24_c00303{bottom:56.765577pt;}
.y23_c00303{bottom:83.749467pt;}
.y22_c00303{bottom:110.733357pt;}
.y21_c00303{bottom:137.717248pt;}
.y20_c00303{bottom:164.701138pt;}
.y1f_c00303{bottom:191.685029pt;}
.y1e_c00303{bottom:218.668919pt;}
.y1d_c00303{bottom:245.652810pt;}
.y1c_c00303{bottom:272.636700pt;}
.y1b_c00303{bottom:307.907954pt;}
.y1a_c00303{bottom:363.536476pt;}
.y19_c00303{bottom:390.520366pt;}
.y18_c00303{bottom:417.504257pt;}
.y17_c00303{bottom:444.488147pt;}
.y16_c00303{bottom:471.472038pt;}
.y15_c00303{bottom:498.455928pt;}
.y14_c00303{bottom:525.439819pt;}
.y13_c00303{bottom:552.423709pt;}
.y12_c00303{bottom:579.407600pt;}
.y11_c00303{bottom:606.391490pt;}
.y10_c00303{bottom:633.375380pt;}
.yf_c00303{bottom:660.359271pt;}
.ye_c00303{bottom:687.343161pt;}
.yd_c00303{bottom:714.327052pt;}
.yc_c00303{bottom:741.310942pt;}
.yb_c00303{bottom:768.294833pt;}
.ya_c00303{bottom:795.278723pt;}
.y25_c00303{bottom:825.904911pt;}
.y8_c00303{bottom:874.138078pt;}
.y7_c00303{bottom:901.121968pt;}
.y6_c00303{bottom:928.105859pt;}
.y5_c00303{bottom:955.089749pt;}
.y4_c00303{bottom:982.073639pt;}
.y3_c00303{bottom:1009.057530pt;}
.y2_c00303{bottom:1036.041420pt;}
.y9_c00303{bottom:1066.520069pt;}
.h4_c00303{height:49.001996pt;}
.h5_c00303{height:59.520969pt;}
.h3_c00303{height:59.558193pt;}
.h2_c00303{height:1159.999952pt;}
.h0_c00303{height:1159.999959pt;}
.h1_c00303{height:1160.000000pt;}
.w2_c00303{width:830.999965pt;}
.w0_c00303{width:831.000000pt;}
.w1_c00303{width:831.333333pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:78.089069pt;}
.x2_c00303{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_613ada77bd066156576e9234.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.006348;font-style:normal;font-weight:normal;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_688d6d52dc57b83c3bbc8365.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.000000;font-style:normal;font-weight:normal;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_0ebdf86397a3fb4d4b68efd8.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:0.957031;font-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_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);}
.v0_c00304{vertical-align:0.000000px;}
.ls0_c00304{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00304{word-spacing:-18.680283px;}
.ws2_c00304{word-spacing:0.000000px;}
._3_c00304{width:3.181481px;}
._2_c00304{width:4.190636px;}
._4_c00304{width:6.378356px;}
._1_c00304{width:10.417607px;}
._0_c00304{width:12.402753px;}
._7_c00304{width:17.350375px;}
._6_c00304{width:25.431489px;}
._5_c00304{width:31.621746px;}
.fc1_c00304{color:rgb(198,111,25);}
.fc0_c00304{color:rgb(0,0,0);}
.fs1_c00304{font-size:71.912067px;}
.fs0_c00304{font-size:71.957041px;}
.y0_c00304{bottom:0.000000px;}
.y1_c00304{bottom:0.000008px;}
.ye_c00304{bottom:30.156225px;}
.yd_c00304{bottom:815.101750px;}
.yc_c00304{bottom:845.458626px;}
.yb_c00304{bottom:875.815503px;}
.ya_c00304{bottom:920.376554px;}
.y9_c00304{bottom:987.786674px;}
.y8_c00304{bottom:1018.143550px;}
.y7_c00304{bottom:1048.500427px;}
.y6_c00304{bottom:1078.857304px;}
.y5_c00304{bottom:1109.214181px;}
.y4_c00304{bottom:1139.571057px;}
.y3_c00304{bottom:1169.927934px;}
.y2_c00304{bottom:1200.284811px;}
.h4_c00304{height:51.578582px;}
.h5_c00304{height:55.092790px;}
.h3_c00304{height:55.127245px;}
.h2_c00304{height:1304.999946px;}
.h0_c00304{height:1304.999953px;}
.h1_c00304{height:1305.000000px;}
.w2_c00304{width:934.874961px;}
.w0_c00304{width:934.875000px;}
.w1_c00304{width:935.250000px;}
.x0_c00304{left:0.000000px;}
.x1_c00304{left:87.850202px;}
.x2_c00304{left:451.985828px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls0_c00304{letter-spacing:0.000000pt;}
.ws0_c00304{word-spacing:-16.615081pt;}
.ws1_c00304{word-spacing:-16.604696pt;}
.ws2_c00304{word-spacing:0.000000pt;}
._3_c00304{width:2.827984pt;}
._2_c00304{width:3.725009pt;}
._4_c00304{width:5.669650pt;}
._1_c00304{width:9.260095pt;}
._0_c00304{width:11.024670pt;}
._7_c00304{width:15.422556pt;}
._6_c00304{width:22.605768pt;}
._5_c00304{width:28.108219pt;}
.fs1_c00304{font-size:63.921837pt;}
.fs0_c00304{font-size:63.961814pt;}
.y0_c00304{bottom:0.000000pt;}
.y1_c00304{bottom:0.000007pt;}
.ye_c00304{bottom:26.805533pt;}
.yd_c00304{bottom:724.534889pt;}
.yc_c00304{bottom:751.518779pt;}
.yb_c00304{bottom:778.502670pt;}
.ya_c00304{bottom:818.112492pt;}
.y9_c00304{bottom:878.032599pt;}
.y8_c00304{bottom:905.016489pt;}
.y7_c00304{bottom:932.000380pt;}
.y6_c00304{bottom:958.984270pt;}
.y5_c00304{bottom:985.968161pt;}
.y4_c00304{bottom:1012.952051pt;}
.y3_c00304{bottom:1039.935941pt;}
.y2_c00304{bottom:1066.919832pt;}
.h4_c00304{height:45.847629pt;}
.h5_c00304{height:48.971369pt;}
.h3_c00304{height:49.001996pt;}
.h2_c00304{height:1159.999952pt;}
.h0_c00304{height:1159.999959pt;}
.h1_c00304{height:1160.000000pt;}
.w2_c00304{width:830.999965pt;}
.w0_c00304{width:831.000000pt;}
.w1_c00304{width:831.333333pt;}
.x0_c00304{left:0.000000pt;}
.x1_c00304{left:78.089069pt;}
.x2_c00304{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f292d35513592c28836b008.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.006348;font-style:normal;font-weight:normal;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_d0647cf0c2d48444ac5533d0.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:0.772949;font-style:normal;font-weight:normal;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_4152c202195bd37793bceb0b.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.171387;font-style:normal;font-weight:normal;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_70b8355a8adcd81f1241584f.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;line-height:1.000000;font-style:normal;font-weight: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_c00305;src:url('chunks/assets/font_5a871c7d0ec34388f6b41c0e.woff2')format("woff");}.ff5_c00305{font-family:ff5_c00305;line-height:1.000000;font-style:normal;font-weight: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_c00305;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff6_c00305{font-family:ff6_c00305;line-height:1.006348;font-style:normal;font-weight: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_c00305;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00305{font-family:ff7_c00305;line-height:0.769531;font-style:normal;font-weight: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_c00305;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff8_c00305{font-family:ff8_c00305;line-height:0.743000;font-style:normal;font-weight: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_c00305;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00305{font-family:ff9_c00305;line-height:0.734863;font-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_c00305{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00305{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00305{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00305{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00305{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00305{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00305{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00305{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00305{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00305{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00305{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00305{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00305{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00305{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00305{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00305{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00305{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00305{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00305{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00305{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00305{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00305{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00305{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00305{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00305{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00305{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00305{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00305{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00305{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00305{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00305{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00305{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00305{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00305{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00305{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00305{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00305{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00305{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00305{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00305{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00305{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00305{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00305{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00305{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00305{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00305{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00305{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00305{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00305{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00305{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00305{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00305{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00305{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00305{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00305{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00305{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00305{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00305{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00305{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00305{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00305{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00305{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00305{vertical-align:0.000000px;}
.v1_c00305{vertical-align:26.810561px;}
.ls0_c00305{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00305{word-spacing:-18.680283px;}
.ws3_c00305{word-spacing:0.000000px;}
.ws1_c00305{word-spacing:281.470806px;}
.ws0_c00305{word-spacing:1114.343689px;}
._3_c00305{width:3.373947px;}
._0_c00305{width:5.275642px;}
._1_c00305{width:24.366313px;}
._2_c00305{width:26.154640px;}
.fc3_c00305{color:rgb(9,71,81);}
.fc2_c00305{color:rgb(198,111,25);}
.fc1_c00305{color:rgb(255,255,255);}
.fc0_c00305{color:rgb(0,0,0);}
.fsc_c00305{font-size:41.974772px;}
.fs4_c00305{font-size:41.975069px;}
.fs6_c00305{font-size:47.339969px;}
.fs9_c00305{font-size:47.339970px;}
.fs5_c00305{font-size:47.339972px;}
.fs8_c00305{font-size:47.339973px;}
.fs7_c00305{font-size:47.339974px;}
.fsa_c00305{font-size:47.339975px;}
.fsd_c00305{font-size:51.630774px;}
.fs1_c00305{font-size:55.721735px;}
.fs3_c00305{font-size:59.949210px;}
.fse_c00305{font-size:71.912067px;}
.fs0_c00305{font-size:71.957041px;}
.fsb_c00305{font-size:76.965540px;}
.fs2_c00305{font-size:89.946302px;}
.y0_c00305{bottom:0.000000px;}
.y1_c00305{bottom:0.000008px;}
.y52_c00305{bottom:30.156225px;}
.y9_c00305{bottom:127.073665px;}
.y8_c00305{bottom:157.430542px;}
.y7_c00305{bottom:187.787419px;}
.y6_c00305{bottom:218.144295px;}
.y5_c00305{bottom:248.501172px;}
.y4_c00305{bottom:278.858049px;}
.yf_c00305{bottom:314.873661px;}
.y51_c00305{bottom:402.064151px;}
.y1d_c00305{bottom:493.812629px;}
.y45_c00305{bottom:493.827623px;}
.y1c_c00305{bottom:494.337609px;}
.y46_c00305{bottom:494.357158px;}
.y2f_c00305{bottom:494.700737px;}
.y44_c00305{bottom:495.071586px;}
.y1b_c00305{bottom:495.403002px;}
.y30_c00305{bottom:495.533530px;}
.y2e_c00305{bottom:495.553663px;}
.y43_c00305{bottom:496.322201px;}
.y1a_c00305{bottom:496.475623px;}
.y2d_c00305{bottom:496.587915px;}
.y47_c00305{bottom:496.772260px;}
.y1e_c00305{bottom:496.835884px;}
.y31_c00305{bottom:497.713596px;}
.y42_c00305{bottom:497.966053px;}
.y19_c00305{bottom:498.126234px;}
.y2c_c00305{bottom:498.789265px;}
.y32_c00305{bottom:499.103521px;}
.y41_c00305{bottom:499.653306px;}
.y18_c00305{bottom:499.818769px;}
.y33_c00305{bottom:500.800864px;}
.y1f_c00305{bottom:501.110605px;}
.y40_c00305{bottom:501.517382px;}
.y17_c00305{bottom:501.687706px;}
.y48_c00305{bottom:501.869915px;}
.y2b_c00305{bottom:502.578702px;}
.y34_c00305{bottom:503.241722px;}
.y20_c00305{bottom:503.627848px;}
.y49_c00305{bottom:505.496019px;}
.y35_c00305{bottom:505.499367px;}
.y3f_c00305{bottom:506.168989px;}
.y16_c00305{bottom:506.348634px;}
.y2a_c00305{bottom:508.044213px;}
.y36_c00305{bottom:508.766327px;}
.y21_c00305{bottom:509.576794px;}
.y4a_c00305{bottom:511.126534px;}
.y29_c00305{bottom:512.508085px;}
.y3e_c00305{bottom:512.566592px;}
.y15_c00305{bottom:512.754669px;}
.y22_c00305{bottom:514.322677px;}
.y37_c00305{bottom:517.158603px;}
.y4b_c00305{bottom:517.780195px;}
.y28_c00305{bottom:518.929057px;}
.y3d_c00305{bottom:519.869222px;}
.y14_c00305{bottom:519.959421px;}
.y13_c00305{bottom:523.416158px;}
.y27_c00305{bottom:523.496236px;}
.y38_c00305{bottom:525.202812px;}
.y23_c00305{bottom:526.099549px;}
.y3c_c00305{bottom:527.026630px;}
.y12_c00305{bottom:529.422883px;}
.y4c_c00305{bottom:529.736175px;}
.y26_c00305{bottom:531.263725px;}
.y3b_c00305{bottom:531.792993px;}
.y4e_c00305{bottom:533.728456px;}
.y4f_c00305{bottom:534.421816px;}
.y25_c00305{bottom:535.155114px;}
.y11_c00305{bottom:536.678099px;}
.y3a_c00305{bottom:537.961701px;}
.y24_c00305{bottom:538.332892px;}
.y4d_c00305{bottom:538.696314px;}
.y39_c00305{bottom:545.020884px;}
.y10_c00305{bottom:546.207017px;}
.y50_c00305{bottom:577.871130px;}
.y2_c00305{bottom:597.559761px;}
.y3_c00305{bottom:639.489911px;}
.yd_c00305{bottom:1127.585799px;}
.yb_c00305{bottom:1129.718199px;}
.ya_c00305{bottom:1147.707459px;}
.ye_c00305{bottom:1150.991694px;}
.yc_c00305{bottom:1170.658440px;}
.h12_c00305{height:32.157430px;}
.he_c00305{height:35.967282px;}
.hd_c00305{height:35.967283px;}
.hf_c00305{height:35.967285px;}
.hb_c00305{height:36.267779px;}
.ha_c00305{height:36.267781px;}
.hc_c00305{height:36.267783px;}
.h13_c00305{height:37.437353px;}
.h7_c00305{height:39.085184px;}
.h4_c00305{height:51.885424px;}
.h14_c00305{height:55.092790px;}
.h3_c00305{height:55.127245px;}
.h6_c00305{height:55.821847px;}
.h11_c00305{height:56.261810px;}
.h10_c00305{height:58.967991px;}
.h8_c00305{height:67.002968px;}
.h5_c00305{height:68.338108px;}
.h9_c00305{height:83.753709px;}
.h2_c00305{height:1304.999946px;}
.h0_c00305{height:1304.999953px;}
.h1_c00305{height:1305.000000px;}
.w2_c00305{width:934.874961px;}
.w0_c00305{width:934.875000px;}
.w1_c00305{width:935.250000px;}
.x0_c00305{left:0.000000px;}
.x3_c00305{left:89.206783px;}
.x4_c00305{left:108.062661px;}
.x5_c00305{left:109.658623px;}
.x2c_c00305{left:134.894322px;}
.x2b_c00305{left:136.566734px;}
.x2d_c00305{left:139.937719px;}
.x2e_c00305{left:144.785273px;}
.x2f_c00305{left:150.147890px;}
.x30_c00305{left:152.899057px;}
.x31_c00305{left:155.907145px;}
.x32_c00305{left:159.752336px;}
.x3c_c00305{left:161.347648px;}
.x33_c00305{left:163.203941px;}
.x34_c00305{left:171.483965px;}
.x35_c00305{left:179.748684px;}
.x36_c00305{left:188.175145px;}
.x37_c00305{left:196.556636px;}
.x38_c00305{left:200.721504px;}
.x39_c00305{left:205.276922px;}
.x3a_c00305{left:209.084069px;}
.x3b_c00305{left:211.669316px;}
.x8_c00305{left:230.260919px;}
.x7_c00305{left:232.395871px;}
.x9_c00305{left:235.482735px;}
.xa_c00305{left:240.319117px;}
.xb_c00305{left:245.673577px;}
.xc_c00305{left:248.421493px;}
.xd_c00305{left:251.426626px;}
.xe_c00305{left:255.268917px;}
.x3d_c00305{left:256.468943px;}
.xf_c00305{left:258.553698px;}
.x10_c00305{left:262.988294px;}
.x11_c00305{left:271.601212px;}
.x12_c00305{left:283.434780px;}
.x13_c00305{left:290.867654px;}
.x14_c00305{left:294.260334px;}
.x6_c00305{left:295.438786px;}
.x15_c00305{left:299.596701px;}
.x16_c00305{left:302.984150px;}
.x17_c00305{left:306.993562px;}
.x18_c00305{left:325.378518px;}
.x19_c00305{left:326.595106px;}
.x1a_c00305{left:328.015253px;}
.x1b_c00305{left:331.410444px;}
.x1c_c00305{left:334.633053px;}
.x1d_c00305{left:340.511825px;}
.x1e_c00305{left:346.695139px;}
.x1f_c00305{left:352.384720px;}
.x20_c00305{left:355.792694px;}
.x21_c00305{left:363.695116px;}
.x22_c00305{left:371.679253px;}
.x23_c00305{left:378.434940px;}
.x24_c00305{left:381.453328px;}
.x25_c00305{left:384.455783px;}
.x26_c00305{left:387.851715px;}
.x27_c00305{left:390.467224px;}
.x28_c00305{left:393.779799px;}
.x29_c00305{left:398.952070px;}
.x2a_c00305{left:401.755082px;}
.x40_c00305{left:451.985828px;}
.x1_c00305{left:465.097640px;}
.x2_c00305{left:676.474352px;}
.x3f_c00305{left:696.904800px;}
.x3e_c00305{left:733.103068px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.v1_c00305{vertical-align:23.831609pt;}
.ls0_c00305{letter-spacing:0.000000pt;}
.ws2_c00305{word-spacing:-16.604696pt;}
.ws3_c00305{word-spacing:0.000000pt;}
.ws1_c00305{word-spacing:250.196272pt;}
.ws0_c00305{word-spacing:990.527723pt;}
._3_c00305{width:2.999064pt;}
._0_c00305{width:4.689460pt;}
._1_c00305{width:21.658945pt;}
._2_c00305{width:23.248569pt;}
.fsc_c00305{font-size:37.310908pt;}
.fs4_c00305{font-size:37.311173pt;}
.fs6_c00305{font-size:42.079973pt;}
.fs9_c00305{font-size:42.079974pt;}
.fs5_c00305{font-size:42.079975pt;}
.fs8_c00305{font-size:42.079976pt;}
.fs7_c00305{font-size:42.079977pt;}
.fsa_c00305{font-size:42.079978pt;}
.fsd_c00305{font-size:45.894021pt;}
.fs1_c00305{font-size:49.530431pt;}
.fs3_c00305{font-size:53.288186pt;}
.fse_c00305{font-size:63.921837pt;}
.fs0_c00305{font-size:63.961814pt;}
.fsb_c00305{font-size:68.413814pt;}
.fs2_c00305{font-size:79.952268pt;}
.y0_c00305{bottom:0.000000pt;}
.y1_c00305{bottom:0.000007pt;}
.y52_c00305{bottom:26.805533pt;}
.y9_c00305{bottom:112.954369pt;}
.y8_c00305{bottom:139.938259pt;}
.y7_c00305{bottom:166.922150pt;}
.y6_c00305{bottom:193.906040pt;}
.y5_c00305{bottom:220.889931pt;}
.y4_c00305{bottom:247.873821pt;}
.yf_c00305{bottom:279.887699pt;}
.y51_c00305{bottom:357.390356pt;}
.y1d_c00305{bottom:438.944560pt;}
.y45_c00305{bottom:438.957887pt;}
.y1c_c00305{bottom:439.411208pt;}
.y46_c00305{bottom:439.428585pt;}
.y2f_c00305{bottom:439.733989pt;}
.y44_c00305{bottom:440.063632pt;}
.y1b_c00305{bottom:440.358224pt;}
.y30_c00305{bottom:440.474249pt;}
.y2e_c00305{bottom:440.492144pt;}
.y43_c00305{bottom:441.175290pt;}
.y1a_c00305{bottom:441.311665pt;}
.y2d_c00305{bottom:441.411480pt;}
.y47_c00305{bottom:441.575343pt;}
.y1e_c00305{bottom:441.631897pt;}
.y31_c00305{bottom:442.412085pt;}
.y42_c00305{bottom:442.636491pt;}
.y19_c00305{bottom:442.778875pt;}
.y2c_c00305{bottom:443.368235pt;}
.y32_c00305{bottom:443.647574pt;}
.y41_c00305{bottom:444.136272pt;}
.y18_c00305{bottom:444.283350pt;}
.y33_c00305{bottom:445.156323pt;}
.y1f_c00305{bottom:445.431649pt;}
.y40_c00305{bottom:445.793228pt;}
.y17_c00305{bottom:445.944627pt;}
.y48_c00305{bottom:446.106592pt;}
.y2b_c00305{bottom:446.736624pt;}
.y34_c00305{bottom:447.325975pt;}
.y20_c00305{bottom:447.669198pt;}
.y49_c00305{bottom:449.329795pt;}
.y35_c00305{bottom:449.332771pt;}
.y3f_c00305{bottom:449.927990pt;}
.y16_c00305{bottom:450.087675pt;}
.y2a_c00305{bottom:451.594856pt;}
.y36_c00305{bottom:452.236735pt;}
.y21_c00305{bottom:452.957150pt;}
.y4a_c00305{bottom:454.334697pt;}
.y29_c00305{bottom:455.562742pt;}
.y3e_c00305{bottom:455.614749pt;}
.y15_c00305{bottom:455.781928pt;}
.y22_c00305{bottom:457.175713pt;}
.y37_c00305{bottom:459.696536pt;}
.y4b_c00305{bottom:460.249062pt;}
.y28_c00305{bottom:461.270273pt;}
.y3d_c00305{bottom:462.105976pt;}
.y14_c00305{bottom:462.186152pt;}
.y13_c00305{bottom:465.258807pt;}
.y27_c00305{bottom:465.329988pt;}
.y38_c00305{bottom:466.846944pt;}
.y23_c00305{bottom:467.644044pt;}
.y3c_c00305{bottom:468.468115pt;}
.y12_c00305{bottom:470.598118pt;}
.y4c_c00305{bottom:470.876600pt;}
.y26_c00305{bottom:472.234422pt;}
.y3b_c00305{bottom:472.704883pt;}
.y4e_c00305{bottom:474.425294pt;}
.y4f_c00305{bottom:475.041614pt;}
.y25_c00305{bottom:475.693435pt;}
.y11_c00305{bottom:477.047199pt;}
.y3a_c00305{bottom:478.188178pt;}
.y24_c00305{bottom:478.518126pt;}
.y4d_c00305{bottom:478.841168pt;}
.y39_c00305{bottom:484.463008pt;}
.y10_c00305{bottom:485.517349pt;}
.y50_c00305{bottom:513.663227pt;}
.y2_c00305{bottom:531.164232pt;}
.y3_c00305{bottom:568.435476pt;}
.yd_c00305{bottom:1002.298488pt;}
.yb_c00305{bottom:1004.193955pt;}
.ya_c00305{bottom:1020.184408pt;}
.ye_c00305{bottom:1023.103728pt;}
.yc_c00305{bottom:1040.585280pt;}
.h12_c00305{height:28.584382pt;}
.he_c00305{height:31.970917pt;}
.hd_c00305{height:31.970918pt;}
.hf_c00305{height:31.970920pt;}
.hb_c00305{height:32.238026pt;}
.ha_c00305{height:32.238028pt;}
.hc_c00305{height:32.238029pt;}
.h13_c00305{height:33.277647pt;}
.h7_c00305{height:34.742386pt;}
.h4_c00305{height:46.120377pt;}
.h14_c00305{height:48.971369pt;}
.h3_c00305{height:49.001996pt;}
.h6_c00305{height:49.619420pt;}
.h11_c00305{height:50.010498pt;}
.h10_c00305{height:52.415992pt;}
.h8_c00305{height:59.558193pt;}
.h5_c00305{height:60.744985pt;}
.h9_c00305{height:74.447742pt;}
.h2_c00305{height:1159.999952pt;}
.h0_c00305{height:1159.999959pt;}
.h1_c00305{height:1160.000000pt;}
.w2_c00305{width:830.999965pt;}
.w0_c00305{width:831.000000pt;}
.w1_c00305{width:831.333333pt;}
.x0_c00305{left:0.000000pt;}
.x3_c00305{left:79.294918pt;}
.x4_c00305{left:96.055698pt;}
.x5_c00305{left:97.474332pt;}
.x2c_c00305{left:119.906064pt;}
.x2b_c00305{left:121.392652pt;}
.x2d_c00305{left:124.389083pt;}
.x2e_c00305{left:128.698021pt;}
.x2f_c00305{left:133.464791pt;}
.x30_c00305{left:135.910272pt;}
.x31_c00305{left:138.584129pt;}
.x32_c00305{left:142.002076pt;}
.x3c_c00305{left:143.420132pt;}
.x33_c00305{left:145.070170pt;}
.x34_c00305{left:152.430191pt;}
.x35_c00305{left:159.776608pt;}
.x36_c00305{left:167.266795pt;}
.x37_c00305{left:174.717010pt;}
.x38_c00305{left:178.419115pt;}
.x39_c00305{left:182.468375pt;}
.x3a_c00305{left:185.852506pt;}
.x3b_c00305{left:188.150503pt;}
.x8_c00305{left:204.676373pt;}
.x7_c00305{left:206.574107pt;}
.x9_c00305{left:209.317987pt;}
.xa_c00305{left:213.616993pt;}
.xb_c00305{left:218.376513pt;}
.xc_c00305{left:220.819105pt;}
.xd_c00305{left:223.490334pt;}
.xe_c00305{left:226.905704pt;}
.x3d_c00305{left:227.972394pt;}
.xf_c00305{left:229.825509pt;}
.x10_c00305{left:233.767373pt;}
.x11_c00305{left:241.423300pt;}
.x12_c00305{left:251.942027pt;}
.x13_c00305{left:258.549026pt;}
.x14_c00305{left:261.564741pt;}
.x6_c00305{left:262.612255pt;}
.x15_c00305{left:266.308178pt;}
.x16_c00305{left:269.319244pt;}
.x17_c00305{left:272.883167pt;}
.x18_c00305{left:289.225349pt;}
.x19_c00305{left:290.306761pt;}
.x1a_c00305{left:291.569114pt;}
.x1b_c00305{left:294.587062pt;}
.x1c_c00305{left:297.451603pt;}
.x1d_c00305{left:302.677178pt;}
.x1e_c00305{left:308.173457pt;}
.x1f_c00305{left:313.230862pt;}
.x20_c00305{left:316.260173pt;}
.x21_c00305{left:323.284548pt;}
.x22_c00305{left:330.381558pt;}
.x23_c00305{left:336.386614pt;}
.x24_c00305{left:339.069625pt;}
.x25_c00305{left:341.738474pt;}
.x26_c00305{left:344.757080pt;}
.x27_c00305{left:347.081977pt;}
.x28_c00305{left:350.026488pt;}
.x29_c00305{left:354.624063pt;}
.x2a_c00305{left:357.115628pt;}
.x40_c00305{left:401.765180pt;}
.x1_c00305{left:413.420124pt;}
.x2_c00305{left:601.310535pt;}
.x3f_c00305{left:619.470933pt;}
.x3e_c00305{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67df0b6060f85bc04be808ef.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.006348;font-style:normal;font-weight:normal;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_5b5cd5eb778cdfdacad737bb.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.000000;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.006348;font-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_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);}
.v0_c00306{vertical-align:0.000000px;}
.ls1_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:0.035136px;}
.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;}
}
.ws0_c00306{word-spacing:-18.691966px;}
.ws1_c00306{word-spacing:-18.680283px;}
.ws2_c00306{word-spacing:0.000000px;}
._5_c00306{width:2.078811px;}
._3_c00306{width:3.355420px;}
._0_c00306{width:4.649519px;}
._1_c00306{width:6.450822px;}
._a_c00306{width:8.214586px;}
._4_c00306{width:10.011423px;}
._6_c00306{width:12.992226px;}
._7_c00306{width:15.475097px;}
._2_c00306{width:16.696254px;}
._b_c00306{width:20.835217px;}
._9_c00306{width:22.940929px;}
._8_c00306{width:32.215821px;}
.fc1_c00306{color:rgb(198,111,25);}
.fc0_c00306{color:rgb(0,0,0);}
.fs1_c00306{font-size:71.912067px;}
.fs0_c00306{font-size:71.957041px;}
.y0_c00306{bottom:0.000000px;}
.y1_c00306{bottom:0.000008px;}
.y1e_c00306{bottom:30.156225px;}
.y1c_c00306{bottom:229.990455px;}
.y1b_c00306{bottom:260.347332px;}
.y1a_c00306{bottom:290.704208px;}
.y1d_c00306{bottom:325.056873px;}
.y18_c00306{bottom:394.090556px;}
.y17_c00306{bottom:424.447433px;}
.y16_c00306{bottom:454.804309px;}
.y15_c00306{bottom:485.161186px;}
.y14_c00306{bottom:515.518063px;}
.y13_c00306{bottom:545.874940px;}
.y12_c00306{bottom:576.231816px;}
.y11_c00306{bottom:606.588693px;}
.y10_c00306{bottom:636.945570px;}
.yf_c00306{bottom:676.625658px;}
.ye_c00306{bottom:745.659534px;}
.yd_c00306{bottom:776.016410px;}
.yc_c00306{bottom:806.373287px;}
.yb_c00306{bottom:836.730164px;}
.ya_c00306{bottom:867.087041px;}
.y19_c00306{bottom:906.811031px;}
.y8_c00306{bottom:975.481831px;}
.y7_c00306{bottom:1005.838708px;}
.y6_c00306{bottom:1036.195585px;}
.y5_c00306{bottom:1066.552462px;}
.y4_c00306{bottom:1096.909338px;}
.y3_c00306{bottom:1127.266215px;}
.y2_c00306{bottom:1157.623092px;}
.y9_c00306{bottom:1199.835078px;}
.h4_c00306{height:55.092790px;}
.h3_c00306{height:55.127245px;}
.h2_c00306{height:1304.999946px;}
.h0_c00306{height:1304.999953px;}
.h1_c00306{height:1305.000000px;}
.w2_c00306{width:934.874961px;}
.w0_c00306{width:934.875000px;}
.w1_c00306{width:935.250000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:87.850202px;}
.x2_c00306{left:451.985828px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls1_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:0.031232pt;}
.ws0_c00306{word-spacing:-16.615081pt;}
.ws1_c00306{word-spacing:-16.604696pt;}
.ws2_c00306{word-spacing:0.000000pt;}
._5_c00306{width:1.847832pt;}
._3_c00306{width:2.982595pt;}
._0_c00306{width:4.132906pt;}
._1_c00306{width:5.734064pt;}
._a_c00306{width:7.301854pt;}
._4_c00306{width:8.899043pt;}
._6_c00306{width:11.548645pt;}
._7_c00306{width:13.755641pt;}
._2_c00306{width:14.841115pt;}
._b_c00306{width:18.520193pt;}
._9_c00306{width:20.391937pt;}
._8_c00306{width:28.636285pt;}
.fs1_c00306{font-size:63.921837pt;}
.fs0_c00306{font-size:63.961814pt;}
.y0_c00306{bottom:0.000000pt;}
.y1_c00306{bottom:0.000007pt;}
.y1e_c00306{bottom:26.805533pt;}
.y1c_c00306{bottom:204.435960pt;}
.y1b_c00306{bottom:231.419850pt;}
.y1a_c00306{bottom:258.403741pt;}
.y1d_c00306{bottom:288.939442pt;}
.y18_c00306{bottom:350.302716pt;}
.y17_c00306{bottom:377.286607pt;}
.y16_c00306{bottom:404.270497pt;}
.y15_c00306{bottom:431.254388pt;}
.y14_c00306{bottom:458.238278pt;}
.y13_c00306{bottom:485.222169pt;}
.y12_c00306{bottom:512.206059pt;}
.y11_c00306{bottom:539.189950pt;}
.y10_c00306{bottom:566.173840pt;}
.yf_c00306{bottom:601.445029pt;}
.ye_c00306{bottom:662.808474pt;}
.yd_c00306{bottom:689.792365pt;}
.yc_c00306{bottom:716.776255pt;}
.yb_c00306{bottom:743.760146pt;}
.ya_c00306{bottom:770.744036pt;}
.y19_c00306{bottom:806.054250pt;}
.y8_c00306{bottom:867.094961pt;}
.y7_c00306{bottom:894.078852pt;}
.y6_c00306{bottom:921.062742pt;}
.y5_c00306{bottom:948.046632pt;}
.y4_c00306{bottom:975.030523pt;}
.y3_c00306{bottom:1002.014413pt;}
.y2_c00306{bottom:1028.998304pt;}
.y9_c00306{bottom:1066.520069pt;}
.h4_c00306{height:48.971369pt;}
.h3_c00306{height:49.001996pt;}
.h2_c00306{height:1159.999952pt;}
.h0_c00306{height:1159.999959pt;}
.h1_c00306{height:1160.000000pt;}
.w2_c00306{width:830.999965pt;}
.w0_c00306{width:831.000000pt;}
.w1_c00306{width:831.333333pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:78.089069pt;}
.x2_c00306{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2f37cfc4b47632112e5248a.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00307;src:url('chunks/assets/font_a6a9a5c8e7a8f63ec81294c8.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.000000;font-style:normal;font-weight: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_c00307;src:url('chunks/assets/font_fd875612b92f4d44ebfc8bff.woff2')format("woff");}.ff5_c00307{font-family:ff5_c00307;line-height:1.171387;font-style:normal;font-weight: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_c00307;src:url('chunks/assets/font_975090b3e5bdf223eb0fb1cb.woff2')format("woff");}.ff6_c00307{font-family:ff6_c00307;line-height:0.769531;font-style:normal;font-weight: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_c00307;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00307{font-family:ff7_c00307;line-height:1.006348;font-style:normal;font-weight: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_c00307;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00307{font-family:ff8_c00307;line-height:0.734863;font-style:normal;font-weight: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_c00307;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00307{font-family:ff9_c00307;line-height:0.940000;font-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_c00307{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00307{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00307{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00307{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00307{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00307{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00307{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00307{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00307{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00307{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00307{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00307{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00307{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00307{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00307{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00307{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00307{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00307{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00307{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00307{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00307{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00307{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00307{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00307{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00307{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00307{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00307{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00307{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00307{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00307{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00307{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00307{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00307{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00307{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00307{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00307{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00307{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00307{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00307{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00307{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00307{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00307{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00307{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00307{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00307{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00307{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00307{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00307{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00307{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00307{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00307{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00307{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00307{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00307{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00307{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00307{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00307{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00307{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00307{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00307{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00307{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00307{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00307{vertical-align:0.000000px;}
.v1_c00307{vertical-align:2.773440px;}
.ls0_c00307{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00307{word-spacing:-41.664701px;}
.ws3_c00307{word-spacing:-18.680283px;}
.ws2_c00307{word-spacing:-17.126514px;}
.ws5_c00307{word-spacing:0.000000px;}
.ws1_c00307{word-spacing:281.470806px;}
.ws0_c00307{word-spacing:281.744147px;}
._2_c00307{width:1.085281px;}
._1_c00307{width:6.863041px;}
._0_c00307{width:8.245053px;}
._4_c00307{width:14.858996px;}
._3_c00307{width:20.605468px;}
._5_c00307{width:35.170408px;}
.fc3_c00307{color:rgb(9,71,81);}
.fc2_c00307{color:rgb(198,111,25);}
.fc1_c00307{color:rgb(255,255,255);}
.fc0_c00307{color:rgb(0,0,0);}
.fsd_c00307{font-size:41.974772px;}
.fsb_c00307{font-size:41.975069px;}
.fs2_c00307{font-size:47.339969px;}
.fs5_c00307{font-size:47.339970px;}
.fs1_c00307{font-size:47.339972px;}
.fs4_c00307{font-size:47.339973px;}
.fs3_c00307{font-size:47.339974px;}
.fs6_c00307{font-size:47.339975px;}
.fse_c00307{font-size:51.630774px;}
.fsa_c00307{font-size:53.967781px;}
.fs8_c00307{font-size:55.721735px;}
.fs10_c00307{font-size:59.949210px;}
.fs9_c00307{font-size:65.930638px;}
.fsf_c00307{font-size:71.912067px;}
.fs0_c00307{font-size:71.957041px;}
.fs7_c00307{font-size:76.965540px;}
.fsc_c00307{font-size:89.946302px;}
.y0_c00307{bottom:0.000000px;}
.y1_c00307{bottom:0.000008px;}
.y55_c00307{bottom:30.156225px;}
.y50_c00307{bottom:81.687847px;}
.y4f_c00307{bottom:112.044724px;}
.y4e_c00307{bottom:142.401600px;}
.y4d_c00307{bottom:172.758477px;}
.y4c_c00307{bottom:203.115354px;}
.y4b_c00307{bottom:233.472231px;}
.y4a_c00307{bottom:263.829107px;}
.y49_c00307{bottom:294.185984px;}
.y51_c00307{bottom:329.489984px;}
.y54_c00307{bottom:402.064151px;}
.y10_c00307{bottom:493.812629px;}
.y38_c00307{bottom:493.827623px;}
.yf_c00307{bottom:494.337609px;}
.y39_c00307{bottom:494.357158px;}
.y22_c00307{bottom:494.700737px;}
.y37_c00307{bottom:495.071586px;}
.ye_c00307{bottom:495.403002px;}
.y23_c00307{bottom:495.533530px;}
.y21_c00307{bottom:495.553663px;}
.y36_c00307{bottom:496.322201px;}
.yd_c00307{bottom:496.475623px;}
.y20_c00307{bottom:496.587915px;}
.y3a_c00307{bottom:496.772260px;}
.y11_c00307{bottom:496.835884px;}
.y24_c00307{bottom:497.713596px;}
.y35_c00307{bottom:497.966053px;}
.yc_c00307{bottom:498.126234px;}
.y1f_c00307{bottom:498.789265px;}
.y25_c00307{bottom:499.103521px;}
.y34_c00307{bottom:499.653306px;}
.yb_c00307{bottom:499.818769px;}
.y26_c00307{bottom:500.800864px;}
.y12_c00307{bottom:501.110605px;}
.y33_c00307{bottom:501.517382px;}
.ya_c00307{bottom:501.687706px;}
.y3b_c00307{bottom:501.869915px;}
.y1e_c00307{bottom:502.578702px;}
.y27_c00307{bottom:503.241722px;}
.y13_c00307{bottom:503.627848px;}
.y3c_c00307{bottom:505.496019px;}
.y28_c00307{bottom:505.499367px;}
.y32_c00307{bottom:506.168989px;}
.y9_c00307{bottom:506.348634px;}
.y1d_c00307{bottom:508.044213px;}
.y29_c00307{bottom:508.766327px;}
.y14_c00307{bottom:509.576794px;}
.y3d_c00307{bottom:511.126534px;}
.y1c_c00307{bottom:512.508085px;}
.y31_c00307{bottom:512.566592px;}
.y8_c00307{bottom:512.754669px;}
.y15_c00307{bottom:514.322677px;}
.y2a_c00307{bottom:517.158603px;}
.y3e_c00307{bottom:517.780195px;}
.y1b_c00307{bottom:518.929057px;}
.y30_c00307{bottom:519.869222px;}
.y7_c00307{bottom:519.959421px;}
.y6_c00307{bottom:523.416158px;}
.y1a_c00307{bottom:523.496236px;}
.y2b_c00307{bottom:525.202812px;}
.y16_c00307{bottom:526.099549px;}
.y2f_c00307{bottom:527.026630px;}
.y5_c00307{bottom:529.422883px;}
.y3f_c00307{bottom:529.736175px;}
.y19_c00307{bottom:531.263725px;}
.y2e_c00307{bottom:531.792993px;}
.y41_c00307{bottom:533.728456px;}
.y18_c00307{bottom:535.155114px;}
.y4_c00307{bottom:536.678099px;}
.y2d_c00307{bottom:537.961701px;}
.y17_c00307{bottom:538.332892px;}
.y40_c00307{bottom:538.696314px;}
.y52_c00307{bottom:539.306780px;}
.y2c_c00307{bottom:545.020884px;}
.y3_c00307{bottom:546.207017px;}
.y53_c00307{bottom:576.746779px;}
.y42_c00307{bottom:596.435373px;}
.y2_c00307{bottom:597.559761px;}
.y43_c00307{bottom:639.489911px;}
.y56_c00307{bottom:1024.443964px;}
.y47_c00307{bottom:1127.585799px;}
.y45_c00307{bottom:1134.432889px;}
.y48_c00307{bottom:1150.991694px;}
.y44_c00307{bottom:1153.546478px;}
.y46_c00307{bottom:1170.658440px;}
.h11_c00307{height:32.157430px;}
.h8_c00307{height:35.967282px;}
.h7_c00307{height:35.967283px;}
.h9_c00307{height:35.967285px;}
.h5_c00307{height:36.267779px;}
.h4_c00307{height:36.267781px;}
.h6_c00307{height:36.267783px;}
.h12_c00307{height:37.437353px;}
.he_c00307{height:39.085184px;}
.h14_c00307{height:45.561399px;}
.hc_c00307{height:50.091832px;}
.hd_c00307{height:50.252226px;}
.hb_c00307{height:51.885424px;}
.h13_c00307{height:55.092790px;}
.h3_c00307{height:55.127245px;}
.ha_c00307{height:59.035250px;}
.hf_c00307{height:67.002968px;}
.h10_c00307{height:83.753709px;}
.h2_c00307{height:1304.999946px;}
.h0_c00307{height:1304.999953px;}
.h1_c00307{height:1305.000000px;}
.w2_c00307{width:934.874961px;}
.w0_c00307{width:934.875000px;}
.w1_c00307{width:935.250000px;}
.x0_c00307{left:0.000000px;}
.x3d_c00307{left:87.850202px;}
.x3c_c00307{left:89.434062px;}
.x39_c00307{left:107.403263px;}
.x3a_c00307{left:109.695383px;}
.x41_c00307{left:131.272077px;}
.x27_c00307{left:134.894322px;}
.x26_c00307{left:136.566734px;}
.x28_c00307{left:139.937719px;}
.x29_c00307{left:144.785273px;}
.x2a_c00307{left:150.147890px;}
.x2b_c00307{left:152.899057px;}
.x2c_c00307{left:155.907145px;}
.x2d_c00307{left:159.752336px;}
.x37_c00307{left:161.347648px;}
.x2e_c00307{left:163.203941px;}
.x2f_c00307{left:171.483965px;}
.x30_c00307{left:179.748684px;}
.x31_c00307{left:188.175145px;}
.x32_c00307{left:196.556636px;}
.x33_c00307{left:200.721504px;}
.x34_c00307{left:205.276922px;}
.x35_c00307{left:209.084069px;}
.x36_c00307{left:211.669316px;}
.x3_c00307{left:230.260919px;}
.x2_c00307{left:232.395871px;}
.x4_c00307{left:235.482735px;}
.x5_c00307{left:240.319117px;}
.x6_c00307{left:245.673577px;}
.x7_c00307{left:248.421493px;}
.x8_c00307{left:251.426626px;}
.x9_c00307{left:255.268917px;}
.xa_c00307{left:258.553698px;}
.xb_c00307{left:262.988294px;}
.xc_c00307{left:271.601212px;}
.xd_c00307{left:283.434780px;}
.xe_c00307{left:290.867654px;}
.xf_c00307{left:294.260334px;}
.x3b_c00307{left:295.438786px;}
.x10_c00307{left:299.596701px;}
.x11_c00307{left:302.984150px;}
.x12_c00307{left:306.993562px;}
.x13_c00307{left:325.378518px;}
.x14_c00307{left:326.595106px;}
.x15_c00307{left:328.015253px;}
.x16_c00307{left:331.410444px;}
.x17_c00307{left:334.633053px;}
.x18_c00307{left:340.511825px;}
.x19_c00307{left:346.695139px;}
.x1a_c00307{left:352.384720px;}
.x1b_c00307{left:355.792694px;}
.x1c_c00307{left:363.695116px;}
.x1d_c00307{left:371.679253px;}
.x1e_c00307{left:378.434940px;}
.x1f_c00307{left:381.453328px;}
.x20_c00307{left:384.455783px;}
.x21_c00307{left:387.851715px;}
.x22_c00307{left:390.467224px;}
.x23_c00307{left:393.779799px;}
.x24_c00307{left:398.952070px;}
.x25_c00307{left:401.755082px;}
.x40_c00307{left:451.985828px;}
.x1_c00307{left:465.097640px;}
.x38_c00307{left:676.474352px;}
.x3f_c00307{left:696.904800px;}
.x3e_c00307{left:733.103068px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.v1_c00307{vertical-align:2.465280pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ws4_c00307{word-spacing:-37.035289pt;}
.ws3_c00307{word-spacing:-16.604696pt;}
.ws2_c00307{word-spacing:-15.223568pt;}
.ws5_c00307{word-spacing:0.000000pt;}
.ws1_c00307{word-spacing:250.196272pt;}
.ws0_c00307{word-spacing:250.439242pt;}
._2_c00307{width:0.964694pt;}
._1_c00307{width:6.100481pt;}
._0_c00307{width:7.328936pt;}
._4_c00307{width:13.207996pt;}
._3_c00307{width:18.315972pt;}
._5_c00307{width:31.262585pt;}
.fsd_c00307{font-size:37.310908pt;}
.fsb_c00307{font-size:37.311173pt;}
.fs2_c00307{font-size:42.079973pt;}
.fs5_c00307{font-size:42.079974pt;}
.fs1_c00307{font-size:42.079975pt;}
.fs4_c00307{font-size:42.079976pt;}
.fs3_c00307{font-size:42.079977pt;}
.fs6_c00307{font-size:42.079978pt;}
.fse_c00307{font-size:45.894021pt;}
.fsa_c00307{font-size:47.971361pt;}
.fs8_c00307{font-size:49.530431pt;}
.fs10_c00307{font-size:53.288186pt;}
.fs9_c00307{font-size:58.605012pt;}
.fsf_c00307{font-size:63.921837pt;}
.fs0_c00307{font-size:63.961814pt;}
.fs7_c00307{font-size:68.413814pt;}
.fsc_c00307{font-size:79.952268pt;}
.y0_c00307{bottom:0.000000pt;}
.y1_c00307{bottom:0.000007pt;}
.y55_c00307{bottom:26.805533pt;}
.y50_c00307{bottom:72.611419pt;}
.y4f_c00307{bottom:99.595310pt;}
.y4e_c00307{bottom:126.579200pt;}
.y4d_c00307{bottom:153.563091pt;}
.y4c_c00307{bottom:180.546981pt;}
.y4b_c00307{bottom:207.530872pt;}
.y4a_c00307{bottom:234.514762pt;}
.y49_c00307{bottom:261.498653pt;}
.y51_c00307{bottom:292.879986pt;}
.y54_c00307{bottom:357.390356pt;}
.y10_c00307{bottom:438.944560pt;}
.y38_c00307{bottom:438.957887pt;}
.yf_c00307{bottom:439.411208pt;}
.y39_c00307{bottom:439.428585pt;}
.y22_c00307{bottom:439.733989pt;}
.y37_c00307{bottom:440.063632pt;}
.ye_c00307{bottom:440.358224pt;}
.y23_c00307{bottom:440.474249pt;}
.y21_c00307{bottom:440.492144pt;}
.y36_c00307{bottom:441.175290pt;}
.yd_c00307{bottom:441.311665pt;}
.y20_c00307{bottom:441.411480pt;}
.y3a_c00307{bottom:441.575343pt;}
.y11_c00307{bottom:441.631897pt;}
.y24_c00307{bottom:442.412085pt;}
.y35_c00307{bottom:442.636491pt;}
.yc_c00307{bottom:442.778875pt;}
.y1f_c00307{bottom:443.368235pt;}
.y25_c00307{bottom:443.647574pt;}
.y34_c00307{bottom:444.136272pt;}
.yb_c00307{bottom:444.283350pt;}
.y26_c00307{bottom:445.156323pt;}
.y12_c00307{bottom:445.431649pt;}
.y33_c00307{bottom:445.793228pt;}
.ya_c00307{bottom:445.944627pt;}
.y3b_c00307{bottom:446.106592pt;}
.y1e_c00307{bottom:446.736624pt;}
.y27_c00307{bottom:447.325975pt;}
.y13_c00307{bottom:447.669198pt;}
.y3c_c00307{bottom:449.329795pt;}
.y28_c00307{bottom:449.332771pt;}
.y32_c00307{bottom:449.927990pt;}
.y9_c00307{bottom:450.087675pt;}
.y1d_c00307{bottom:451.594856pt;}
.y29_c00307{bottom:452.236735pt;}
.y14_c00307{bottom:452.957150pt;}
.y3d_c00307{bottom:454.334697pt;}
.y1c_c00307{bottom:455.562742pt;}
.y31_c00307{bottom:455.614749pt;}
.y8_c00307{bottom:455.781928pt;}
.y15_c00307{bottom:457.175713pt;}
.y2a_c00307{bottom:459.696536pt;}
.y3e_c00307{bottom:460.249062pt;}
.y1b_c00307{bottom:461.270273pt;}
.y30_c00307{bottom:462.105976pt;}
.y7_c00307{bottom:462.186152pt;}
.y6_c00307{bottom:465.258807pt;}
.y1a_c00307{bottom:465.329988pt;}
.y2b_c00307{bottom:466.846944pt;}
.y16_c00307{bottom:467.644044pt;}
.y2f_c00307{bottom:468.468115pt;}
.y5_c00307{bottom:470.598118pt;}
.y3f_c00307{bottom:470.876600pt;}
.y19_c00307{bottom:472.234422pt;}
.y2e_c00307{bottom:472.704883pt;}
.y41_c00307{bottom:474.425294pt;}
.y18_c00307{bottom:475.693435pt;}
.y4_c00307{bottom:477.047199pt;}
.y2d_c00307{bottom:478.188178pt;}
.y17_c00307{bottom:478.518126pt;}
.y40_c00307{bottom:478.841168pt;}
.y52_c00307{bottom:479.383805pt;}
.y2c_c00307{bottom:484.463008pt;}
.y3_c00307{bottom:485.517349pt;}
.y53_c00307{bottom:512.663803pt;}
.y42_c00307{bottom:530.164776pt;}
.y2_c00307{bottom:531.164232pt;}
.y43_c00307{bottom:568.435476pt;}
.y56_c00307{bottom:910.616857pt;}
.y47_c00307{bottom:1002.298488pt;}
.y45_c00307{bottom:1008.384790pt;}
.y48_c00307{bottom:1023.103728pt;}
.y44_c00307{bottom:1025.374647pt;}
.y46_c00307{bottom:1040.585280pt;}
.h11_c00307{height:28.584382pt;}
.h8_c00307{height:31.970917pt;}
.h7_c00307{height:31.970918pt;}
.h9_c00307{height:31.970920pt;}
.h5_c00307{height:32.238026pt;}
.h4_c00307{height:32.238028pt;}
.h6_c00307{height:32.238029pt;}
.h12_c00307{height:33.277647pt;}
.he_c00307{height:34.742386pt;}
.h14_c00307{height:40.499022pt;}
.hc_c00307{height:44.526073pt;}
.hd_c00307{height:44.668645pt;}
.hb_c00307{height:46.120377pt;}
.h13_c00307{height:48.971369pt;}
.h3_c00307{height:49.001996pt;}
.ha_c00307{height:52.475778pt;}
.hf_c00307{height:59.558193pt;}
.h10_c00307{height:74.447742pt;}
.h2_c00307{height:1159.999952pt;}
.h0_c00307{height:1159.999959pt;}
.h1_c00307{height:1160.000000pt;}
.w2_c00307{width:830.999965pt;}
.w0_c00307{width:831.000000pt;}
.w1_c00307{width:831.333333pt;}
.x0_c00307{left:0.000000pt;}
.x3d_c00307{left:78.089069pt;}
.x3c_c00307{left:79.496944pt;}
.x39_c00307{left:95.469567pt;}
.x3a_c00307{left:97.507007pt;}
.x41_c00307{left:116.686291pt;}
.x27_c00307{left:119.906064pt;}
.x26_c00307{left:121.392652pt;}
.x28_c00307{left:124.389083pt;}
.x29_c00307{left:128.698021pt;}
.x2a_c00307{left:133.464791pt;}
.x2b_c00307{left:135.910272pt;}
.x2c_c00307{left:138.584129pt;}
.x2d_c00307{left:142.002076pt;}
.x37_c00307{left:143.420132pt;}
.x2e_c00307{left:145.070170pt;}
.x2f_c00307{left:152.430191pt;}
.x30_c00307{left:159.776608pt;}
.x31_c00307{left:167.266795pt;}
.x32_c00307{left:174.717010pt;}
.x33_c00307{left:178.419115pt;}
.x34_c00307{left:182.468375pt;}
.x35_c00307{left:185.852506pt;}
.x36_c00307{left:188.150503pt;}
.x3_c00307{left:204.676373pt;}
.x2_c00307{left:206.574107pt;}
.x4_c00307{left:209.317987pt;}
.x5_c00307{left:213.616993pt;}
.x6_c00307{left:218.376513pt;}
.x7_c00307{left:220.819105pt;}
.x8_c00307{left:223.490334pt;}
.x9_c00307{left:226.905704pt;}
.xa_c00307{left:229.825509pt;}
.xb_c00307{left:233.767373pt;}
.xc_c00307{left:241.423300pt;}
.xd_c00307{left:251.942027pt;}
.xe_c00307{left:258.549026pt;}
.xf_c00307{left:261.564741pt;}
.x3b_c00307{left:262.612255pt;}
.x10_c00307{left:266.308178pt;}
.x11_c00307{left:269.319244pt;}
.x12_c00307{left:272.883167pt;}
.x13_c00307{left:289.225349pt;}
.x14_c00307{left:290.306761pt;}
.x15_c00307{left:291.569114pt;}
.x16_c00307{left:294.587062pt;}
.x17_c00307{left:297.451603pt;}
.x18_c00307{left:302.677178pt;}
.x19_c00307{left:308.173457pt;}
.x1a_c00307{left:313.230862pt;}
.x1b_c00307{left:316.260173pt;}
.x1c_c00307{left:323.284548pt;}
.x1d_c00307{left:330.381558pt;}
.x1e_c00307{left:336.386614pt;}
.x1f_c00307{left:339.069625pt;}
.x20_c00307{left:341.738474pt;}
.x21_c00307{left:344.757080pt;}
.x22_c00307{left:347.081977pt;}
.x23_c00307{left:350.026488pt;}
.x24_c00307{left:354.624063pt;}
.x25_c00307{left:357.115628pt;}
.x40_c00307{left:401.765180pt;}
.x1_c00307{left:413.420124pt;}
.x38_c00307{left:601.310535pt;}
.x3f_c00307{left:619.470933pt;}
.x3e_c00307{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e16530169dee940dcbba7589.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.171387;font-style:normal;font-weight:normal;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_9aba519a1569d435a104dcc2.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.000000;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.006348;font-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_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);}
.v0_c00308{vertical-align:0.000000px;}
.ls1_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:0.035135px;}
.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:-18.680283px;}
.ws1_c00308{word-spacing:0.000000px;}
._9_c00308{width:1.293481px;}
._1_c00308{width:2.883634px;}
._0_c00308{width:3.995331px;}
._c_c00308{width:5.323613px;}
._4_c00308{width:6.560686px;}
._a_c00308{width:7.790980px;}
._6_c00308{width:9.575941px;}
._7_c00308{width:10.608448px;}
._5_c00308{width:11.723445px;}
._2_c00308{width:13.339670px;}
._8_c00308{width:14.467562px;}
._10_c00308{width:19.725026px;}
._e_c00308{width:20.961690px;}
._11_c00308{width:27.475786px;}
._f_c00308{width:28.980358px;}
._d_c00308{width:30.194855px;}
._3_c00308{width:31.205953px;}
._b_c00308{width:33.006022px;}
.fc1_c00308{color:rgb(198,111,25);}
.fc0_c00308{color:rgb(0,0,0);}
.fs1_c00308{font-size:71.912067px;}
.fs0_c00308{font-size:71.957041px;}
.y0_c00308{bottom:0.000000px;}
.y1_c00308{bottom:0.000008px;}
.y22_c00308{bottom:30.156225px;}
.y20_c00308{bottom:163.339909px;}
.y1f_c00308{bottom:193.696786px;}
.y1e_c00308{bottom:224.053663px;}
.y1d_c00308{bottom:254.410540px;}
.y1c_c00308{bottom:284.767416px;}
.y1b_c00308{bottom:315.124293px;}
.y1a_c00308{bottom:345.481170px;}
.y19_c00308{bottom:375.838047px;}
.y18_c00308{bottom:406.194923px;}
.y17_c00308{bottom:436.551800px;}
.y16_c00308{bottom:466.908677px;}
.y15_c00308{bottom:497.265554px;}
.y14_c00308{bottom:527.622431px;}
.y21_c00308{bottom:562.678463px;}
.y12_c00308{bottom:636.209525px;}
.y11_c00308{bottom:666.566402px;}
.y10_c00308{bottom:696.923279px;}
.yf_c00308{bottom:727.280156px;}
.ye_c00308{bottom:757.637032px;}
.yd_c00308{bottom:787.993909px;}
.yc_c00308{bottom:818.350786px;}
.yb_c00308{bottom:848.707663px;}
.y13_c00308{bottom:884.173702px;}
.ya_c00308{bottom:957.429797px;}
.y9_c00308{bottom:987.786674px;}
.y8_c00308{bottom:1018.143550px;}
.y7_c00308{bottom:1048.500427px;}
.y6_c00308{bottom:1078.857304px;}
.y5_c00308{bottom:1109.214181px;}
.y4_c00308{bottom:1139.571057px;}
.y3_c00308{bottom:1169.927934px;}
.y2_c00308{bottom:1200.284811px;}
.h4_c00308{height:55.127245px;}
.h5_c00308{height:66.961090px;}
.h3_c00308{height:67.002968px;}
.h2_c00308{height:1304.999946px;}
.h0_c00308{height:1304.999953px;}
.h1_c00308{height:1305.000000px;}
.w2_c00308{width:934.874961px;}
.w0_c00308{width:934.875000px;}
.w1_c00308{width:935.250000px;}
.x0_c00308{left:0.000000px;}
.x1_c00308{left:89.434062px;}
.x2_c00308{left:451.985828px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls1_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:0.031231pt;}
.ws0_c00308{word-spacing:-16.604696pt;}
.ws1_c00308{word-spacing:0.000000pt;}
._9_c00308{width:1.149760pt;}
._1_c00308{width:2.563230pt;}
._0_c00308{width:3.551406pt;}
._c_c00308{width:4.732101pt;}
._4_c00308{width:5.831721pt;}
._a_c00308{width:6.925316pt;}
._6_c00308{width:8.511948pt;}
._7_c00308{width:9.429732pt;}
._5_c00308{width:10.420840pt;}
._2_c00308{width:11.857485pt;}
._8_c00308{width:12.860055pt;}
._10_c00308{width:17.533356pt;}
._e_c00308{width:18.632614pt;}
._11_c00308{width:24.422921pt;}
._f_c00308{width:25.760318pt;}
._d_c00308{width:26.839871pt;}
._3_c00308{width:27.738625pt;}
._b_c00308{width:29.338686pt;}
.fs1_c00308{font-size:63.921837pt;}
.fs0_c00308{font-size:63.961814pt;}
.y0_c00308{bottom:0.000000pt;}
.y1_c00308{bottom:0.000007pt;}
.y22_c00308{bottom:26.805533pt;}
.y20_c00308{bottom:145.191030pt;}
.y1f_c00308{bottom:172.174921pt;}
.y1e_c00308{bottom:199.158811pt;}
.y1d_c00308{bottom:226.142702pt;}
.y1c_c00308{bottom:253.126592pt;}
.y1b_c00308{bottom:280.110483pt;}
.y1a_c00308{bottom:307.094373pt;}
.y19_c00308{bottom:334.078264pt;}
.y18_c00308{bottom:361.062154pt;}
.y17_c00308{bottom:388.046045pt;}
.y16_c00308{bottom:415.029935pt;}
.y15_c00308{bottom:442.013826pt;}
.y14_c00308{bottom:468.997716pt;}
.y21_c00308{bottom:500.158633pt;}
.y12_c00308{bottom:565.519578pt;}
.y11_c00308{bottom:592.503469pt;}
.y10_c00308{bottom:619.487359pt;}
.yf_c00308{bottom:646.471249pt;}
.ye_c00308{bottom:673.455140pt;}
.yd_c00308{bottom:700.439030pt;}
.yc_c00308{bottom:727.422921pt;}
.yb_c00308{bottom:754.406811pt;}
.y13_c00308{bottom:785.932180pt;}
.ya_c00308{bottom:851.048708pt;}
.y9_c00308{bottom:878.032599pt;}
.y8_c00308{bottom:905.016489pt;}
.y7_c00308{bottom:932.000380pt;}
.y6_c00308{bottom:958.984270pt;}
.y5_c00308{bottom:985.968161pt;}
.y4_c00308{bottom:1012.952051pt;}
.y3_c00308{bottom:1039.935941pt;}
.y2_c00308{bottom:1066.919832pt;}
.h4_c00308{height:49.001996pt;}
.h5_c00308{height:59.520969pt;}
.h3_c00308{height:59.558193pt;}
.h2_c00308{height:1159.999952pt;}
.h0_c00308{height:1159.999959pt;}
.h1_c00308{height:1160.000000pt;}
.w2_c00308{width:830.999965pt;}
.w0_c00308{width:831.000000pt;}
.w1_c00308{width:831.333333pt;}
.x0_c00308{left:0.000000pt;}
.x1_c00308{left:79.496944pt;}
.x2_c00308{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_297616603c949e3670fa8b9a.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.006348;font-style:normal;font-weight:normal;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_1cb964d8d669a735778bd8ae.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.000000;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.006348;font-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_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;}
.ls0_c00309{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00309{word-spacing:0.000000px;}
._3_c00309{width:10.983272px;}
._0_c00309{width:15.775738px;}
._1_c00309{width:17.386881px;}
._4_c00309{width:28.600112px;}
._2_c00309{width:35.549073px;}
.fc1_c00309{color:rgb(198,111,25);}
.fc0_c00309{color:rgb(0,0,0);}
.fs1_c00309{font-size:71.912067px;}
.fs0_c00309{font-size:71.957041px;}
.y0_c00309{bottom:0.000000px;}
.y1_c00309{bottom:0.000008px;}
.yd_c00309{bottom:30.156225px;}
.yb_c00309{bottom:829.360597px;}
.ya_c00309{bottom:859.717473px;}
.y9_c00309{bottom:890.074350px;}
.yc_c00309{bottom:924.426971px;}
.y7_c00309{bottom:1010.366449px;}
.y6_c00309{bottom:1040.723326px;}
.y5_c00309{bottom:1071.080203px;}
.y4_c00309{bottom:1101.437080px;}
.y3_c00309{bottom:1131.793957px;}
.y2_c00309{bottom:1162.150833px;}
.y8_c00309{bottom:1199.835078px;}
.h4_c00309{height:55.092790px;}
.h3_c00309{height:55.127245px;}
.h2_c00309{height:1304.999946px;}
.h0_c00309{height:1304.999953px;}
.h1_c00309{height:1305.000000px;}
.w2_c00309{width:934.874961px;}
.w0_c00309{width:934.875000px;}
.w1_c00309{width:935.250000px;}
.x0_c00309{left:0.000000px;}
.x1_c00309{left:90.225997px;}
.x2_c00309{left:451.985828px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ws0_c00309{word-spacing:-16.604696pt;}
.ws1_c00309{word-spacing:0.000000pt;}
._3_c00309{width:9.762909pt;}
._0_c00309{width:14.022878pt;}
._1_c00309{width:15.455006pt;}
._4_c00309{width:25.422322pt;}
._2_c00309{width:31.599176pt;}
.fs1_c00309{font-size:63.921837pt;}
.fs0_c00309{font-size:63.961814pt;}
.y0_c00309{bottom:0.000000pt;}
.y1_c00309{bottom:0.000007pt;}
.yd_c00309{bottom:26.805533pt;}
.yb_c00309{bottom:737.209419pt;}
.ya_c00309{bottom:764.193310pt;}
.y9_c00309{bottom:791.177200pt;}
.yc_c00309{bottom:821.712863pt;}
.y7_c00309{bottom:898.103511pt;}
.y6_c00309{bottom:925.087401pt;}
.y5_c00309{bottom:952.071292pt;}
.y4_c00309{bottom:979.055182pt;}
.y3_c00309{bottom:1006.039072pt;}
.y2_c00309{bottom:1033.022963pt;}
.y8_c00309{bottom:1066.520069pt;}
.h4_c00309{height:48.971369pt;}
.h3_c00309{height:49.001996pt;}
.h2_c00309{height:1159.999952pt;}
.h0_c00309{height:1159.999959pt;}
.h1_c00309{height:1160.000000pt;}
.w2_c00309{width:830.999965pt;}
.w0_c00309{width:831.000000pt;}
.w1_c00309{width:831.333333pt;}
.x0_c00309{left:0.000000pt;}
.x1_c00309{left:80.200886pt;}
.x2_c00309{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59a6442a8d07a8dad46df6df.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:0.743000;font-style:normal;font-weight:normal;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_a6a9a5c8e7a8f63ec81294c8.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:1.000000;font-style:normal;font-weight: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_c00310;src:url('chunks/assets/font_c51f44375d15f692ccc4f8fd.woff2')format("woff");}.ff5_c00310{font-family:ff5_c00310;line-height:1.171387;font-style:normal;font-weight: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_c00310;src:url('chunks/assets/font_b7267bfa983c079ad4235a15.woff2')format("woff");}.ff6_c00310{font-family:ff6_c00310;line-height:1.000000;font-style:normal;font-weight: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_c00310;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00310{font-family:ff7_c00310;line-height:1.006348;font-style:normal;font-weight: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_c00310;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00310{font-family:ff8_c00310;line-height:0.734863;font-style:normal;font-weight: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_c00310;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00310{font-family:ff9_c00310;line-height:0.940000;font-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_c00310{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00310{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00310{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00310{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00310{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00310{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00310{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00310{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00310{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00310{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00310{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00310{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00310{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00310{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00310{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00310{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00310{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00310{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00310{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00310{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00310{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00310{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00310{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00310{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00310{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00310{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00310{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00310{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00310{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00310{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00310{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00310{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00310{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00310{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00310{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00310{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00310{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00310{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00310{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00310{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00310{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00310{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00310{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00310{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00310{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00310{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00310{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00310{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00310{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00310{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00310{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00310{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00310{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00310{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00310{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00310{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00310{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00310{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00310{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00310{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00310{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00310{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00310{vertical-align:0.000000px;}
.v1_c00310{vertical-align:2.773440px;}
.ls0_c00310{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00310{word-spacing:-41.664701px;}
.ws3_c00310{word-spacing:-18.680283px;}
.ws2_c00310{word-spacing:-17.126514px;}
.ws5_c00310{word-spacing:0.000000px;}
.ws1_c00310{word-spacing:281.470806px;}
.ws0_c00310{word-spacing:281.744147px;}
._3_c00310{width:2.132890px;}
._2_c00310{width:3.492390px;}
._1_c00310{width:13.972587px;}
._0_c00310{width:15.231140px;}
.fc3_c00310{color:rgb(9,71,81);}
.fc2_c00310{color:rgb(198,111,25);}
.fc1_c00310{color:rgb(255,255,255);}
.fc0_c00310{color:rgb(0,0,0);}
.fsb_c00310{font-size:41.974772px;}
.fs9_c00310{font-size:41.975069px;}
.fs2_c00310{font-size:47.339969px;}
.fs5_c00310{font-size:47.339970px;}
.fs1_c00310{font-size:47.339972px;}
.fs4_c00310{font-size:47.339973px;}
.fs3_c00310{font-size:47.339974px;}
.fs6_c00310{font-size:47.339975px;}
.fse_c00310{font-size:51.630774px;}
.fsd_c00310{font-size:53.967781px;}
.fs8_c00310{font-size:55.721735px;}
.fs10_c00310{font-size:59.949210px;}
.fsc_c00310{font-size:65.930638px;}
.fsf_c00310{font-size:71.912067px;}
.fs0_c00310{font-size:71.957041px;}
.fs7_c00310{font-size:76.965540px;}
.fsa_c00310{font-size:89.946302px;}
.y0_c00310{bottom:0.000000px;}
.y1_c00310{bottom:0.000008px;}
.y53_c00310{bottom:30.156225px;}
.y4b_c00310{bottom:145.062922px;}
.y4a_c00310{bottom:175.419799px;}
.y49_c00310{bottom:205.776676px;}
.y48_c00310{bottom:236.133553px;}
.y47_c00310{bottom:266.490429px;}
.y4c_c00310{bottom:302.506042px;}
.y51_c00310{bottom:402.064151px;}
.y10_c00310{bottom:493.812629px;}
.y38_c00310{bottom:493.827623px;}
.yf_c00310{bottom:494.337609px;}
.y39_c00310{bottom:494.357158px;}
.y22_c00310{bottom:494.700737px;}
.y37_c00310{bottom:495.071586px;}
.ye_c00310{bottom:495.403002px;}
.y23_c00310{bottom:495.533530px;}
.y21_c00310{bottom:495.553663px;}
.y36_c00310{bottom:496.322201px;}
.yd_c00310{bottom:496.475623px;}
.y20_c00310{bottom:496.587915px;}
.y3a_c00310{bottom:496.772260px;}
.y11_c00310{bottom:496.835884px;}
.y24_c00310{bottom:497.713596px;}
.y35_c00310{bottom:497.966053px;}
.yc_c00310{bottom:498.126234px;}
.y1f_c00310{bottom:498.789265px;}
.y25_c00310{bottom:499.103521px;}
.y34_c00310{bottom:499.653306px;}
.yb_c00310{bottom:499.818769px;}
.y26_c00310{bottom:500.800864px;}
.y12_c00310{bottom:501.110605px;}
.y33_c00310{bottom:501.517382px;}
.ya_c00310{bottom:501.687706px;}
.y3b_c00310{bottom:501.869915px;}
.y1e_c00310{bottom:502.578702px;}
.y27_c00310{bottom:503.241722px;}
.y13_c00310{bottom:503.627848px;}
.y3c_c00310{bottom:505.496019px;}
.y28_c00310{bottom:505.499367px;}
.y32_c00310{bottom:506.168989px;}
.y9_c00310{bottom:506.348634px;}
.y1d_c00310{bottom:508.044213px;}
.y29_c00310{bottom:508.766327px;}
.y14_c00310{bottom:509.576794px;}
.y3d_c00310{bottom:511.126534px;}
.y1c_c00310{bottom:512.508085px;}
.y31_c00310{bottom:512.566592px;}
.y8_c00310{bottom:512.754669px;}
.y15_c00310{bottom:514.322677px;}
.y2a_c00310{bottom:517.158603px;}
.y3e_c00310{bottom:517.780195px;}
.y1b_c00310{bottom:518.929057px;}
.y30_c00310{bottom:519.869222px;}
.y7_c00310{bottom:519.959421px;}
.y6_c00310{bottom:523.416158px;}
.y1a_c00310{bottom:523.496236px;}
.y2b_c00310{bottom:525.202812px;}
.y16_c00310{bottom:526.099549px;}
.y2f_c00310{bottom:527.026630px;}
.y5_c00310{bottom:529.422883px;}
.y3f_c00310{bottom:529.736175px;}
.y19_c00310{bottom:531.263725px;}
.y2e_c00310{bottom:531.792993px;}
.y41_c00310{bottom:533.728456px;}
.y18_c00310{bottom:535.155114px;}
.y4_c00310{bottom:536.678099px;}
.y2d_c00310{bottom:537.961701px;}
.y17_c00310{bottom:538.332892px;}
.y40_c00310{bottom:538.696314px;}
.y4d_c00310{bottom:539.306780px;}
.y2c_c00310{bottom:545.020884px;}
.y3_c00310{bottom:546.207017px;}
.y4e_c00310{bottom:576.746779px;}
.y42_c00310{bottom:596.435373px;}
.y2_c00310{bottom:597.559761px;}
.y43_c00310{bottom:639.489911px;}
.y54_c00310{bottom:1024.443964px;}
.y52_c00310{bottom:1112.778308px;}
.y50_c00310{bottom:1134.432889px;}
.y45_c00310{bottom:1135.036135px;}
.y4f_c00310{bottom:1153.546478px;}
.y46_c00310{bottom:1159.108952px;}
.y44_c00310{bottom:1170.658440px;}
.hf_c00310{height:32.157430px;}
.h8_c00310{height:35.967282px;}
.h7_c00310{height:35.967283px;}
.h9_c00310{height:35.967285px;}
.h5_c00310{height:36.267779px;}
.h4_c00310{height:36.267781px;}
.h6_c00310{height:36.267783px;}
.h12_c00310{height:37.437353px;}
.hc_c00310{height:39.085184px;}
.h14_c00310{height:45.561399px;}
.h10_c00310{height:50.091832px;}
.h11_c00310{height:50.252226px;}
.hb_c00310{height:51.885424px;}
.h13_c00310{height:55.092790px;}
.h3_c00310{height:55.127245px;}
.ha_c00310{height:59.035250px;}
.hd_c00310{height:67.002968px;}
.he_c00310{height:68.338108px;}
.h2_c00310{height:1304.999946px;}
.h0_c00310{height:1304.999953px;}
.h1_c00310{height:1305.000000px;}
.w2_c00310{width:934.874961px;}
.w0_c00310{width:934.875000px;}
.w1_c00310{width:935.250000px;}
.x0_c00310{left:0.000000px;}
.x3a_c00310{left:87.850202px;}
.x3c_c00310{left:107.403263px;}
.x39_c00310{left:109.695383px;}
.x3f_c00310{left:131.272077px;}
.x27_c00310{left:134.894322px;}
.x26_c00310{left:136.566734px;}
.x28_c00310{left:139.937719px;}
.x29_c00310{left:144.785273px;}
.x2a_c00310{left:150.147890px;}
.x2b_c00310{left:152.899057px;}
.x2c_c00310{left:155.907145px;}
.x2d_c00310{left:159.752336px;}
.x37_c00310{left:161.347648px;}
.x2e_c00310{left:163.203941px;}
.x2f_c00310{left:171.483965px;}
.x30_c00310{left:179.748684px;}
.x31_c00310{left:188.175145px;}
.x32_c00310{left:196.556636px;}
.x33_c00310{left:200.721504px;}
.x34_c00310{left:205.276922px;}
.x35_c00310{left:209.084069px;}
.x36_c00310{left:211.669316px;}
.x3_c00310{left:230.260919px;}
.x2_c00310{left:232.395871px;}
.x4_c00310{left:235.482735px;}
.x5_c00310{left:240.319117px;}
.x6_c00310{left:245.673577px;}
.x7_c00310{left:248.421493px;}
.x8_c00310{left:251.426626px;}
.x9_c00310{left:255.268917px;}
.xa_c00310{left:258.553698px;}
.xb_c00310{left:262.988294px;}
.xc_c00310{left:271.601212px;}
.xd_c00310{left:283.434780px;}
.xe_c00310{left:290.867654px;}
.xf_c00310{left:294.260334px;}
.x10_c00310{left:299.596701px;}
.x11_c00310{left:302.984150px;}
.x12_c00310{left:306.993562px;}
.x13_c00310{left:325.378518px;}
.x14_c00310{left:326.595106px;}
.x15_c00310{left:328.015253px;}
.x16_c00310{left:331.410444px;}
.x17_c00310{left:334.633053px;}
.x18_c00310{left:340.511825px;}
.x19_c00310{left:346.695139px;}
.x1a_c00310{left:352.384720px;}
.x1b_c00310{left:355.792694px;}
.x1c_c00310{left:363.695116px;}
.x1d_c00310{left:371.679253px;}
.x1e_c00310{left:378.434940px;}
.x1f_c00310{left:381.453328px;}
.x20_c00310{left:384.455783px;}
.x21_c00310{left:387.851715px;}
.x22_c00310{left:390.467224px;}
.x23_c00310{left:393.779799px;}
.x24_c00310{left:398.952070px;}
.x25_c00310{left:401.755082px;}
.x3e_c00310{left:451.985828px;}
.x1_c00310{left:465.097640px;}
.x38_c00310{left:676.474352px;}
.x3d_c00310{left:696.904800px;}
.x3b_c00310{left:733.103068px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.v1_c00310{vertical-align:2.465280pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws4_c00310{word-spacing:-37.035289pt;}
.ws3_c00310{word-spacing:-16.604696pt;}
.ws2_c00310{word-spacing:-15.223568pt;}
.ws5_c00310{word-spacing:0.000000pt;}
.ws1_c00310{word-spacing:250.196272pt;}
.ws0_c00310{word-spacing:250.439242pt;}
._3_c00310{width:1.895902pt;}
._2_c00310{width:3.104347pt;}
._1_c00310{width:12.420077pt;}
._0_c00310{width:13.538791pt;}
.fsb_c00310{font-size:37.310908pt;}
.fs9_c00310{font-size:37.311173pt;}
.fs2_c00310{font-size:42.079973pt;}
.fs5_c00310{font-size:42.079974pt;}
.fs1_c00310{font-size:42.079975pt;}
.fs4_c00310{font-size:42.079976pt;}
.fs3_c00310{font-size:42.079977pt;}
.fs6_c00310{font-size:42.079978pt;}
.fse_c00310{font-size:45.894021pt;}
.fsd_c00310{font-size:47.971361pt;}
.fs8_c00310{font-size:49.530431pt;}
.fs10_c00310{font-size:53.288186pt;}
.fsc_c00310{font-size:58.605012pt;}
.fsf_c00310{font-size:63.921837pt;}
.fs0_c00310{font-size:63.961814pt;}
.fs7_c00310{font-size:68.413814pt;}
.fsa_c00310{font-size:79.952268pt;}
.y0_c00310{bottom:0.000000pt;}
.y1_c00310{bottom:0.000007pt;}
.y53_c00310{bottom:26.805533pt;}
.y4b_c00310{bottom:128.944820pt;}
.y4a_c00310{bottom:155.928710pt;}
.y49_c00310{bottom:182.912601pt;}
.y48_c00310{bottom:209.896491pt;}
.y47_c00310{bottom:236.880382pt;}
.y4c_c00310{bottom:268.894259pt;}
.y51_c00310{bottom:357.390356pt;}
.y10_c00310{bottom:438.944560pt;}
.y38_c00310{bottom:438.957887pt;}
.yf_c00310{bottom:439.411208pt;}
.y39_c00310{bottom:439.428585pt;}
.y22_c00310{bottom:439.733989pt;}
.y37_c00310{bottom:440.063632pt;}
.ye_c00310{bottom:440.358224pt;}
.y23_c00310{bottom:440.474249pt;}
.y21_c00310{bottom:440.492144pt;}
.y36_c00310{bottom:441.175290pt;}
.yd_c00310{bottom:441.311665pt;}
.y20_c00310{bottom:441.411480pt;}
.y3a_c00310{bottom:441.575343pt;}
.y11_c00310{bottom:441.631897pt;}
.y24_c00310{bottom:442.412085pt;}
.y35_c00310{bottom:442.636491pt;}
.yc_c00310{bottom:442.778875pt;}
.y1f_c00310{bottom:443.368235pt;}
.y25_c00310{bottom:443.647574pt;}
.y34_c00310{bottom:444.136272pt;}
.yb_c00310{bottom:444.283350pt;}
.y26_c00310{bottom:445.156323pt;}
.y12_c00310{bottom:445.431649pt;}
.y33_c00310{bottom:445.793228pt;}
.ya_c00310{bottom:445.944627pt;}
.y3b_c00310{bottom:446.106592pt;}
.y1e_c00310{bottom:446.736624pt;}
.y27_c00310{bottom:447.325975pt;}
.y13_c00310{bottom:447.669198pt;}
.y3c_c00310{bottom:449.329795pt;}
.y28_c00310{bottom:449.332771pt;}
.y32_c00310{bottom:449.927990pt;}
.y9_c00310{bottom:450.087675pt;}
.y1d_c00310{bottom:451.594856pt;}
.y29_c00310{bottom:452.236735pt;}
.y14_c00310{bottom:452.957150pt;}
.y3d_c00310{bottom:454.334697pt;}
.y1c_c00310{bottom:455.562742pt;}
.y31_c00310{bottom:455.614749pt;}
.y8_c00310{bottom:455.781928pt;}
.y15_c00310{bottom:457.175713pt;}
.y2a_c00310{bottom:459.696536pt;}
.y3e_c00310{bottom:460.249062pt;}
.y1b_c00310{bottom:461.270273pt;}
.y30_c00310{bottom:462.105976pt;}
.y7_c00310{bottom:462.186152pt;}
.y6_c00310{bottom:465.258807pt;}
.y1a_c00310{bottom:465.329988pt;}
.y2b_c00310{bottom:466.846944pt;}
.y16_c00310{bottom:467.644044pt;}
.y2f_c00310{bottom:468.468115pt;}
.y5_c00310{bottom:470.598118pt;}
.y3f_c00310{bottom:470.876600pt;}
.y19_c00310{bottom:472.234422pt;}
.y2e_c00310{bottom:472.704883pt;}
.y41_c00310{bottom:474.425294pt;}
.y18_c00310{bottom:475.693435pt;}
.y4_c00310{bottom:477.047199pt;}
.y2d_c00310{bottom:478.188178pt;}
.y17_c00310{bottom:478.518126pt;}
.y40_c00310{bottom:478.841168pt;}
.y4d_c00310{bottom:479.383805pt;}
.y2c_c00310{bottom:484.463008pt;}
.y3_c00310{bottom:485.517349pt;}
.y4e_c00310{bottom:512.663803pt;}
.y42_c00310{bottom:530.164776pt;}
.y2_c00310{bottom:531.164232pt;}
.y43_c00310{bottom:568.435476pt;}
.y54_c00310{bottom:910.616857pt;}
.y52_c00310{bottom:989.136274pt;}
.y50_c00310{bottom:1008.384790pt;}
.y45_c00310{bottom:1008.921009pt;}
.y4f_c00310{bottom:1025.374647pt;}
.y46_c00310{bottom:1030.319068pt;}
.y44_c00310{bottom:1040.585280pt;}
.hf_c00310{height:28.584382pt;}
.h8_c00310{height:31.970917pt;}
.h7_c00310{height:31.970918pt;}
.h9_c00310{height:31.970920pt;}
.h5_c00310{height:32.238026pt;}
.h4_c00310{height:32.238028pt;}
.h6_c00310{height:32.238029pt;}
.h12_c00310{height:33.277647pt;}
.hc_c00310{height:34.742386pt;}
.h14_c00310{height:40.499022pt;}
.h10_c00310{height:44.526073pt;}
.h11_c00310{height:44.668645pt;}
.hb_c00310{height:46.120377pt;}
.h13_c00310{height:48.971369pt;}
.h3_c00310{height:49.001996pt;}
.ha_c00310{height:52.475778pt;}
.hd_c00310{height:59.558193pt;}
.he_c00310{height:60.744985pt;}
.h2_c00310{height:1159.999952pt;}
.h0_c00310{height:1159.999959pt;}
.h1_c00310{height:1160.000000pt;}
.w2_c00310{width:830.999965pt;}
.w0_c00310{width:831.000000pt;}
.w1_c00310{width:831.333333pt;}
.x0_c00310{left:0.000000pt;}
.x3a_c00310{left:78.089069pt;}
.x3c_c00310{left:95.469567pt;}
.x39_c00310{left:97.507007pt;}
.x3f_c00310{left:116.686291pt;}
.x27_c00310{left:119.906064pt;}
.x26_c00310{left:121.392652pt;}
.x28_c00310{left:124.389083pt;}
.x29_c00310{left:128.698021pt;}
.x2a_c00310{left:133.464791pt;}
.x2b_c00310{left:135.910272pt;}
.x2c_c00310{left:138.584129pt;}
.x2d_c00310{left:142.002076pt;}
.x37_c00310{left:143.420132pt;}
.x2e_c00310{left:145.070170pt;}
.x2f_c00310{left:152.430191pt;}
.x30_c00310{left:159.776608pt;}
.x31_c00310{left:167.266795pt;}
.x32_c00310{left:174.717010pt;}
.x33_c00310{left:178.419115pt;}
.x34_c00310{left:182.468375pt;}
.x35_c00310{left:185.852506pt;}
.x36_c00310{left:188.150503pt;}
.x3_c00310{left:204.676373pt;}
.x2_c00310{left:206.574107pt;}
.x4_c00310{left:209.317987pt;}
.x5_c00310{left:213.616993pt;}
.x6_c00310{left:218.376513pt;}
.x7_c00310{left:220.819105pt;}
.x8_c00310{left:223.490334pt;}
.x9_c00310{left:226.905704pt;}
.xa_c00310{left:229.825509pt;}
.xb_c00310{left:233.767373pt;}
.xc_c00310{left:241.423300pt;}
.xd_c00310{left:251.942027pt;}
.xe_c00310{left:258.549026pt;}
.xf_c00310{left:261.564741pt;}
.x10_c00310{left:266.308178pt;}
.x11_c00310{left:269.319244pt;}
.x12_c00310{left:272.883167pt;}
.x13_c00310{left:289.225349pt;}
.x14_c00310{left:290.306761pt;}
.x15_c00310{left:291.569114pt;}
.x16_c00310{left:294.587062pt;}
.x17_c00310{left:297.451603pt;}
.x18_c00310{left:302.677178pt;}
.x19_c00310{left:308.173457pt;}
.x1a_c00310{left:313.230862pt;}
.x1b_c00310{left:316.260173pt;}
.x1c_c00310{left:323.284548pt;}
.x1d_c00310{left:330.381558pt;}
.x1e_c00310{left:336.386614pt;}
.x1f_c00310{left:339.069625pt;}
.x20_c00310{left:341.738474pt;}
.x21_c00310{left:344.757080pt;}
.x22_c00310{left:347.081977pt;}
.x23_c00310{left:350.026488pt;}
.x24_c00310{left:354.624063pt;}
.x25_c00310{left:357.115628pt;}
.x3e_c00310{left:401.765180pt;}
.x1_c00310{left:413.420124pt;}
.x38_c00310{left:601.310535pt;}
.x3d_c00310{left:619.470933pt;}
.x3b_c00310{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4123573023362ac5cd0e25ef.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.006348;font-style:normal;font-weight:normal;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_571baf7a316b7d02ed5b4a23.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.000000;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.006348;font-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_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);}
.v0_c00311{vertical-align:0.000000px;}
.ls0_c00311{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00311{word-spacing:-18.680283px;}
.ws2_c00311{word-spacing:0.000000px;}
._2_c00311{width:1.325050px;}
._9_c00311{width:2.595140px;}
._1_c00311{width:3.996019px;}
._3_c00311{width:5.497299px;}
._c_c00311{width:7.231963px;}
._e_c00311{width:8.376195px;}
._0_c00311{width:10.437509px;}
._4_c00311{width:11.705057px;}
._d_c00311{width:12.975626px;}
._6_c00311{width:14.243235px;}
._b_c00311{width:15.571129px;}
._5_c00311{width:16.730220px;}
._8_c00311{width:20.001509px;}
._a_c00311{width:22.474838px;}
._7_c00311{width:25.262262px;}
.fc1_c00311{color:rgb(198,111,25);}
.fc0_c00311{color:rgb(0,0,0);}
.fs1_c00311{font-size:71.912067px;}
.fs0_c00311{font-size:71.957041px;}
.y0_c00311{bottom:0.000000px;}
.y1_c00311{bottom:0.000008px;}
.y20_c00311{bottom:30.156225px;}
.y1b_c00311{bottom:172.086365px;}
.y1a_c00311{bottom:202.443242px;}
.y19_c00311{bottom:232.800119px;}
.y1c_c00311{bottom:263.927867px;}
.y1f_c00311{bottom:340.831966px;}
.y1e_c00311{bottom:371.188843px;}
.y1d_c00311{bottom:401.545720px;}
.y18_c00311{bottom:432.352312px;}
.y16_c00311{bottom:509.745518px;}
.y15_c00311{bottom:540.102395px;}
.y14_c00311{bottom:570.459272px;}
.y13_c00311{bottom:600.816148px;}
.y12_c00311{bottom:631.173025px;}
.y11_c00311{bottom:661.529902px;}
.y10_c00311{bottom:691.886779px;}
.yf_c00311{bottom:722.243656px;}
.ye_c00311{bottom:752.600532px;}
.yd_c00311{bottom:782.957409px;}
.yc_c00311{bottom:813.314286px;}
.y17_c00311{bottom:848.370314px;}
.ya_c00311{bottom:925.763492px;}
.y9_c00311{bottom:956.120369px;}
.y8_c00311{bottom:986.477246px;}
.y7_c00311{bottom:1016.834123px;}
.y6_c00311{bottom:1047.191000px;}
.y5_c00311{bottom:1077.547876px;}
.y4_c00311{bottom:1107.904753px;}
.y3_c00311{bottom:1138.261630px;}
.y2_c00311{bottom:1168.618507px;}
.yb_c00311{bottom:1199.835078px;}
.h4_c00311{height:55.092790px;}
.h3_c00311{height:55.127245px;}
.h2_c00311{height:1304.999946px;}
.h0_c00311{height:1304.999953px;}
.h1_c00311{height:1305.000000px;}
.w2_c00311{width:934.874961px;}
.w0_c00311{width:934.875000px;}
.w1_c00311{width:935.250000px;}
.x0_c00311{left:0.000000px;}
.x2_c00311{left:87.850202px;}
.x1_c00311{left:89.434062px;}
.x3_c00311{left:93.487496px;}
.x4_c00311{left:451.985828px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws0_c00311{word-spacing:-16.615081pt;}
.ws1_c00311{word-spacing:-16.604696pt;}
.ws2_c00311{word-spacing:0.000000pt;}
._2_c00311{width:1.177823pt;}
._9_c00311{width:2.306791pt;}
._1_c00311{width:3.552017pt;}
._3_c00311{width:4.886488pt;}
._c_c00311{width:6.428412pt;}
._e_c00311{width:7.445507pt;}
._0_c00311{width:9.277786pt;}
._4_c00311{width:10.404495pt;}
._d_c00311{width:11.533890pt;}
._6_c00311{width:12.660653pt;}
._b_c00311{width:13.841003pt;}
._5_c00311{width:14.871306pt;}
._8_c00311{width:17.779120pt;}
._a_c00311{width:19.977634pt;}
._7_c00311{width:22.455344pt;}
.fs1_c00311{font-size:63.921837pt;}
.fs0_c00311{font-size:63.961814pt;}
.y0_c00311{bottom:0.000000pt;}
.y1_c00311{bottom:0.000007pt;}
.y20_c00311{bottom:26.805533pt;}
.y1b_c00311{bottom:152.965658pt;}
.y1a_c00311{bottom:179.949548pt;}
.y19_c00311{bottom:206.933439pt;}
.y1c_c00311{bottom:234.602549pt;}
.y1f_c00311{bottom:302.961748pt;}
.y1e_c00311{bottom:329.945638pt;}
.y1d_c00311{bottom:356.929529pt;}
.y18_c00311{bottom:384.313166pt;}
.y16_c00311{bottom:453.107127pt;}
.y15_c00311{bottom:480.091018pt;}
.y14_c00311{bottom:507.074908pt;}
.y13_c00311{bottom:534.058799pt;}
.y12_c00311{bottom:561.042689pt;}
.y11_c00311{bottom:588.026580pt;}
.y10_c00311{bottom:615.010470pt;}
.yf_c00311{bottom:641.994360pt;}
.ye_c00311{bottom:668.978251pt;}
.yd_c00311{bottom:695.962141pt;}
.yc_c00311{bottom:722.946032pt;}
.y17_c00311{bottom:754.106946pt;}
.ya_c00311{bottom:822.900882pt;}
.y9_c00311{bottom:849.884773pt;}
.y8_c00311{bottom:876.868663pt;}
.y7_c00311{bottom:903.852554pt;}
.y6_c00311{bottom:930.836444pt;}
.y5_c00311{bottom:957.820334pt;}
.y4_c00311{bottom:984.804225pt;}
.y3_c00311{bottom:1011.788115pt;}
.y2_c00311{bottom:1038.772006pt;}
.yb_c00311{bottom:1066.520069pt;}
.h4_c00311{height:48.971369pt;}
.h3_c00311{height:49.001996pt;}
.h2_c00311{height:1159.999952pt;}
.h0_c00311{height:1159.999959pt;}
.h1_c00311{height:1160.000000pt;}
.w2_c00311{width:830.999965pt;}
.w0_c00311{width:831.000000pt;}
.w1_c00311{width:831.333333pt;}
.x0_c00311{left:0.000000pt;}
.x2_c00311{left:78.089069pt;}
.x1_c00311{left:79.496944pt;}
.x3_c00311{left:83.099997pt;}
.x4_c00311{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3a531b8a92c70eaa92c595b.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:0.743000;font-style:normal;font-weight:normal;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_a6a9a5c8e7a8f63ec81294c8.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:1.000000;font-style:normal;font-weight: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_277b44968d279607d0129b56.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;line-height:1.171387;font-style:normal;font-weight: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_1c7c314c48fa3653e48a5be0.woff2')format("woff");}.ff6_c00312{font-family:ff6_c00312;line-height:1.000000;font-style:normal;font-weight: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_c00312;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00312{font-family:ff7_c00312;line-height:1.006348;font-style:normal;font-weight: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_c00312;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00312{font-family:ff8_c00312;line-height:0.734863;font-style:normal;font-weight: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_c00312;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00312{font-family:ff9_c00312;line-height:0.940000;font-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_c00312{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00312{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00312{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00312{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00312{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00312{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00312{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00312{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00312{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00312{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00312{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00312{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00312{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00312{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00312{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00312{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00312{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00312{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00312{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00312{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00312{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00312{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00312{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00312{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00312{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00312{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00312{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00312{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00312{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00312{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00312{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00312{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00312{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00312{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00312{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00312{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00312{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00312{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00312{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00312{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00312{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00312{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00312{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00312{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00312{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00312{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00312{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00312{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00312{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00312{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00312{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00312{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00312{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00312{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00312{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00312{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00312{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00312{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00312{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00312{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00312{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00312{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00312{vertical-align:0.000000px;}
.v1_c00312{vertical-align:2.773440px;}
.ls0_c00312{letter-spacing:0.000000px;}
.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:-41.664701px;}
.ws3_c00312{word-spacing:-18.680283px;}
.ws2_c00312{word-spacing:-17.126514px;}
.ws5_c00312{word-spacing:0.000000px;}
.ws1_c00312{word-spacing:281.470806px;}
.ws0_c00312{word-spacing:281.744147px;}
._1_c00312{width:3.665731px;}
._6_c00312{width:4.922101px;}
._5_c00312{width:7.958140px;}
._4_c00312{width:17.177238px;}
._3_c00312{width:33.472181px;}
._2_c00312{width:36.874469px;}
._0_c00312{width:39.888072px;}
.fc3_c00312{color:rgb(9,71,81);}
.fc2_c00312{color:rgb(198,111,25);}
.fc1_c00312{color:rgb(255,255,255);}
.fc0_c00312{color:rgb(0,0,0);}
.fsb_c00312{font-size:41.974772px;}
.fs9_c00312{font-size:41.975069px;}
.fs2_c00312{font-size:47.339969px;}
.fs5_c00312{font-size:47.339970px;}
.fs1_c00312{font-size:47.339972px;}
.fs4_c00312{font-size:47.339973px;}
.fs3_c00312{font-size:47.339974px;}
.fs6_c00312{font-size:47.339975px;}
.fse_c00312{font-size:51.630774px;}
.fsd_c00312{font-size:53.967781px;}
.fs8_c00312{font-size:55.721735px;}
.fs10_c00312{font-size:59.949210px;}
.fsc_c00312{font-size:65.930638px;}
.fsf_c00312{font-size:71.912067px;}
.fs0_c00312{font-size:71.957041px;}
.fs7_c00312{font-size:76.965540px;}
.fsa_c00312{font-size:89.946302px;}
.y0_c00312{bottom:0.000000px;}
.y1_c00312{bottom:0.000008px;}
.y56_c00312{bottom:30.156225px;}
.y4e_c00312{bottom:80.976199px;}
.y4d_c00312{bottom:111.333076px;}
.y4c_c00312{bottom:141.689952px;}
.y4b_c00312{bottom:172.046829px;}
.y4a_c00312{bottom:202.403706px;}
.y49_c00312{bottom:232.760583px;}
.y48_c00312{bottom:263.117460px;}
.y47_c00312{bottom:293.474336px;}
.y4f_c00312{bottom:329.489984px;}
.y54_c00312{bottom:402.064151px;}
.y10_c00312{bottom:493.812629px;}
.y38_c00312{bottom:493.827623px;}
.yf_c00312{bottom:494.337609px;}
.y39_c00312{bottom:494.357158px;}
.y22_c00312{bottom:494.700737px;}
.y37_c00312{bottom:495.071586px;}
.ye_c00312{bottom:495.403002px;}
.y23_c00312{bottom:495.533530px;}
.y21_c00312{bottom:495.553663px;}
.y36_c00312{bottom:496.322201px;}
.yd_c00312{bottom:496.475623px;}
.y20_c00312{bottom:496.587915px;}
.y3a_c00312{bottom:496.772260px;}
.y11_c00312{bottom:496.835884px;}
.y24_c00312{bottom:497.713596px;}
.y35_c00312{bottom:497.966053px;}
.yc_c00312{bottom:498.126234px;}
.y1f_c00312{bottom:498.789265px;}
.y25_c00312{bottom:499.103521px;}
.y34_c00312{bottom:499.653306px;}
.yb_c00312{bottom:499.818769px;}
.y26_c00312{bottom:500.800864px;}
.y12_c00312{bottom:501.110605px;}
.y33_c00312{bottom:501.517382px;}
.ya_c00312{bottom:501.687706px;}
.y3b_c00312{bottom:501.869915px;}
.y1e_c00312{bottom:502.578702px;}
.y27_c00312{bottom:503.241722px;}
.y13_c00312{bottom:503.627848px;}
.y3c_c00312{bottom:505.496019px;}
.y28_c00312{bottom:505.499367px;}
.y32_c00312{bottom:506.168989px;}
.y9_c00312{bottom:506.348634px;}
.y1d_c00312{bottom:508.044213px;}
.y29_c00312{bottom:508.766327px;}
.y14_c00312{bottom:509.576794px;}
.y3d_c00312{bottom:511.126534px;}
.y1c_c00312{bottom:512.508085px;}
.y31_c00312{bottom:512.566592px;}
.y8_c00312{bottom:512.754669px;}
.y15_c00312{bottom:514.322677px;}
.y2a_c00312{bottom:517.158603px;}
.y3e_c00312{bottom:517.780195px;}
.y1b_c00312{bottom:518.929057px;}
.y30_c00312{bottom:519.869222px;}
.y7_c00312{bottom:519.959421px;}
.y6_c00312{bottom:523.416158px;}
.y1a_c00312{bottom:523.496236px;}
.y2b_c00312{bottom:525.202812px;}
.y16_c00312{bottom:526.099549px;}
.y2f_c00312{bottom:527.026630px;}
.y5_c00312{bottom:529.422883px;}
.y3f_c00312{bottom:529.736175px;}
.y19_c00312{bottom:531.263725px;}
.y2e_c00312{bottom:531.792993px;}
.y41_c00312{bottom:533.728456px;}
.y18_c00312{bottom:535.155114px;}
.y4_c00312{bottom:536.678099px;}
.y2d_c00312{bottom:537.961701px;}
.y17_c00312{bottom:538.332892px;}
.y40_c00312{bottom:538.696314px;}
.y50_c00312{bottom:539.306780px;}
.y2c_c00312{bottom:545.020884px;}
.y3_c00312{bottom:546.207017px;}
.y51_c00312{bottom:576.746779px;}
.y42_c00312{bottom:596.435373px;}
.y2_c00312{bottom:597.559761px;}
.y43_c00312{bottom:639.489911px;}
.y57_c00312{bottom:1024.443964px;}
.y55_c00312{bottom:1111.852403px;}
.y53_c00312{bottom:1134.432889px;}
.y45_c00312{bottom:1135.250490px;}
.y52_c00312{bottom:1153.546478px;}
.y46_c00312{bottom:1158.190703px;}
.y44_c00312{bottom:1170.658440px;}
.hf_c00312{height:32.157430px;}
.h8_c00312{height:35.967282px;}
.h7_c00312{height:35.967283px;}
.h9_c00312{height:35.967285px;}
.h5_c00312{height:36.267779px;}
.h4_c00312{height:36.267781px;}
.h6_c00312{height:36.267783px;}
.h12_c00312{height:37.437353px;}
.hc_c00312{height:39.085184px;}
.h14_c00312{height:45.561399px;}
.h10_c00312{height:50.091832px;}
.h11_c00312{height:50.252226px;}
.hb_c00312{height:51.885424px;}
.h13_c00312{height:55.092790px;}
.h3_c00312{height:55.127245px;}
.ha_c00312{height:59.035250px;}
.hd_c00312{height:67.002968px;}
.he_c00312{height:68.338108px;}
.h2_c00312{height:1304.999946px;}
.h0_c00312{height:1304.999953px;}
.h1_c00312{height:1305.000000px;}
.w2_c00312{width:934.874961px;}
.w0_c00312{width:934.875000px;}
.w1_c00312{width:935.250000px;}
.x0_c00312{left:0.000000px;}
.x3b_c00312{left:87.850202px;}
.x3d_c00312{left:107.403263px;}
.x39_c00312{left:109.695383px;}
.x40_c00312{left:131.272077px;}
.x27_c00312{left:134.894322px;}
.x26_c00312{left:136.566734px;}
.x28_c00312{left:139.937719px;}
.x29_c00312{left:144.785273px;}
.x2a_c00312{left:150.147890px;}
.x2b_c00312{left:152.899057px;}
.x2c_c00312{left:155.907145px;}
.x2d_c00312{left:159.752336px;}
.x37_c00312{left:161.347648px;}
.x2e_c00312{left:163.203941px;}
.x2f_c00312{left:171.483965px;}
.x30_c00312{left:179.748684px;}
.x31_c00312{left:188.175145px;}
.x32_c00312{left:196.556636px;}
.x33_c00312{left:200.721504px;}
.x34_c00312{left:205.276922px;}
.x35_c00312{left:209.084069px;}
.x36_c00312{left:211.669316px;}
.x3_c00312{left:230.260919px;}
.x2_c00312{left:232.395871px;}
.x4_c00312{left:235.482735px;}
.x5_c00312{left:240.319117px;}
.x6_c00312{left:245.673577px;}
.x7_c00312{left:248.421493px;}
.x8_c00312{left:251.426626px;}
.x9_c00312{left:255.268917px;}
.xa_c00312{left:258.553698px;}
.xb_c00312{left:262.988294px;}
.xc_c00312{left:271.601212px;}
.xd_c00312{left:283.434780px;}
.xe_c00312{left:290.867654px;}
.xf_c00312{left:294.260334px;}
.x3a_c00312{left:297.398529px;}
.x10_c00312{left:299.596701px;}
.x11_c00312{left:302.984150px;}
.x12_c00312{left:306.993562px;}
.x13_c00312{left:325.378518px;}
.x14_c00312{left:326.595106px;}
.x15_c00312{left:328.015253px;}
.x16_c00312{left:331.410444px;}
.x17_c00312{left:334.633053px;}
.x18_c00312{left:340.511825px;}
.x19_c00312{left:346.695139px;}
.x1a_c00312{left:352.384720px;}
.x1b_c00312{left:355.792694px;}
.x1c_c00312{left:363.695116px;}
.x1d_c00312{left:371.679253px;}
.x1e_c00312{left:378.434940px;}
.x1f_c00312{left:381.453328px;}
.x20_c00312{left:384.455783px;}
.x21_c00312{left:387.851715px;}
.x22_c00312{left:390.467224px;}
.x23_c00312{left:393.779799px;}
.x24_c00312{left:398.952070px;}
.x25_c00312{left:401.755082px;}
.x3f_c00312{left:451.985828px;}
.x1_c00312{left:465.097640px;}
.x38_c00312{left:676.474352px;}
.x3e_c00312{left:696.904800px;}
.x3c_c00312{left:733.103068px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.v1_c00312{vertical-align:2.465280pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.ws4_c00312{word-spacing:-37.035289pt;}
.ws3_c00312{word-spacing:-16.604696pt;}
.ws2_c00312{word-spacing:-15.223568pt;}
.ws5_c00312{word-spacing:0.000000pt;}
.ws1_c00312{word-spacing:250.196272pt;}
.ws0_c00312{word-spacing:250.439242pt;}
._1_c00312{width:3.258427pt;}
._6_c00312{width:4.375201pt;}
._5_c00312{width:7.073902pt;}
._4_c00312{width:15.268656pt;}
._3_c00312{width:29.753050pt;}
._2_c00312{width:32.777306pt;}
._0_c00312{width:35.456064pt;}
.fsb_c00312{font-size:37.310908pt;}
.fs9_c00312{font-size:37.311173pt;}
.fs2_c00312{font-size:42.079973pt;}
.fs5_c00312{font-size:42.079974pt;}
.fs1_c00312{font-size:42.079975pt;}
.fs4_c00312{font-size:42.079976pt;}
.fs3_c00312{font-size:42.079977pt;}
.fs6_c00312{font-size:42.079978pt;}
.fse_c00312{font-size:45.894021pt;}
.fsd_c00312{font-size:47.971361pt;}
.fs8_c00312{font-size:49.530431pt;}
.fs10_c00312{font-size:53.288186pt;}
.fsc_c00312{font-size:58.605012pt;}
.fsf_c00312{font-size:63.921837pt;}
.fs0_c00312{font-size:63.961814pt;}
.fs7_c00312{font-size:68.413814pt;}
.fsa_c00312{font-size:79.952268pt;}
.y0_c00312{bottom:0.000000pt;}
.y1_c00312{bottom:0.000007pt;}
.y56_c00312{bottom:26.805533pt;}
.y4e_c00312{bottom:71.978843pt;}
.y4d_c00312{bottom:98.962734pt;}
.y4c_c00312{bottom:125.946624pt;}
.y4b_c00312{bottom:152.930515pt;}
.y4a_c00312{bottom:179.914405pt;}
.y49_c00312{bottom:206.898296pt;}
.y48_c00312{bottom:233.882186pt;}
.y47_c00312{bottom:260.866077pt;}
.y4f_c00312{bottom:292.879986pt;}
.y54_c00312{bottom:357.390356pt;}
.y10_c00312{bottom:438.944560pt;}
.y38_c00312{bottom:438.957887pt;}
.yf_c00312{bottom:439.411208pt;}
.y39_c00312{bottom:439.428585pt;}
.y22_c00312{bottom:439.733989pt;}
.y37_c00312{bottom:440.063632pt;}
.ye_c00312{bottom:440.358224pt;}
.y23_c00312{bottom:440.474249pt;}
.y21_c00312{bottom:440.492144pt;}
.y36_c00312{bottom:441.175290pt;}
.yd_c00312{bottom:441.311665pt;}
.y20_c00312{bottom:441.411480pt;}
.y3a_c00312{bottom:441.575343pt;}
.y11_c00312{bottom:441.631897pt;}
.y24_c00312{bottom:442.412085pt;}
.y35_c00312{bottom:442.636491pt;}
.yc_c00312{bottom:442.778875pt;}
.y1f_c00312{bottom:443.368235pt;}
.y25_c00312{bottom:443.647574pt;}
.y34_c00312{bottom:444.136272pt;}
.yb_c00312{bottom:444.283350pt;}
.y26_c00312{bottom:445.156323pt;}
.y12_c00312{bottom:445.431649pt;}
.y33_c00312{bottom:445.793228pt;}
.ya_c00312{bottom:445.944627pt;}
.y3b_c00312{bottom:446.106592pt;}
.y1e_c00312{bottom:446.736624pt;}
.y27_c00312{bottom:447.325975pt;}
.y13_c00312{bottom:447.669198pt;}
.y3c_c00312{bottom:449.329795pt;}
.y28_c00312{bottom:449.332771pt;}
.y32_c00312{bottom:449.927990pt;}
.y9_c00312{bottom:450.087675pt;}
.y1d_c00312{bottom:451.594856pt;}
.y29_c00312{bottom:452.236735pt;}
.y14_c00312{bottom:452.957150pt;}
.y3d_c00312{bottom:454.334697pt;}
.y1c_c00312{bottom:455.562742pt;}
.y31_c00312{bottom:455.614749pt;}
.y8_c00312{bottom:455.781928pt;}
.y15_c00312{bottom:457.175713pt;}
.y2a_c00312{bottom:459.696536pt;}
.y3e_c00312{bottom:460.249062pt;}
.y1b_c00312{bottom:461.270273pt;}
.y30_c00312{bottom:462.105976pt;}
.y7_c00312{bottom:462.186152pt;}
.y6_c00312{bottom:465.258807pt;}
.y1a_c00312{bottom:465.329988pt;}
.y2b_c00312{bottom:466.846944pt;}
.y16_c00312{bottom:467.644044pt;}
.y2f_c00312{bottom:468.468115pt;}
.y5_c00312{bottom:470.598118pt;}
.y3f_c00312{bottom:470.876600pt;}
.y19_c00312{bottom:472.234422pt;}
.y2e_c00312{bottom:472.704883pt;}
.y41_c00312{bottom:474.425294pt;}
.y18_c00312{bottom:475.693435pt;}
.y4_c00312{bottom:477.047199pt;}
.y2d_c00312{bottom:478.188178pt;}
.y17_c00312{bottom:478.518126pt;}
.y40_c00312{bottom:478.841168pt;}
.y50_c00312{bottom:479.383805pt;}
.y2c_c00312{bottom:484.463008pt;}
.y3_c00312{bottom:485.517349pt;}
.y51_c00312{bottom:512.663803pt;}
.y42_c00312{bottom:530.164776pt;}
.y2_c00312{bottom:531.164232pt;}
.y43_c00312{bottom:568.435476pt;}
.y57_c00312{bottom:910.616857pt;}
.y55_c00312{bottom:988.313247pt;}
.y53_c00312{bottom:1008.384790pt;}
.y45_c00312{bottom:1009.111547pt;}
.y52_c00312{bottom:1025.374647pt;}
.y46_c00312{bottom:1029.502847pt;}
.y44_c00312{bottom:1040.585280pt;}
.hf_c00312{height:28.584382pt;}
.h8_c00312{height:31.970917pt;}
.h7_c00312{height:31.970918pt;}
.h9_c00312{height:31.970920pt;}
.h5_c00312{height:32.238026pt;}
.h4_c00312{height:32.238028pt;}
.h6_c00312{height:32.238029pt;}
.h12_c00312{height:33.277647pt;}
.hc_c00312{height:34.742386pt;}
.h14_c00312{height:40.499022pt;}
.h10_c00312{height:44.526073pt;}
.h11_c00312{height:44.668645pt;}
.hb_c00312{height:46.120377pt;}
.h13_c00312{height:48.971369pt;}
.h3_c00312{height:49.001996pt;}
.ha_c00312{height:52.475778pt;}
.hd_c00312{height:59.558193pt;}
.he_c00312{height:60.744985pt;}
.h2_c00312{height:1159.999952pt;}
.h0_c00312{height:1159.999959pt;}
.h1_c00312{height:1160.000000pt;}
.w2_c00312{width:830.999965pt;}
.w0_c00312{width:831.000000pt;}
.w1_c00312{width:831.333333pt;}
.x0_c00312{left:0.000000pt;}
.x3b_c00312{left:78.089069pt;}
.x3d_c00312{left:95.469567pt;}
.x39_c00312{left:97.507007pt;}
.x40_c00312{left:116.686291pt;}
.x27_c00312{left:119.906064pt;}
.x26_c00312{left:121.392652pt;}
.x28_c00312{left:124.389083pt;}
.x29_c00312{left:128.698021pt;}
.x2a_c00312{left:133.464791pt;}
.x2b_c00312{left:135.910272pt;}
.x2c_c00312{left:138.584129pt;}
.x2d_c00312{left:142.002076pt;}
.x37_c00312{left:143.420132pt;}
.x2e_c00312{left:145.070170pt;}
.x2f_c00312{left:152.430191pt;}
.x30_c00312{left:159.776608pt;}
.x31_c00312{left:167.266795pt;}
.x32_c00312{left:174.717010pt;}
.x33_c00312{left:178.419115pt;}
.x34_c00312{left:182.468375pt;}
.x35_c00312{left:185.852506pt;}
.x36_c00312{left:188.150503pt;}
.x3_c00312{left:204.676373pt;}
.x2_c00312{left:206.574107pt;}
.x4_c00312{left:209.317987pt;}
.x5_c00312{left:213.616993pt;}
.x6_c00312{left:218.376513pt;}
.x7_c00312{left:220.819105pt;}
.x8_c00312{left:223.490334pt;}
.x9_c00312{left:226.905704pt;}
.xa_c00312{left:229.825509pt;}
.xb_c00312{left:233.767373pt;}
.xc_c00312{left:241.423300pt;}
.xd_c00312{left:251.942027pt;}
.xe_c00312{left:258.549026pt;}
.xf_c00312{left:261.564741pt;}
.x3a_c00312{left:264.354248pt;}
.x10_c00312{left:266.308178pt;}
.x11_c00312{left:269.319244pt;}
.x12_c00312{left:272.883167pt;}
.x13_c00312{left:289.225349pt;}
.x14_c00312{left:290.306761pt;}
.x15_c00312{left:291.569114pt;}
.x16_c00312{left:294.587062pt;}
.x17_c00312{left:297.451603pt;}
.x18_c00312{left:302.677178pt;}
.x19_c00312{left:308.173457pt;}
.x1a_c00312{left:313.230862pt;}
.x1b_c00312{left:316.260173pt;}
.x1c_c00312{left:323.284548pt;}
.x1d_c00312{left:330.381558pt;}
.x1e_c00312{left:336.386614pt;}
.x1f_c00312{left:339.069625pt;}
.x20_c00312{left:341.738474pt;}
.x21_c00312{left:344.757080pt;}
.x22_c00312{left:347.081977pt;}
.x23_c00312{left:350.026488pt;}
.x24_c00312{left:354.624063pt;}
.x25_c00312{left:357.115628pt;}
.x3f_c00312{left:401.765180pt;}
.x1_c00312{left:413.420124pt;}
.x38_c00312{left:601.310535pt;}
.x3e_c00312{left:619.470933pt;}
.x3c_c00312{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7aaa2671899e649670243fe.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.006348;font-style:normal;font-weight:normal;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_a223663b84d71882168cbf89.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.000000;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.006348;font-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_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;}
.ls2_c00313{letter-spacing:0.000000px;}
.ls0_c00313{letter-spacing:0.000023px;}
.ls1_c00313{letter-spacing:6.113560px;}
.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;}
}
.ws0_c00313{word-spacing:-18.680283px;}
.ws1_c00313{word-spacing:0.000000px;}
._2_c00313{width:1.621232px;}
._7_c00313{width:3.042153px;}
._d_c00313{width:4.469785px;}
._8_c00313{width:5.683612px;}
._b_c00313{width:6.822694px;}
._e_c00313{width:7.914886px;}
._1_c00313{width:8.924361px;}
._f_c00313{width:9.936224px;}
._a_c00313{width:13.767124px;}
._3_c00313{width:14.938323px;}
._6_c00313{width:16.098337px;}
._0_c00313{width:17.650670px;}
._9_c00313{width:19.941189px;}
._4_c00313{width:26.479162px;}
._5_c00313{width:34.370052px;}
._c_c00313{width:39.109401px;}
.fc1_c00313{color:rgb(198,111,25);}
.fc0_c00313{color:rgb(0,0,0);}
.fs1_c00313{font-size:71.912067px;}
.fs0_c00313{font-size:71.957041px;}
.y0_c00313{bottom:0.000000px;}
.y1_c00313{bottom:0.000008px;}
.y25_c00313{bottom:30.156225px;}
.y22_c00313{bottom:87.436869px;}
.y21_c00313{bottom:117.793746px;}
.y20_c00313{bottom:148.150622px;}
.y24_c00313{bottom:184.170302px;}
.y1f_c00313{bottom:237.057485px;}
.y1e_c00313{bottom:267.414361px;}
.y1d_c00313{bottom:297.771238px;}
.y1c_c00313{bottom:328.128115px;}
.y23_c00313{bottom:360.025111px;}
.y1a_c00313{bottom:414.442643px;}
.y19_c00313{bottom:444.799520px;}
.y18_c00313{bottom:475.156396px;}
.y17_c00313{bottom:505.513273px;}
.y16_c00313{bottom:535.870150px;}
.y15_c00313{bottom:566.227027px;}
.y14_c00313{bottom:596.583904px;}
.y13_c00313{bottom:626.940780px;}
.y12_c00313{bottom:657.297657px;}
.y11_c00313{bottom:687.654534px;}
.y10_c00313{bottom:718.011411px;}
.y1b_c00313{bottom:749.942312px;}
.ye_c00313{bottom:804.335985px;}
.yd_c00313{bottom:834.692862px;}
.yc_c00313{bottom:865.049739px;}
.yb_c00313{bottom:895.406616px;}
.ya_c00313{bottom:925.763492px;}
.y9_c00313{bottom:956.120369px;}
.y8_c00313{bottom:986.477246px;}
.y7_c00313{bottom:1016.834123px;}
.y6_c00313{bottom:1047.191000px;}
.y5_c00313{bottom:1077.547876px;}
.y4_c00313{bottom:1107.904753px;}
.y3_c00313{bottom:1138.261630px;}
.y2_c00313{bottom:1168.618507px;}
.yf_c00313{bottom:1199.835078px;}
.h4_c00313{height:55.092790px;}
.h3_c00313{height:55.127245px;}
.h2_c00313{height:1304.999946px;}
.h0_c00313{height:1304.999953px;}
.h1_c00313{height:1305.000000px;}
.w2_c00313{width:934.874961px;}
.w0_c00313{width:934.875000px;}
.w1_c00313{width:935.250000px;}
.x0_c00313{left:0.000000px;}
.x1_c00313{left:87.850202px;}
.x2_c00313{left:451.985828px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls2_c00313{letter-spacing:0.000000pt;}
.ls0_c00313{letter-spacing:0.000020pt;}
.ls1_c00313{letter-spacing:5.434275pt;}
.ws0_c00313{word-spacing:-16.604696pt;}
.ws1_c00313{word-spacing:0.000000pt;}
._2_c00313{width:1.441095pt;}
._7_c00313{width:2.704136pt;}
._d_c00313{width:3.973142pt;}
._8_c00313{width:5.052100pt;}
._b_c00313{width:6.064617pt;}
._e_c00313{width:7.035454pt;}
._1_c00313{width:7.932765pt;}
._f_c00313{width:8.832199pt;}
._a_c00313{width:12.237444pt;}
._3_c00313{width:13.278510pt;}
._6_c00313{width:14.309633pt;}
._0_c00313{width:15.689484pt;}
._9_c00313{width:17.725501pt;}
._4_c00313{width:23.537033pt;}
._5_c00313{width:30.551157pt;}
._c_c00313{width:34.763912pt;}
.fs1_c00313{font-size:63.921837pt;}
.fs0_c00313{font-size:63.961814pt;}
.y0_c00313{bottom:0.000000pt;}
.y1_c00313{bottom:0.000007pt;}
.y25_c00313{bottom:26.805533pt;}
.y22_c00313{bottom:77.721661pt;}
.y21_c00313{bottom:104.705552pt;}
.y20_c00313{bottom:131.689442pt;}
.y24_c00313{bottom:163.706936pt;}
.y1f_c00313{bottom:210.717764pt;}
.y1e_c00313{bottom:237.701654pt;}
.y1d_c00313{bottom:264.685545pt;}
.y1c_c00313{bottom:291.669435pt;}
.y23_c00313{bottom:320.022321pt;}
.y1a_c00313{bottom:368.393460pt;}
.y19_c00313{bottom:395.377351pt;}
.y18_c00313{bottom:422.361241pt;}
.y17_c00313{bottom:449.345132pt;}
.y16_c00313{bottom:476.329022pt;}
.y15_c00313{bottom:503.312913pt;}
.y14_c00313{bottom:530.296803pt;}
.y13_c00313{bottom:557.280694pt;}
.y12_c00313{bottom:584.264584pt;}
.y11_c00313{bottom:611.248474pt;}
.y10_c00313{bottom:638.232365pt;}
.y1b_c00313{bottom:666.615388pt;}
.ye_c00313{bottom:714.965320pt;}
.yd_c00313{bottom:741.949211pt;}
.yc_c00313{bottom:768.933101pt;}
.yb_c00313{bottom:795.916992pt;}
.ya_c00313{bottom:822.900882pt;}
.y9_c00313{bottom:849.884773pt;}
.y8_c00313{bottom:876.868663pt;}
.y7_c00313{bottom:903.852554pt;}
.y6_c00313{bottom:930.836444pt;}
.y5_c00313{bottom:957.820334pt;}
.y4_c00313{bottom:984.804225pt;}
.y3_c00313{bottom:1011.788115pt;}
.y2_c00313{bottom:1038.772006pt;}
.yf_c00313{bottom:1066.520069pt;}
.h4_c00313{height:48.971369pt;}
.h3_c00313{height:49.001996pt;}
.h2_c00313{height:1159.999952pt;}
.h0_c00313{height:1159.999959pt;}
.h1_c00313{height:1160.000000pt;}
.w2_c00313{width:830.999965pt;}
.w0_c00313{width:831.000000pt;}
.w1_c00313{width:831.333333pt;}
.x0_c00313{left:0.000000pt;}
.x1_c00313{left:78.089069pt;}
.x2_c00313{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4132319218d6a12950432944.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:0.743000;font-style:normal;font-weight:normal;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_b75d31c56979b31cf4589d0a.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.000000;font-style:normal;font-weight: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_b93eb23637edb87139959b8d.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:1.171387;font-style:normal;font-weight: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_c00314;src:url('chunks/assets/font_ed50790d9454e5f37c07126b.woff2')format("woff");}.ff6_c00314{font-family:ff6_c00314;line-height:1.000000;font-style:normal;font-weight: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_c00314;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00314{font-family:ff7_c00314;line-height:1.006348;font-style:normal;font-weight: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_c00314;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00314{font-family:ff8_c00314;line-height:0.734863;font-style:normal;font-weight: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_c00314;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00314{font-family:ff9_c00314;line-height:0.940000;font-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_c00314{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00314{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00314{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00314{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00314{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00314{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00314{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00314{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00314{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00314{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00314{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00314{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00314{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00314{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00314{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00314{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00314{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00314{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00314{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00314{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00314{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00314{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00314{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00314{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00314{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00314{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00314{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00314{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00314{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00314{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00314{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00314{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00314{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00314{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00314{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00314{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00314{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00314{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00314{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00314{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00314{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00314{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00314{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00314{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00314{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00314{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00314{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00314{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00314{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00314{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00314{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00314{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00314{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00314{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00314{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00314{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00314{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00314{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00314{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00314{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00314{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00314{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00314{vertical-align:0.000000px;}
.v1_c00314{vertical-align:26.810561px;}
.ls0_c00314{letter-spacing:0.000000px;}
.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:-41.664701px;}
.ws2_c00314{word-spacing:-18.680283px;}
.ws4_c00314{word-spacing:0.000000px;}
.ws1_c00314{word-spacing:281.470806px;}
.ws0_c00314{word-spacing:1114.343689px;}
._4_c00314{width:2.966389px;}
._3_c00314{width:5.680177px;}
._1_c00314{width:7.132459px;}
._2_c00314{width:19.756042px;}
._0_c00314{width:22.735198px;}
.fc3_c00314{color:rgb(9,71,81);}
.fc2_c00314{color:rgb(198,111,25);}
.fc1_c00314{color:rgb(255,255,255);}
.fc0_c00314{color:rgb(0,0,0);}
.fs8_c00314{font-size:41.974772px;}
.fsc_c00314{font-size:41.975069px;}
.fs2_c00314{font-size:47.339969px;}
.fs5_c00314{font-size:47.339970px;}
.fs1_c00314{font-size:47.339972px;}
.fs4_c00314{font-size:47.339973px;}
.fs3_c00314{font-size:47.339974px;}
.fs6_c00314{font-size:47.339975px;}
.fsd_c00314{font-size:51.630774px;}
.fs9_c00314{font-size:55.721735px;}
.fsb_c00314{font-size:59.949210px;}
.fse_c00314{font-size:71.912067px;}
.fs0_c00314{font-size:71.957041px;}
.fs7_c00314{font-size:76.965540px;}
.fsa_c00314{font-size:89.946302px;}
.y0_c00314{bottom:0.000000px;}
.y1_c00314{bottom:0.000008px;}
.y54_c00314{bottom:30.156225px;}
.y50_c00314{bottom:96.716788px;}
.y4f_c00314{bottom:127.073665px;}
.y4e_c00314{bottom:157.430542px;}
.y4d_c00314{bottom:187.787419px;}
.y4c_c00314{bottom:218.144295px;}
.y4b_c00314{bottom:248.501172px;}
.y4a_c00314{bottom:278.858049px;}
.y51_c00314{bottom:314.873661px;}
.y52_c00314{bottom:402.064151px;}
.y53_c00314{bottom:487.376458px;}
.y10_c00314{bottom:493.812629px;}
.y38_c00314{bottom:493.827623px;}
.yf_c00314{bottom:494.337609px;}
.y39_c00314{bottom:494.357158px;}
.y22_c00314{bottom:494.700737px;}
.y37_c00314{bottom:495.071586px;}
.ye_c00314{bottom:495.403002px;}
.y23_c00314{bottom:495.533530px;}
.y21_c00314{bottom:495.553663px;}
.y36_c00314{bottom:496.322201px;}
.yd_c00314{bottom:496.475623px;}
.y20_c00314{bottom:496.587915px;}
.y3a_c00314{bottom:496.772260px;}
.y11_c00314{bottom:496.835884px;}
.y24_c00314{bottom:497.713596px;}
.y35_c00314{bottom:497.966053px;}
.yc_c00314{bottom:498.126234px;}
.y1f_c00314{bottom:498.789265px;}
.y25_c00314{bottom:499.103521px;}
.y34_c00314{bottom:499.653306px;}
.yb_c00314{bottom:499.818769px;}
.y26_c00314{bottom:500.800864px;}
.y12_c00314{bottom:501.110605px;}
.y33_c00314{bottom:501.517382px;}
.ya_c00314{bottom:501.687706px;}
.y3b_c00314{bottom:501.869915px;}
.y1e_c00314{bottom:502.578702px;}
.y27_c00314{bottom:503.241722px;}
.y13_c00314{bottom:503.627848px;}
.y3c_c00314{bottom:505.496019px;}
.y28_c00314{bottom:505.499367px;}
.y32_c00314{bottom:506.168989px;}
.y9_c00314{bottom:506.348634px;}
.y1d_c00314{bottom:508.044213px;}
.y29_c00314{bottom:508.766327px;}
.y14_c00314{bottom:509.576794px;}
.y3d_c00314{bottom:511.126534px;}
.y1c_c00314{bottom:512.508085px;}
.y31_c00314{bottom:512.566592px;}
.y8_c00314{bottom:512.754669px;}
.y15_c00314{bottom:514.322677px;}
.y2a_c00314{bottom:517.158603px;}
.y3e_c00314{bottom:517.780195px;}
.y1b_c00314{bottom:518.929057px;}
.y30_c00314{bottom:519.869222px;}
.y7_c00314{bottom:519.959421px;}
.y6_c00314{bottom:523.416158px;}
.y1a_c00314{bottom:523.496236px;}
.y2b_c00314{bottom:525.202812px;}
.y16_c00314{bottom:526.099549px;}
.y2f_c00314{bottom:527.026630px;}
.y5_c00314{bottom:529.422883px;}
.y3f_c00314{bottom:529.736175px;}
.y19_c00314{bottom:531.263725px;}
.y2e_c00314{bottom:531.792993px;}
.y41_c00314{bottom:533.728456px;}
.y49_c00314{bottom:534.421816px;}
.y18_c00314{bottom:535.155114px;}
.y4_c00314{bottom:536.678099px;}
.y2d_c00314{bottom:537.961701px;}
.y17_c00314{bottom:538.332892px;}
.y40_c00314{bottom:538.696314px;}
.y2c_c00314{bottom:545.020884px;}
.y3_c00314{bottom:546.207017px;}
.y42_c00314{bottom:577.871130px;}
.y2_c00314{bottom:597.559761px;}
.y43_c00314{bottom:639.489911px;}
.y55_c00314{bottom:1024.443964px;}
.y47_c00314{bottom:1127.585799px;}
.y45_c00314{bottom:1129.718199px;}
.y44_c00314{bottom:1147.707459px;}
.y48_c00314{bottom:1150.991694px;}
.y46_c00314{bottom:1170.658440px;}
.hb_c00314{height:32.157430px;}
.h8_c00314{height:35.967282px;}
.h7_c00314{height:35.967283px;}
.h9_c00314{height:35.967285px;}
.h5_c00314{height:36.267779px;}
.h4_c00314{height:36.267781px;}
.h6_c00314{height:36.267783px;}
.h13_c00314{height:37.437353px;}
.hf_c00314{height:39.085184px;}
.h15_c00314{height:45.561399px;}
.hc_c00314{height:51.885424px;}
.h14_c00314{height:55.092790px;}
.h3_c00314{height:55.127245px;}
.he_c00314{height:55.821847px;}
.h12_c00314{height:56.261810px;}
.ha_c00314{height:58.967991px;}
.h10_c00314{height:67.002968px;}
.hd_c00314{height:68.338108px;}
.h11_c00314{height:83.753709px;}
.h2_c00314{height:1304.999946px;}
.h0_c00314{height:1304.999953px;}
.h1_c00314{height:1305.000000px;}
.w2_c00314{width:934.874961px;}
.w0_c00314{width:934.875000px;}
.w1_c00314{width:935.250000px;}
.x0_c00314{left:0.000000px;}
.x3e_c00314{left:89.434062px;}
.x3a_c00314{left:107.403263px;}
.x3b_c00314{left:109.658623px;}
.x42_c00314{left:131.272077px;}
.x27_c00314{left:134.894322px;}
.x26_c00314{left:136.566734px;}
.x28_c00314{left:139.937719px;}
.x29_c00314{left:144.785273px;}
.x2a_c00314{left:150.147890px;}
.x2b_c00314{left:152.899057px;}
.x2c_c00314{left:155.907145px;}
.x2d_c00314{left:159.752336px;}
.x37_c00314{left:161.347648px;}
.x2e_c00314{left:163.203941px;}
.x2f_c00314{left:171.483965px;}
.x30_c00314{left:179.748684px;}
.x31_c00314{left:188.175145px;}
.x32_c00314{left:196.556636px;}
.x33_c00314{left:200.721504px;}
.x34_c00314{left:205.276922px;}
.x35_c00314{left:209.084069px;}
.x36_c00314{left:211.669316px;}
.x3_c00314{left:230.260919px;}
.x2_c00314{left:232.395871px;}
.x4_c00314{left:235.482735px;}
.x5_c00314{left:240.319117px;}
.x6_c00314{left:245.673577px;}
.x7_c00314{left:248.421493px;}
.x8_c00314{left:251.426626px;}
.x9_c00314{left:255.268917px;}
.x3d_c00314{left:256.468943px;}
.xa_c00314{left:258.553698px;}
.xb_c00314{left:262.988294px;}
.xc_c00314{left:271.601212px;}
.xd_c00314{left:283.434780px;}
.xe_c00314{left:290.867654px;}
.xf_c00314{left:294.260334px;}
.x3c_c00314{left:295.438786px;}
.x10_c00314{left:299.596701px;}
.x11_c00314{left:302.984150px;}
.x12_c00314{left:306.993562px;}
.x13_c00314{left:325.378518px;}
.x14_c00314{left:326.595106px;}
.x15_c00314{left:328.015253px;}
.x16_c00314{left:331.410444px;}
.x17_c00314{left:334.633053px;}
.x18_c00314{left:340.511825px;}
.x19_c00314{left:346.695139px;}
.x1a_c00314{left:352.384720px;}
.x1b_c00314{left:355.792694px;}
.x1c_c00314{left:363.695116px;}
.x1d_c00314{left:371.679253px;}
.x1e_c00314{left:378.434940px;}
.x1f_c00314{left:381.453328px;}
.x20_c00314{left:384.455783px;}
.x21_c00314{left:387.851715px;}
.x22_c00314{left:390.467224px;}
.x23_c00314{left:393.779799px;}
.x24_c00314{left:398.952070px;}
.x25_c00314{left:401.755082px;}
.x41_c00314{left:451.985828px;}
.x1_c00314{left:465.097640px;}
.x39_c00314{left:676.474352px;}
.x3f_c00314{left:696.904800px;}
.x38_c00314{left:733.103068px;}
.x40_c00314{left:756.637341px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.v1_c00314{vertical-align:23.831609pt;}
.ls0_c00314{letter-spacing:0.000000pt;}
.ws3_c00314{word-spacing:-37.035289pt;}
.ws2_c00314{word-spacing:-16.604696pt;}
.ws4_c00314{word-spacing:0.000000pt;}
.ws1_c00314{word-spacing:250.196272pt;}
.ws0_c00314{word-spacing:990.527723pt;}
._4_c00314{width:2.636791pt;}
._3_c00314{width:5.049046pt;}
._1_c00314{width:6.339964pt;}
._2_c00314{width:17.560926pt;}
._0_c00314{width:20.209065pt;}
.fs8_c00314{font-size:37.310908pt;}
.fsc_c00314{font-size:37.311173pt;}
.fs2_c00314{font-size:42.079973pt;}
.fs5_c00314{font-size:42.079974pt;}
.fs1_c00314{font-size:42.079975pt;}
.fs4_c00314{font-size:42.079976pt;}
.fs3_c00314{font-size:42.079977pt;}
.fs6_c00314{font-size:42.079978pt;}
.fsd_c00314{font-size:45.894021pt;}
.fs9_c00314{font-size:49.530431pt;}
.fsb_c00314{font-size:53.288186pt;}
.fse_c00314{font-size:63.921837pt;}
.fs0_c00314{font-size:63.961814pt;}
.fs7_c00314{font-size:68.413814pt;}
.fsa_c00314{font-size:79.952268pt;}
.y0_c00314{bottom:0.000000pt;}
.y1_c00314{bottom:0.000007pt;}
.y54_c00314{bottom:26.805533pt;}
.y50_c00314{bottom:85.970478pt;}
.y4f_c00314{bottom:112.954369pt;}
.y4e_c00314{bottom:139.938259pt;}
.y4d_c00314{bottom:166.922150pt;}
.y4c_c00314{bottom:193.906040pt;}
.y4b_c00314{bottom:220.889931pt;}
.y4a_c00314{bottom:247.873821pt;}
.y51_c00314{bottom:279.887699pt;}
.y52_c00314{bottom:357.390356pt;}
.y53_c00314{bottom:433.223518pt;}
.y10_c00314{bottom:438.944560pt;}
.y38_c00314{bottom:438.957887pt;}
.yf_c00314{bottom:439.411208pt;}
.y39_c00314{bottom:439.428585pt;}
.y22_c00314{bottom:439.733989pt;}
.y37_c00314{bottom:440.063632pt;}
.ye_c00314{bottom:440.358224pt;}
.y23_c00314{bottom:440.474249pt;}
.y21_c00314{bottom:440.492144pt;}
.y36_c00314{bottom:441.175290pt;}
.yd_c00314{bottom:441.311665pt;}
.y20_c00314{bottom:441.411480pt;}
.y3a_c00314{bottom:441.575343pt;}
.y11_c00314{bottom:441.631897pt;}
.y24_c00314{bottom:442.412085pt;}
.y35_c00314{bottom:442.636491pt;}
.yc_c00314{bottom:442.778875pt;}
.y1f_c00314{bottom:443.368235pt;}
.y25_c00314{bottom:443.647574pt;}
.y34_c00314{bottom:444.136272pt;}
.yb_c00314{bottom:444.283350pt;}
.y26_c00314{bottom:445.156323pt;}
.y12_c00314{bottom:445.431649pt;}
.y33_c00314{bottom:445.793228pt;}
.ya_c00314{bottom:445.944627pt;}
.y3b_c00314{bottom:446.106592pt;}
.y1e_c00314{bottom:446.736624pt;}
.y27_c00314{bottom:447.325975pt;}
.y13_c00314{bottom:447.669198pt;}
.y3c_c00314{bottom:449.329795pt;}
.y28_c00314{bottom:449.332771pt;}
.y32_c00314{bottom:449.927990pt;}
.y9_c00314{bottom:450.087675pt;}
.y1d_c00314{bottom:451.594856pt;}
.y29_c00314{bottom:452.236735pt;}
.y14_c00314{bottom:452.957150pt;}
.y3d_c00314{bottom:454.334697pt;}
.y1c_c00314{bottom:455.562742pt;}
.y31_c00314{bottom:455.614749pt;}
.y8_c00314{bottom:455.781928pt;}
.y15_c00314{bottom:457.175713pt;}
.y2a_c00314{bottom:459.696536pt;}
.y3e_c00314{bottom:460.249062pt;}
.y1b_c00314{bottom:461.270273pt;}
.y30_c00314{bottom:462.105976pt;}
.y7_c00314{bottom:462.186152pt;}
.y6_c00314{bottom:465.258807pt;}
.y1a_c00314{bottom:465.329988pt;}
.y2b_c00314{bottom:466.846944pt;}
.y16_c00314{bottom:467.644044pt;}
.y2f_c00314{bottom:468.468115pt;}
.y5_c00314{bottom:470.598118pt;}
.y3f_c00314{bottom:470.876600pt;}
.y19_c00314{bottom:472.234422pt;}
.y2e_c00314{bottom:472.704883pt;}
.y41_c00314{bottom:474.425294pt;}
.y49_c00314{bottom:475.041614pt;}
.y18_c00314{bottom:475.693435pt;}
.y4_c00314{bottom:477.047199pt;}
.y2d_c00314{bottom:478.188178pt;}
.y17_c00314{bottom:478.518126pt;}
.y40_c00314{bottom:478.841168pt;}
.y2c_c00314{bottom:484.463008pt;}
.y3_c00314{bottom:485.517349pt;}
.y42_c00314{bottom:513.663227pt;}
.y2_c00314{bottom:531.164232pt;}
.y43_c00314{bottom:568.435476pt;}
.y55_c00314{bottom:910.616857pt;}
.y47_c00314{bottom:1002.298488pt;}
.y45_c00314{bottom:1004.193955pt;}
.y44_c00314{bottom:1020.184408pt;}
.y48_c00314{bottom:1023.103728pt;}
.y46_c00314{bottom:1040.585280pt;}
.hb_c00314{height:28.584382pt;}
.h8_c00314{height:31.970917pt;}
.h7_c00314{height:31.970918pt;}
.h9_c00314{height:31.970920pt;}
.h5_c00314{height:32.238026pt;}
.h4_c00314{height:32.238028pt;}
.h6_c00314{height:32.238029pt;}
.h13_c00314{height:33.277647pt;}
.hf_c00314{height:34.742386pt;}
.h15_c00314{height:40.499022pt;}
.hc_c00314{height:46.120377pt;}
.h14_c00314{height:48.971369pt;}
.h3_c00314{height:49.001996pt;}
.he_c00314{height:49.619420pt;}
.h12_c00314{height:50.010498pt;}
.ha_c00314{height:52.415992pt;}
.h10_c00314{height:59.558193pt;}
.hd_c00314{height:60.744985pt;}
.h11_c00314{height:74.447742pt;}
.h2_c00314{height:1159.999952pt;}
.h0_c00314{height:1159.999959pt;}
.h1_c00314{height:1160.000000pt;}
.w2_c00314{width:830.999965pt;}
.w0_c00314{width:831.000000pt;}
.w1_c00314{width:831.333333pt;}
.x0_c00314{left:0.000000pt;}
.x3e_c00314{left:79.496944pt;}
.x3a_c00314{left:95.469567pt;}
.x3b_c00314{left:97.474332pt;}
.x42_c00314{left:116.686291pt;}
.x27_c00314{left:119.906064pt;}
.x26_c00314{left:121.392652pt;}
.x28_c00314{left:124.389083pt;}
.x29_c00314{left:128.698021pt;}
.x2a_c00314{left:133.464791pt;}
.x2b_c00314{left:135.910272pt;}
.x2c_c00314{left:138.584129pt;}
.x2d_c00314{left:142.002076pt;}
.x37_c00314{left:143.420132pt;}
.x2e_c00314{left:145.070170pt;}
.x2f_c00314{left:152.430191pt;}
.x30_c00314{left:159.776608pt;}
.x31_c00314{left:167.266795pt;}
.x32_c00314{left:174.717010pt;}
.x33_c00314{left:178.419115pt;}
.x34_c00314{left:182.468375pt;}
.x35_c00314{left:185.852506pt;}
.x36_c00314{left:188.150503pt;}
.x3_c00314{left:204.676373pt;}
.x2_c00314{left:206.574107pt;}
.x4_c00314{left:209.317987pt;}
.x5_c00314{left:213.616993pt;}
.x6_c00314{left:218.376513pt;}
.x7_c00314{left:220.819105pt;}
.x8_c00314{left:223.490334pt;}
.x9_c00314{left:226.905704pt;}
.x3d_c00314{left:227.972394pt;}
.xa_c00314{left:229.825509pt;}
.xb_c00314{left:233.767373pt;}
.xc_c00314{left:241.423300pt;}
.xd_c00314{left:251.942027pt;}
.xe_c00314{left:258.549026pt;}
.xf_c00314{left:261.564741pt;}
.x3c_c00314{left:262.612255pt;}
.x10_c00314{left:266.308178pt;}
.x11_c00314{left:269.319244pt;}
.x12_c00314{left:272.883167pt;}
.x13_c00314{left:289.225349pt;}
.x14_c00314{left:290.306761pt;}
.x15_c00314{left:291.569114pt;}
.x16_c00314{left:294.587062pt;}
.x17_c00314{left:297.451603pt;}
.x18_c00314{left:302.677178pt;}
.x19_c00314{left:308.173457pt;}
.x1a_c00314{left:313.230862pt;}
.x1b_c00314{left:316.260173pt;}
.x1c_c00314{left:323.284548pt;}
.x1d_c00314{left:330.381558pt;}
.x1e_c00314{left:336.386614pt;}
.x1f_c00314{left:339.069625pt;}
.x20_c00314{left:341.738474pt;}
.x21_c00314{left:344.757080pt;}
.x22_c00314{left:347.081977pt;}
.x23_c00314{left:350.026488pt;}
.x24_c00314{left:354.624063pt;}
.x25_c00314{left:357.115628pt;}
.x41_c00314{left:401.765180pt;}
.x1_c00314{left:413.420124pt;}
.x39_c00314{left:601.310535pt;}
.x3f_c00314{left:619.470933pt;}
.x38_c00314{left:651.647171pt;}
.x40_c00314{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3d7d199e7d7135966bf6c2f.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.171387;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_a7f2f2127b1fda62c3aacc97.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:0.974121;font-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_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;}
.ls0_c00315{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00315{word-spacing:-18.680283px;}
.ws1_c00315{word-spacing:0.000000px;}
._6_c00315{width:1.257462px;}
._2_c00315{width:2.348983px;}
._1_c00315{width:4.095729px;}
._b_c00315{width:5.147881px;}
._5_c00315{width:6.247626px;}
._9_c00315{width:7.492597px;}
._a_c00315{width:10.854057px;}
._4_c00315{width:11.945994px;}
._c_c00315{width:14.418226px;}
._8_c00315{width:15.723035px;}
._0_c00315{width:16.787593px;}
._7_c00315{width:20.620494px;}
._d_c00315{width:25.878706px;}
._3_c00315{width:33.550276px;}
.fc1_c00315{color:rgb(198,111,25);}
.fc0_c00315{color:rgb(0,0,0);}
.fs1_c00315{font-size:71.912067px;}
.fs0_c00315{font-size:71.957041px;}
.y0_c00315{bottom:0.000000px;}
.y1_c00315{bottom:0.000008px;}
.y1e_c00315{bottom:30.156225px;}
.y12_c00315{bottom:326.257508px;}
.y11_c00315{bottom:356.614385px;}
.y10_c00315{bottom:386.971262px;}
.yf_c00315{bottom:417.328139px;}
.ye_c00315{bottom:447.685015px;}
.yd_c00315{bottom:478.041892px;}
.yc_c00315{bottom:508.398769px;}
.yb_c00315{bottom:538.755646px;}
.ya_c00315{bottom:569.112523px;}
.y9_c00315{bottom:599.469399px;}
.y8_c00315{bottom:629.826276px;}
.y7_c00315{bottom:660.183153px;}
.y6_c00315{bottom:690.540030px;}
.y5_c00315{bottom:720.896906px;}
.y4_c00315{bottom:751.253783px;}
.y3_c00315{bottom:781.610660px;}
.y2_c00315{bottom:811.967537px;}
.y13_c00315{bottom:849.930065px;}
.y1c_c00315{bottom:922.373056px;}
.y1b_c00315{bottom:952.729933px;}
.y1a_c00315{bottom:983.086809px;}
.y19_c00315{bottom:1013.443686px;}
.y18_c00315{bottom:1043.800563px;}
.y17_c00315{bottom:1074.157440px;}
.y16_c00315{bottom:1104.514316px;}
.y15_c00315{bottom:1134.871193px;}
.y14_c00315{bottom:1165.228070px;}
.y1d_c00315{bottom:1198.941187px;}
.h4_c00315{height:55.127245px;}
.h5_c00315{height:66.961090px;}
.h3_c00315{height:67.002968px;}
.h2_c00315{height:1304.999946px;}
.h0_c00315{height:1304.999953px;}
.h1_c00315{height:1305.000000px;}
.w2_c00315{width:934.874961px;}
.w0_c00315{width:934.875000px;}
.w1_c00315{width:935.250000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:87.850202px;}
.x2_c00315{left:89.434062px;}
.x3_c00315{left:451.985828px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws0_c00315{word-spacing:-16.604696pt;}
.ws1_c00315{word-spacing:0.000000pt;}
._6_c00315{width:1.117744pt;}
._2_c00315{width:2.087985pt;}
._1_c00315{width:3.640648pt;}
._b_c00315{width:4.575894pt;}
._5_c00315{width:5.553445pt;}
._9_c00315{width:6.660086pt;}
._a_c00315{width:9.648051pt;}
._4_c00315{width:10.618661pt;}
._c_c00315{width:12.816201pt;}
._8_c00315{width:13.976031pt;}
._0_c00315{width:14.922305pt;}
._7_c00315{width:18.329328pt;}
._d_c00315{width:23.003294pt;}
._3_c00315{width:29.822467pt;}
.fs1_c00315{font-size:63.921837pt;}
.fs0_c00315{font-size:63.961814pt;}
.y0_c00315{bottom:0.000000pt;}
.y1_c00315{bottom:0.000007pt;}
.y1e_c00315{bottom:26.805533pt;}
.y12_c00315{bottom:290.006674pt;}
.y11_c00315{bottom:316.990565pt;}
.y10_c00315{bottom:343.974455pt;}
.yf_c00315{bottom:370.958346pt;}
.ye_c00315{bottom:397.942236pt;}
.yd_c00315{bottom:424.926126pt;}
.yc_c00315{bottom:451.910017pt;}
.yb_c00315{bottom:478.893907pt;}
.ya_c00315{bottom:505.877798pt;}
.y9_c00315{bottom:532.861688pt;}
.y8_c00315{bottom:559.845579pt;}
.y7_c00315{bottom:586.829469pt;}
.y6_c00315{bottom:613.813360pt;}
.y5_c00315{bottom:640.797250pt;}
.y4_c00315{bottom:667.781141pt;}
.y3_c00315{bottom:694.765031pt;}
.y2_c00315{bottom:721.748921pt;}
.y13_c00315{bottom:755.493391pt;}
.y1c_c00315{bottom:819.887161pt;}
.y1b_c00315{bottom:846.871051pt;}
.y1a_c00315{bottom:873.854942pt;}
.y19_c00315{bottom:900.838832pt;}
.y18_c00315{bottom:927.822723pt;}
.y17_c00315{bottom:954.806613pt;}
.y16_c00315{bottom:981.790503pt;}
.y15_c00315{bottom:1008.774394pt;}
.y14_c00315{bottom:1035.758284pt;}
.y1d_c00315{bottom:1065.725500pt;}
.h4_c00315{height:49.001996pt;}
.h5_c00315{height:59.520969pt;}
.h3_c00315{height:59.558193pt;}
.h2_c00315{height:1159.999952pt;}
.h0_c00315{height:1159.999959pt;}
.h1_c00315{height:1160.000000pt;}
.w2_c00315{width:830.999965pt;}
.w0_c00315{width:831.000000pt;}
.w1_c00315{width:831.333333pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:78.089069pt;}
.x2_c00315{left:79.496944pt;}
.x3_c00315{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_259c53be234aa92cdbdae3a2.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.171387;font-style:normal;font-weight:normal;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_649d764f3b3e2b3d688187c7.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.005371;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.006348;font-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_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);}
.v0_c00316{vertical-align:0.000000px;}
.ls2_c00316{letter-spacing:0.000000px;}
.ls1_c00316{letter-spacing:0.035113px;}
.ls0_c00316{letter-spacing:0.035135px;}
.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;}
}
.ws0_c00316{word-spacing:-18.691966px;}
.ws1_c00316{word-spacing:-18.680283px;}
.ws2_c00316{word-spacing:0.000000px;}
._a_c00316{width:1.791898px;}
._6_c00316{width:3.730721px;}
._b_c00316{width:4.915721px;}
._5_c00316{width:5.972996px;}
._8_c00316{width:7.161898px;}
._d_c00316{width:9.243732px;}
._2_c00316{width:10.786528px;}
._c_c00316{width:14.152447px;}
._e_c00316{width:16.348410px;}
._1_c00316{width:17.468061px;}
._7_c00316{width:20.534027px;}
._4_c00316{width:21.986855px;}
._9_c00316{width:26.274114px;}
._3_c00316{width:30.305750px;}
._0_c00316{width:35.291393px;}
.fc1_c00316{color:rgb(198,111,25);}
.fc0_c00316{color:rgb(0,0,0);}
.fs1_c00316{font-size:71.912067px;}
.fs0_c00316{font-size:71.957041px;}
.y0_c00316{bottom:0.000000px;}
.y1_c00316{bottom:0.000008px;}
.y22_c00316{bottom:30.156225px;}
.y1f_c00316{bottom:202.156094px;}
.y1e_c00316{bottom:232.512970px;}
.y1d_c00316{bottom:262.869847px;}
.y1c_c00316{bottom:293.226724px;}
.y1b_c00316{bottom:323.583601px;}
.y1a_c00316{bottom:353.940477px;}
.y19_c00316{bottom:384.297354px;}
.y18_c00316{bottom:414.654231px;}
.y17_c00316{bottom:445.011108px;}
.y16_c00316{bottom:475.367985px;}
.y15_c00316{bottom:505.724861px;}
.y14_c00316{bottom:536.081738px;}
.y13_c00316{bottom:566.438615px;}
.y12_c00316{bottom:596.795492px;}
.y20_c00316{bottom:631.148120px;}
.y11_c00316{bottom:706.797682px;}
.y10_c00316{bottom:737.154559px;}
.yf_c00316{bottom:767.511435px;}
.ye_c00316{bottom:797.868312px;}
.yd_c00316{bottom:828.225189px;}
.yc_c00316{bottom:858.582066px;}
.yb_c00316{bottom:888.938942px;}
.ya_c00316{bottom:919.295819px;}
.y9_c00316{bottom:949.652696px;}
.y8_c00316{bottom:980.009573px;}
.y7_c00316{bottom:1010.366449px;}
.y6_c00316{bottom:1040.723326px;}
.y5_c00316{bottom:1071.080203px;}
.y4_c00316{bottom:1101.437080px;}
.y3_c00316{bottom:1131.793957px;}
.y2_c00316{bottom:1162.150833px;}
.y21_c00316{bottom:1199.835078px;}
.h4_c00316{height:55.127245px;}
.h5_c00316{height:66.961090px;}
.h3_c00316{height:67.002968px;}
.h2_c00316{height:1304.999946px;}
.h0_c00316{height:1304.999953px;}
.h1_c00316{height:1305.000000px;}
.w2_c00316{width:934.874961px;}
.w0_c00316{width:934.875000px;}
.w1_c00316{width:935.250000px;}
.x0_c00316{left:0.000000px;}
.x1_c00316{left:89.434062px;}
.x2_c00316{left:451.985828px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls2_c00316{letter-spacing:0.000000pt;}
.ls1_c00316{letter-spacing:0.031211pt;}
.ls0_c00316{letter-spacing:0.031231pt;}
.ws0_c00316{word-spacing:-16.615081pt;}
.ws1_c00316{word-spacing:-16.604696pt;}
.ws2_c00316{word-spacing:0.000000pt;}
._a_c00316{width:1.592798pt;}
._6_c00316{width:3.316196pt;}
._b_c00316{width:4.369529pt;}
._5_c00316{width:5.309330pt;}
._8_c00316{width:6.366131pt;}
._d_c00316{width:8.216651pt;}
._2_c00316{width:9.588025pt;}
._c_c00316{width:12.579953pt;}
._e_c00316{width:14.531920pt;}
._1_c00316{width:15.527165pt;}
._7_c00316{width:18.252469pt;}
._4_c00316{width:19.543872pt;}
._9_c00316{width:23.354768pt;}
._3_c00316{width:26.938444pt;}
._0_c00316{width:31.370128pt;}
.fs1_c00316{font-size:63.921837pt;}
.fs0_c00316{font-size:63.961814pt;}
.y0_c00316{bottom:0.000000pt;}
.y1_c00316{bottom:0.000007pt;}
.y22_c00316{bottom:26.805533pt;}
.y1f_c00316{bottom:179.694305pt;}
.y1e_c00316{bottom:206.678196pt;}
.y1d_c00316{bottom:233.662086pt;}
.y1c_c00316{bottom:260.645977pt;}
.y1b_c00316{bottom:287.629867pt;}
.y1a_c00316{bottom:314.613758pt;}
.y19_c00316{bottom:341.597648pt;}
.y18_c00316{bottom:368.581539pt;}
.y17_c00316{bottom:395.565429pt;}
.y16_c00316{bottom:422.549320pt;}
.y15_c00316{bottom:449.533210pt;}
.y14_c00316{bottom:476.517101pt;}
.y13_c00316{bottom:503.500991pt;}
.y12_c00316{bottom:530.484881pt;}
.y20_c00316{bottom:561.020551pt;}
.y11_c00316{bottom:628.264606pt;}
.y10_c00316{bottom:655.248496pt;}
.yf_c00316{bottom:682.232387pt;}
.ye_c00316{bottom:709.216277pt;}
.yd_c00316{bottom:736.200168pt;}
.yc_c00316{bottom:763.184058pt;}
.yb_c00316{bottom:790.167949pt;}
.ya_c00316{bottom:817.151839pt;}
.y9_c00316{bottom:844.135730pt;}
.y8_c00316{bottom:871.119620pt;}
.y7_c00316{bottom:898.103511pt;}
.y6_c00316{bottom:925.087401pt;}
.y5_c00316{bottom:952.071292pt;}
.y4_c00316{bottom:979.055182pt;}
.y3_c00316{bottom:1006.039072pt;}
.y2_c00316{bottom:1033.022963pt;}
.y21_c00316{bottom:1066.520069pt;}
.h4_c00316{height:49.001996pt;}
.h5_c00316{height:59.520969pt;}
.h3_c00316{height:59.558193pt;}
.h2_c00316{height:1159.999952pt;}
.h0_c00316{height:1159.999959pt;}
.h1_c00316{height:1160.000000pt;}
.w2_c00316{width:830.999965pt;}
.w0_c00316{width:831.000000pt;}
.w1_c00316{width:831.333333pt;}
.x0_c00316{left:0.000000pt;}
.x1_c00316{left:79.496944pt;}
.x2_c00316{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2dbdb6d6451b68da5cad3f39.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:0.743000;font-style:normal;font-weight:normal;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_65296e3e708d79a0988fb52f.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:0.772949;font-style:normal;font-weight: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_ebe92eda79595dd018f99113.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:1.171387;font-style:normal;font-weight: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_4ab6a4b7aabcd902ea604f76.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;line-height:1.000000;font-style:normal;font-weight: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_c00317;src:url('chunks/assets/font_82b7a502f55ddb351f75e57b.woff2')format("woff");}.ff7_c00317{font-family:ff7_c00317;line-height:1.000000;font-style:normal;font-weight: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_c00317;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00317{font-family:ff8_c00317;line-height:1.006348;font-style:normal;font-weight: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_c00317;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00317{font-family:ff9_c00317;line-height:0.734863;font-style:normal;font-weight: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_c00317;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00317{font-family:ffa_c00317;line-height:0.940000;font-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_c00317{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00317{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00317{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00317{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00317{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00317{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00317{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00317{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00317{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00317{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00317{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00317{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00317{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00317{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00317{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00317{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00317{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00317{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00317{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00317{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00317{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00317{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00317{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00317{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00317{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00317{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00317{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00317{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00317{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00317{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00317{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00317{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00317{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00317{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00317{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00317{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00317{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00317{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00317{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00317{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00317{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00317{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00317{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00317{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00317{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00317{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00317{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00317{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00317{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00317{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00317{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00317{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00317{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00317{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00317{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00317{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00317{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00317{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00317{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00317{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00317{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00317{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00317{vertical-align:0.000000px;}
.v1_c00317{vertical-align:26.810561px;}
.ls0_c00317{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00317{word-spacing:-41.664701px;}
.ws2_c00317{word-spacing:-18.691966px;}
.ws3_c00317{word-spacing:-18.680283px;}
.ws5_c00317{word-spacing:0.000000px;}
.ws1_c00317{word-spacing:281.470806px;}
.ws0_c00317{word-spacing:1114.343689px;}
._2_c00317{width:1.079586px;}
._3_c00317{width:2.110849px;}
._6_c00317{width:9.452767px;}
._5_c00317{width:10.524933px;}
._1_c00317{width:16.365969px;}
._0_c00317{width:21.684296px;}
._4_c00317{width:31.106383px;}
.fc3_c00317{color:rgb(9,71,81);}
.fc2_c00317{color:rgb(198,111,25);}
.fc1_c00317{color:rgb(255,255,255);}
.fc0_c00317{color:rgb(0,0,0);}
.fsb_c00317{font-size:35.978583px;}
.fs8_c00317{font-size:41.974772px;}
.fsc_c00317{font-size:41.975069px;}
.fs2_c00317{font-size:47.339969px;}
.fs5_c00317{font-size:47.339970px;}
.fs1_c00317{font-size:47.339972px;}
.fs4_c00317{font-size:47.339973px;}
.fs3_c00317{font-size:47.339974px;}
.fs6_c00317{font-size:47.339975px;}
.fse_c00317{font-size:51.630774px;}
.fs9_c00317{font-size:55.721735px;}
.fs10_c00317{font-size:59.949210px;}
.fsf_c00317{font-size:71.912067px;}
.fs0_c00317{font-size:71.957041px;}
.fs7_c00317{font-size:76.965540px;}
.fsd_c00317{font-size:89.946302px;}
.fsa_c00317{font-size:89.946457px;}
.y0_c00317{bottom:0.000000px;}
.y1_c00317{bottom:0.000008px;}
.y54_c00317{bottom:30.156225px;}
.y51_c00317{bottom:80.563567px;}
.y50_c00317{bottom:110.920444px;}
.y4f_c00317{bottom:141.277320px;}
.y4e_c00317{bottom:171.634197px;}
.y4d_c00317{bottom:201.991074px;}
.y4c_c00317{bottom:232.347951px;}
.y4b_c00317{bottom:262.704828px;}
.y4a_c00317{bottom:293.061704px;}
.y52_c00317{bottom:328.365596px;}
.y53_c00317{bottom:402.064151px;}
.y10_c00317{bottom:493.812629px;}
.y38_c00317{bottom:493.827623px;}
.yf_c00317{bottom:494.337609px;}
.y39_c00317{bottom:494.357158px;}
.y22_c00317{bottom:494.700737px;}
.y37_c00317{bottom:495.071586px;}
.ye_c00317{bottom:495.403002px;}
.y23_c00317{bottom:495.533530px;}
.y21_c00317{bottom:495.553663px;}
.y36_c00317{bottom:496.322201px;}
.yd_c00317{bottom:496.475623px;}
.y20_c00317{bottom:496.587915px;}
.y3a_c00317{bottom:496.772260px;}
.y11_c00317{bottom:496.835884px;}
.y24_c00317{bottom:497.713596px;}
.y35_c00317{bottom:497.966053px;}
.yc_c00317{bottom:498.126234px;}
.y1f_c00317{bottom:498.789265px;}
.y25_c00317{bottom:499.103521px;}
.y34_c00317{bottom:499.653306px;}
.yb_c00317{bottom:499.818769px;}
.y26_c00317{bottom:500.800864px;}
.y12_c00317{bottom:501.110605px;}
.y33_c00317{bottom:501.517382px;}
.ya_c00317{bottom:501.687706px;}
.y3b_c00317{bottom:501.869915px;}
.y1e_c00317{bottom:502.578702px;}
.y27_c00317{bottom:503.241722px;}
.y13_c00317{bottom:503.627848px;}
.y3c_c00317{bottom:505.496019px;}
.y28_c00317{bottom:505.499367px;}
.y32_c00317{bottom:506.168989px;}
.y9_c00317{bottom:506.348634px;}
.y1d_c00317{bottom:508.044213px;}
.y29_c00317{bottom:508.766327px;}
.y14_c00317{bottom:509.576794px;}
.y3d_c00317{bottom:511.126534px;}
.y1c_c00317{bottom:512.508085px;}
.y31_c00317{bottom:512.566592px;}
.y8_c00317{bottom:512.754669px;}
.y15_c00317{bottom:514.322677px;}
.y2a_c00317{bottom:517.158603px;}
.y3e_c00317{bottom:517.780195px;}
.y1b_c00317{bottom:518.929057px;}
.y30_c00317{bottom:519.869222px;}
.y7_c00317{bottom:519.959421px;}
.y6_c00317{bottom:523.416158px;}
.y1a_c00317{bottom:523.496236px;}
.y2b_c00317{bottom:525.202812px;}
.y16_c00317{bottom:526.099549px;}
.y2f_c00317{bottom:527.026630px;}
.y5_c00317{bottom:529.422883px;}
.y3f_c00317{bottom:529.736175px;}
.y19_c00317{bottom:531.263725px;}
.y2e_c00317{bottom:531.792993px;}
.y41_c00317{bottom:533.728456px;}
.y49_c00317{bottom:534.421816px;}
.y18_c00317{bottom:535.155114px;}
.y4_c00317{bottom:536.678099px;}
.y2d_c00317{bottom:537.961701px;}
.y17_c00317{bottom:538.332892px;}
.y40_c00317{bottom:538.696314px;}
.y2c_c00317{bottom:545.020884px;}
.y3_c00317{bottom:546.207017px;}
.y42_c00317{bottom:577.871130px;}
.y2_c00317{bottom:597.559761px;}
.y43_c00317{bottom:639.489911px;}
.y55_c00317{bottom:1024.443964px;}
.y47_c00317{bottom:1127.585799px;}
.y45_c00317{bottom:1134.965010px;}
.y44_c00317{bottom:1146.957871px;}
.y48_c00317{bottom:1150.991694px;}
.y46_c00317{bottom:1170.658440px;}
.hb_c00317{height:32.157430px;}
.he_c00317{height:33.501542px;}
.h8_c00317{height:35.967282px;}
.h7_c00317{height:35.967283px;}
.h9_c00317{height:35.967285px;}
.h5_c00317{height:36.267779px;}
.h4_c00317{height:36.267781px;}
.h6_c00317{height:36.267783px;}
.h13_c00317{height:37.437353px;}
.hf_c00317{height:39.085184px;}
.h15_c00317{height:45.561399px;}
.hc_c00317{height:51.885424px;}
.h14_c00317{height:55.092790px;}
.h3_c00317{height:55.127245px;}
.h12_c00317{height:56.261810px;}
.ha_c00317{height:58.967991px;}
.h10_c00317{height:67.002968px;}
.hd_c00317{height:68.338226px;}
.h11_c00317{height:83.753709px;}
.h2_c00317{height:1304.999946px;}
.h0_c00317{height:1304.999953px;}
.h1_c00317{height:1305.000000px;}
.w2_c00317{width:934.874961px;}
.w0_c00317{width:934.875000px;}
.w1_c00317{width:935.250000px;}
.x0_c00317{left:0.000000px;}
.x3e_c00317{left:89.434062px;}
.x3a_c00317{left:107.403263px;}
.x3b_c00317{left:109.658623px;}
.x41_c00317{left:131.272077px;}
.x27_c00317{left:134.894322px;}
.x26_c00317{left:136.566734px;}
.x28_c00317{left:139.937719px;}
.x29_c00317{left:144.785273px;}
.x2a_c00317{left:150.147890px;}
.x2b_c00317{left:152.899057px;}
.x2c_c00317{left:155.907145px;}
.x2d_c00317{left:159.752336px;}
.x37_c00317{left:161.347648px;}
.x2e_c00317{left:163.203941px;}
.x2f_c00317{left:171.483965px;}
.x30_c00317{left:179.748684px;}
.x31_c00317{left:188.175145px;}
.x32_c00317{left:196.556636px;}
.x33_c00317{left:200.721504px;}
.x34_c00317{left:205.276922px;}
.x35_c00317{left:209.084069px;}
.x36_c00317{left:211.669316px;}
.x3_c00317{left:230.260919px;}
.x2_c00317{left:232.395871px;}
.x4_c00317{left:235.482735px;}
.x5_c00317{left:240.319117px;}
.x6_c00317{left:245.673577px;}
.x7_c00317{left:248.421493px;}
.x8_c00317{left:251.426626px;}
.x9_c00317{left:255.268917px;}
.x3d_c00317{left:256.468943px;}
.xa_c00317{left:258.553698px;}
.xb_c00317{left:262.988294px;}
.xc_c00317{left:271.601212px;}
.xd_c00317{left:283.434780px;}
.xe_c00317{left:290.867654px;}
.xf_c00317{left:294.260334px;}
.x3c_c00317{left:295.438786px;}
.x10_c00317{left:299.596701px;}
.x11_c00317{left:302.984150px;}
.x12_c00317{left:306.993562px;}
.x13_c00317{left:325.378518px;}
.x14_c00317{left:326.595106px;}
.x15_c00317{left:328.015253px;}
.x16_c00317{left:331.410444px;}
.x17_c00317{left:334.633053px;}
.x18_c00317{left:340.511825px;}
.x19_c00317{left:346.695139px;}
.x1a_c00317{left:352.384720px;}
.x1b_c00317{left:355.792694px;}
.x1c_c00317{left:363.695116px;}
.x1d_c00317{left:371.679253px;}
.x1e_c00317{left:378.434940px;}
.x1f_c00317{left:381.453328px;}
.x20_c00317{left:384.455783px;}
.x21_c00317{left:387.851715px;}
.x22_c00317{left:390.467224px;}
.x23_c00317{left:393.779799px;}
.x24_c00317{left:398.952070px;}
.x25_c00317{left:401.755082px;}
.x40_c00317{left:451.985828px;}
.x1_c00317{left:465.097640px;}
.x39_c00317{left:676.474352px;}
.x3f_c00317{left:696.904800px;}
.x38_c00317{left:733.103068px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.v1_c00317{vertical-align:23.831609pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws4_c00317{word-spacing:-37.035289pt;}
.ws2_c00317{word-spacing:-16.615081pt;}
.ws3_c00317{word-spacing:-16.604696pt;}
.ws5_c00317{word-spacing:0.000000pt;}
.ws1_c00317{word-spacing:250.196272pt;}
.ws0_c00317{word-spacing:990.527723pt;}
._2_c00317{width:0.959632pt;}
._3_c00317{width:1.876310pt;}
._6_c00317{width:8.402460pt;}
._5_c00317{width:9.355496pt;}
._1_c00317{width:14.547528pt;}
._0_c00317{width:19.274930pt;}
._4_c00317{width:27.650118pt;}
.fsb_c00317{font-size:31.980963pt;}
.fs8_c00317{font-size:37.310908pt;}
.fsc_c00317{font-size:37.311173pt;}
.fs2_c00317{font-size:42.079973pt;}
.fs5_c00317{font-size:42.079974pt;}
.fs1_c00317{font-size:42.079975pt;}
.fs4_c00317{font-size:42.079976pt;}
.fs3_c00317{font-size:42.079977pt;}
.fs6_c00317{font-size:42.079978pt;}
.fse_c00317{font-size:45.894021pt;}
.fs9_c00317{font-size:49.530431pt;}
.fs10_c00317{font-size:53.288186pt;}
.fsf_c00317{font-size:63.921837pt;}
.fs0_c00317{font-size:63.961814pt;}
.fs7_c00317{font-size:68.413814pt;}
.fsd_c00317{font-size:79.952268pt;}
.fsa_c00317{font-size:79.952406pt;}
.y0_c00317{bottom:0.000000pt;}
.y1_c00317{bottom:0.000007pt;}
.y54_c00317{bottom:26.805533pt;}
.y51_c00317{bottom:71.612059pt;}
.y50_c00317{bottom:98.595950pt;}
.y4f_c00317{bottom:125.579840pt;}
.y4e_c00317{bottom:152.563731pt;}
.y4d_c00317{bottom:179.547621pt;}
.y4c_c00317{bottom:206.531512pt;}
.y4b_c00317{bottom:233.515402pt;}
.y4a_c00317{bottom:260.499293pt;}
.y52_c00317{bottom:291.880530pt;}
.y53_c00317{bottom:357.390356pt;}
.y10_c00317{bottom:438.944560pt;}
.y38_c00317{bottom:438.957887pt;}
.yf_c00317{bottom:439.411208pt;}
.y39_c00317{bottom:439.428585pt;}
.y22_c00317{bottom:439.733989pt;}
.y37_c00317{bottom:440.063632pt;}
.ye_c00317{bottom:440.358224pt;}
.y23_c00317{bottom:440.474249pt;}
.y21_c00317{bottom:440.492144pt;}
.y36_c00317{bottom:441.175290pt;}
.yd_c00317{bottom:441.311665pt;}
.y20_c00317{bottom:441.411480pt;}
.y3a_c00317{bottom:441.575343pt;}
.y11_c00317{bottom:441.631897pt;}
.y24_c00317{bottom:442.412085pt;}
.y35_c00317{bottom:442.636491pt;}
.yc_c00317{bottom:442.778875pt;}
.y1f_c00317{bottom:443.368235pt;}
.y25_c00317{bottom:443.647574pt;}
.y34_c00317{bottom:444.136272pt;}
.yb_c00317{bottom:444.283350pt;}
.y26_c00317{bottom:445.156323pt;}
.y12_c00317{bottom:445.431649pt;}
.y33_c00317{bottom:445.793228pt;}
.ya_c00317{bottom:445.944627pt;}
.y3b_c00317{bottom:446.106592pt;}
.y1e_c00317{bottom:446.736624pt;}
.y27_c00317{bottom:447.325975pt;}
.y13_c00317{bottom:447.669198pt;}
.y3c_c00317{bottom:449.329795pt;}
.y28_c00317{bottom:449.332771pt;}
.y32_c00317{bottom:449.927990pt;}
.y9_c00317{bottom:450.087675pt;}
.y1d_c00317{bottom:451.594856pt;}
.y29_c00317{bottom:452.236735pt;}
.y14_c00317{bottom:452.957150pt;}
.y3d_c00317{bottom:454.334697pt;}
.y1c_c00317{bottom:455.562742pt;}
.y31_c00317{bottom:455.614749pt;}
.y8_c00317{bottom:455.781928pt;}
.y15_c00317{bottom:457.175713pt;}
.y2a_c00317{bottom:459.696536pt;}
.y3e_c00317{bottom:460.249062pt;}
.y1b_c00317{bottom:461.270273pt;}
.y30_c00317{bottom:462.105976pt;}
.y7_c00317{bottom:462.186152pt;}
.y6_c00317{bottom:465.258807pt;}
.y1a_c00317{bottom:465.329988pt;}
.y2b_c00317{bottom:466.846944pt;}
.y16_c00317{bottom:467.644044pt;}
.y2f_c00317{bottom:468.468115pt;}
.y5_c00317{bottom:470.598118pt;}
.y3f_c00317{bottom:470.876600pt;}
.y19_c00317{bottom:472.234422pt;}
.y2e_c00317{bottom:472.704883pt;}
.y41_c00317{bottom:474.425294pt;}
.y49_c00317{bottom:475.041614pt;}
.y18_c00317{bottom:475.693435pt;}
.y4_c00317{bottom:477.047199pt;}
.y2d_c00317{bottom:478.188178pt;}
.y17_c00317{bottom:478.518126pt;}
.y40_c00317{bottom:478.841168pt;}
.y2c_c00317{bottom:484.463008pt;}
.y3_c00317{bottom:485.517349pt;}
.y42_c00317{bottom:513.663227pt;}
.y2_c00317{bottom:531.164232pt;}
.y43_c00317{bottom:568.435476pt;}
.y55_c00317{bottom:910.616857pt;}
.y47_c00317{bottom:1002.298488pt;}
.y45_c00317{bottom:1008.857786pt;}
.y44_c00317{bottom:1019.518107pt;}
.y48_c00317{bottom:1023.103728pt;}
.y46_c00317{bottom:1040.585280pt;}
.hb_c00317{height:28.584382pt;}
.he_c00317{height:29.779148pt;}
.h8_c00317{height:31.970917pt;}
.h7_c00317{height:31.970918pt;}
.h9_c00317{height:31.970920pt;}
.h5_c00317{height:32.238026pt;}
.h4_c00317{height:32.238028pt;}
.h6_c00317{height:32.238029pt;}
.h13_c00317{height:33.277647pt;}
.hf_c00317{height:34.742386pt;}
.h15_c00317{height:40.499022pt;}
.hc_c00317{height:46.120377pt;}
.h14_c00317{height:48.971369pt;}
.h3_c00317{height:49.001996pt;}
.h12_c00317{height:50.010498pt;}
.ha_c00317{height:52.415992pt;}
.h10_c00317{height:59.558193pt;}
.hd_c00317{height:60.745090pt;}
.h11_c00317{height:74.447742pt;}
.h2_c00317{height:1159.999952pt;}
.h0_c00317{height:1159.999959pt;}
.h1_c00317{height:1160.000000pt;}
.w2_c00317{width:830.999965pt;}
.w0_c00317{width:831.000000pt;}
.w1_c00317{width:831.333333pt;}
.x0_c00317{left:0.000000pt;}
.x3e_c00317{left:79.496944pt;}
.x3a_c00317{left:95.469567pt;}
.x3b_c00317{left:97.474332pt;}
.x41_c00317{left:116.686291pt;}
.x27_c00317{left:119.906064pt;}
.x26_c00317{left:121.392652pt;}
.x28_c00317{left:124.389083pt;}
.x29_c00317{left:128.698021pt;}
.x2a_c00317{left:133.464791pt;}
.x2b_c00317{left:135.910272pt;}
.x2c_c00317{left:138.584129pt;}
.x2d_c00317{left:142.002076pt;}
.x37_c00317{left:143.420132pt;}
.x2e_c00317{left:145.070170pt;}
.x2f_c00317{left:152.430191pt;}
.x30_c00317{left:159.776608pt;}
.x31_c00317{left:167.266795pt;}
.x32_c00317{left:174.717010pt;}
.x33_c00317{left:178.419115pt;}
.x34_c00317{left:182.468375pt;}
.x35_c00317{left:185.852506pt;}
.x36_c00317{left:188.150503pt;}
.x3_c00317{left:204.676373pt;}
.x2_c00317{left:206.574107pt;}
.x4_c00317{left:209.317987pt;}
.x5_c00317{left:213.616993pt;}
.x6_c00317{left:218.376513pt;}
.x7_c00317{left:220.819105pt;}
.x8_c00317{left:223.490334pt;}
.x9_c00317{left:226.905704pt;}
.x3d_c00317{left:227.972394pt;}
.xa_c00317{left:229.825509pt;}
.xb_c00317{left:233.767373pt;}
.xc_c00317{left:241.423300pt;}
.xd_c00317{left:251.942027pt;}
.xe_c00317{left:258.549026pt;}
.xf_c00317{left:261.564741pt;}
.x3c_c00317{left:262.612255pt;}
.x10_c00317{left:266.308178pt;}
.x11_c00317{left:269.319244pt;}
.x12_c00317{left:272.883167pt;}
.x13_c00317{left:289.225349pt;}
.x14_c00317{left:290.306761pt;}
.x15_c00317{left:291.569114pt;}
.x16_c00317{left:294.587062pt;}
.x17_c00317{left:297.451603pt;}
.x18_c00317{left:302.677178pt;}
.x19_c00317{left:308.173457pt;}
.x1a_c00317{left:313.230862pt;}
.x1b_c00317{left:316.260173pt;}
.x1c_c00317{left:323.284548pt;}
.x1d_c00317{left:330.381558pt;}
.x1e_c00317{left:336.386614pt;}
.x1f_c00317{left:339.069625pt;}
.x20_c00317{left:341.738474pt;}
.x21_c00317{left:344.757080pt;}
.x22_c00317{left:347.081977pt;}
.x23_c00317{left:350.026488pt;}
.x24_c00317{left:354.624063pt;}
.x25_c00317{left:357.115628pt;}
.x40_c00317{left:401.765180pt;}
.x1_c00317{left:413.420124pt;}
.x39_c00317{left:601.310535pt;}
.x3f_c00317{left:619.470933pt;}
.x38_c00317{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c4a9611f317f7ef027e4fa5.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.171387;font-style:normal;font-weight:normal;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_8c2c2dea9054eee372ae3dc7.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.000000;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.006348;font-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_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);}
.v0_c00318{vertical-align:0.000000px;}
.ls0_c00318{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00318{word-spacing:-18.680283px;}
.ws1_c00318{word-spacing:0.000000px;}
._e_c00318{width:1.011715px;}
._b_c00318{width:2.190538px;}
._a_c00318{width:3.473238px;}
._3_c00318{width:4.678001px;}
._f_c00318{width:5.999966px;}
._10_c00318{width:7.191965px;}
._7_c00318{width:8.207583px;}
._2_c00318{width:11.986962px;}
._5_c00318{width:13.983841px;}
._0_c00318{width:16.108151px;}
._4_c00318{width:17.223419px;}
._1_c00318{width:21.291975px;}
._6_c00318{width:23.638969px;}
._c_c00318{width:24.763373px;}
._d_c00318{width:25.898535px;}
._8_c00318{width:27.303950px;}
._9_c00318{width:35.576936px;}
.fc1_c00318{color:rgb(198,111,25);}
.fc0_c00318{color:rgb(0,0,0);}
.fs1_c00318{font-size:71.912067px;}
.fs0_c00318{font-size:71.957041px;}
.y0_c00318{bottom:0.000000px;}
.y1_c00318{bottom:0.000008px;}
.y22_c00318{bottom:30.156225px;}
.y20_c00318{bottom:136.545511px;}
.y1f_c00318{bottom:166.902388px;}
.y1e_c00318{bottom:197.259264px;}
.y21_c00318{bottom:231.611892px;}
.y1c_c00318{bottom:291.508260px;}
.y1b_c00318{bottom:321.865137px;}
.y1a_c00318{bottom:352.222014px;}
.y1d_c00318{bottom:389.906334px;}
.y12_c00318{bottom:451.124047px;}
.y11_c00318{bottom:481.480924px;}
.y10_c00318{bottom:511.837800px;}
.yf_c00318{bottom:542.194677px;}
.ye_c00318{bottom:572.551554px;}
.yd_c00318{bottom:602.908431px;}
.yc_c00318{bottom:633.265307px;}
.yb_c00318{bottom:663.622184px;}
.ya_c00318{bottom:693.979061px;}
.y9_c00318{bottom:724.335938px;}
.y8_c00318{bottom:754.692814px;}
.y7_c00318{bottom:785.049691px;}
.y6_c00318{bottom:815.406568px;}
.y5_c00318{bottom:845.763445px;}
.y4_c00318{bottom:876.120322px;}
.y3_c00318{bottom:906.477198px;}
.y2_c00318{bottom:936.834075px;}
.y13_c00318{bottom:974.386657px;}
.y18_c00318{bottom:1035.301694px;}
.y17_c00318{bottom:1065.658571px;}
.y16_c00318{bottom:1096.015448px;}
.y15_c00318{bottom:1126.372324px;}
.y14_c00318{bottom:1156.729201px;}
.y19_c00318{bottom:1198.941187px;}
.h4_c00318{height:55.127245px;}
.h5_c00318{height:66.961090px;}
.h3_c00318{height:67.002968px;}
.h2_c00318{height:1304.999946px;}
.h0_c00318{height:1304.999953px;}
.h1_c00318{height:1305.000000px;}
.w2_c00318{width:934.874961px;}
.w0_c00318{width:934.875000px;}
.w1_c00318{width:935.250000px;}
.x0_c00318{left:0.000000px;}
.x1_c00318{left:87.850202px;}
.x2_c00318{left:89.434062px;}
.x3_c00318{left:451.985828px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ws0_c00318{word-spacing:-16.604696pt;}
.ws1_c00318{word-spacing:0.000000pt;}
._e_c00318{width:0.899302pt;}
._b_c00318{width:1.947145pt;}
._a_c00318{width:3.087322pt;}
._3_c00318{width:4.158223pt;}
._f_c00318{width:5.333303pt;}
._10_c00318{width:6.392857pt;}
._7_c00318{width:7.295629pt;}
._2_c00318{width:10.655077pt;}
._5_c00318{width:12.430081pt;}
._0_c00318{width:14.318356pt;}
._4_c00318{width:15.309706pt;}
._1_c00318{width:18.926200pt;}
._6_c00318{width:21.012417pt;}
._c_c00318{width:22.011887pt;}
._d_c00318{width:23.020920pt;}
._8_c00318{width:24.270178pt;}
._9_c00318{width:31.623943pt;}
.fs1_c00318{font-size:63.921837pt;}
.fs0_c00318{font-size:63.961814pt;}
.y0_c00318{bottom:0.000000pt;}
.y1_c00318{bottom:0.000007pt;}
.y22_c00318{bottom:26.805533pt;}
.y20_c00318{bottom:121.373787pt;}
.y1f_c00318{bottom:148.357678pt;}
.y1e_c00318{bottom:175.341568pt;}
.y21_c00318{bottom:205.877238pt;}
.y1c_c00318{bottom:259.118454pt;}
.y1b_c00318{bottom:286.102344pt;}
.y1a_c00318{bottom:313.086235pt;}
.y1d_c00318{bottom:346.583408pt;}
.y12_c00318{bottom:400.999153pt;}
.y11_c00318{bottom:427.983043pt;}
.y10_c00318{bottom:454.966934pt;}
.yf_c00318{bottom:481.950824pt;}
.ye_c00318{bottom:508.934715pt;}
.yd_c00318{bottom:535.918605pt;}
.yc_c00318{bottom:562.902495pt;}
.yb_c00318{bottom:589.886386pt;}
.ya_c00318{bottom:616.870276pt;}
.y9_c00318{bottom:643.854167pt;}
.y8_c00318{bottom:670.838057pt;}
.y7_c00318{bottom:697.821948pt;}
.y6_c00318{bottom:724.805838pt;}
.y5_c00318{bottom:751.789729pt;}
.y4_c00318{bottom:778.773619pt;}
.y3_c00318{bottom:805.757510pt;}
.y2_c00318{bottom:832.741400pt;}
.y13_c00318{bottom:866.121473pt;}
.y18_c00318{bottom:920.268172pt;}
.y17_c00318{bottom:947.252063pt;}
.y16_c00318{bottom:974.235953pt;}
.y15_c00318{bottom:1001.219844pt;}
.y14_c00318{bottom:1028.203734pt;}
.y19_c00318{bottom:1065.725500pt;}
.h4_c00318{height:49.001996pt;}
.h5_c00318{height:59.520969pt;}
.h3_c00318{height:59.558193pt;}
.h2_c00318{height:1159.999952pt;}
.h0_c00318{height:1159.999959pt;}
.h1_c00318{height:1160.000000pt;}
.w2_c00318{width:830.999965pt;}
.w0_c00318{width:831.000000pt;}
.w1_c00318{width:831.333333pt;}
.x0_c00318{left:0.000000pt;}
.x1_c00318{left:78.089069pt;}
.x2_c00318{left:79.496944pt;}
.x3_c00318{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_58f9dee1113a781a4ef9cf2d.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:0.743000;font-style:normal;font-weight:normal;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_1b4eb4df78a5a8d70a97c318.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.000000;font-style:normal;font-weight: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_d1b641d39fb81b4d41851930.woff2')format("woff");}.ff5_c00319{font-family:ff5_c00319;line-height:1.171387;font-style:normal;font-weight: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_c00319;src:url('chunks/assets/font_2dbf95795e9e5add4baa8c88.woff2')format("woff");}.ff6_c00319{font-family:ff6_c00319;line-height:0.769531;font-style:normal;font-weight: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_c00319;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00319{font-family:ff7_c00319;line-height:1.006348;font-style:normal;font-weight: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_c00319;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00319{font-family:ff8_c00319;line-height:0.734863;font-style:normal;font-weight: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_c00319;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00319{font-family:ff9_c00319;line-height:0.940000;font-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_c00319{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00319{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00319{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00319{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00319{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00319{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00319{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00319{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00319{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00319{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00319{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00319{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00319{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00319{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00319{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00319{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00319{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00319{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00319{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00319{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00319{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00319{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00319{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00319{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00319{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00319{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00319{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00319{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00319{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00319{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00319{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00319{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00319{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00319{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00319{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00319{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00319{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00319{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00319{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00319{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00319{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00319{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00319{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00319{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00319{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00319{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00319{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00319{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00319{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00319{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00319{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00319{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00319{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00319{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00319{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00319{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00319{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00319{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00319{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00319{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00319{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00319{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00319{vertical-align:0.000000px;}
.v1_c00319{vertical-align:26.810561px;}
.ls0_c00319{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00319{word-spacing:-41.664701px;}
.ws2_c00319{word-spacing:-18.680283px;}
.ws4_c00319{word-spacing:0.000000px;}
.ws1_c00319{word-spacing:281.470806px;}
.ws0_c00319{word-spacing:1114.343689px;}
._3_c00319{width:1.651359px;}
._0_c00319{width:2.691899px;}
._1_c00319{width:11.945992px;}
._2_c00319{width:13.025577px;}
._4_c00319{width:22.194650px;}
.fc3_c00319{color:rgb(9,71,81);}
.fc2_c00319{color:rgb(198,111,25);}
.fc1_c00319{color:rgb(255,255,255);}
.fc0_c00319{color:rgb(0,0,0);}
.fs8_c00319{font-size:41.974772px;}
.fsc_c00319{font-size:41.975069px;}
.fs2_c00319{font-size:47.339969px;}
.fs5_c00319{font-size:47.339970px;}
.fs1_c00319{font-size:47.339972px;}
.fs4_c00319{font-size:47.339973px;}
.fs3_c00319{font-size:47.339974px;}
.fs6_c00319{font-size:47.339975px;}
.fsd_c00319{font-size:51.630774px;}
.fs9_c00319{font-size:55.721735px;}
.fsb_c00319{font-size:59.949210px;}
.fse_c00319{font-size:71.912067px;}
.fs0_c00319{font-size:71.957041px;}
.fs7_c00319{font-size:76.965540px;}
.fsa_c00319{font-size:89.946302px;}
.y0_c00319{bottom:0.000000px;}
.y1_c00319{bottom:0.000008px;}
.y52_c00319{bottom:30.156225px;}
.y49_c00319{bottom:122.576293px;}
.y48_c00319{bottom:152.933170px;}
.y47_c00319{bottom:183.290047px;}
.y46_c00319{bottom:213.646924px;}
.y45_c00319{bottom:244.003800px;}
.y44_c00319{bottom:274.360677px;}
.y50_c00319{bottom:310.376325px;}
.y51_c00319{bottom:402.064151px;}
.y10_c00319{bottom:493.812629px;}
.y38_c00319{bottom:493.827623px;}
.yf_c00319{bottom:494.337609px;}
.y39_c00319{bottom:494.357158px;}
.y22_c00319{bottom:494.700737px;}
.y37_c00319{bottom:495.071586px;}
.ye_c00319{bottom:495.403002px;}
.y23_c00319{bottom:495.533530px;}
.y21_c00319{bottom:495.553663px;}
.y36_c00319{bottom:496.322201px;}
.yd_c00319{bottom:496.475623px;}
.y20_c00319{bottom:496.587915px;}
.y3a_c00319{bottom:496.772260px;}
.y11_c00319{bottom:496.835884px;}
.y24_c00319{bottom:497.713596px;}
.y35_c00319{bottom:497.966053px;}
.yc_c00319{bottom:498.126234px;}
.y1f_c00319{bottom:498.789265px;}
.y25_c00319{bottom:499.103521px;}
.y34_c00319{bottom:499.653306px;}
.yb_c00319{bottom:499.818769px;}
.y26_c00319{bottom:500.800864px;}
.y12_c00319{bottom:501.110605px;}
.y33_c00319{bottom:501.517382px;}
.ya_c00319{bottom:501.687706px;}
.y3b_c00319{bottom:501.869915px;}
.y1e_c00319{bottom:502.578702px;}
.y27_c00319{bottom:503.241722px;}
.y13_c00319{bottom:503.627848px;}
.y3c_c00319{bottom:505.496019px;}
.y28_c00319{bottom:505.499367px;}
.y32_c00319{bottom:506.168989px;}
.y9_c00319{bottom:506.348634px;}
.y1d_c00319{bottom:508.044213px;}
.y29_c00319{bottom:508.766327px;}
.y14_c00319{bottom:509.576794px;}
.y3d_c00319{bottom:511.126534px;}
.y1c_c00319{bottom:512.508085px;}
.y31_c00319{bottom:512.566592px;}
.y8_c00319{bottom:512.754669px;}
.y15_c00319{bottom:514.322677px;}
.y2a_c00319{bottom:517.158603px;}
.y3e_c00319{bottom:517.780195px;}
.y1b_c00319{bottom:518.929057px;}
.y30_c00319{bottom:519.869222px;}
.y7_c00319{bottom:519.959421px;}
.y6_c00319{bottom:523.416158px;}
.y1a_c00319{bottom:523.496236px;}
.y2b_c00319{bottom:525.202812px;}
.y16_c00319{bottom:526.099549px;}
.y2f_c00319{bottom:527.026630px;}
.y5_c00319{bottom:529.422883px;}
.y3f_c00319{bottom:529.736175px;}
.y19_c00319{bottom:531.263725px;}
.y2e_c00319{bottom:531.792993px;}
.y41_c00319{bottom:533.728456px;}
.y4f_c00319{bottom:534.421816px;}
.y18_c00319{bottom:535.155114px;}
.y4_c00319{bottom:536.678099px;}
.y2d_c00319{bottom:537.961701px;}
.y17_c00319{bottom:538.332892px;}
.y40_c00319{bottom:538.696314px;}
.y2c_c00319{bottom:545.020884px;}
.y3_c00319{bottom:546.207017px;}
.y42_c00319{bottom:577.871130px;}
.y2_c00319{bottom:597.559761px;}
.y43_c00319{bottom:639.489911px;}
.y53_c00319{bottom:1024.443964px;}
.y4d_c00319{bottom:1127.585799px;}
.y4b_c00319{bottom:1129.718199px;}
.y4a_c00319{bottom:1147.707459px;}
.y4e_c00319{bottom:1150.991694px;}
.y4c_c00319{bottom:1170.658440px;}
.hb_c00319{height:32.157430px;}
.h8_c00319{height:35.967282px;}
.h7_c00319{height:35.967283px;}
.h9_c00319{height:35.967285px;}
.h5_c00319{height:36.267779px;}
.h4_c00319{height:36.267781px;}
.h6_c00319{height:36.267783px;}
.h13_c00319{height:37.437353px;}
.hf_c00319{height:39.085184px;}
.h15_c00319{height:45.561399px;}
.hc_c00319{height:51.885424px;}
.h14_c00319{height:55.092790px;}
.h3_c00319{height:55.127245px;}
.he_c00319{height:55.821847px;}
.h12_c00319{height:56.261810px;}
.ha_c00319{height:58.967991px;}
.h10_c00319{height:67.002968px;}
.hd_c00319{height:68.338108px;}
.h11_c00319{height:83.753709px;}
.h2_c00319{height:1304.999946px;}
.h0_c00319{height:1304.999953px;}
.h1_c00319{height:1305.000000px;}
.w2_c00319{width:934.874961px;}
.w0_c00319{width:934.875000px;}
.w1_c00319{width:935.250000px;}
.x0_c00319{left:0.000000px;}
.x3a_c00319{left:89.434062px;}
.x3b_c00319{left:107.403263px;}
.x3c_c00319{left:109.658623px;}
.x41_c00319{left:131.272077px;}
.x27_c00319{left:134.894322px;}
.x26_c00319{left:136.566734px;}
.x28_c00319{left:139.937719px;}
.x29_c00319{left:144.785273px;}
.x2a_c00319{left:150.147890px;}
.x2b_c00319{left:152.899057px;}
.x2c_c00319{left:155.907145px;}
.x2d_c00319{left:159.752336px;}
.x37_c00319{left:161.347648px;}
.x2e_c00319{left:163.203941px;}
.x2f_c00319{left:171.483965px;}
.x30_c00319{left:179.748684px;}
.x31_c00319{left:188.175145px;}
.x32_c00319{left:196.556636px;}
.x33_c00319{left:200.721504px;}
.x34_c00319{left:205.276922px;}
.x35_c00319{left:209.084069px;}
.x36_c00319{left:211.669316px;}
.x3_c00319{left:230.260919px;}
.x2_c00319{left:232.395871px;}
.x4_c00319{left:235.482735px;}
.x5_c00319{left:240.319117px;}
.x6_c00319{left:245.673577px;}
.x7_c00319{left:248.421493px;}
.x8_c00319{left:251.426626px;}
.x9_c00319{left:255.268917px;}
.x3e_c00319{left:256.468943px;}
.xa_c00319{left:258.553698px;}
.xb_c00319{left:262.988294px;}
.xc_c00319{left:271.601212px;}
.xd_c00319{left:283.434780px;}
.xe_c00319{left:290.867654px;}
.xf_c00319{left:294.260334px;}
.x3d_c00319{left:295.438786px;}
.x10_c00319{left:299.596701px;}
.x11_c00319{left:302.984150px;}
.x12_c00319{left:306.993562px;}
.x13_c00319{left:325.378518px;}
.x14_c00319{left:326.595106px;}
.x15_c00319{left:328.015253px;}
.x16_c00319{left:331.410444px;}
.x17_c00319{left:334.633053px;}
.x18_c00319{left:340.511825px;}
.x19_c00319{left:346.695139px;}
.x1a_c00319{left:352.384720px;}
.x1b_c00319{left:355.792694px;}
.x1c_c00319{left:363.695116px;}
.x1d_c00319{left:371.679253px;}
.x1e_c00319{left:378.434940px;}
.x1f_c00319{left:381.453328px;}
.x20_c00319{left:384.455783px;}
.x21_c00319{left:387.851715px;}
.x22_c00319{left:390.467224px;}
.x23_c00319{left:393.779799px;}
.x24_c00319{left:398.952070px;}
.x25_c00319{left:401.755082px;}
.x40_c00319{left:451.985828px;}
.x1_c00319{left:465.097640px;}
.x39_c00319{left:676.474352px;}
.x3f_c00319{left:696.904800px;}
.x38_c00319{left:733.103068px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.v1_c00319{vertical-align:23.831609pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ws3_c00319{word-spacing:-37.035289pt;}
.ws2_c00319{word-spacing:-16.604696pt;}
.ws4_c00319{word-spacing:0.000000pt;}
.ws1_c00319{word-spacing:250.196272pt;}
.ws0_c00319{word-spacing:990.527723pt;}
._3_c00319{width:1.467875pt;}
._0_c00319{width:2.392799pt;}
._1_c00319{width:10.618660pt;}
._2_c00319{width:11.578291pt;}
._4_c00319{width:19.728578pt;}
.fs8_c00319{font-size:37.310908pt;}
.fsc_c00319{font-size:37.311173pt;}
.fs2_c00319{font-size:42.079973pt;}
.fs5_c00319{font-size:42.079974pt;}
.fs1_c00319{font-size:42.079975pt;}
.fs4_c00319{font-size:42.079976pt;}
.fs3_c00319{font-size:42.079977pt;}
.fs6_c00319{font-size:42.079978pt;}
.fsd_c00319{font-size:45.894021pt;}
.fs9_c00319{font-size:49.530431pt;}
.fsb_c00319{font-size:53.288186pt;}
.fse_c00319{font-size:63.921837pt;}
.fs0_c00319{font-size:63.961814pt;}
.fs7_c00319{font-size:68.413814pt;}
.fsa_c00319{font-size:79.952268pt;}
.y0_c00319{bottom:0.000000pt;}
.y1_c00319{bottom:0.000007pt;}
.y52_c00319{bottom:26.805533pt;}
.y49_c00319{bottom:108.956705pt;}
.y48_c00319{bottom:135.940596pt;}
.y47_c00319{bottom:162.924486pt;}
.y46_c00319{bottom:189.908376pt;}
.y45_c00319{bottom:216.892267pt;}
.y44_c00319{bottom:243.876157pt;}
.y50_c00319{bottom:275.890067pt;}
.y51_c00319{bottom:357.390356pt;}
.y10_c00319{bottom:438.944560pt;}
.y38_c00319{bottom:438.957887pt;}
.yf_c00319{bottom:439.411208pt;}
.y39_c00319{bottom:439.428585pt;}
.y22_c00319{bottom:439.733989pt;}
.y37_c00319{bottom:440.063632pt;}
.ye_c00319{bottom:440.358224pt;}
.y23_c00319{bottom:440.474249pt;}
.y21_c00319{bottom:440.492144pt;}
.y36_c00319{bottom:441.175290pt;}
.yd_c00319{bottom:441.311665pt;}
.y20_c00319{bottom:441.411480pt;}
.y3a_c00319{bottom:441.575343pt;}
.y11_c00319{bottom:441.631897pt;}
.y24_c00319{bottom:442.412085pt;}
.y35_c00319{bottom:442.636491pt;}
.yc_c00319{bottom:442.778875pt;}
.y1f_c00319{bottom:443.368235pt;}
.y25_c00319{bottom:443.647574pt;}
.y34_c00319{bottom:444.136272pt;}
.yb_c00319{bottom:444.283350pt;}
.y26_c00319{bottom:445.156323pt;}
.y12_c00319{bottom:445.431649pt;}
.y33_c00319{bottom:445.793228pt;}
.ya_c00319{bottom:445.944627pt;}
.y3b_c00319{bottom:446.106592pt;}
.y1e_c00319{bottom:446.736624pt;}
.y27_c00319{bottom:447.325975pt;}
.y13_c00319{bottom:447.669198pt;}
.y3c_c00319{bottom:449.329795pt;}
.y28_c00319{bottom:449.332771pt;}
.y32_c00319{bottom:449.927990pt;}
.y9_c00319{bottom:450.087675pt;}
.y1d_c00319{bottom:451.594856pt;}
.y29_c00319{bottom:452.236735pt;}
.y14_c00319{bottom:452.957150pt;}
.y3d_c00319{bottom:454.334697pt;}
.y1c_c00319{bottom:455.562742pt;}
.y31_c00319{bottom:455.614749pt;}
.y8_c00319{bottom:455.781928pt;}
.y15_c00319{bottom:457.175713pt;}
.y2a_c00319{bottom:459.696536pt;}
.y3e_c00319{bottom:460.249062pt;}
.y1b_c00319{bottom:461.270273pt;}
.y30_c00319{bottom:462.105976pt;}
.y7_c00319{bottom:462.186152pt;}
.y6_c00319{bottom:465.258807pt;}
.y1a_c00319{bottom:465.329988pt;}
.y2b_c00319{bottom:466.846944pt;}
.y16_c00319{bottom:467.644044pt;}
.y2f_c00319{bottom:468.468115pt;}
.y5_c00319{bottom:470.598118pt;}
.y3f_c00319{bottom:470.876600pt;}
.y19_c00319{bottom:472.234422pt;}
.y2e_c00319{bottom:472.704883pt;}
.y41_c00319{bottom:474.425294pt;}
.y4f_c00319{bottom:475.041614pt;}
.y18_c00319{bottom:475.693435pt;}
.y4_c00319{bottom:477.047199pt;}
.y2d_c00319{bottom:478.188178pt;}
.y17_c00319{bottom:478.518126pt;}
.y40_c00319{bottom:478.841168pt;}
.y2c_c00319{bottom:484.463008pt;}
.y3_c00319{bottom:485.517349pt;}
.y42_c00319{bottom:513.663227pt;}
.y2_c00319{bottom:531.164232pt;}
.y43_c00319{bottom:568.435476pt;}
.y53_c00319{bottom:910.616857pt;}
.y4d_c00319{bottom:1002.298488pt;}
.y4b_c00319{bottom:1004.193955pt;}
.y4a_c00319{bottom:1020.184408pt;}
.y4e_c00319{bottom:1023.103728pt;}
.y4c_c00319{bottom:1040.585280pt;}
.hb_c00319{height:28.584382pt;}
.h8_c00319{height:31.970917pt;}
.h7_c00319{height:31.970918pt;}
.h9_c00319{height:31.970920pt;}
.h5_c00319{height:32.238026pt;}
.h4_c00319{height:32.238028pt;}
.h6_c00319{height:32.238029pt;}
.h13_c00319{height:33.277647pt;}
.hf_c00319{height:34.742386pt;}
.h15_c00319{height:40.499022pt;}
.hc_c00319{height:46.120377pt;}
.h14_c00319{height:48.971369pt;}
.h3_c00319{height:49.001996pt;}
.he_c00319{height:49.619420pt;}
.h12_c00319{height:50.010498pt;}
.ha_c00319{height:52.415992pt;}
.h10_c00319{height:59.558193pt;}
.hd_c00319{height:60.744985pt;}
.h11_c00319{height:74.447742pt;}
.h2_c00319{height:1159.999952pt;}
.h0_c00319{height:1159.999959pt;}
.h1_c00319{height:1160.000000pt;}
.w2_c00319{width:830.999965pt;}
.w0_c00319{width:831.000000pt;}
.w1_c00319{width:831.333333pt;}
.x0_c00319{left:0.000000pt;}
.x3a_c00319{left:79.496944pt;}
.x3b_c00319{left:95.469567pt;}
.x3c_c00319{left:97.474332pt;}
.x41_c00319{left:116.686291pt;}
.x27_c00319{left:119.906064pt;}
.x26_c00319{left:121.392652pt;}
.x28_c00319{left:124.389083pt;}
.x29_c00319{left:128.698021pt;}
.x2a_c00319{left:133.464791pt;}
.x2b_c00319{left:135.910272pt;}
.x2c_c00319{left:138.584129pt;}
.x2d_c00319{left:142.002076pt;}
.x37_c00319{left:143.420132pt;}
.x2e_c00319{left:145.070170pt;}
.x2f_c00319{left:152.430191pt;}
.x30_c00319{left:159.776608pt;}
.x31_c00319{left:167.266795pt;}
.x32_c00319{left:174.717010pt;}
.x33_c00319{left:178.419115pt;}
.x34_c00319{left:182.468375pt;}
.x35_c00319{left:185.852506pt;}
.x36_c00319{left:188.150503pt;}
.x3_c00319{left:204.676373pt;}
.x2_c00319{left:206.574107pt;}
.x4_c00319{left:209.317987pt;}
.x5_c00319{left:213.616993pt;}
.x6_c00319{left:218.376513pt;}
.x7_c00319{left:220.819105pt;}
.x8_c00319{left:223.490334pt;}
.x9_c00319{left:226.905704pt;}
.x3e_c00319{left:227.972394pt;}
.xa_c00319{left:229.825509pt;}
.xb_c00319{left:233.767373pt;}
.xc_c00319{left:241.423300pt;}
.xd_c00319{left:251.942027pt;}
.xe_c00319{left:258.549026pt;}
.xf_c00319{left:261.564741pt;}
.x3d_c00319{left:262.612255pt;}
.x10_c00319{left:266.308178pt;}
.x11_c00319{left:269.319244pt;}
.x12_c00319{left:272.883167pt;}
.x13_c00319{left:289.225349pt;}
.x14_c00319{left:290.306761pt;}
.x15_c00319{left:291.569114pt;}
.x16_c00319{left:294.587062pt;}
.x17_c00319{left:297.451603pt;}
.x18_c00319{left:302.677178pt;}
.x19_c00319{left:308.173457pt;}
.x1a_c00319{left:313.230862pt;}
.x1b_c00319{left:316.260173pt;}
.x1c_c00319{left:323.284548pt;}
.x1d_c00319{left:330.381558pt;}
.x1e_c00319{left:336.386614pt;}
.x1f_c00319{left:339.069625pt;}
.x20_c00319{left:341.738474pt;}
.x21_c00319{left:344.757080pt;}
.x22_c00319{left:347.081977pt;}
.x23_c00319{left:350.026488pt;}
.x24_c00319{left:354.624063pt;}
.x25_c00319{left:357.115628pt;}
.x40_c00319{left:401.765180pt;}
.x1_c00319{left:413.420124pt;}
.x39_c00319{left:601.310535pt;}
.x3f_c00319{left:619.470933pt;}
.x38_c00319{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d89655565e1b15afced36e0.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.006348;font-style:normal;font-weight:normal;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_0774b08f289932d14df55d8a.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.000000;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.006348;font-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_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;}
.ls1_c00320{letter-spacing:0.000000px;}
.ls0_c00320{letter-spacing:0.035113px;}
.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;}
}
.ws0_c00320{word-spacing:-18.680283px;}
.ws1_c00320{word-spacing:0.000000px;}
._0_c00320{width:1.939438px;}
._9_c00320{width:3.688718px;}
._8_c00320{width:4.856424px;}
._2_c00320{width:6.643858px;}
._1_c00320{width:8.452503px;}
._7_c00320{width:10.546415px;}
._c_c00320{width:12.113089px;}
._3_c00320{width:13.647515px;}
._f_c00320{width:14.881092px;}
._a_c00320{width:16.574447px;}
._b_c00320{width:19.945990px;}
._4_c00320{width:23.441058px;}
._e_c00320{width:31.551475px;}
._d_c00320{width:36.578977px;}
._5_c00320{width:49.603938px;}
._6_c00320{width:63.534595px;}
.fc1_c00320{color:rgb(198,111,25);}
.fc0_c00320{color:rgb(0,0,0);}
.fs1_c00320{font-size:71.912067px;}
.fs0_c00320{font-size:71.957041px;}
.y0_c00320{bottom:0.000000px;}
.y1_c00320{bottom:0.000008px;}
.y22_c00320{bottom:30.156225px;}
.y20_c00320{bottom:142.062763px;}
.y1f_c00320{bottom:172.419639px;}
.y1e_c00320{bottom:202.776516px;}
.y21_c00320{bottom:238.224948px;}
.y1c_c00320{bottom:301.098120px;}
.y1b_c00320{bottom:331.454997px;}
.y1a_c00320{bottom:361.811873px;}
.y19_c00320{bottom:394.729254px;}
.y18_c00320{bottom:454.816362px;}
.y17_c00320{bottom:485.173239px;}
.y16_c00320{bottom:515.530116px;}
.y15_c00320{bottom:545.886993px;}
.y14_c00320{bottom:576.243869px;}
.y13_c00320{bottom:606.600746px;}
.y12_c00320{bottom:636.957623px;}
.y11_c00320{bottom:667.314500px;}
.y10_c00320{bottom:697.671376px;}
.yf_c00320{bottom:728.028253px;}
.ye_c00320{bottom:758.385130px;}
.yd_c00320{bottom:788.742007px;}
.yc_c00320{bottom:819.098884px;}
.yb_c00320{bottom:849.455760px;}
.ya_c00320{bottom:879.812637px;}
.y1d_c00320{bottom:915.309921px;}
.y8_c00320{bottom:975.481831px;}
.y7_c00320{bottom:1005.838708px;}
.y6_c00320{bottom:1036.195585px;}
.y5_c00320{bottom:1066.552462px;}
.y4_c00320{bottom:1096.909338px;}
.y3_c00320{bottom:1127.266215px;}
.y2_c00320{bottom:1157.623092px;}
.y9_c00320{bottom:1199.835078px;}
.h4_c00320{height:55.092790px;}
.h3_c00320{height:55.127245px;}
.h2_c00320{height:1304.999946px;}
.h0_c00320{height:1304.999953px;}
.h1_c00320{height:1305.000000px;}
.w2_c00320{width:934.874961px;}
.w0_c00320{width:934.875000px;}
.w1_c00320{width:935.250000px;}
.x0_c00320{left:0.000000px;}
.x1_c00320{left:85.184640px;}
.x2_c00320{left:451.985828px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls1_c00320{letter-spacing:0.000000pt;}
.ls0_c00320{letter-spacing:0.031211pt;}
.ws0_c00320{word-spacing:-16.604696pt;}
.ws1_c00320{word-spacing:0.000000pt;}
._0_c00320{width:1.723945pt;}
._9_c00320{width:3.278861pt;}
._8_c00320{width:4.316821pt;}
._2_c00320{width:5.905652pt;}
._1_c00320{width:7.513336pt;}
._7_c00320{width:9.374591pt;}
._c_c00320{width:10.767190pt;}
._3_c00320{width:12.131124pt;}
._f_c00320{width:13.227638pt;}
._a_c00320{width:14.732841pt;}
._b_c00320{width:17.729769pt;}
._4_c00320{width:20.836496pt;}
._e_c00320{width:28.045756pt;}
._d_c00320{width:32.514646pt;}
._5_c00320{width:44.092390pt;}
._6_c00320{width:56.475195pt;}
.fs1_c00320{font-size:63.921837pt;}
.fs0_c00320{font-size:63.961814pt;}
.y0_c00320{bottom:0.000000pt;}
.y1_c00320{bottom:0.000007pt;}
.y22_c00320{bottom:26.805533pt;}
.y20_c00320{bottom:126.278011pt;}
.y1f_c00320{bottom:153.261902pt;}
.y1e_c00320{bottom:180.245792pt;}
.y21_c00320{bottom:211.755510pt;}
.y1c_c00320{bottom:267.642773pt;}
.y1b_c00320{bottom:294.626664pt;}
.y1a_c00320{bottom:321.610554pt;}
.y19_c00320{bottom:350.870448pt;}
.y18_c00320{bottom:404.281211pt;}
.y17_c00320{bottom:431.265101pt;}
.y16_c00320{bottom:458.248992pt;}
.y15_c00320{bottom:485.232882pt;}
.y14_c00320{bottom:512.216773pt;}
.y13_c00320{bottom:539.200663pt;}
.y12_c00320{bottom:566.184554pt;}
.y11_c00320{bottom:593.168444pt;}
.y10_c00320{bottom:620.152335pt;}
.yf_c00320{bottom:647.136225pt;}
.ye_c00320{bottom:674.120116pt;}
.yd_c00320{bottom:701.104006pt;}
.yc_c00320{bottom:728.087896pt;}
.yb_c00320{bottom:755.071787pt;}
.ya_c00320{bottom:782.055677pt;}
.y1d_c00320{bottom:813.608819pt;}
.y8_c00320{bottom:867.094961pt;}
.y7_c00320{bottom:894.078852pt;}
.y6_c00320{bottom:921.062742pt;}
.y5_c00320{bottom:948.046632pt;}
.y4_c00320{bottom:975.030523pt;}
.y3_c00320{bottom:1002.014413pt;}
.y2_c00320{bottom:1028.998304pt;}
.y9_c00320{bottom:1066.520069pt;}
.h4_c00320{height:48.971369pt;}
.h3_c00320{height:49.001996pt;}
.h2_c00320{height:1159.999952pt;}
.h0_c00320{height:1159.999959pt;}
.h1_c00320{height:1160.000000pt;}
.w2_c00320{width:830.999965pt;}
.w0_c00320{width:831.000000pt;}
.w1_c00320{width:831.333333pt;}
.x0_c00320{left:0.000000pt;}
.x1_c00320{left:75.719680pt;}
.x2_c00320{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e9c8332fac8760d9c62f704.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:0.769531;font-style:normal;font-weight:normal;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_6af50d622657189b80877400.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:0.743000;font-style:normal;font-weight:normal;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_4cfead672e0725cfe684f0cd.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.000000;font-style:normal;font-weight: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_c00321;src:url('chunks/assets/font_4073a7662586cec6072fd383.woff2')format("woff");}.ff5_c00321{font-family:ff5_c00321;line-height:1.171387;font-style:normal;font-weight: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_c00321;src:url('chunks/assets/font_b2edada5183aaf6dd9ed79f7.woff2')format("woff");}.ff6_c00321{font-family:ff6_c00321;line-height:1.000000;font-style:normal;font-weight: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_c00321;src:url('chunks/assets/font_7800f617606f7656592f6ffb.woff2')format("woff");}.ff7_c00321{font-family:ff7_c00321;line-height:1.006348;font-style:normal;font-weight: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_c00321;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00321{font-family:ff8_c00321;line-height:0.734863;font-style:normal;font-weight: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_c00321;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00321{font-family:ff9_c00321;line-height:0.940000;font-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_c00321{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00321{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00321{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00321{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00321{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00321{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00321{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00321{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00321{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00321{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00321{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00321{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00321{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00321{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00321{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00321{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00321{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00321{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00321{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00321{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00321{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00321{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00321{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00321{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00321{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00321{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00321{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00321{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00321{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00321{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00321{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00321{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00321{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00321{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00321{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00321{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00321{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00321{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00321{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00321{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00321{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00321{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00321{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00321{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00321{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00321{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00321{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00321{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00321{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00321{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00321{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00321{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00321{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00321{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00321{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00321{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00321{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00321{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00321{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00321{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00321{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00321{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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:25.486682px;}
.ls0_c00321{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00321{word-spacing:-41.664701px;}
.ws2_c00321{word-spacing:-18.680283px;}
.ws4_c00321{word-spacing:0.000000px;}
.ws1_c00321{word-spacing:281.470806px;}
.ws0_c00321{word-spacing:1109.898202px;}
._5_c00321{width:1.367049px;}
._0_c00321{width:3.372988px;}
._4_c00321{width:5.481104px;}
._1_c00321{width:6.715847px;}
._2_c00321{width:22.774041px;}
._3_c00321{width:25.496475px;}
.fc3_c00321{color:rgb(9,71,81);}
.fc2_c00321{color:rgb(198,111,25);}
.fc1_c00321{color:rgb(255,255,255);}
.fc0_c00321{color:rgb(0,0,0);}
.fs7_c00321{font-size:41.974772px;}
.fsb_c00321{font-size:41.975069px;}
.fs2_c00321{font-size:47.339969px;}
.fs5_c00321{font-size:47.339970px;}
.fs1_c00321{font-size:47.339972px;}
.fs4_c00321{font-size:47.339973px;}
.fs3_c00321{font-size:47.339974px;}
.fs6_c00321{font-size:47.339975px;}
.fsd_c00321{font-size:51.630774px;}
.fs8_c00321{font-size:55.721735px;}
.fsa_c00321{font-size:59.949210px;}
.fse_c00321{font-size:71.912067px;}
.fs0_c00321{font-size:71.957041px;}
.fsc_c00321{font-size:76.965540px;}
.fs9_c00321{font-size:89.946302px;}
.y0_c00321{bottom:0.000000px;}
.y1_c00321{bottom:0.000008px;}
.y54_c00321{bottom:30.156225px;}
.y4b_c00321{bottom:84.349183px;}
.y4a_c00321{bottom:114.706060px;}
.y49_c00321{bottom:145.062936px;}
.y48_c00321{bottom:175.419813px;}
.y47_c00321{bottom:205.776690px;}
.y46_c00321{bottom:236.133567px;}
.y45_c00321{bottom:266.490443px;}
.y44_c00321{bottom:296.847320px;}
.y52_c00321{bottom:332.862932px;}
.y53_c00321{bottom:402.064151px;}
.y10_c00321{bottom:493.812629px;}
.y38_c00321{bottom:493.827623px;}
.yf_c00321{bottom:494.337609px;}
.y39_c00321{bottom:494.357158px;}
.y22_c00321{bottom:494.700737px;}
.y37_c00321{bottom:495.071586px;}
.ye_c00321{bottom:495.403002px;}
.y23_c00321{bottom:495.533530px;}
.y21_c00321{bottom:495.553663px;}
.y36_c00321{bottom:496.322201px;}
.yd_c00321{bottom:496.475623px;}
.y20_c00321{bottom:496.587915px;}
.y3a_c00321{bottom:496.772260px;}
.y11_c00321{bottom:496.835884px;}
.y24_c00321{bottom:497.713596px;}
.y35_c00321{bottom:497.966053px;}
.yc_c00321{bottom:498.126234px;}
.y1f_c00321{bottom:498.789265px;}
.y25_c00321{bottom:499.103521px;}
.y34_c00321{bottom:499.653306px;}
.yb_c00321{bottom:499.818769px;}
.y26_c00321{bottom:500.800864px;}
.y12_c00321{bottom:501.110605px;}
.y33_c00321{bottom:501.517382px;}
.ya_c00321{bottom:501.687706px;}
.y3b_c00321{bottom:501.869915px;}
.y1e_c00321{bottom:502.578702px;}
.y27_c00321{bottom:503.241722px;}
.y13_c00321{bottom:503.627848px;}
.y3c_c00321{bottom:505.496019px;}
.y28_c00321{bottom:505.499367px;}
.y32_c00321{bottom:506.168989px;}
.y9_c00321{bottom:506.348634px;}
.y1d_c00321{bottom:508.044213px;}
.y29_c00321{bottom:508.766327px;}
.y14_c00321{bottom:509.576794px;}
.y3d_c00321{bottom:511.126534px;}
.y1c_c00321{bottom:512.508085px;}
.y31_c00321{bottom:512.566592px;}
.y8_c00321{bottom:512.754669px;}
.y15_c00321{bottom:514.322677px;}
.y2a_c00321{bottom:517.158603px;}
.y3e_c00321{bottom:517.780195px;}
.y1b_c00321{bottom:518.929057px;}
.y30_c00321{bottom:519.869222px;}
.y7_c00321{bottom:519.959421px;}
.y6_c00321{bottom:523.416158px;}
.y1a_c00321{bottom:523.496236px;}
.y2b_c00321{bottom:525.202812px;}
.y16_c00321{bottom:526.099549px;}
.y2f_c00321{bottom:527.026630px;}
.y5_c00321{bottom:529.422883px;}
.y3f_c00321{bottom:529.736175px;}
.y19_c00321{bottom:531.263725px;}
.y2e_c00321{bottom:531.792993px;}
.y41_c00321{bottom:534.059426px;}
.y51_c00321{bottom:534.421816px;}
.y18_c00321{bottom:535.155114px;}
.y4_c00321{bottom:536.678099px;}
.y2d_c00321{bottom:537.961701px;}
.y17_c00321{bottom:538.332892px;}
.y40_c00321{bottom:538.696314px;}
.y2c_c00321{bottom:545.020884px;}
.y3_c00321{bottom:546.207017px;}
.y42_c00321{bottom:577.871130px;}
.y2_c00321{bottom:597.559761px;}
.y43_c00321{bottom:639.489911px;}
.y55_c00321{bottom:1024.443964px;}
.y4f_c00321{bottom:1127.585799px;}
.y4d_c00321{bottom:1129.718199px;}
.y4c_c00321{bottom:1147.707459px;}
.y50_c00321{bottom:1151.319470px;}
.y4e_c00321{bottom:1170.658440px;}
.hb_c00321{height:32.157430px;}
.h8_c00321{height:35.967282px;}
.h7_c00321{height:35.967283px;}
.h9_c00321{height:35.967285px;}
.h5_c00321{height:36.267779px;}
.h4_c00321{height:36.267781px;}
.h6_c00321{height:36.267783px;}
.h13_c00321{height:37.437353px;}
.hf_c00321{height:39.085184px;}
.h15_c00321{height:45.561399px;}
.hc_c00321{height:51.885424px;}
.h14_c00321{height:55.092790px;}
.h3_c00321{height:55.127245px;}
.he_c00321{height:55.821847px;}
.h12_c00321{height:56.261810px;}
.ha_c00321{height:57.644112px;}
.h10_c00321{height:67.002968px;}
.hd_c00321{height:68.338108px;}
.h11_c00321{height:83.753709px;}
.h2_c00321{height:1304.999946px;}
.h0_c00321{height:1304.999953px;}
.h1_c00321{height:1305.000000px;}
.w2_c00321{width:934.874961px;}
.w0_c00321{width:934.875000px;}
.w1_c00321{width:935.250000px;}
.x0_c00321{left:0.000000px;}
.x3a_c00321{left:87.850202px;}
.x3b_c00321{left:107.403263px;}
.x3c_c00321{left:109.658623px;}
.x41_c00321{left:131.272077px;}
.x27_c00321{left:134.894322px;}
.x26_c00321{left:136.566734px;}
.x28_c00321{left:139.937719px;}
.x29_c00321{left:144.785273px;}
.x2a_c00321{left:150.147890px;}
.x2b_c00321{left:152.899057px;}
.x2c_c00321{left:155.907145px;}
.x2d_c00321{left:159.752336px;}
.x37_c00321{left:161.347648px;}
.x2e_c00321{left:163.203941px;}
.x2f_c00321{left:171.483965px;}
.x30_c00321{left:179.748684px;}
.x31_c00321{left:188.175145px;}
.x32_c00321{left:196.556636px;}
.x33_c00321{left:200.721504px;}
.x34_c00321{left:205.276922px;}
.x35_c00321{left:209.084069px;}
.x36_c00321{left:211.669316px;}
.x3_c00321{left:230.260919px;}
.x2_c00321{left:232.395871px;}
.x4_c00321{left:235.482735px;}
.x5_c00321{left:240.319117px;}
.x6_c00321{left:245.673577px;}
.x7_c00321{left:248.421493px;}
.x8_c00321{left:251.426626px;}
.x9_c00321{left:255.268917px;}
.x3e_c00321{left:256.468943px;}
.xa_c00321{left:258.553698px;}
.xb_c00321{left:262.988294px;}
.xc_c00321{left:271.601212px;}
.xd_c00321{left:283.434780px;}
.xe_c00321{left:290.867654px;}
.xf_c00321{left:294.260334px;}
.x3d_c00321{left:295.438786px;}
.x10_c00321{left:299.596701px;}
.x11_c00321{left:302.984150px;}
.x12_c00321{left:306.993562px;}
.x13_c00321{left:325.378518px;}
.x14_c00321{left:326.595106px;}
.x15_c00321{left:328.015253px;}
.x16_c00321{left:331.410444px;}
.x17_c00321{left:334.633053px;}
.x18_c00321{left:340.511825px;}
.x19_c00321{left:346.695139px;}
.x1a_c00321{left:352.384720px;}
.x1b_c00321{left:355.792694px;}
.x1c_c00321{left:363.695116px;}
.x1d_c00321{left:371.679253px;}
.x1e_c00321{left:378.434940px;}
.x1f_c00321{left:381.453328px;}
.x20_c00321{left:384.455783px;}
.x21_c00321{left:387.851715px;}
.x22_c00321{left:390.467224px;}
.x23_c00321{left:393.779799px;}
.x24_c00321{left:398.952070px;}
.x25_c00321{left:401.755082px;}
.x40_c00321{left:451.985828px;}
.x1_c00321{left:465.097640px;}
.x39_c00321{left:676.474352px;}
.x3f_c00321{left:696.904800px;}
.x38_c00321{left:733.103068px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.v1_c00321{vertical-align:22.654829pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ws3_c00321{word-spacing:-37.035289pt;}
.ws2_c00321{word-spacing:-16.604696pt;}
.ws4_c00321{word-spacing:0.000000pt;}
.ws1_c00321{word-spacing:250.196272pt;}
.ws0_c00321{word-spacing:986.576179pt;}
._5_c00321{width:1.215154pt;}
._0_c00321{width:2.998212pt;}
._4_c00321{width:4.872092pt;}
._1_c00321{width:5.969642pt;}
._2_c00321{width:20.243592pt;}
._3_c00321{width:22.663534pt;}
.fs7_c00321{font-size:37.310908pt;}
.fsb_c00321{font-size:37.311173pt;}
.fs2_c00321{font-size:42.079973pt;}
.fs5_c00321{font-size:42.079974pt;}
.fs1_c00321{font-size:42.079975pt;}
.fs4_c00321{font-size:42.079976pt;}
.fs3_c00321{font-size:42.079977pt;}
.fs6_c00321{font-size:42.079978pt;}
.fsd_c00321{font-size:45.894021pt;}
.fs8_c00321{font-size:49.530431pt;}
.fsa_c00321{font-size:53.288186pt;}
.fse_c00321{font-size:63.921837pt;}
.fs0_c00321{font-size:63.961814pt;}
.fsc_c00321{font-size:68.413814pt;}
.fs9_c00321{font-size:79.952268pt;}
.y0_c00321{bottom:0.000000pt;}
.y1_c00321{bottom:0.000007pt;}
.y54_c00321{bottom:26.805533pt;}
.y4b_c00321{bottom:74.977051pt;}
.y4a_c00321{bottom:101.960942pt;}
.y49_c00321{bottom:128.944832pt;}
.y48_c00321{bottom:155.928723pt;}
.y47_c00321{bottom:182.912613pt;}
.y46_c00321{bottom:209.896504pt;}
.y45_c00321{bottom:236.880394pt;}
.y44_c00321{bottom:263.864285pt;}
.y52_c00321{bottom:295.878162pt;}
.y53_c00321{bottom:357.390356pt;}
.y10_c00321{bottom:438.944560pt;}
.y38_c00321{bottom:438.957887pt;}
.yf_c00321{bottom:439.411208pt;}
.y39_c00321{bottom:439.428585pt;}
.y22_c00321{bottom:439.733989pt;}
.y37_c00321{bottom:440.063632pt;}
.ye_c00321{bottom:440.358224pt;}
.y23_c00321{bottom:440.474249pt;}
.y21_c00321{bottom:440.492144pt;}
.y36_c00321{bottom:441.175290pt;}
.yd_c00321{bottom:441.311665pt;}
.y20_c00321{bottom:441.411480pt;}
.y3a_c00321{bottom:441.575343pt;}
.y11_c00321{bottom:441.631897pt;}
.y24_c00321{bottom:442.412085pt;}
.y35_c00321{bottom:442.636491pt;}
.yc_c00321{bottom:442.778875pt;}
.y1f_c00321{bottom:443.368235pt;}
.y25_c00321{bottom:443.647574pt;}
.y34_c00321{bottom:444.136272pt;}
.yb_c00321{bottom:444.283350pt;}
.y26_c00321{bottom:445.156323pt;}
.y12_c00321{bottom:445.431649pt;}
.y33_c00321{bottom:445.793228pt;}
.ya_c00321{bottom:445.944627pt;}
.y3b_c00321{bottom:446.106592pt;}
.y1e_c00321{bottom:446.736624pt;}
.y27_c00321{bottom:447.325975pt;}
.y13_c00321{bottom:447.669198pt;}
.y3c_c00321{bottom:449.329795pt;}
.y28_c00321{bottom:449.332771pt;}
.y32_c00321{bottom:449.927990pt;}
.y9_c00321{bottom:450.087675pt;}
.y1d_c00321{bottom:451.594856pt;}
.y29_c00321{bottom:452.236735pt;}
.y14_c00321{bottom:452.957150pt;}
.y3d_c00321{bottom:454.334697pt;}
.y1c_c00321{bottom:455.562742pt;}
.y31_c00321{bottom:455.614749pt;}
.y8_c00321{bottom:455.781928pt;}
.y15_c00321{bottom:457.175713pt;}
.y2a_c00321{bottom:459.696536pt;}
.y3e_c00321{bottom:460.249062pt;}
.y1b_c00321{bottom:461.270273pt;}
.y30_c00321{bottom:462.105976pt;}
.y7_c00321{bottom:462.186152pt;}
.y6_c00321{bottom:465.258807pt;}
.y1a_c00321{bottom:465.329988pt;}
.y2b_c00321{bottom:466.846944pt;}
.y16_c00321{bottom:467.644044pt;}
.y2f_c00321{bottom:468.468115pt;}
.y5_c00321{bottom:470.598118pt;}
.y3f_c00321{bottom:470.876600pt;}
.y19_c00321{bottom:472.234422pt;}
.y2e_c00321{bottom:472.704883pt;}
.y41_c00321{bottom:474.719489pt;}
.y51_c00321{bottom:475.041614pt;}
.y18_c00321{bottom:475.693435pt;}
.y4_c00321{bottom:477.047199pt;}
.y2d_c00321{bottom:478.188178pt;}
.y17_c00321{bottom:478.518126pt;}
.y40_c00321{bottom:478.841168pt;}
.y2c_c00321{bottom:484.463008pt;}
.y3_c00321{bottom:485.517349pt;}
.y42_c00321{bottom:513.663227pt;}
.y2_c00321{bottom:531.164232pt;}
.y43_c00321{bottom:568.435476pt;}
.y55_c00321{bottom:910.616857pt;}
.y4f_c00321{bottom:1002.298488pt;}
.y4d_c00321{bottom:1004.193955pt;}
.y4c_c00321{bottom:1020.184408pt;}
.y50_c00321{bottom:1023.395085pt;}
.y4e_c00321{bottom:1040.585280pt;}
.hb_c00321{height:28.584382pt;}
.h8_c00321{height:31.970917pt;}
.h7_c00321{height:31.970918pt;}
.h9_c00321{height:31.970920pt;}
.h5_c00321{height:32.238026pt;}
.h4_c00321{height:32.238028pt;}
.h6_c00321{height:32.238029pt;}
.h13_c00321{height:33.277647pt;}
.hf_c00321{height:34.742386pt;}
.h15_c00321{height:40.499022pt;}
.hc_c00321{height:46.120377pt;}
.h14_c00321{height:48.971369pt;}
.h3_c00321{height:49.001996pt;}
.he_c00321{height:49.619420pt;}
.h12_c00321{height:50.010498pt;}
.ha_c00321{height:51.239211pt;}
.h10_c00321{height:59.558193pt;}
.hd_c00321{height:60.744985pt;}
.h11_c00321{height:74.447742pt;}
.h2_c00321{height:1159.999952pt;}
.h0_c00321{height:1159.999959pt;}
.h1_c00321{height:1160.000000pt;}
.w2_c00321{width:830.999965pt;}
.w0_c00321{width:831.000000pt;}
.w1_c00321{width:831.333333pt;}
.x0_c00321{left:0.000000pt;}
.x3a_c00321{left:78.089069pt;}
.x3b_c00321{left:95.469567pt;}
.x3c_c00321{left:97.474332pt;}
.x41_c00321{left:116.686291pt;}
.x27_c00321{left:119.906064pt;}
.x26_c00321{left:121.392652pt;}
.x28_c00321{left:124.389083pt;}
.x29_c00321{left:128.698021pt;}
.x2a_c00321{left:133.464791pt;}
.x2b_c00321{left:135.910272pt;}
.x2c_c00321{left:138.584129pt;}
.x2d_c00321{left:142.002076pt;}
.x37_c00321{left:143.420132pt;}
.x2e_c00321{left:145.070170pt;}
.x2f_c00321{left:152.430191pt;}
.x30_c00321{left:159.776608pt;}
.x31_c00321{left:167.266795pt;}
.x32_c00321{left:174.717010pt;}
.x33_c00321{left:178.419115pt;}
.x34_c00321{left:182.468375pt;}
.x35_c00321{left:185.852506pt;}
.x36_c00321{left:188.150503pt;}
.x3_c00321{left:204.676373pt;}
.x2_c00321{left:206.574107pt;}
.x4_c00321{left:209.317987pt;}
.x5_c00321{left:213.616993pt;}
.x6_c00321{left:218.376513pt;}
.x7_c00321{left:220.819105pt;}
.x8_c00321{left:223.490334pt;}
.x9_c00321{left:226.905704pt;}
.x3e_c00321{left:227.972394pt;}
.xa_c00321{left:229.825509pt;}
.xb_c00321{left:233.767373pt;}
.xc_c00321{left:241.423300pt;}
.xd_c00321{left:251.942027pt;}
.xe_c00321{left:258.549026pt;}
.xf_c00321{left:261.564741pt;}
.x3d_c00321{left:262.612255pt;}
.x10_c00321{left:266.308178pt;}
.x11_c00321{left:269.319244pt;}
.x12_c00321{left:272.883167pt;}
.x13_c00321{left:289.225349pt;}
.x14_c00321{left:290.306761pt;}
.x15_c00321{left:291.569114pt;}
.x16_c00321{left:294.587062pt;}
.x17_c00321{left:297.451603pt;}
.x18_c00321{left:302.677178pt;}
.x19_c00321{left:308.173457pt;}
.x1a_c00321{left:313.230862pt;}
.x1b_c00321{left:316.260173pt;}
.x1c_c00321{left:323.284548pt;}
.x1d_c00321{left:330.381558pt;}
.x1e_c00321{left:336.386614pt;}
.x1f_c00321{left:339.069625pt;}
.x20_c00321{left:341.738474pt;}
.x21_c00321{left:344.757080pt;}
.x22_c00321{left:347.081977pt;}
.x23_c00321{left:350.026488pt;}
.x24_c00321{left:354.624063pt;}
.x25_c00321{left:357.115628pt;}
.x40_c00321{left:401.765180pt;}
.x1_c00321{left:413.420124pt;}
.x39_c00321{left:601.310535pt;}
.x3f_c00321{left:619.470933pt;}
.x38_c00321{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75593fa69bdf907421f487dd.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.171387;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.006348;font-style:normal;font-weight:normal;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_0deb72294a5b331a087525a8.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.005371;font-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_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);}
.v0_c00322{vertical-align:0.000000px;}
.ls0_c00322{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00322{word-spacing:-18.691966px;}
.ws1_c00322{word-spacing:-18.680283px;}
.ws2_c00322{word-spacing:0.000000px;}
._0_c00322{width:1.484466px;}
._5_c00322{width:3.541595px;}
._1_c00322{width:5.530235px;}
._d_c00322{width:6.778362px;}
._a_c00322{width:8.700715px;}
._6_c00322{width:10.354541px;}
._2_c00322{width:11.664911px;}
._9_c00322{width:12.761785px;}
._7_c00322{width:14.206316px;}
._4_c00322{width:16.162226px;}
._f_c00322{width:17.411164px;}
._3_c00322{width:20.144175px;}
._b_c00322{width:24.835558px;}
._c_c00322{width:32.164698px;}
._8_c00322{width:35.465489px;}
._e_c00322{width:48.275867px;}
.fc1_c00322{color:rgb(198,111,25);}
.fc0_c00322{color:rgb(0,0,0);}
.fs1_c00322{font-size:71.912067px;}
.fs0_c00322{font-size:71.957041px;}
.y0_c00322{bottom:0.000000px;}
.y1_c00322{bottom:0.000008px;}
.y24_c00322{bottom:30.156225px;}
.y1b_c00322{bottom:126.708619px;}
.y1a_c00322{bottom:157.065496px;}
.y19_c00322{bottom:187.422373px;}
.y1c_c00322{bottom:215.980297px;}
.y18_c00322{bottom:270.347061px;}
.y17_c00322{bottom:300.703938px;}
.y16_c00322{bottom:331.060814px;}
.y15_c00322{bottom:361.417691px;}
.y14_c00322{bottom:391.774568px;}
.y13_c00322{bottom:422.131445px;}
.y12_c00322{bottom:452.488321px;}
.y11_c00322{bottom:482.845198px;}
.y10_c00322{bottom:513.202075px;}
.yf_c00322{bottom:543.558952px;}
.ye_c00322{bottom:573.915829px;}
.yd_c00322{bottom:604.272705px;}
.yc_c00322{bottom:634.629582px;}
.y1d_c00322{bottom:663.187542px;}
.ya_c00322{bottom:718.027449px;}
.y9_c00322{bottom:748.384325px;}
.y8_c00322{bottom:778.741202px;}
.y7_c00322{bottom:809.098079px;}
.y6_c00322{bottom:839.454956px;}
.y5_c00322{bottom:869.811833px;}
.y4_c00322{bottom:900.168709px;}
.y3_c00322{bottom:930.525586px;}
.y2_c00322{bottom:960.882463px;}
.yb_c00322{bottom:989.202975px;}
.y22_c00322{bottom:1042.391951px;}
.y21_c00322{bottom:1072.748828px;}
.y20_c00322{bottom:1103.105705px;}
.y1f_c00322{bottom:1133.462582px;}
.y1e_c00322{bottom:1163.819458px;}
.y23_c00322{bottom:1199.835078px;}
.h4_c00322{height:55.127245px;}
.h5_c00322{height:66.961090px;}
.h3_c00322{height:67.002968px;}
.h2_c00322{height:1304.999946px;}
.h0_c00322{height:1304.999953px;}
.h1_c00322{height:1305.000000px;}
.w2_c00322{width:934.874961px;}
.w0_c00322{width:934.875000px;}
.w1_c00322{width:935.250000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:87.850202px;}
.x2_c00322{left:451.985828px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ws0_c00322{word-spacing:-16.615081pt;}
.ws1_c00322{word-spacing:-16.604696pt;}
.ws2_c00322{word-spacing:0.000000pt;}
._0_c00322{width:1.319526pt;}
._5_c00322{width:3.148085pt;}
._1_c00322{width:4.915765pt;}
._d_c00322{width:6.025211pt;}
._a_c00322{width:7.733969pt;}
._6_c00322{width:9.204036pt;}
._2_c00322{width:10.368809pt;}
._9_c00322{width:11.343809pt;}
._7_c00322{width:12.627837pt;}
._4_c00322{width:14.366423pt;}
._f_c00322{width:15.476590pt;}
._3_c00322{width:17.905933pt;}
._b_c00322{width:22.076052pt;}
._c_c00322{width:28.590842pt;}
._8_c00322{width:31.524879pt;}
._e_c00322{width:42.911882pt;}
.fs1_c00322{font-size:63.921837pt;}
.fs0_c00322{font-size:63.961814pt;}
.y0_c00322{bottom:0.000000pt;}
.y1_c00322{bottom:0.000007pt;}
.y24_c00322{bottom:26.805533pt;}
.y1b_c00322{bottom:112.629884pt;}
.y1a_c00322{bottom:139.613774pt;}
.y19_c00322{bottom:166.597665pt;}
.y1c_c00322{bottom:191.982486pt;}
.y18_c00322{bottom:240.308499pt;}
.y17_c00322{bottom:267.292389pt;}
.y16_c00322{bottom:294.276279pt;}
.y15_c00322{bottom:321.260170pt;}
.y14_c00322{bottom:348.244060pt;}
.y13_c00322{bottom:375.227951pt;}
.y12_c00322{bottom:402.211841pt;}
.y11_c00322{bottom:429.195732pt;}
.y10_c00322{bottom:456.179622pt;}
.yf_c00322{bottom:483.163513pt;}
.ye_c00322{bottom:510.147403pt;}
.yd_c00322{bottom:537.131294pt;}
.yc_c00322{bottom:564.115184pt;}
.y1d_c00322{bottom:589.500038pt;}
.ya_c00322{bottom:638.246621pt;}
.y9_c00322{bottom:665.230512pt;}
.y8_c00322{bottom:692.214402pt;}
.y7_c00322{bottom:719.198292pt;}
.y6_c00322{bottom:746.182183pt;}
.y5_c00322{bottom:773.166073pt;}
.y4_c00322{bottom:800.149964pt;}
.y3_c00322{bottom:827.133854pt;}
.y2_c00322{bottom:854.117745pt;}
.yb_c00322{bottom:879.291533pt;}
.y22_c00322{bottom:926.570623pt;}
.y21_c00322{bottom:953.554514pt;}
.y20_c00322{bottom:980.538404pt;}
.y1f_c00322{bottom:1007.522295pt;}
.y1e_c00322{bottom:1034.506185pt;}
.y23_c00322{bottom:1066.520069pt;}
.h4_c00322{height:49.001996pt;}
.h5_c00322{height:59.520969pt;}
.h3_c00322{height:59.558193pt;}
.h2_c00322{height:1159.999952pt;}
.h0_c00322{height:1159.999959pt;}
.h1_c00322{height:1160.000000pt;}
.w2_c00322{width:830.999965pt;}
.w0_c00322{width:831.000000pt;}
.w1_c00322{width:831.333333pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:78.089069pt;}
.x2_c00322{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92fc40da1e35fa9524acd6bc.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:0.743000;font-style:normal;font-weight:normal;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_f90ad1e3639e94ff8afee854.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:1.000000;font-style:normal;font-weight: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_c00323;src:url('chunks/assets/font_2b1acb622a3585d211239139.woff2')format("woff");}.ff5_c00323{font-family:ff5_c00323;line-height:1.171387;font-style:normal;font-weight: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_c00323;src:url('chunks/assets/font_16a47761464df125c706250b.woff2')format("woff");}.ff6_c00323{font-family:ff6_c00323;line-height:1.000000;font-style:normal;font-weight: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_c00323;src:url('chunks/assets/font_caeeb2499a3535951d44c19a.woff2')format("woff");}.ff7_c00323{font-family:ff7_c00323;line-height:1.000000;font-style:normal;font-weight: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_c00323;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00323{font-family:ff8_c00323;line-height:1.006348;font-style:normal;font-weight: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_c00323;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00323{font-family:ff9_c00323;line-height:0.734863;font-style:normal;font-weight: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_c00323;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00323{font-family:ffa_c00323;line-height:0.940000;font-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_c00323{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00323{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00323{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00323{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00323{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00323{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00323{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00323{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00323{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00323{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00323{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00323{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00323{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00323{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00323{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00323{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00323{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00323{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00323{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00323{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00323{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00323{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00323{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00323{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00323{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00323{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00323{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00323{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00323{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00323{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00323{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00323{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00323{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00323{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00323{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00323{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00323{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00323{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00323{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00323{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00323{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00323{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00323{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00323{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00323{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00323{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00323{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00323{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00323{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00323{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00323{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00323{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00323{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00323{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00323{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00323{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00323{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00323{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00323{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00323{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00323{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00323{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00323{vertical-align:0.000000px;}
.v1_c00323{vertical-align:26.810561px;}
.ls0_c00323{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00323{word-spacing:-41.664701px;}
.ws1_c00323{word-spacing:-20.244502px;}
.ws3_c00323{word-spacing:-18.680283px;}
.ws5_c00323{word-spacing:0.000000px;}
.ws2_c00323{word-spacing:281.470806px;}
.ws0_c00323{word-spacing:1114.343689px;}
._1_c00323{width:13.670777px;}
._0_c00323{width:46.378563px;}
.fc3_c00323{color:rgb(9,71,81);}
.fc2_c00323{color:rgb(198,111,25);}
.fc1_c00323{color:rgb(255,255,255);}
.fc0_c00323{color:rgb(0,0,0);}
.fs8_c00323{font-size:41.974772px;}
.fsc_c00323{font-size:41.975069px;}
.fsb_c00323{font-size:41.975073px;}
.fs2_c00323{font-size:47.339969px;}
.fs5_c00323{font-size:47.339970px;}
.fs1_c00323{font-size:47.339972px;}
.fs4_c00323{font-size:47.339973px;}
.fs3_c00323{font-size:47.339974px;}
.fs6_c00323{font-size:47.339975px;}
.fse_c00323{font-size:51.630774px;}
.fs9_c00323{font-size:55.721735px;}
.fs10_c00323{font-size:59.949210px;}
.fsf_c00323{font-size:71.912067px;}
.fs0_c00323{font-size:71.957041px;}
.fs7_c00323{font-size:76.965540px;}
.fsa_c00323{font-size:77.933722px;}
.fsd_c00323{font-size:89.946302px;}
.y0_c00323{bottom:0.000000px;}
.y1_c00323{bottom:0.000008px;}
.y50_c00323{bottom:30.156225px;}
.y46_c00323{bottom:222.641559px;}
.y45_c00323{bottom:252.998436px;}
.y44_c00323{bottom:283.355313px;}
.y4e_c00323{bottom:319.370961px;}
.y4f_c00323{bottom:402.064151px;}
.y10_c00323{bottom:493.812629px;}
.y38_c00323{bottom:493.827623px;}
.yf_c00323{bottom:494.337609px;}
.y39_c00323{bottom:494.357158px;}
.y22_c00323{bottom:494.700737px;}
.y37_c00323{bottom:495.071586px;}
.ye_c00323{bottom:495.403002px;}
.y23_c00323{bottom:495.533530px;}
.y21_c00323{bottom:495.553663px;}
.y36_c00323{bottom:496.322201px;}
.yd_c00323{bottom:496.475623px;}
.y20_c00323{bottom:496.587915px;}
.y3a_c00323{bottom:496.772260px;}
.y11_c00323{bottom:496.835884px;}
.y24_c00323{bottom:497.713596px;}
.y35_c00323{bottom:497.966053px;}
.yc_c00323{bottom:498.126234px;}
.y1f_c00323{bottom:498.789265px;}
.y25_c00323{bottom:499.103521px;}
.y34_c00323{bottom:499.653306px;}
.yb_c00323{bottom:499.818769px;}
.y26_c00323{bottom:500.800864px;}
.y12_c00323{bottom:501.110605px;}
.y33_c00323{bottom:501.517382px;}
.ya_c00323{bottom:501.687706px;}
.y3b_c00323{bottom:501.869915px;}
.y1e_c00323{bottom:502.578702px;}
.y27_c00323{bottom:503.241722px;}
.y13_c00323{bottom:503.627848px;}
.y3c_c00323{bottom:505.496019px;}
.y28_c00323{bottom:505.499367px;}
.y32_c00323{bottom:506.168989px;}
.y9_c00323{bottom:506.348634px;}
.y1d_c00323{bottom:508.044213px;}
.y29_c00323{bottom:508.766327px;}
.y14_c00323{bottom:509.576794px;}
.y3d_c00323{bottom:511.126534px;}
.y1c_c00323{bottom:512.508085px;}
.y31_c00323{bottom:512.566592px;}
.y8_c00323{bottom:512.754669px;}
.y15_c00323{bottom:514.322677px;}
.y2a_c00323{bottom:517.158603px;}
.y3e_c00323{bottom:517.780195px;}
.y1b_c00323{bottom:518.929057px;}
.y30_c00323{bottom:519.869222px;}
.y7_c00323{bottom:519.959421px;}
.y6_c00323{bottom:523.416158px;}
.y1a_c00323{bottom:523.496236px;}
.y2b_c00323{bottom:525.202812px;}
.y16_c00323{bottom:526.099549px;}
.y2f_c00323{bottom:527.026630px;}
.y5_c00323{bottom:529.422883px;}
.y3f_c00323{bottom:529.736175px;}
.y19_c00323{bottom:531.263725px;}
.y2e_c00323{bottom:531.792993px;}
.y41_c00323{bottom:533.728456px;}
.y4d_c00323{bottom:534.421816px;}
.y18_c00323{bottom:535.155114px;}
.y4_c00323{bottom:536.678099px;}
.y2d_c00323{bottom:537.961701px;}
.y17_c00323{bottom:538.332892px;}
.y40_c00323{bottom:538.696314px;}
.y2c_c00323{bottom:545.020884px;}
.y3_c00323{bottom:546.207017px;}
.y42_c00323{bottom:577.871130px;}
.y2_c00323{bottom:597.559761px;}
.y43_c00323{bottom:639.489911px;}
.y51_c00323{bottom:1024.443964px;}
.y49_c00323{bottom:1121.527947px;}
.y4b_c00323{bottom:1127.585799px;}
.y48_c00323{bottom:1134.645158px;}
.y47_c00323{bottom:1150.385810px;}
.y4c_c00323{bottom:1150.991694px;}
.y4a_c00323{bottom:1170.658440px;}
.hb_c00323{height:32.157430px;}
.h8_c00323{height:35.967282px;}
.h7_c00323{height:35.967283px;}
.h9_c00323{height:35.967285px;}
.h5_c00323{height:36.267779px;}
.h4_c00323{height:36.267781px;}
.h6_c00323{height:36.267783px;}
.h13_c00323{height:37.437353px;}
.hf_c00323{height:39.085184px;}
.he_c00323{height:39.085187px;}
.h15_c00323{height:45.561399px;}
.hc_c00323{height:51.885424px;}
.h14_c00323{height:55.092790px;}
.h3_c00323{height:55.127245px;}
.h12_c00323{height:56.261810px;}
.ha_c00323{height:58.967991px;}
.hd_c00323{height:59.211363px;}
.h10_c00323{height:67.002968px;}
.h11_c00323{height:83.753709px;}
.h2_c00323{height:1304.999946px;}
.h0_c00323{height:1304.999953px;}
.h1_c00323{height:1305.000000px;}
.w2_c00323{width:934.874961px;}
.w0_c00323{width:934.875000px;}
.w1_c00323{width:935.250000px;}
.x0_c00323{left:0.000000px;}
.x3a_c00323{left:89.434062px;}
.x3b_c00323{left:107.403263px;}
.x3c_c00323{left:109.658623px;}
.x41_c00323{left:131.272077px;}
.x27_c00323{left:134.894322px;}
.x26_c00323{left:136.566734px;}
.x28_c00323{left:139.937719px;}
.x29_c00323{left:144.785273px;}
.x2a_c00323{left:150.147890px;}
.x2b_c00323{left:152.899057px;}
.x2c_c00323{left:155.907145px;}
.x2d_c00323{left:159.752336px;}
.x37_c00323{left:161.347648px;}
.x2e_c00323{left:163.203941px;}
.x2f_c00323{left:171.483965px;}
.x30_c00323{left:179.748684px;}
.x31_c00323{left:188.175145px;}
.x32_c00323{left:196.556636px;}
.x33_c00323{left:200.721504px;}
.x34_c00323{left:205.276922px;}
.x35_c00323{left:209.084069px;}
.x36_c00323{left:211.669316px;}
.x3_c00323{left:230.260919px;}
.x2_c00323{left:232.395871px;}
.x4_c00323{left:235.482735px;}
.x5_c00323{left:240.319117px;}
.x6_c00323{left:245.673577px;}
.x7_c00323{left:248.421493px;}
.x8_c00323{left:251.426626px;}
.x9_c00323{left:255.268917px;}
.x3e_c00323{left:256.468943px;}
.xa_c00323{left:258.553698px;}
.xb_c00323{left:262.988294px;}
.xc_c00323{left:271.601212px;}
.xd_c00323{left:283.434780px;}
.xe_c00323{left:290.867654px;}
.xf_c00323{left:294.260334px;}
.x3d_c00323{left:295.438786px;}
.x10_c00323{left:299.596701px;}
.x11_c00323{left:302.984150px;}
.x12_c00323{left:306.993562px;}
.x13_c00323{left:325.378518px;}
.x14_c00323{left:326.595106px;}
.x15_c00323{left:328.015253px;}
.x16_c00323{left:331.410444px;}
.x17_c00323{left:334.633053px;}
.x18_c00323{left:340.511825px;}
.x19_c00323{left:346.695139px;}
.x1a_c00323{left:352.384720px;}
.x1b_c00323{left:355.792694px;}
.x1c_c00323{left:363.695116px;}
.x1d_c00323{left:371.679253px;}
.x1e_c00323{left:378.434940px;}
.x1f_c00323{left:381.453328px;}
.x20_c00323{left:384.455783px;}
.x21_c00323{left:387.851715px;}
.x22_c00323{left:390.467224px;}
.x23_c00323{left:393.779799px;}
.x24_c00323{left:398.952070px;}
.x25_c00323{left:401.755082px;}
.x40_c00323{left:451.985828px;}
.x1_c00323{left:465.097640px;}
.x39_c00323{left:676.474352px;}
.x3f_c00323{left:696.904800px;}
.x38_c00323{left:733.103068px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.v1_c00323{vertical-align:23.831609pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws4_c00323{word-spacing:-37.035289pt;}
.ws1_c00323{word-spacing:-17.995113pt;}
.ws3_c00323{word-spacing:-16.604696pt;}
.ws5_c00323{word-spacing:0.000000pt;}
.ws2_c00323{word-spacing:250.196272pt;}
.ws0_c00323{word-spacing:990.527723pt;}
._1_c00323{width:12.151802pt;}
._0_c00323{width:41.225389pt;}
.fs8_c00323{font-size:37.310908pt;}
.fsc_c00323{font-size:37.311173pt;}
.fsb_c00323{font-size:37.311176pt;}
.fs2_c00323{font-size:42.079973pt;}
.fs5_c00323{font-size:42.079974pt;}
.fs1_c00323{font-size:42.079975pt;}
.fs4_c00323{font-size:42.079976pt;}
.fs3_c00323{font-size:42.079977pt;}
.fs6_c00323{font-size:42.079978pt;}
.fse_c00323{font-size:45.894021pt;}
.fs9_c00323{font-size:49.530431pt;}
.fs10_c00323{font-size:53.288186pt;}
.fsf_c00323{font-size:63.921837pt;}
.fs0_c00323{font-size:63.961814pt;}
.fs7_c00323{font-size:68.413814pt;}
.fsa_c00323{font-size:69.274419pt;}
.fsd_c00323{font-size:79.952268pt;}
.y0_c00323{bottom:0.000000pt;}
.y1_c00323{bottom:0.000007pt;}
.y50_c00323{bottom:26.805533pt;}
.y46_c00323{bottom:197.903608pt;}
.y45_c00323{bottom:224.887499pt;}
.y44_c00323{bottom:251.871389pt;}
.y4e_c00323{bottom:283.885299pt;}
.y4f_c00323{bottom:357.390356pt;}
.y10_c00323{bottom:438.944560pt;}
.y38_c00323{bottom:438.957887pt;}
.yf_c00323{bottom:439.411208pt;}
.y39_c00323{bottom:439.428585pt;}
.y22_c00323{bottom:439.733989pt;}
.y37_c00323{bottom:440.063632pt;}
.ye_c00323{bottom:440.358224pt;}
.y23_c00323{bottom:440.474249pt;}
.y21_c00323{bottom:440.492144pt;}
.y36_c00323{bottom:441.175290pt;}
.yd_c00323{bottom:441.311665pt;}
.y20_c00323{bottom:441.411480pt;}
.y3a_c00323{bottom:441.575343pt;}
.y11_c00323{bottom:441.631897pt;}
.y24_c00323{bottom:442.412085pt;}
.y35_c00323{bottom:442.636491pt;}
.yc_c00323{bottom:442.778875pt;}
.y1f_c00323{bottom:443.368235pt;}
.y25_c00323{bottom:443.647574pt;}
.y34_c00323{bottom:444.136272pt;}
.yb_c00323{bottom:444.283350pt;}
.y26_c00323{bottom:445.156323pt;}
.y12_c00323{bottom:445.431649pt;}
.y33_c00323{bottom:445.793228pt;}
.ya_c00323{bottom:445.944627pt;}
.y3b_c00323{bottom:446.106592pt;}
.y1e_c00323{bottom:446.736624pt;}
.y27_c00323{bottom:447.325975pt;}
.y13_c00323{bottom:447.669198pt;}
.y3c_c00323{bottom:449.329795pt;}
.y28_c00323{bottom:449.332771pt;}
.y32_c00323{bottom:449.927990pt;}
.y9_c00323{bottom:450.087675pt;}
.y1d_c00323{bottom:451.594856pt;}
.y29_c00323{bottom:452.236735pt;}
.y14_c00323{bottom:452.957150pt;}
.y3d_c00323{bottom:454.334697pt;}
.y1c_c00323{bottom:455.562742pt;}
.y31_c00323{bottom:455.614749pt;}
.y8_c00323{bottom:455.781928pt;}
.y15_c00323{bottom:457.175713pt;}
.y2a_c00323{bottom:459.696536pt;}
.y3e_c00323{bottom:460.249062pt;}
.y1b_c00323{bottom:461.270273pt;}
.y30_c00323{bottom:462.105976pt;}
.y7_c00323{bottom:462.186152pt;}
.y6_c00323{bottom:465.258807pt;}
.y1a_c00323{bottom:465.329988pt;}
.y2b_c00323{bottom:466.846944pt;}
.y16_c00323{bottom:467.644044pt;}
.y2f_c00323{bottom:468.468115pt;}
.y5_c00323{bottom:470.598118pt;}
.y3f_c00323{bottom:470.876600pt;}
.y19_c00323{bottom:472.234422pt;}
.y2e_c00323{bottom:472.704883pt;}
.y41_c00323{bottom:474.425294pt;}
.y4d_c00323{bottom:475.041614pt;}
.y18_c00323{bottom:475.693435pt;}
.y4_c00323{bottom:477.047199pt;}
.y2d_c00323{bottom:478.188178pt;}
.y17_c00323{bottom:478.518126pt;}
.y40_c00323{bottom:478.841168pt;}
.y2c_c00323{bottom:484.463008pt;}
.y3_c00323{bottom:485.517349pt;}
.y42_c00323{bottom:513.663227pt;}
.y2_c00323{bottom:531.164232pt;}
.y43_c00323{bottom:568.435476pt;}
.y51_c00323{bottom:910.616857pt;}
.y49_c00323{bottom:996.913731pt;}
.y4b_c00323{bottom:1002.298488pt;}
.y48_c00323{bottom:1008.573473pt;}
.y47_c00323{bottom:1022.565164pt;}
.y4c_c00323{bottom:1023.103728pt;}
.y4a_c00323{bottom:1040.585280pt;}
.hb_c00323{height:28.584382pt;}
.h8_c00323{height:31.970917pt;}
.h7_c00323{height:31.970918pt;}
.h9_c00323{height:31.970920pt;}
.h5_c00323{height:32.238026pt;}
.h4_c00323{height:32.238028pt;}
.h6_c00323{height:32.238029pt;}
.h13_c00323{height:33.277647pt;}
.hf_c00323{height:34.742386pt;}
.he_c00323{height:34.742389pt;}
.h15_c00323{height:40.499022pt;}
.hc_c00323{height:46.120377pt;}
.h14_c00323{height:48.971369pt;}
.h3_c00323{height:49.001996pt;}
.h12_c00323{height:50.010498pt;}
.ha_c00323{height:52.415992pt;}
.hd_c00323{height:52.632322pt;}
.h10_c00323{height:59.558193pt;}
.h11_c00323{height:74.447742pt;}
.h2_c00323{height:1159.999952pt;}
.h0_c00323{height:1159.999959pt;}
.h1_c00323{height:1160.000000pt;}
.w2_c00323{width:830.999965pt;}
.w0_c00323{width:831.000000pt;}
.w1_c00323{width:831.333333pt;}
.x0_c00323{left:0.000000pt;}
.x3a_c00323{left:79.496944pt;}
.x3b_c00323{left:95.469567pt;}
.x3c_c00323{left:97.474332pt;}
.x41_c00323{left:116.686291pt;}
.x27_c00323{left:119.906064pt;}
.x26_c00323{left:121.392652pt;}
.x28_c00323{left:124.389083pt;}
.x29_c00323{left:128.698021pt;}
.x2a_c00323{left:133.464791pt;}
.x2b_c00323{left:135.910272pt;}
.x2c_c00323{left:138.584129pt;}
.x2d_c00323{left:142.002076pt;}
.x37_c00323{left:143.420132pt;}
.x2e_c00323{left:145.070170pt;}
.x2f_c00323{left:152.430191pt;}
.x30_c00323{left:159.776608pt;}
.x31_c00323{left:167.266795pt;}
.x32_c00323{left:174.717010pt;}
.x33_c00323{left:178.419115pt;}
.x34_c00323{left:182.468375pt;}
.x35_c00323{left:185.852506pt;}
.x36_c00323{left:188.150503pt;}
.x3_c00323{left:204.676373pt;}
.x2_c00323{left:206.574107pt;}
.x4_c00323{left:209.317987pt;}
.x5_c00323{left:213.616993pt;}
.x6_c00323{left:218.376513pt;}
.x7_c00323{left:220.819105pt;}
.x8_c00323{left:223.490334pt;}
.x9_c00323{left:226.905704pt;}
.x3e_c00323{left:227.972394pt;}
.xa_c00323{left:229.825509pt;}
.xb_c00323{left:233.767373pt;}
.xc_c00323{left:241.423300pt;}
.xd_c00323{left:251.942027pt;}
.xe_c00323{left:258.549026pt;}
.xf_c00323{left:261.564741pt;}
.x3d_c00323{left:262.612255pt;}
.x10_c00323{left:266.308178pt;}
.x11_c00323{left:269.319244pt;}
.x12_c00323{left:272.883167pt;}
.x13_c00323{left:289.225349pt;}
.x14_c00323{left:290.306761pt;}
.x15_c00323{left:291.569114pt;}
.x16_c00323{left:294.587062pt;}
.x17_c00323{left:297.451603pt;}
.x18_c00323{left:302.677178pt;}
.x19_c00323{left:308.173457pt;}
.x1a_c00323{left:313.230862pt;}
.x1b_c00323{left:316.260173pt;}
.x1c_c00323{left:323.284548pt;}
.x1d_c00323{left:330.381558pt;}
.x1e_c00323{left:336.386614pt;}
.x1f_c00323{left:339.069625pt;}
.x20_c00323{left:341.738474pt;}
.x21_c00323{left:344.757080pt;}
.x22_c00323{left:347.081977pt;}
.x23_c00323{left:350.026488pt;}
.x24_c00323{left:354.624063pt;}
.x25_c00323{left:357.115628pt;}
.x40_c00323{left:401.765180pt;}
.x1_c00323{left:413.420124pt;}
.x39_c00323{left:601.310535pt;}
.x3f_c00323{left:619.470933pt;}
.x38_c00323{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b33f739f2a03493628700fb4.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.006348;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.006348;font-style:normal;font-weight:normal;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_7cab3b3ab1adda8cf391a89c.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.000000;font-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_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;}
.ls0_c00324{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00324{word-spacing:-18.691966px;}
.ws1_c00324{word-spacing:-18.680283px;}
.ws2_c00324{word-spacing:0.000000px;}
._1_c00324{width:1.796907px;}
._c_c00324{width:3.757757px;}
._5_c00324{width:5.166605px;}
._4_c00324{width:6.303211px;}
._2_c00324{width:8.751839px;}
._0_c00324{width:10.739661px;}
._8_c00324{width:13.119455px;}
._7_c00324{width:14.245779px;}
._6_c00324{width:15.280619px;}
._d_c00324{width:17.377891px;}
._3_c00324{width:20.110141px;}
._b_c00324{width:21.501686px;}
._a_c00324{width:34.362298px;}
._9_c00324{width:36.265986px;}
.fc1_c00324{color:rgb(198,111,25);}
.fc0_c00324{color:rgb(0,0,0);}
.fs1_c00324{font-size:71.912067px;}
.fs0_c00324{font-size:71.957041px;}
.y0_c00324{bottom:0.000000px;}
.y1_c00324{bottom:0.000008px;}
.y24_c00324{bottom:30.156225px;}
.y22_c00324{bottom:84.295385px;}
.y21_c00324{bottom:114.652262px;}
.y20_c00324{bottom:145.009138px;}
.y1f_c00324{bottom:175.366015px;}
.y1e_c00324{bottom:205.722892px;}
.y1d_c00324{bottom:236.079769px;}
.y1c_c00324{bottom:266.436645px;}
.y23_c00324{bottom:300.789274px;}
.y1a_c00324{bottom:365.550017px;}
.y19_c00324{bottom:395.906894px;}
.y18_c00324{bottom:426.263771px;}
.y17_c00324{bottom:456.620647px;}
.y16_c00324{bottom:486.977524px;}
.y15_c00324{bottom:517.334401px;}
.y14_c00324{bottom:547.691278px;}
.y13_c00324{bottom:576.301078px;}
.y12_c00324{bottom:641.061861px;}
.y11_c00324{bottom:671.418738px;}
.y10_c00324{bottom:701.775615px;}
.yf_c00324{bottom:732.132491px;}
.ye_c00324{bottom:762.489368px;}
.yd_c00324{bottom:792.846245px;}
.yc_c00324{bottom:823.203122px;}
.y1b_c00324{bottom:862.927155px;}
.ya_c00324{bottom:926.887823px;}
.y9_c00324{bottom:957.244700px;}
.y8_c00324{bottom:987.601576px;}
.y7_c00324{bottom:1017.958453px;}
.y6_c00324{bottom:1048.315330px;}
.y5_c00324{bottom:1078.672207px;}
.y4_c00324{bottom:1109.029083px;}
.y3_c00324{bottom:1139.385960px;}
.y2_c00324{bottom:1169.742837px;}
.yb_c00324{bottom:1199.835078px;}
.h4_c00324{height:55.092790px;}
.h3_c00324{height:55.127245px;}
.h2_c00324{height:1304.999946px;}
.h0_c00324{height:1304.999953px;}
.h1_c00324{height:1305.000000px;}
.w2_c00324{width:934.874961px;}
.w0_c00324{width:934.875000px;}
.w1_c00324{width:935.250000px;}
.x0_c00324{left:0.000000px;}
.x1_c00324{left:87.850202px;}
.x2_c00324{left:451.985828px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls0_c00324{letter-spacing:0.000000pt;}
.ws0_c00324{word-spacing:-16.615081pt;}
.ws1_c00324{word-spacing:-16.604696pt;}
.ws2_c00324{word-spacing:0.000000pt;}
._1_c00324{width:1.597251pt;}
._c_c00324{width:3.340228pt;}
._5_c00324{width:4.592537pt;}
._4_c00324{width:5.602855pt;}
._2_c00324{width:7.779413pt;}
._0_c00324{width:9.546365pt;}
._8_c00324{width:11.661737pt;}
._7_c00324{width:12.662915pt;}
._6_c00324{width:13.582773pt;}
._d_c00324{width:15.447014pt;}
._3_c00324{width:17.875681pt;}
._b_c00324{width:19.112610pt;}
._a_c00324{width:30.544265pt;}
._9_c00324{width:32.236432pt;}
.fs1_c00324{font-size:63.921837pt;}
.fs0_c00324{font-size:63.961814pt;}
.y0_c00324{bottom:0.000000pt;}
.y1_c00324{bottom:0.000007pt;}
.y24_c00324{bottom:26.805533pt;}
.y22_c00324{bottom:74.929231pt;}
.y21_c00324{bottom:101.913121pt;}
.y20_c00324{bottom:128.897012pt;}
.y1f_c00324{bottom:155.880902pt;}
.y1e_c00324{bottom:182.864793pt;}
.y1d_c00324{bottom:209.848683pt;}
.y1c_c00324{bottom:236.832574pt;}
.y23_c00324{bottom:267.368243pt;}
.y1a_c00324{bottom:324.933349pt;}
.y19_c00324{bottom:351.917239pt;}
.y18_c00324{bottom:378.901129pt;}
.y17_c00324{bottom:405.885020pt;}
.y16_c00324{bottom:432.868910pt;}
.y15_c00324{bottom:459.852801pt;}
.y14_c00324{bottom:486.836691pt;}
.y13_c00324{bottom:512.267625pt;}
.y12_c00324{bottom:569.832766pt;}
.y11_c00324{bottom:596.816656pt;}
.y10_c00324{bottom:623.800546pt;}
.yf_c00324{bottom:650.784437pt;}
.ye_c00324{bottom:677.768327pt;}
.yd_c00324{bottom:704.752218pt;}
.yc_c00324{bottom:731.736108pt;}
.y1b_c00324{bottom:767.046360pt;}
.ya_c00324{bottom:823.900287pt;}
.y9_c00324{bottom:850.884177pt;}
.y8_c00324{bottom:877.868068pt;}
.y7_c00324{bottom:904.851958pt;}
.y6_c00324{bottom:931.835849pt;}
.y5_c00324{bottom:958.819739pt;}
.y4_c00324{bottom:985.803630pt;}
.y3_c00324{bottom:1012.787520pt;}
.y2_c00324{bottom:1039.771411pt;}
.yb_c00324{bottom:1066.520069pt;}
.h4_c00324{height:48.971369pt;}
.h3_c00324{height:49.001996pt;}
.h2_c00324{height:1159.999952pt;}
.h0_c00324{height:1159.999959pt;}
.h1_c00324{height:1160.000000pt;}
.w2_c00324{width:830.999965pt;}
.w0_c00324{width:831.000000pt;}
.w1_c00324{width:831.333333pt;}
.x0_c00324{left:0.000000pt;}
.x1_c00324{left:78.089069pt;}
.x2_c00324{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d15ed43a14ae7a05446441f.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_f90ad1e3639e94ff8afee854.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.000000;font-style:normal;font-weight: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_c00325;src:url('chunks/assets/font_b4a00fa5988a70561aea25b0.woff2')format("woff");}.ff5_c00325{font-family:ff5_c00325;line-height:1.171387;font-style:normal;font-weight: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_c00325;src:url('chunks/assets/font_3e5c95a35553d76e1a77e668.woff2')format("woff");}.ff6_c00325{font-family:ff6_c00325;line-height:1.000000;font-style:normal;font-weight: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_c00325;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00325{font-family:ff7_c00325;line-height:1.006348;font-style:normal;font-weight: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_c00325;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00325{font-family:ff8_c00325;line-height:0.734863;font-style:normal;font-weight: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_c00325;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00325{font-family:ff9_c00325;line-height:0.940000;font-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_c00325{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00325{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00325{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00325{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00325{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00325{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00325{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00325{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00325{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00325{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00325{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00325{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00325{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00325{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00325{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00325{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00325{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00325{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00325{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00325{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00325{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00325{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00325{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00325{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00325{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00325{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00325{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00325{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00325{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00325{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00325{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00325{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00325{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00325{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00325{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00325{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00325{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00325{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00325{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00325{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00325{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00325{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00325{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00325{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00325{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00325{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00325{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00325{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00325{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00325{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00325{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00325{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00325{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00325{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00325{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00325{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00325{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00325{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00325{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00325{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00325{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00325{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00325{vertical-align:0.000000px;}
.v1_c00325{vertical-align:26.810561px;}
.ls0_c00325{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00325{word-spacing:-41.664701px;}
.ws2_c00325{word-spacing:-20.244502px;}
.ws3_c00325{word-spacing:-18.680283px;}
.ws5_c00325{word-spacing:0.000000px;}
.ws1_c00325{word-spacing:281.470806px;}
.ws0_c00325{word-spacing:1114.343689px;}
._3_c00325{width:3.213232px;}
._2_c00325{width:5.762184px;}
._1_c00325{width:7.032408px;}
._6_c00325{width:8.961135px;}
._5_c00325{width:11.601022px;}
._0_c00325{width:12.881128px;}
._4_c00325{width:14.598706px;}
._7_c00325{width:30.062964px;}
.fc3_c00325{color:rgb(9,71,81);}
.fc2_c00325{color:rgb(198,111,25);}
.fc1_c00325{color:rgb(255,255,255);}
.fc0_c00325{color:rgb(0,0,0);}
.fs8_c00325{font-size:41.974772px;}
.fsa_c00325{font-size:41.975069px;}
.fsd_c00325{font-size:41.975073px;}
.fs2_c00325{font-size:47.339969px;}
.fs5_c00325{font-size:47.339970px;}
.fs1_c00325{font-size:47.339972px;}
.fs4_c00325{font-size:47.339973px;}
.fs3_c00325{font-size:47.339974px;}
.fs6_c00325{font-size:47.339975px;}
.fse_c00325{font-size:51.630774px;}
.fs9_c00325{font-size:55.721735px;}
.fs10_c00325{font-size:59.949210px;}
.fsf_c00325{font-size:71.912067px;}
.fs0_c00325{font-size:71.957041px;}
.fs7_c00325{font-size:76.965540px;}
.fsc_c00325{font-size:77.933722px;}
.fsb_c00325{font-size:89.946302px;}
.y0_c00325{bottom:0.000000px;}
.y1_c00325{bottom:0.000008px;}
.y56_c00325{bottom:30.156225px;}
.y4c_c00325{bottom:61.443766px;}
.y4b_c00325{bottom:91.800642px;}
.y4a_c00325{bottom:122.157519px;}
.y49_c00325{bottom:152.514396px;}
.y48_c00325{bottom:182.871273px;}
.y47_c00325{bottom:213.228150px;}
.y46_c00325{bottom:243.585026px;}
.y45_c00325{bottom:273.941903px;}
.y44_c00325{bottom:304.298780px;}
.y51_c00325{bottom:338.478356px;}
.y55_c00325{bottom:402.064151px;}
.y10_c00325{bottom:493.812629px;}
.y38_c00325{bottom:493.827623px;}
.yf_c00325{bottom:494.337609px;}
.y39_c00325{bottom:494.357158px;}
.y22_c00325{bottom:494.700737px;}
.y37_c00325{bottom:495.071586px;}
.ye_c00325{bottom:495.403002px;}
.y23_c00325{bottom:495.533530px;}
.y21_c00325{bottom:495.553663px;}
.y36_c00325{bottom:496.322201px;}
.yd_c00325{bottom:496.475623px;}
.y20_c00325{bottom:496.587915px;}
.y3a_c00325{bottom:496.772260px;}
.y11_c00325{bottom:496.835884px;}
.y24_c00325{bottom:497.713596px;}
.y35_c00325{bottom:497.966053px;}
.yc_c00325{bottom:498.126234px;}
.y1f_c00325{bottom:498.789265px;}
.y25_c00325{bottom:499.103521px;}
.y34_c00325{bottom:499.653306px;}
.yb_c00325{bottom:499.818769px;}
.y26_c00325{bottom:500.800864px;}
.y12_c00325{bottom:501.110605px;}
.y33_c00325{bottom:501.517382px;}
.ya_c00325{bottom:501.687706px;}
.y3b_c00325{bottom:501.869915px;}
.y1e_c00325{bottom:502.578702px;}
.y27_c00325{bottom:503.241722px;}
.y13_c00325{bottom:503.627848px;}
.y3c_c00325{bottom:505.496019px;}
.y28_c00325{bottom:505.499367px;}
.y32_c00325{bottom:506.168989px;}
.y9_c00325{bottom:506.348634px;}
.y1d_c00325{bottom:508.044213px;}
.y29_c00325{bottom:508.766327px;}
.y14_c00325{bottom:509.576794px;}
.y3d_c00325{bottom:511.126534px;}
.y1c_c00325{bottom:512.508085px;}
.y31_c00325{bottom:512.566592px;}
.y8_c00325{bottom:512.754669px;}
.y15_c00325{bottom:514.322677px;}
.y2a_c00325{bottom:517.158603px;}
.y3e_c00325{bottom:517.780195px;}
.y1b_c00325{bottom:518.929057px;}
.y30_c00325{bottom:519.869222px;}
.y7_c00325{bottom:519.959421px;}
.y6_c00325{bottom:523.416158px;}
.y1a_c00325{bottom:523.496236px;}
.y2b_c00325{bottom:525.202812px;}
.y16_c00325{bottom:526.099549px;}
.y2f_c00325{bottom:527.026630px;}
.y5_c00325{bottom:529.422883px;}
.y3f_c00325{bottom:529.736175px;}
.y19_c00325{bottom:531.263725px;}
.y2e_c00325{bottom:531.792993px;}
.y41_c00325{bottom:533.728456px;}
.y50_c00325{bottom:534.421816px;}
.y18_c00325{bottom:535.155114px;}
.y4_c00325{bottom:536.678099px;}
.y2d_c00325{bottom:537.961701px;}
.y17_c00325{bottom:538.332892px;}
.y40_c00325{bottom:538.696314px;}
.y2c_c00325{bottom:545.020884px;}
.y3_c00325{bottom:546.207017px;}
.y42_c00325{bottom:577.871130px;}
.y2_c00325{bottom:597.559761px;}
.y43_c00325{bottom:639.489911px;}
.y57_c00325{bottom:1024.443964px;}
.y54_c00325{bottom:1121.527947px;}
.y4e_c00325{bottom:1127.585799px;}
.y53_c00325{bottom:1134.645158px;}
.y52_c00325{bottom:1150.385810px;}
.y4f_c00325{bottom:1150.991694px;}
.y4d_c00325{bottom:1170.658440px;}
.hb_c00325{height:32.157430px;}
.h8_c00325{height:35.967282px;}
.h7_c00325{height:35.967283px;}
.h9_c00325{height:35.967285px;}
.h5_c00325{height:36.267779px;}
.h4_c00325{height:36.267781px;}
.h6_c00325{height:36.267783px;}
.h13_c00325{height:37.437353px;}
.hd_c00325{height:39.085184px;}
.h12_c00325{height:39.085187px;}
.h15_c00325{height:45.561399px;}
.hc_c00325{height:51.885424px;}
.h14_c00325{height:55.092790px;}
.h3_c00325{height:55.127245px;}
.h10_c00325{height:56.261810px;}
.ha_c00325{height:58.967991px;}
.h11_c00325{height:59.211363px;}
.he_c00325{height:67.002968px;}
.hf_c00325{height:83.753709px;}
.h2_c00325{height:1304.999946px;}
.h0_c00325{height:1304.999953px;}
.h1_c00325{height:1305.000000px;}
.w2_c00325{width:934.874961px;}
.w0_c00325{width:934.875000px;}
.w1_c00325{width:935.250000px;}
.x0_c00325{left:0.000000px;}
.x3a_c00325{left:89.206783px;}
.x3e_c00325{left:107.403263px;}
.x3b_c00325{left:109.658623px;}
.x41_c00325{left:131.272077px;}
.x27_c00325{left:134.894322px;}
.x26_c00325{left:136.566734px;}
.x28_c00325{left:139.937719px;}
.x29_c00325{left:144.785273px;}
.x2a_c00325{left:150.147890px;}
.x2b_c00325{left:152.899057px;}
.x2c_c00325{left:155.907145px;}
.x2d_c00325{left:159.752336px;}
.x37_c00325{left:161.347648px;}
.x2e_c00325{left:163.203941px;}
.x2f_c00325{left:171.483965px;}
.x30_c00325{left:179.748684px;}
.x31_c00325{left:188.175145px;}
.x32_c00325{left:196.556636px;}
.x33_c00325{left:200.721504px;}
.x34_c00325{left:205.276922px;}
.x35_c00325{left:209.084069px;}
.x36_c00325{left:211.669316px;}
.x3_c00325{left:230.260919px;}
.x2_c00325{left:232.395871px;}
.x4_c00325{left:235.482735px;}
.x5_c00325{left:240.319117px;}
.x6_c00325{left:245.673577px;}
.x7_c00325{left:248.421493px;}
.x8_c00325{left:251.426626px;}
.x9_c00325{left:255.268917px;}
.x3d_c00325{left:256.468943px;}
.xa_c00325{left:258.553698px;}
.xb_c00325{left:262.988294px;}
.xc_c00325{left:271.601212px;}
.xd_c00325{left:283.434780px;}
.xe_c00325{left:290.867654px;}
.xf_c00325{left:294.260334px;}
.x3c_c00325{left:295.438786px;}
.x10_c00325{left:299.596701px;}
.x11_c00325{left:302.984150px;}
.x12_c00325{left:306.993562px;}
.x13_c00325{left:325.378518px;}
.x14_c00325{left:326.595106px;}
.x15_c00325{left:328.015253px;}
.x16_c00325{left:331.410444px;}
.x17_c00325{left:334.633053px;}
.x18_c00325{left:340.511825px;}
.x19_c00325{left:346.695139px;}
.x1a_c00325{left:352.384720px;}
.x1b_c00325{left:355.792694px;}
.x1c_c00325{left:363.695116px;}
.x1d_c00325{left:371.679253px;}
.x1e_c00325{left:378.434940px;}
.x1f_c00325{left:381.453328px;}
.x20_c00325{left:384.455783px;}
.x21_c00325{left:387.851715px;}
.x22_c00325{left:390.467224px;}
.x23_c00325{left:393.779799px;}
.x24_c00325{left:398.952070px;}
.x25_c00325{left:401.755082px;}
.x40_c00325{left:451.985828px;}
.x1_c00325{left:465.097640px;}
.x39_c00325{left:676.474352px;}
.x3f_c00325{left:696.904800px;}
.x38_c00325{left:733.103068px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.v1_c00325{vertical-align:23.831609pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws4_c00325{word-spacing:-37.035289pt;}
.ws2_c00325{word-spacing:-17.995113pt;}
.ws3_c00325{word-spacing:-16.604696pt;}
.ws5_c00325{word-spacing:0.000000pt;}
.ws1_c00325{word-spacing:250.196272pt;}
.ws0_c00325{word-spacing:990.527723pt;}
._3_c00325{width:2.856207pt;}
._2_c00325{width:5.121942pt;}
._1_c00325{width:6.251030pt;}
._6_c00325{width:7.965454pt;}
._5_c00325{width:10.312020pt;}
._0_c00325{width:11.449892pt;}
._4_c00325{width:12.976628pt;}
._7_c00325{width:26.722634pt;}
.fs8_c00325{font-size:37.310908pt;}
.fsa_c00325{font-size:37.311173pt;}
.fsd_c00325{font-size:37.311176pt;}
.fs2_c00325{font-size:42.079973pt;}
.fs5_c00325{font-size:42.079974pt;}
.fs1_c00325{font-size:42.079975pt;}
.fs4_c00325{font-size:42.079976pt;}
.fs3_c00325{font-size:42.079977pt;}
.fs6_c00325{font-size:42.079978pt;}
.fse_c00325{font-size:45.894021pt;}
.fs9_c00325{font-size:49.530431pt;}
.fs10_c00325{font-size:53.288186pt;}
.fsf_c00325{font-size:63.921837pt;}
.fs0_c00325{font-size:63.961814pt;}
.fs7_c00325{font-size:68.413814pt;}
.fsc_c00325{font-size:69.274419pt;}
.fsb_c00325{font-size:79.952268pt;}
.y0_c00325{bottom:0.000000pt;}
.y1_c00325{bottom:0.000007pt;}
.y56_c00325{bottom:26.805533pt;}
.y4c_c00325{bottom:54.616681pt;}
.y4b_c00325{bottom:81.600571pt;}
.y4a_c00325{bottom:108.584462pt;}
.y49_c00325{bottom:135.568352pt;}
.y48_c00325{bottom:162.552242pt;}
.y47_c00325{bottom:189.536133pt;}
.y46_c00325{bottom:216.520023pt;}
.y45_c00325{bottom:243.503914pt;}
.y44_c00325{bottom:270.487804pt;}
.y51_c00325{bottom:300.869650pt;}
.y55_c00325{bottom:357.390356pt;}
.y10_c00325{bottom:438.944560pt;}
.y38_c00325{bottom:438.957887pt;}
.yf_c00325{bottom:439.411208pt;}
.y39_c00325{bottom:439.428585pt;}
.y22_c00325{bottom:439.733989pt;}
.y37_c00325{bottom:440.063632pt;}
.ye_c00325{bottom:440.358224pt;}
.y23_c00325{bottom:440.474249pt;}
.y21_c00325{bottom:440.492144pt;}
.y36_c00325{bottom:441.175290pt;}
.yd_c00325{bottom:441.311665pt;}
.y20_c00325{bottom:441.411480pt;}
.y3a_c00325{bottom:441.575343pt;}
.y11_c00325{bottom:441.631897pt;}
.y24_c00325{bottom:442.412085pt;}
.y35_c00325{bottom:442.636491pt;}
.yc_c00325{bottom:442.778875pt;}
.y1f_c00325{bottom:443.368235pt;}
.y25_c00325{bottom:443.647574pt;}
.y34_c00325{bottom:444.136272pt;}
.yb_c00325{bottom:444.283350pt;}
.y26_c00325{bottom:445.156323pt;}
.y12_c00325{bottom:445.431649pt;}
.y33_c00325{bottom:445.793228pt;}
.ya_c00325{bottom:445.944627pt;}
.y3b_c00325{bottom:446.106592pt;}
.y1e_c00325{bottom:446.736624pt;}
.y27_c00325{bottom:447.325975pt;}
.y13_c00325{bottom:447.669198pt;}
.y3c_c00325{bottom:449.329795pt;}
.y28_c00325{bottom:449.332771pt;}
.y32_c00325{bottom:449.927990pt;}
.y9_c00325{bottom:450.087675pt;}
.y1d_c00325{bottom:451.594856pt;}
.y29_c00325{bottom:452.236735pt;}
.y14_c00325{bottom:452.957150pt;}
.y3d_c00325{bottom:454.334697pt;}
.y1c_c00325{bottom:455.562742pt;}
.y31_c00325{bottom:455.614749pt;}
.y8_c00325{bottom:455.781928pt;}
.y15_c00325{bottom:457.175713pt;}
.y2a_c00325{bottom:459.696536pt;}
.y3e_c00325{bottom:460.249062pt;}
.y1b_c00325{bottom:461.270273pt;}
.y30_c00325{bottom:462.105976pt;}
.y7_c00325{bottom:462.186152pt;}
.y6_c00325{bottom:465.258807pt;}
.y1a_c00325{bottom:465.329988pt;}
.y2b_c00325{bottom:466.846944pt;}
.y16_c00325{bottom:467.644044pt;}
.y2f_c00325{bottom:468.468115pt;}
.y5_c00325{bottom:470.598118pt;}
.y3f_c00325{bottom:470.876600pt;}
.y19_c00325{bottom:472.234422pt;}
.y2e_c00325{bottom:472.704883pt;}
.y41_c00325{bottom:474.425294pt;}
.y50_c00325{bottom:475.041614pt;}
.y18_c00325{bottom:475.693435pt;}
.y4_c00325{bottom:477.047199pt;}
.y2d_c00325{bottom:478.188178pt;}
.y17_c00325{bottom:478.518126pt;}
.y40_c00325{bottom:478.841168pt;}
.y2c_c00325{bottom:484.463008pt;}
.y3_c00325{bottom:485.517349pt;}
.y42_c00325{bottom:513.663227pt;}
.y2_c00325{bottom:531.164232pt;}
.y43_c00325{bottom:568.435476pt;}
.y57_c00325{bottom:910.616857pt;}
.y54_c00325{bottom:996.913731pt;}
.y4e_c00325{bottom:1002.298488pt;}
.y53_c00325{bottom:1008.573473pt;}
.y52_c00325{bottom:1022.565164pt;}
.y4f_c00325{bottom:1023.103728pt;}
.y4d_c00325{bottom:1040.585280pt;}
.hb_c00325{height:28.584382pt;}
.h8_c00325{height:31.970917pt;}
.h7_c00325{height:31.970918pt;}
.h9_c00325{height:31.970920pt;}
.h5_c00325{height:32.238026pt;}
.h4_c00325{height:32.238028pt;}
.h6_c00325{height:32.238029pt;}
.h13_c00325{height:33.277647pt;}
.hd_c00325{height:34.742386pt;}
.h12_c00325{height:34.742389pt;}
.h15_c00325{height:40.499022pt;}
.hc_c00325{height:46.120377pt;}
.h14_c00325{height:48.971369pt;}
.h3_c00325{height:49.001996pt;}
.h10_c00325{height:50.010498pt;}
.ha_c00325{height:52.415992pt;}
.h11_c00325{height:52.632322pt;}
.he_c00325{height:59.558193pt;}
.hf_c00325{height:74.447742pt;}
.h2_c00325{height:1159.999952pt;}
.h0_c00325{height:1159.999959pt;}
.h1_c00325{height:1160.000000pt;}
.w2_c00325{width:830.999965pt;}
.w0_c00325{width:831.000000pt;}
.w1_c00325{width:831.333333pt;}
.x0_c00325{left:0.000000pt;}
.x3a_c00325{left:79.294918pt;}
.x3e_c00325{left:95.469567pt;}
.x3b_c00325{left:97.474332pt;}
.x41_c00325{left:116.686291pt;}
.x27_c00325{left:119.906064pt;}
.x26_c00325{left:121.392652pt;}
.x28_c00325{left:124.389083pt;}
.x29_c00325{left:128.698021pt;}
.x2a_c00325{left:133.464791pt;}
.x2b_c00325{left:135.910272pt;}
.x2c_c00325{left:138.584129pt;}
.x2d_c00325{left:142.002076pt;}
.x37_c00325{left:143.420132pt;}
.x2e_c00325{left:145.070170pt;}
.x2f_c00325{left:152.430191pt;}
.x30_c00325{left:159.776608pt;}
.x31_c00325{left:167.266795pt;}
.x32_c00325{left:174.717010pt;}
.x33_c00325{left:178.419115pt;}
.x34_c00325{left:182.468375pt;}
.x35_c00325{left:185.852506pt;}
.x36_c00325{left:188.150503pt;}
.x3_c00325{left:204.676373pt;}
.x2_c00325{left:206.574107pt;}
.x4_c00325{left:209.317987pt;}
.x5_c00325{left:213.616993pt;}
.x6_c00325{left:218.376513pt;}
.x7_c00325{left:220.819105pt;}
.x8_c00325{left:223.490334pt;}
.x9_c00325{left:226.905704pt;}
.x3d_c00325{left:227.972394pt;}
.xa_c00325{left:229.825509pt;}
.xb_c00325{left:233.767373pt;}
.xc_c00325{left:241.423300pt;}
.xd_c00325{left:251.942027pt;}
.xe_c00325{left:258.549026pt;}
.xf_c00325{left:261.564741pt;}
.x3c_c00325{left:262.612255pt;}
.x10_c00325{left:266.308178pt;}
.x11_c00325{left:269.319244pt;}
.x12_c00325{left:272.883167pt;}
.x13_c00325{left:289.225349pt;}
.x14_c00325{left:290.306761pt;}
.x15_c00325{left:291.569114pt;}
.x16_c00325{left:294.587062pt;}
.x17_c00325{left:297.451603pt;}
.x18_c00325{left:302.677178pt;}
.x19_c00325{left:308.173457pt;}
.x1a_c00325{left:313.230862pt;}
.x1b_c00325{left:316.260173pt;}
.x1c_c00325{left:323.284548pt;}
.x1d_c00325{left:330.381558pt;}
.x1e_c00325{left:336.386614pt;}
.x1f_c00325{left:339.069625pt;}
.x20_c00325{left:341.738474pt;}
.x21_c00325{left:344.757080pt;}
.x22_c00325{left:347.081977pt;}
.x23_c00325{left:350.026488pt;}
.x24_c00325{left:354.624063pt;}
.x25_c00325{left:357.115628pt;}
.x40_c00325{left:401.765180pt;}
.x1_c00325{left:413.420124pt;}
.x39_c00325{left:601.310535pt;}
.x3f_c00325{left:619.470933pt;}
.x38_c00325{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7564cf380840be2aeeac86b2.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.171387;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.006348;font-style:normal;font-weight:normal;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_dee87180c82bbffe722a29e3.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.000000;font-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_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);}
.v0_c00326{vertical-align:0.000000px;}
.ls0_c00326{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00326{word-spacing:-18.680283px;}
.ws1_c00326{word-spacing:0.000000px;}
._0_c00326{width:1.219643px;}
._1_c00326{width:2.682434px;}
._2_c00326{width:7.994580px;}
._6_c00326{width:9.514447px;}
._4_c00326{width:11.981128px;}
._8_c00326{width:14.405461px;}
._7_c00326{width:16.297348px;}
._9_c00326{width:17.426467px;}
._3_c00326{width:25.145120px;}
._5_c00326{width:43.005575px;}
.fc1_c00326{color:rgb(198,111,25);}
.fc0_c00326{color:rgb(0,0,0);}
.fs1_c00326{font-size:71.912067px;}
.fs0_c00326{font-size:71.957041px;}
.y0_c00326{bottom:0.000000px;}
.y1_c00326{bottom:0.000008px;}
.y17_c00326{bottom:30.156225px;}
.y16_c00326{bottom:388.291052px;}
.y15_c00326{bottom:418.647929px;}
.y14_c00326{bottom:449.004806px;}
.y13_c00326{bottom:497.012305px;}
.y11_c00326{bottom:578.592048px;}
.y10_c00326{bottom:608.948925px;}
.yf_c00326{bottom:639.305802px;}
.ye_c00326{bottom:667.915566px;}
.yd_c00326{bottom:756.062989px;}
.yc_c00326{bottom:786.419866px;}
.yb_c00326{bottom:816.776743px;}
.ya_c00326{bottom:847.133620px;}
.y9_c00326{bottom:877.490496px;}
.y8_c00326{bottom:907.847373px;}
.y12_c00326{bottom:947.571428px;}
.y6_c00326{bottom:1036.195585px;}
.y5_c00326{bottom:1066.552462px;}
.y4_c00326{bottom:1096.909338px;}
.y3_c00326{bottom:1127.266215px;}
.y2_c00326{bottom:1157.623092px;}
.y7_c00326{bottom:1199.835078px;}
.h4_c00326{height:55.127245px;}
.h5_c00326{height:66.961090px;}
.h3_c00326{height:67.002968px;}
.h2_c00326{height:1304.999946px;}
.h0_c00326{height:1304.999953px;}
.h1_c00326{height:1305.000000px;}
.w2_c00326{width:934.874961px;}
.w0_c00326{width:934.875000px;}
.w1_c00326{width:935.250000px;}
.x0_c00326{left:0.000000px;}
.x1_c00326{left:87.850202px;}
.x2_c00326{left:451.985828px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls0_c00326{letter-spacing:0.000000pt;}
.ws0_c00326{word-spacing:-16.604696pt;}
.ws1_c00326{word-spacing:0.000000pt;}
._0_c00326{width:1.084127pt;}
._1_c00326{width:2.384385pt;}
._2_c00326{width:7.106293pt;}
._6_c00326{width:8.457286pt;}
._4_c00326{width:10.649892pt;}
._8_c00326{width:12.804854pt;}
._7_c00326{width:14.486531pt;}
._9_c00326{width:15.490193pt;}
._3_c00326{width:22.351218pt;}
._5_c00326{width:38.227178pt;}
.fs1_c00326{font-size:63.921837pt;}
.fs0_c00326{font-size:63.961814pt;}
.y0_c00326{bottom:0.000000pt;}
.y1_c00326{bottom:0.000007pt;}
.y17_c00326{bottom:26.805533pt;}
.y16_c00326{bottom:345.147602pt;}
.y15_c00326{bottom:372.131492pt;}
.y14_c00326{bottom:399.115383pt;}
.y13_c00326{bottom:441.788716pt;}
.y11_c00326{bottom:514.304043pt;}
.y10_c00326{bottom:541.287933pt;}
.yf_c00326{bottom:568.271824pt;}
.ye_c00326{bottom:593.702726pt;}
.yd_c00326{bottom:672.055990pt;}
.yc_c00326{bottom:699.039881pt;}
.yb_c00326{bottom:726.023771pt;}
.ya_c00326{bottom:753.007662pt;}
.y9_c00326{bottom:779.991552pt;}
.y8_c00326{bottom:806.975443pt;}
.y12_c00326{bottom:842.285714pt;}
.y6_c00326{bottom:921.062742pt;}
.y5_c00326{bottom:948.046632pt;}
.y4_c00326{bottom:975.030523pt;}
.y3_c00326{bottom:1002.014413pt;}
.y2_c00326{bottom:1028.998304pt;}
.y7_c00326{bottom:1066.520069pt;}
.h4_c00326{height:49.001996pt;}
.h5_c00326{height:59.520969pt;}
.h3_c00326{height:59.558193pt;}
.h2_c00326{height:1159.999952pt;}
.h0_c00326{height:1159.999959pt;}
.h1_c00326{height:1160.000000pt;}
.w2_c00326{width:830.999965pt;}
.w0_c00326{width:831.000000pt;}
.w1_c00326{width:831.333333pt;}
.x0_c00326{left:0.000000pt;}
.x1_c00326{left:78.089069pt;}
.x2_c00326{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c03d6397c8b2de60674262e4.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:0.743000;font-style:normal;font-weight:normal;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_f90ad1e3639e94ff8afee854.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:1.000000;font-style:normal;font-weight: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_f495d374e92510dc84241812.woff2')format("woff");}.ff5_c00327{font-family:ff5_c00327;line-height:1.171387;font-style:normal;font-weight: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_9d831e24ec753b7d8486de36.woff2')format("woff");}.ff6_c00327{font-family:ff6_c00327;line-height:1.000000;font-style:normal;font-weight: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_c00327;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00327{font-family:ff7_c00327;line-height:1.006348;font-style:normal;font-weight: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_c00327;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00327{font-family:ff8_c00327;line-height:0.734863;font-style:normal;font-weight: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_c00327;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00327{font-family:ff9_c00327;line-height:0.940000;font-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_c00327{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00327{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00327{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00327{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00327{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00327{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00327{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00327{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00327{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00327{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00327{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00327{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00327{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00327{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00327{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00327{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00327{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00327{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00327{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00327{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00327{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00327{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00327{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00327{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00327{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00327{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00327{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00327{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00327{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00327{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00327{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00327{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00327{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00327{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00327{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00327{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00327{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00327{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00327{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00327{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00327{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00327{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00327{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00327{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00327{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00327{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00327{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00327{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00327{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00327{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00327{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00327{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00327{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00327{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00327{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00327{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00327{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00327{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00327{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00327{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00327{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00327{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00327{vertical-align:0.000000px;}
.v1_c00327{vertical-align:26.810561px;}
.ls0_c00327{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00327{word-spacing:-41.664701px;}
.ws2_c00327{word-spacing:-20.244502px;}
.ws3_c00327{word-spacing:-18.680283px;}
.ws5_c00327{word-spacing:0.000000px;}
.ws1_c00327{word-spacing:281.470806px;}
.ws0_c00327{word-spacing:1114.343689px;}
._4_c00327{width:2.924597px;}
._0_c00327{width:4.346686px;}
._1_c00327{width:5.452007px;}
._3_c00327{width:14.032424px;}
._2_c00327{width:15.550856px;}
.fc3_c00327{color:rgb(9,71,81);}
.fc2_c00327{color:rgb(198,111,25);}
.fc1_c00327{color:rgb(255,255,255);}
.fc0_c00327{color:rgb(0,0,0);}
.fs8_c00327{font-size:41.974772px;}
.fsa_c00327{font-size:41.975069px;}
.fsd_c00327{font-size:41.975073px;}
.fs2_c00327{font-size:47.339969px;}
.fs5_c00327{font-size:47.339970px;}
.fs1_c00327{font-size:47.339972px;}
.fs4_c00327{font-size:47.339973px;}
.fs3_c00327{font-size:47.339974px;}
.fs6_c00327{font-size:47.339975px;}
.fse_c00327{font-size:51.630774px;}
.fs9_c00327{font-size:55.721735px;}
.fs10_c00327{font-size:59.949210px;}
.fsf_c00327{font-size:71.912067px;}
.fs0_c00327{font-size:71.957041px;}
.fs7_c00327{font-size:76.965540px;}
.fsc_c00327{font-size:77.933722px;}
.fsb_c00327{font-size:89.946302px;}
.y0_c00327{bottom:0.000000px;}
.y1_c00327{bottom:0.000008px;}
.y54_c00327{bottom:30.156225px;}
.y4a_c00327{bottom:109.796056px;}
.y49_c00327{bottom:140.152932px;}
.y48_c00327{bottom:170.509809px;}
.y47_c00327{bottom:200.866686px;}
.y46_c00327{bottom:231.223563px;}
.y45_c00327{bottom:261.580440px;}
.y44_c00327{bottom:291.937316px;}
.y4f_c00327{bottom:328.365596px;}
.y53_c00327{bottom:402.064151px;}
.y10_c00327{bottom:493.812629px;}
.y38_c00327{bottom:493.827623px;}
.yf_c00327{bottom:494.337609px;}
.y39_c00327{bottom:494.357158px;}
.y22_c00327{bottom:494.700737px;}
.y37_c00327{bottom:495.071586px;}
.ye_c00327{bottom:495.403002px;}
.y23_c00327{bottom:495.533530px;}
.y21_c00327{bottom:495.553663px;}
.y36_c00327{bottom:496.322201px;}
.yd_c00327{bottom:496.475623px;}
.y20_c00327{bottom:496.587915px;}
.y3a_c00327{bottom:496.772260px;}
.y11_c00327{bottom:496.835884px;}
.y24_c00327{bottom:497.713596px;}
.y35_c00327{bottom:497.966053px;}
.yc_c00327{bottom:498.126234px;}
.y1f_c00327{bottom:498.789265px;}
.y25_c00327{bottom:499.103521px;}
.y34_c00327{bottom:499.653306px;}
.yb_c00327{bottom:499.818769px;}
.y26_c00327{bottom:500.800864px;}
.y12_c00327{bottom:501.110605px;}
.y33_c00327{bottom:501.517382px;}
.ya_c00327{bottom:501.687706px;}
.y3b_c00327{bottom:501.869915px;}
.y1e_c00327{bottom:502.578702px;}
.y27_c00327{bottom:503.241722px;}
.y13_c00327{bottom:503.627848px;}
.y3c_c00327{bottom:505.496019px;}
.y28_c00327{bottom:505.499367px;}
.y32_c00327{bottom:506.168989px;}
.y9_c00327{bottom:506.348634px;}
.y1d_c00327{bottom:508.044213px;}
.y29_c00327{bottom:508.766327px;}
.y14_c00327{bottom:509.576794px;}
.y3d_c00327{bottom:511.126534px;}
.y1c_c00327{bottom:512.508085px;}
.y31_c00327{bottom:512.566592px;}
.y8_c00327{bottom:512.754669px;}
.y15_c00327{bottom:514.322677px;}
.y2a_c00327{bottom:517.158603px;}
.y3e_c00327{bottom:517.780195px;}
.y1b_c00327{bottom:518.929057px;}
.y30_c00327{bottom:519.869222px;}
.y7_c00327{bottom:519.959421px;}
.y6_c00327{bottom:523.416158px;}
.y1a_c00327{bottom:523.496236px;}
.y2b_c00327{bottom:525.202812px;}
.y16_c00327{bottom:526.099549px;}
.y2f_c00327{bottom:527.026630px;}
.y5_c00327{bottom:529.422883px;}
.y3f_c00327{bottom:529.736175px;}
.y19_c00327{bottom:531.263725px;}
.y2e_c00327{bottom:531.792993px;}
.y41_c00327{bottom:533.728456px;}
.y4e_c00327{bottom:534.421816px;}
.y18_c00327{bottom:535.155114px;}
.y4_c00327{bottom:536.678099px;}
.y2d_c00327{bottom:537.961701px;}
.y17_c00327{bottom:538.332892px;}
.y40_c00327{bottom:538.696314px;}
.y2c_c00327{bottom:545.020884px;}
.y3_c00327{bottom:546.207017px;}
.y42_c00327{bottom:577.871130px;}
.y2_c00327{bottom:597.559761px;}
.y43_c00327{bottom:639.489911px;}
.y55_c00327{bottom:1024.443964px;}
.y52_c00327{bottom:1121.527947px;}
.y4c_c00327{bottom:1127.585799px;}
.y51_c00327{bottom:1134.645158px;}
.y50_c00327{bottom:1150.385810px;}
.y4d_c00327{bottom:1150.991694px;}
.y4b_c00327{bottom:1170.658440px;}
.h8_c00327{height:35.967282px;}
.h7_c00327{height:35.967283px;}
.h9_c00327{height:35.967285px;}
.h13_c00327{height:37.437353px;}
.hb_c00327{height:39.084907px;}
.hd_c00327{height:39.085184px;}
.h12_c00327{height:39.085187px;}
.h5_c00327{height:44.080723px;}
.h4_c00327{height:44.080726px;}
.h6_c00327{height:44.080728px;}
.h15_c00327{height:45.561399px;}
.hc_c00327{height:51.885424px;}
.h10_c00327{height:55.127245px;}
.hf_c00327{height:56.261810px;}
.h11_c00327{height:59.211363px;}
.ha_c00327{height:65.895468px;}
.h14_c00327{height:66.961090px;}
.h3_c00327{height:67.002968px;}
.he_c00327{height:83.753709px;}
.h2_c00327{height:1304.999946px;}
.h0_c00327{height:1304.999953px;}
.h1_c00327{height:1305.000000px;}
.w2_c00327{width:934.874961px;}
.w0_c00327{width:934.875000px;}
.w1_c00327{width:935.250000px;}
.x0_c00327{left:0.000000px;}
.x3e_c00327{left:87.850202px;}
.x3a_c00327{left:89.206783px;}
.x3f_c00327{left:107.403263px;}
.x3b_c00327{left:109.658623px;}
.x42_c00327{left:131.272077px;}
.x27_c00327{left:134.894322px;}
.x26_c00327{left:136.566734px;}
.x28_c00327{left:139.937719px;}
.x29_c00327{left:144.785273px;}
.x2a_c00327{left:150.147890px;}
.x2b_c00327{left:152.899057px;}
.x2c_c00327{left:155.907145px;}
.x2d_c00327{left:159.752336px;}
.x37_c00327{left:161.347648px;}
.x2e_c00327{left:163.203941px;}
.x2f_c00327{left:171.483965px;}
.x30_c00327{left:179.748684px;}
.x31_c00327{left:188.175145px;}
.x32_c00327{left:196.556636px;}
.x33_c00327{left:200.721504px;}
.x34_c00327{left:205.276922px;}
.x35_c00327{left:209.084069px;}
.x36_c00327{left:211.669316px;}
.x3_c00327{left:230.260919px;}
.x2_c00327{left:232.395871px;}
.x4_c00327{left:235.482735px;}
.x5_c00327{left:240.319117px;}
.x6_c00327{left:245.673577px;}
.x7_c00327{left:248.421493px;}
.x8_c00327{left:251.426626px;}
.x9_c00327{left:255.268917px;}
.x3d_c00327{left:256.468943px;}
.xa_c00327{left:258.553698px;}
.xb_c00327{left:262.988294px;}
.xc_c00327{left:271.601212px;}
.xd_c00327{left:283.434780px;}
.xe_c00327{left:290.867654px;}
.xf_c00327{left:294.260334px;}
.x3c_c00327{left:295.438786px;}
.x10_c00327{left:299.596701px;}
.x11_c00327{left:302.984150px;}
.x12_c00327{left:306.993562px;}
.x13_c00327{left:325.378518px;}
.x14_c00327{left:326.595106px;}
.x15_c00327{left:328.015253px;}
.x16_c00327{left:331.410444px;}
.x17_c00327{left:334.633053px;}
.x18_c00327{left:340.511825px;}
.x19_c00327{left:346.695139px;}
.x1a_c00327{left:352.384720px;}
.x1b_c00327{left:355.792694px;}
.x1c_c00327{left:363.695116px;}
.x1d_c00327{left:371.679253px;}
.x1e_c00327{left:378.434940px;}
.x1f_c00327{left:381.453328px;}
.x20_c00327{left:384.455783px;}
.x21_c00327{left:387.851715px;}
.x22_c00327{left:390.467224px;}
.x23_c00327{left:393.779799px;}
.x24_c00327{left:398.952070px;}
.x25_c00327{left:401.755082px;}
.x41_c00327{left:451.985828px;}
.x1_c00327{left:465.097640px;}
.x39_c00327{left:676.474352px;}
.x40_c00327{left:696.904800px;}
.x38_c00327{left:733.103068px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.v1_c00327{vertical-align:23.831609pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ws4_c00327{word-spacing:-37.035289pt;}
.ws2_c00327{word-spacing:-17.995113pt;}
.ws3_c00327{word-spacing:-16.604696pt;}
.ws5_c00327{word-spacing:0.000000pt;}
.ws1_c00327{word-spacing:250.196272pt;}
.ws0_c00327{word-spacing:990.527723pt;}
._4_c00327{width:2.599641pt;}
._0_c00327{width:3.863721pt;}
._1_c00327{width:4.846228pt;}
._3_c00327{width:12.473266pt;}
._2_c00327{width:13.822983pt;}
.fs8_c00327{font-size:37.310908pt;}
.fsa_c00327{font-size:37.311173pt;}
.fsd_c00327{font-size:37.311176pt;}
.fs2_c00327{font-size:42.079973pt;}
.fs5_c00327{font-size:42.079974pt;}
.fs1_c00327{font-size:42.079975pt;}
.fs4_c00327{font-size:42.079976pt;}
.fs3_c00327{font-size:42.079977pt;}
.fs6_c00327{font-size:42.079978pt;}
.fse_c00327{font-size:45.894021pt;}
.fs9_c00327{font-size:49.530431pt;}
.fs10_c00327{font-size:53.288186pt;}
.fsf_c00327{font-size:63.921837pt;}
.fs0_c00327{font-size:63.961814pt;}
.fs7_c00327{font-size:68.413814pt;}
.fsc_c00327{font-size:69.274419pt;}
.fsb_c00327{font-size:79.952268pt;}
.y0_c00327{bottom:0.000000pt;}
.y1_c00327{bottom:0.000007pt;}
.y54_c00327{bottom:26.805533pt;}
.y4a_c00327{bottom:97.596494pt;}
.y49_c00327{bottom:124.580384pt;}
.y48_c00327{bottom:151.564275pt;}
.y47_c00327{bottom:178.548165pt;}
.y46_c00327{bottom:205.532056pt;}
.y45_c00327{bottom:232.515946pt;}
.y44_c00327{bottom:259.499837pt;}
.y4f_c00327{bottom:291.880530pt;}
.y53_c00327{bottom:357.390356pt;}
.y10_c00327{bottom:438.944560pt;}
.y38_c00327{bottom:438.957887pt;}
.yf_c00327{bottom:439.411208pt;}
.y39_c00327{bottom:439.428585pt;}
.y22_c00327{bottom:439.733989pt;}
.y37_c00327{bottom:440.063632pt;}
.ye_c00327{bottom:440.358224pt;}
.y23_c00327{bottom:440.474249pt;}
.y21_c00327{bottom:440.492144pt;}
.y36_c00327{bottom:441.175290pt;}
.yd_c00327{bottom:441.311665pt;}
.y20_c00327{bottom:441.411480pt;}
.y3a_c00327{bottom:441.575343pt;}
.y11_c00327{bottom:441.631897pt;}
.y24_c00327{bottom:442.412085pt;}
.y35_c00327{bottom:442.636491pt;}
.yc_c00327{bottom:442.778875pt;}
.y1f_c00327{bottom:443.368235pt;}
.y25_c00327{bottom:443.647574pt;}
.y34_c00327{bottom:444.136272pt;}
.yb_c00327{bottom:444.283350pt;}
.y26_c00327{bottom:445.156323pt;}
.y12_c00327{bottom:445.431649pt;}
.y33_c00327{bottom:445.793228pt;}
.ya_c00327{bottom:445.944627pt;}
.y3b_c00327{bottom:446.106592pt;}
.y1e_c00327{bottom:446.736624pt;}
.y27_c00327{bottom:447.325975pt;}
.y13_c00327{bottom:447.669198pt;}
.y3c_c00327{bottom:449.329795pt;}
.y28_c00327{bottom:449.332771pt;}
.y32_c00327{bottom:449.927990pt;}
.y9_c00327{bottom:450.087675pt;}
.y1d_c00327{bottom:451.594856pt;}
.y29_c00327{bottom:452.236735pt;}
.y14_c00327{bottom:452.957150pt;}
.y3d_c00327{bottom:454.334697pt;}
.y1c_c00327{bottom:455.562742pt;}
.y31_c00327{bottom:455.614749pt;}
.y8_c00327{bottom:455.781928pt;}
.y15_c00327{bottom:457.175713pt;}
.y2a_c00327{bottom:459.696536pt;}
.y3e_c00327{bottom:460.249062pt;}
.y1b_c00327{bottom:461.270273pt;}
.y30_c00327{bottom:462.105976pt;}
.y7_c00327{bottom:462.186152pt;}
.y6_c00327{bottom:465.258807pt;}
.y1a_c00327{bottom:465.329988pt;}
.y2b_c00327{bottom:466.846944pt;}
.y16_c00327{bottom:467.644044pt;}
.y2f_c00327{bottom:468.468115pt;}
.y5_c00327{bottom:470.598118pt;}
.y3f_c00327{bottom:470.876600pt;}
.y19_c00327{bottom:472.234422pt;}
.y2e_c00327{bottom:472.704883pt;}
.y41_c00327{bottom:474.425294pt;}
.y4e_c00327{bottom:475.041614pt;}
.y18_c00327{bottom:475.693435pt;}
.y4_c00327{bottom:477.047199pt;}
.y2d_c00327{bottom:478.188178pt;}
.y17_c00327{bottom:478.518126pt;}
.y40_c00327{bottom:478.841168pt;}
.y2c_c00327{bottom:484.463008pt;}
.y3_c00327{bottom:485.517349pt;}
.y42_c00327{bottom:513.663227pt;}
.y2_c00327{bottom:531.164232pt;}
.y43_c00327{bottom:568.435476pt;}
.y55_c00327{bottom:910.616857pt;}
.y52_c00327{bottom:996.913731pt;}
.y4c_c00327{bottom:1002.298488pt;}
.y51_c00327{bottom:1008.573473pt;}
.y50_c00327{bottom:1022.565164pt;}
.y4d_c00327{bottom:1023.103728pt;}
.y4b_c00327{bottom:1040.585280pt;}
.h8_c00327{height:31.970917pt;}
.h7_c00327{height:31.970918pt;}
.h9_c00327{height:31.970920pt;}
.h13_c00327{height:33.277647pt;}
.hb_c00327{height:34.742140pt;}
.hd_c00327{height:34.742386pt;}
.h12_c00327{height:34.742389pt;}
.h5_c00327{height:39.182865pt;}
.h4_c00327{height:39.182867pt;}
.h6_c00327{height:39.182869pt;}
.h15_c00327{height:40.499022pt;}
.hc_c00327{height:46.120377pt;}
.h10_c00327{height:49.001996pt;}
.hf_c00327{height:50.010498pt;}
.h11_c00327{height:52.632322pt;}
.ha_c00327{height:58.573749pt;}
.h14_c00327{height:59.520969pt;}
.h3_c00327{height:59.558193pt;}
.he_c00327{height:74.447742pt;}
.h2_c00327{height:1159.999952pt;}
.h0_c00327{height:1159.999959pt;}
.h1_c00327{height:1160.000000pt;}
.w2_c00327{width:830.999965pt;}
.w0_c00327{width:831.000000pt;}
.w1_c00327{width:831.333333pt;}
.x0_c00327{left:0.000000pt;}
.x3e_c00327{left:78.089069pt;}
.x3a_c00327{left:79.294918pt;}
.x3f_c00327{left:95.469567pt;}
.x3b_c00327{left:97.474332pt;}
.x42_c00327{left:116.686291pt;}
.x27_c00327{left:119.906064pt;}
.x26_c00327{left:121.392652pt;}
.x28_c00327{left:124.389083pt;}
.x29_c00327{left:128.698021pt;}
.x2a_c00327{left:133.464791pt;}
.x2b_c00327{left:135.910272pt;}
.x2c_c00327{left:138.584129pt;}
.x2d_c00327{left:142.002076pt;}
.x37_c00327{left:143.420132pt;}
.x2e_c00327{left:145.070170pt;}
.x2f_c00327{left:152.430191pt;}
.x30_c00327{left:159.776608pt;}
.x31_c00327{left:167.266795pt;}
.x32_c00327{left:174.717010pt;}
.x33_c00327{left:178.419115pt;}
.x34_c00327{left:182.468375pt;}
.x35_c00327{left:185.852506pt;}
.x36_c00327{left:188.150503pt;}
.x3_c00327{left:204.676373pt;}
.x2_c00327{left:206.574107pt;}
.x4_c00327{left:209.317987pt;}
.x5_c00327{left:213.616993pt;}
.x6_c00327{left:218.376513pt;}
.x7_c00327{left:220.819105pt;}
.x8_c00327{left:223.490334pt;}
.x9_c00327{left:226.905704pt;}
.x3d_c00327{left:227.972394pt;}
.xa_c00327{left:229.825509pt;}
.xb_c00327{left:233.767373pt;}
.xc_c00327{left:241.423300pt;}
.xd_c00327{left:251.942027pt;}
.xe_c00327{left:258.549026pt;}
.xf_c00327{left:261.564741pt;}
.x3c_c00327{left:262.612255pt;}
.x10_c00327{left:266.308178pt;}
.x11_c00327{left:269.319244pt;}
.x12_c00327{left:272.883167pt;}
.x13_c00327{left:289.225349pt;}
.x14_c00327{left:290.306761pt;}
.x15_c00327{left:291.569114pt;}
.x16_c00327{left:294.587062pt;}
.x17_c00327{left:297.451603pt;}
.x18_c00327{left:302.677178pt;}
.x19_c00327{left:308.173457pt;}
.x1a_c00327{left:313.230862pt;}
.x1b_c00327{left:316.260173pt;}
.x1c_c00327{left:323.284548pt;}
.x1d_c00327{left:330.381558pt;}
.x1e_c00327{left:336.386614pt;}
.x1f_c00327{left:339.069625pt;}
.x20_c00327{left:341.738474pt;}
.x21_c00327{left:344.757080pt;}
.x22_c00327{left:347.081977pt;}
.x23_c00327{left:350.026488pt;}
.x24_c00327{left:354.624063pt;}
.x25_c00327{left:357.115628pt;}
.x41_c00327{left:401.765180pt;}
.x1_c00327{left:413.420124pt;}
.x39_c00327{left:601.310535pt;}
.x40_c00327{left:619.470933pt;}
.x38_c00327{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dfada07cd1828ebdc46a39d3.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.171387;font-style:normal;font-weight:normal;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_8fa0a552890e344afe980dde.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.000000;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.006348;font-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_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);}
.v0_c00328{vertical-align:0.000000px;}
.ls0_c00328{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00328{word-spacing:-18.691966px;}
.ws1_c00328{word-spacing:-18.680283px;}
.ws2_c00328{word-spacing:0.000000px;}
._1_c00328{width:1.172637px;}
._4_c00328{width:2.396334px;}
._0_c00328{width:3.468785px;}
._9_c00328{width:4.649595px;}
._5_c00328{width:6.523425px;}
._e_c00328{width:7.584489px;}
._3_c00328{width:8.778466px;}
._2_c00328{width:10.194583px;}
._8_c00328{width:12.003430px;}
._7_c00328{width:15.395080px;}
._a_c00328{width:17.614431px;}
._b_c00328{width:23.182213px;}
._c_c00328{width:33.923106px;}
._d_c00328{width:51.086688px;}
._6_c00328{width:58.563431px;}
.fc1_c00328{color:rgb(198,111,25);}
.fc0_c00328{color:rgb(0,0,0);}
.fs1_c00328{font-size:71.912067px;}
.fs0_c00328{font-size:71.957041px;}
.y0_c00328{bottom:0.000000px;}
.y1_c00328{bottom:0.000008px;}
.y26_c00328{bottom:30.156225px;}
.y24_c00328{bottom:72.842037px;}
.y23_c00328{bottom:103.198914px;}
.y22_c00328{bottom:133.555791px;}
.y25_c00328{bottom:167.908419px;}
.y20_c00328{bottom:211.954165px;}
.y1f_c00328{bottom:242.311042px;}
.y1e_c00328{bottom:272.667919px;}
.y1d_c00328{bottom:303.024796px;}
.y1c_c00328{bottom:333.381673px;}
.y1b_c00328{bottom:363.738549px;}
.y1a_c00328{bottom:394.095426px;}
.y19_c00328{bottom:424.452303px;}
.y18_c00328{bottom:453.062175px;}
.y17_c00328{bottom:504.089988px;}
.y16_c00328{bottom:534.446864px;}
.y15_c00328{bottom:564.803741px;}
.y14_c00328{bottom:595.160618px;}
.y13_c00328{bottom:625.517495px;}
.y12_c00328{bottom:655.874371px;}
.y11_c00328{bottom:686.231248px;}
.y10_c00328{bottom:716.588125px;}
.yf_c00328{bottom:746.945002px;}
.y21_c00328{bottom:782.442329px;}
.yd_c00328{bottom:827.946884px;}
.yc_c00328{bottom:858.303760px;}
.yb_c00328{bottom:888.660637px;}
.ya_c00328{bottom:919.017514px;}
.y9_c00328{bottom:949.374391px;}
.y8_c00328{bottom:979.731267px;}
.y7_c00328{bottom:1010.088144px;}
.y6_c00328{bottom:1040.445021px;}
.y5_c00328{bottom:1070.801898px;}
.y4_c00328{bottom:1101.158775px;}
.y3_c00328{bottom:1131.515651px;}
.y2_c00328{bottom:1161.872528px;}
.ye_c00328{bottom:1199.835078px;}
.h4_c00328{height:55.127245px;}
.h5_c00328{height:66.961090px;}
.h3_c00328{height:67.002968px;}
.h2_c00328{height:1304.999946px;}
.h0_c00328{height:1304.999953px;}
.h1_c00328{height:1305.000000px;}
.w2_c00328{width:934.874961px;}
.w0_c00328{width:934.875000px;}
.w1_c00328{width:935.250000px;}
.x0_c00328{left:0.000000px;}
.x1_c00328{left:87.850202px;}
.x2_c00328{left:451.985828px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls0_c00328{letter-spacing:0.000000pt;}
.ws0_c00328{word-spacing:-16.615081pt;}
.ws1_c00328{word-spacing:-16.604696pt;}
.ws2_c00328{word-spacing:0.000000pt;}
._1_c00328{width:1.042344pt;}
._4_c00328{width:2.130075pt;}
._0_c00328{width:3.083364pt;}
._9_c00328{width:4.132974pt;}
._5_c00328{width:5.798600pt;}
._e_c00328{width:6.741768pt;}
._3_c00328{width:7.803081pt;}
._2_c00328{width:9.061852pt;}
._8_c00328{width:10.669716pt;}
._7_c00328{width:13.684515pt;}
._a_c00328{width:15.657272pt;}
._b_c00328{width:20.606411pt;}
._c_c00328{width:30.153872pt;}
._d_c00328{width:45.410389pt;}
._6_c00328{width:52.056383pt;}
.fs1_c00328{font-size:63.921837pt;}
.fs0_c00328{font-size:63.961814pt;}
.y0_c00328{bottom:0.000000pt;}
.y1_c00328{bottom:0.000007pt;}
.y26_c00328{bottom:26.805533pt;}
.y24_c00328{bottom:64.748478pt;}
.y23_c00328{bottom:91.732368pt;}
.y22_c00328{bottom:118.716259pt;}
.y25_c00328{bottom:149.251928pt;}
.y20_c00328{bottom:188.403703pt;}
.y1f_c00328{bottom:215.387593pt;}
.y1e_c00328{bottom:242.371484pt;}
.y1d_c00328{bottom:269.355374pt;}
.y1c_c00328{bottom:296.339264pt;}
.y1b_c00328{bottom:323.323155pt;}
.y1a_c00328{bottom:350.307045pt;}
.y19_c00328{bottom:377.290936pt;}
.y18_c00328{bottom:402.721934pt;}
.y17_c00328{bottom:448.079989pt;}
.y16_c00328{bottom:475.063879pt;}
.y15_c00328{bottom:502.047770pt;}
.y14_c00328{bottom:529.031660pt;}
.y13_c00328{bottom:556.015551pt;}
.y12_c00328{bottom:582.999441pt;}
.y11_c00328{bottom:609.983332pt;}
.y10_c00328{bottom:636.967222pt;}
.yf_c00328{bottom:663.951113pt;}
.y21_c00328{bottom:695.504293pt;}
.yd_c00328{bottom:735.952785pt;}
.yc_c00328{bottom:762.936676pt;}
.yb_c00328{bottom:789.920566pt;}
.ya_c00328{bottom:816.904457pt;}
.y9_c00328{bottom:843.888347pt;}
.y8_c00328{bottom:870.872238pt;}
.y7_c00328{bottom:897.856128pt;}
.y6_c00328{bottom:924.840019pt;}
.y5_c00328{bottom:951.823909pt;}
.y4_c00328{bottom:978.807800pt;}
.y3_c00328{bottom:1005.791690pt;}
.y2_c00328{bottom:1032.775581pt;}
.ye_c00328{bottom:1066.520069pt;}
.h4_c00328{height:49.001996pt;}
.h5_c00328{height:59.520969pt;}
.h3_c00328{height:59.558193pt;}
.h2_c00328{height:1159.999952pt;}
.h0_c00328{height:1159.999959pt;}
.h1_c00328{height:1160.000000pt;}
.w2_c00328{width:830.999965pt;}
.w0_c00328{width:831.000000pt;}
.w1_c00328{width:831.333333pt;}
.x0_c00328{left:0.000000pt;}
.x1_c00328{left:78.089069pt;}
.x2_c00328{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_461d47f209e73b08385a49fa.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:0.743000;font-style:normal;font-weight:normal;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_3cde51b125c7f326f8e730f4.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:1.000000;font-style:normal;font-weight: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_a59e3091d8401920e5a4f14d.woff2')format("woff");}.ff5_c00329{font-family:ff5_c00329;line-height:1.171387;font-style:normal;font-weight: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_c00329;src:url('chunks/assets/font_4ed3ec140d654a47171fdb2f.woff2')format("woff");}.ff6_c00329{font-family:ff6_c00329;line-height:1.000000;font-style:normal;font-weight: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_c00329;src:url('chunks/assets/font_2e17303f0ee22270ec8acbb5.woff2')format("woff");}.ff7_c00329{font-family:ff7_c00329;line-height:1.000000;font-style:normal;font-weight: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_c00329;src:url('chunks/assets/font_7800f617606f7656592f6ffb.woff2')format("woff");}.ff8_c00329{font-family:ff8_c00329;line-height:1.006348;font-style:normal;font-weight: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_c00329;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00329{font-family:ff9_c00329;line-height:0.734863;font-style:normal;font-weight: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_c00329;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00329{font-family:ffa_c00329;line-height:0.940000;font-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_c00329{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00329{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00329{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00329{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00329{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00329{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00329{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00329{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00329{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00329{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00329{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00329{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00329{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00329{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00329{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00329{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00329{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00329{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00329{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00329{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00329{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00329{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00329{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00329{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00329{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00329{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00329{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00329{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00329{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00329{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00329{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00329{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00329{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00329{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00329{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00329{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00329{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00329{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00329{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00329{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00329{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00329{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00329{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00329{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00329{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00329{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00329{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00329{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00329{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00329{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00329{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00329{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00329{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00329{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00329{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00329{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00329{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00329{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00329{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00329{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00329{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00329{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00329{vertical-align:0.000000px;}
.v1_c00329{vertical-align:26.810561px;}
.ls0_c00329{letter-spacing:0.000000px;}
.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:-41.664701px;}
.ws2_c00329{word-spacing:-18.680283px;}
.ws4_c00329{word-spacing:0.000000px;}
.ws1_c00329{word-spacing:281.470806px;}
.ws0_c00329{word-spacing:1114.343689px;}
._0_c00329{width:6.268078px;}
._1_c00329{width:7.566092px;}
._2_c00329{width:17.265417px;}
._3_c00329{width:19.854584px;}
._4_c00329{width:39.017719px;}
.fc3_c00329{color:rgb(9,71,81);}
.fc2_c00329{color:rgb(198,111,25);}
.fc1_c00329{color:rgb(255,255,255);}
.fc0_c00329{color:rgb(0,0,0);}
.fs8_c00329{font-size:41.974772px;}
.fsc_c00329{font-size:41.975069px;}
.fs2_c00329{font-size:47.339969px;}
.fs5_c00329{font-size:47.339970px;}
.fs1_c00329{font-size:47.339972px;}
.fs4_c00329{font-size:47.339973px;}
.fs3_c00329{font-size:47.339974px;}
.fs6_c00329{font-size:47.339975px;}
.fsd_c00329{font-size:51.630774px;}
.fs9_c00329{font-size:55.721735px;}
.fsb_c00329{font-size:59.949210px;}
.fse_c00329{font-size:71.912067px;}
.fs0_c00329{font-size:71.957041px;}
.fs7_c00329{font-size:76.965540px;}
.fsa_c00329{font-size:89.946302px;}
.y0_c00329{bottom:0.000000px;}
.y1_c00329{bottom:0.000008px;}
.y52_c00329{bottom:30.156225px;}
.y4f_c00329{bottom:131.570929px;}
.y4e_c00329{bottom:161.927806px;}
.y4d_c00329{bottom:192.284682px;}
.y4c_c00329{bottom:222.641559px;}
.y4b_c00329{bottom:252.998436px;}
.y4a_c00329{bottom:283.355313px;}
.y50_c00329{bottom:319.370961px;}
.y51_c00329{bottom:402.064151px;}
.y10_c00329{bottom:493.812629px;}
.y38_c00329{bottom:493.827623px;}
.yf_c00329{bottom:494.337609px;}
.y39_c00329{bottom:494.357158px;}
.y22_c00329{bottom:494.700737px;}
.y37_c00329{bottom:495.071586px;}
.ye_c00329{bottom:495.403002px;}
.y23_c00329{bottom:495.533530px;}
.y21_c00329{bottom:495.553663px;}
.y36_c00329{bottom:496.322201px;}
.yd_c00329{bottom:496.475623px;}
.y20_c00329{bottom:496.587915px;}
.y3a_c00329{bottom:496.772260px;}
.y11_c00329{bottom:496.835884px;}
.y24_c00329{bottom:497.713596px;}
.y35_c00329{bottom:497.966053px;}
.yc_c00329{bottom:498.126234px;}
.y1f_c00329{bottom:498.789265px;}
.y25_c00329{bottom:499.103521px;}
.y34_c00329{bottom:499.653306px;}
.yb_c00329{bottom:499.818769px;}
.y26_c00329{bottom:500.800864px;}
.y12_c00329{bottom:501.110605px;}
.y33_c00329{bottom:501.517382px;}
.ya_c00329{bottom:501.687706px;}
.y3b_c00329{bottom:501.869915px;}
.y1e_c00329{bottom:502.578702px;}
.y27_c00329{bottom:503.241722px;}
.y13_c00329{bottom:503.627848px;}
.y3c_c00329{bottom:505.496019px;}
.y28_c00329{bottom:505.499367px;}
.y32_c00329{bottom:506.168989px;}
.y9_c00329{bottom:506.348634px;}
.y1d_c00329{bottom:508.044213px;}
.y29_c00329{bottom:508.766327px;}
.y14_c00329{bottom:509.576794px;}
.y3d_c00329{bottom:511.126534px;}
.y1c_c00329{bottom:512.508085px;}
.y31_c00329{bottom:512.566592px;}
.y8_c00329{bottom:512.754669px;}
.y15_c00329{bottom:514.322677px;}
.y2a_c00329{bottom:517.158603px;}
.y3e_c00329{bottom:517.780195px;}
.y1b_c00329{bottom:518.929057px;}
.y30_c00329{bottom:519.869222px;}
.y7_c00329{bottom:519.959421px;}
.y6_c00329{bottom:523.416158px;}
.y1a_c00329{bottom:523.496236px;}
.y2b_c00329{bottom:525.202812px;}
.y16_c00329{bottom:526.099549px;}
.y2f_c00329{bottom:527.026630px;}
.y5_c00329{bottom:529.422883px;}
.y3f_c00329{bottom:529.736175px;}
.y19_c00329{bottom:531.263725px;}
.y2e_c00329{bottom:531.792993px;}
.y41_c00329{bottom:533.728456px;}
.y49_c00329{bottom:534.421816px;}
.y18_c00329{bottom:535.155114px;}
.y4_c00329{bottom:536.678099px;}
.y2d_c00329{bottom:537.961701px;}
.y17_c00329{bottom:538.332892px;}
.y40_c00329{bottom:538.696314px;}
.y2c_c00329{bottom:545.020884px;}
.y3_c00329{bottom:546.207017px;}
.y42_c00329{bottom:577.871130px;}
.y2_c00329{bottom:597.559761px;}
.y43_c00329{bottom:639.489911px;}
.y53_c00329{bottom:1024.443964px;}
.y47_c00329{bottom:1127.585799px;}
.y45_c00329{bottom:1129.718199px;}
.y44_c00329{bottom:1147.707459px;}
.y48_c00329{bottom:1150.991694px;}
.y46_c00329{bottom:1170.658440px;}
.hb_c00329{height:32.157430px;}
.h8_c00329{height:35.967282px;}
.h7_c00329{height:35.967283px;}
.h9_c00329{height:35.967285px;}
.h5_c00329{height:36.267779px;}
.h4_c00329{height:36.267781px;}
.h6_c00329{height:36.267783px;}
.h13_c00329{height:37.437353px;}
.hf_c00329{height:39.085184px;}
.h15_c00329{height:45.561399px;}
.hc_c00329{height:51.885424px;}
.h14_c00329{height:55.092790px;}
.h3_c00329{height:55.127245px;}
.he_c00329{height:55.821847px;}
.h12_c00329{height:56.261810px;}
.ha_c00329{height:58.967991px;}
.h10_c00329{height:67.002968px;}
.hd_c00329{height:68.338108px;}
.h11_c00329{height:83.753709px;}
.h2_c00329{height:1304.999946px;}
.h0_c00329{height:1304.999953px;}
.h1_c00329{height:1305.000000px;}
.w2_c00329{width:934.874961px;}
.w0_c00329{width:934.875000px;}
.w1_c00329{width:935.250000px;}
.x0_c00329{left:0.000000px;}
.x3e_c00329{left:89.434062px;}
.x3a_c00329{left:107.403263px;}
.x3b_c00329{left:109.658623px;}
.x41_c00329{left:131.272077px;}
.x27_c00329{left:134.894322px;}
.x26_c00329{left:136.566734px;}
.x28_c00329{left:139.937719px;}
.x29_c00329{left:144.785273px;}
.x2a_c00329{left:150.147890px;}
.x2b_c00329{left:152.899057px;}
.x2c_c00329{left:155.907145px;}
.x2d_c00329{left:159.752336px;}
.x37_c00329{left:161.347648px;}
.x2e_c00329{left:163.203941px;}
.x2f_c00329{left:171.483965px;}
.x30_c00329{left:179.748684px;}
.x31_c00329{left:188.175145px;}
.x32_c00329{left:196.556636px;}
.x33_c00329{left:200.721504px;}
.x34_c00329{left:205.276922px;}
.x35_c00329{left:209.084069px;}
.x36_c00329{left:211.669316px;}
.x3_c00329{left:230.260919px;}
.x2_c00329{left:232.395871px;}
.x4_c00329{left:235.482735px;}
.x5_c00329{left:240.319117px;}
.x6_c00329{left:245.673577px;}
.x7_c00329{left:248.421493px;}
.x8_c00329{left:251.426626px;}
.x9_c00329{left:255.268917px;}
.x3d_c00329{left:256.468943px;}
.xa_c00329{left:258.553698px;}
.xb_c00329{left:262.988294px;}
.xc_c00329{left:271.601212px;}
.xd_c00329{left:283.434780px;}
.xe_c00329{left:290.867654px;}
.xf_c00329{left:294.260334px;}
.x3c_c00329{left:295.438786px;}
.x10_c00329{left:299.596701px;}
.x11_c00329{left:302.984150px;}
.x12_c00329{left:306.993562px;}
.x13_c00329{left:325.378518px;}
.x14_c00329{left:326.595106px;}
.x15_c00329{left:328.015253px;}
.x16_c00329{left:331.410444px;}
.x17_c00329{left:334.633053px;}
.x18_c00329{left:340.511825px;}
.x19_c00329{left:346.695139px;}
.x1a_c00329{left:352.384720px;}
.x1b_c00329{left:355.792694px;}
.x1c_c00329{left:363.695116px;}
.x1d_c00329{left:371.679253px;}
.x1e_c00329{left:378.434940px;}
.x1f_c00329{left:381.453328px;}
.x20_c00329{left:384.455783px;}
.x21_c00329{left:387.851715px;}
.x22_c00329{left:390.467224px;}
.x23_c00329{left:393.779799px;}
.x24_c00329{left:398.952070px;}
.x25_c00329{left:401.755082px;}
.x40_c00329{left:451.985828px;}
.x1_c00329{left:465.097640px;}
.x39_c00329{left:676.474352px;}
.x3f_c00329{left:696.904800px;}
.x38_c00329{left:733.103068px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.v1_c00329{vertical-align:23.831609pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws3_c00329{word-spacing:-37.035289pt;}
.ws2_c00329{word-spacing:-16.604696pt;}
.ws4_c00329{word-spacing:0.000000pt;}
.ws1_c00329{word-spacing:250.196272pt;}
.ws0_c00329{word-spacing:990.527723pt;}
._0_c00329{width:5.571625pt;}
._1_c00329{width:6.725415pt;}
._2_c00329{width:15.347037pt;}
._3_c00329{width:17.648519pt;}
._4_c00329{width:34.682417pt;}
.fs8_c00329{font-size:37.310908pt;}
.fsc_c00329{font-size:37.311173pt;}
.fs2_c00329{font-size:42.079973pt;}
.fs5_c00329{font-size:42.079974pt;}
.fs1_c00329{font-size:42.079975pt;}
.fs4_c00329{font-size:42.079976pt;}
.fs3_c00329{font-size:42.079977pt;}
.fs6_c00329{font-size:42.079978pt;}
.fsd_c00329{font-size:45.894021pt;}
.fs9_c00329{font-size:49.530431pt;}
.fsb_c00329{font-size:53.288186pt;}
.fse_c00329{font-size:63.921837pt;}
.fs0_c00329{font-size:63.961814pt;}
.fs7_c00329{font-size:68.413814pt;}
.fsa_c00329{font-size:79.952268pt;}
.y0_c00329{bottom:0.000000pt;}
.y1_c00329{bottom:0.000007pt;}
.y52_c00329{bottom:26.805533pt;}
.y4f_c00329{bottom:116.951937pt;}
.y4e_c00329{bottom:143.935827pt;}
.y4d_c00329{bottom:170.919718pt;}
.y4c_c00329{bottom:197.903608pt;}
.y4b_c00329{bottom:224.887499pt;}
.y4a_c00329{bottom:251.871389pt;}
.y50_c00329{bottom:283.885299pt;}
.y51_c00329{bottom:357.390356pt;}
.y10_c00329{bottom:438.944560pt;}
.y38_c00329{bottom:438.957887pt;}
.yf_c00329{bottom:439.411208pt;}
.y39_c00329{bottom:439.428585pt;}
.y22_c00329{bottom:439.733989pt;}
.y37_c00329{bottom:440.063632pt;}
.ye_c00329{bottom:440.358224pt;}
.y23_c00329{bottom:440.474249pt;}
.y21_c00329{bottom:440.492144pt;}
.y36_c00329{bottom:441.175290pt;}
.yd_c00329{bottom:441.311665pt;}
.y20_c00329{bottom:441.411480pt;}
.y3a_c00329{bottom:441.575343pt;}
.y11_c00329{bottom:441.631897pt;}
.y24_c00329{bottom:442.412085pt;}
.y35_c00329{bottom:442.636491pt;}
.yc_c00329{bottom:442.778875pt;}
.y1f_c00329{bottom:443.368235pt;}
.y25_c00329{bottom:443.647574pt;}
.y34_c00329{bottom:444.136272pt;}
.yb_c00329{bottom:444.283350pt;}
.y26_c00329{bottom:445.156323pt;}
.y12_c00329{bottom:445.431649pt;}
.y33_c00329{bottom:445.793228pt;}
.ya_c00329{bottom:445.944627pt;}
.y3b_c00329{bottom:446.106592pt;}
.y1e_c00329{bottom:446.736624pt;}
.y27_c00329{bottom:447.325975pt;}
.y13_c00329{bottom:447.669198pt;}
.y3c_c00329{bottom:449.329795pt;}
.y28_c00329{bottom:449.332771pt;}
.y32_c00329{bottom:449.927990pt;}
.y9_c00329{bottom:450.087675pt;}
.y1d_c00329{bottom:451.594856pt;}
.y29_c00329{bottom:452.236735pt;}
.y14_c00329{bottom:452.957150pt;}
.y3d_c00329{bottom:454.334697pt;}
.y1c_c00329{bottom:455.562742pt;}
.y31_c00329{bottom:455.614749pt;}
.y8_c00329{bottom:455.781928pt;}
.y15_c00329{bottom:457.175713pt;}
.y2a_c00329{bottom:459.696536pt;}
.y3e_c00329{bottom:460.249062pt;}
.y1b_c00329{bottom:461.270273pt;}
.y30_c00329{bottom:462.105976pt;}
.y7_c00329{bottom:462.186152pt;}
.y6_c00329{bottom:465.258807pt;}
.y1a_c00329{bottom:465.329988pt;}
.y2b_c00329{bottom:466.846944pt;}
.y16_c00329{bottom:467.644044pt;}
.y2f_c00329{bottom:468.468115pt;}
.y5_c00329{bottom:470.598118pt;}
.y3f_c00329{bottom:470.876600pt;}
.y19_c00329{bottom:472.234422pt;}
.y2e_c00329{bottom:472.704883pt;}
.y41_c00329{bottom:474.425294pt;}
.y49_c00329{bottom:475.041614pt;}
.y18_c00329{bottom:475.693435pt;}
.y4_c00329{bottom:477.047199pt;}
.y2d_c00329{bottom:478.188178pt;}
.y17_c00329{bottom:478.518126pt;}
.y40_c00329{bottom:478.841168pt;}
.y2c_c00329{bottom:484.463008pt;}
.y3_c00329{bottom:485.517349pt;}
.y42_c00329{bottom:513.663227pt;}
.y2_c00329{bottom:531.164232pt;}
.y43_c00329{bottom:568.435476pt;}
.y53_c00329{bottom:910.616857pt;}
.y47_c00329{bottom:1002.298488pt;}
.y45_c00329{bottom:1004.193955pt;}
.y44_c00329{bottom:1020.184408pt;}
.y48_c00329{bottom:1023.103728pt;}
.y46_c00329{bottom:1040.585280pt;}
.hb_c00329{height:28.584382pt;}
.h8_c00329{height:31.970917pt;}
.h7_c00329{height:31.970918pt;}
.h9_c00329{height:31.970920pt;}
.h5_c00329{height:32.238026pt;}
.h4_c00329{height:32.238028pt;}
.h6_c00329{height:32.238029pt;}
.h13_c00329{height:33.277647pt;}
.hf_c00329{height:34.742386pt;}
.h15_c00329{height:40.499022pt;}
.hc_c00329{height:46.120377pt;}
.h14_c00329{height:48.971369pt;}
.h3_c00329{height:49.001996pt;}
.he_c00329{height:49.619420pt;}
.h12_c00329{height:50.010498pt;}
.ha_c00329{height:52.415992pt;}
.h10_c00329{height:59.558193pt;}
.hd_c00329{height:60.744985pt;}
.h11_c00329{height:74.447742pt;}
.h2_c00329{height:1159.999952pt;}
.h0_c00329{height:1159.999959pt;}
.h1_c00329{height:1160.000000pt;}
.w2_c00329{width:830.999965pt;}
.w0_c00329{width:831.000000pt;}
.w1_c00329{width:831.333333pt;}
.x0_c00329{left:0.000000pt;}
.x3e_c00329{left:79.496944pt;}
.x3a_c00329{left:95.469567pt;}
.x3b_c00329{left:97.474332pt;}
.x41_c00329{left:116.686291pt;}
.x27_c00329{left:119.906064pt;}
.x26_c00329{left:121.392652pt;}
.x28_c00329{left:124.389083pt;}
.x29_c00329{left:128.698021pt;}
.x2a_c00329{left:133.464791pt;}
.x2b_c00329{left:135.910272pt;}
.x2c_c00329{left:138.584129pt;}
.x2d_c00329{left:142.002076pt;}
.x37_c00329{left:143.420132pt;}
.x2e_c00329{left:145.070170pt;}
.x2f_c00329{left:152.430191pt;}
.x30_c00329{left:159.776608pt;}
.x31_c00329{left:167.266795pt;}
.x32_c00329{left:174.717010pt;}
.x33_c00329{left:178.419115pt;}
.x34_c00329{left:182.468375pt;}
.x35_c00329{left:185.852506pt;}
.x36_c00329{left:188.150503pt;}
.x3_c00329{left:204.676373pt;}
.x2_c00329{left:206.574107pt;}
.x4_c00329{left:209.317987pt;}
.x5_c00329{left:213.616993pt;}
.x6_c00329{left:218.376513pt;}
.x7_c00329{left:220.819105pt;}
.x8_c00329{left:223.490334pt;}
.x9_c00329{left:226.905704pt;}
.x3d_c00329{left:227.972394pt;}
.xa_c00329{left:229.825509pt;}
.xb_c00329{left:233.767373pt;}
.xc_c00329{left:241.423300pt;}
.xd_c00329{left:251.942027pt;}
.xe_c00329{left:258.549026pt;}
.xf_c00329{left:261.564741pt;}
.x3c_c00329{left:262.612255pt;}
.x10_c00329{left:266.308178pt;}
.x11_c00329{left:269.319244pt;}
.x12_c00329{left:272.883167pt;}
.x13_c00329{left:289.225349pt;}
.x14_c00329{left:290.306761pt;}
.x15_c00329{left:291.569114pt;}
.x16_c00329{left:294.587062pt;}
.x17_c00329{left:297.451603pt;}
.x18_c00329{left:302.677178pt;}
.x19_c00329{left:308.173457pt;}
.x1a_c00329{left:313.230862pt;}
.x1b_c00329{left:316.260173pt;}
.x1c_c00329{left:323.284548pt;}
.x1d_c00329{left:330.381558pt;}
.x1e_c00329{left:336.386614pt;}
.x1f_c00329{left:339.069625pt;}
.x20_c00329{left:341.738474pt;}
.x21_c00329{left:344.757080pt;}
.x22_c00329{left:347.081977pt;}
.x23_c00329{left:350.026488pt;}
.x24_c00329{left:354.624063pt;}
.x25_c00329{left:357.115628pt;}
.x40_c00329{left:401.765180pt;}
.x1_c00329{left:413.420124pt;}
.x39_c00329{left:601.310535pt;}
.x3f_c00329{left:619.470933pt;}
.x38_c00329{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de7df9b27eca22bc3458ae01.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.171387;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.006348;font-style:normal;font-weight:normal;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_3dc8ad44c04855dad8e8a0e6.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.000000;font-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_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);}
.v0_c00330{vertical-align:0.000000px;}
.ls1_c00330{letter-spacing:0.000000px;}
.ls0_c00330{letter-spacing:0.035135px;}
.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;}
}
.ws0_c00330{word-spacing:-18.680283px;}
.ws1_c00330{word-spacing:0.000000px;}
._0_c00330{width:1.259448px;}
._3_c00330{width:2.675706px;}
._8_c00330{width:3.801946px;}
._b_c00330{width:6.072310px;}
._9_c00330{width:7.136642px;}
._2_c00330{width:8.372969px;}
._c_c00330{width:10.407041px;}
._a_c00330{width:13.854964px;}
._1_c00330{width:14.897356px;}
._4_c00330{width:16.648219px;}
._7_c00330{width:21.824835px;}
._6_c00330{width:23.991489px;}
._5_c00330{width:26.773080px;}
.fc1_c00330{color:rgb(198,111,25);}
.fc0_c00330{color:rgb(0,0,0);}
.fs1_c00330{font-size:71.912067px;}
.fs0_c00330{font-size:71.957041px;}
.y0_c00330{bottom:0.000000px;}
.y1_c00330{bottom:0.000008px;}
.y20_c00330{bottom:30.156225px;}
.y1e_c00330{bottom:192.131962px;}
.y1d_c00330{bottom:222.488839px;}
.y1c_c00330{bottom:252.845716px;}
.y1b_c00330{bottom:283.202593px;}
.y1a_c00330{bottom:313.559469px;}
.y19_c00330{bottom:343.916346px;}
.y1f_c00330{bottom:378.268902px;}
.y17_c00330{bottom:447.206072px;}
.y16_c00330{bottom:477.562949px;}
.y15_c00330{bottom:507.919825px;}
.y14_c00330{bottom:538.276702px;}
.y18_c00330{bottom:575.960986px;}
.y11_c00330{bottom:642.774884px;}
.y10_c00330{bottom:673.131761px;}
.yf_c00330{bottom:703.488638px;}
.ye_c00330{bottom:733.845515px;}
.yd_c00330{bottom:764.202391px;}
.yc_c00330{bottom:794.559268px;}
.yb_c00330{bottom:824.916145px;}
.ya_c00330{bottom:855.273022px;}
.y9_c00330{bottom:885.629898px;}
.y12_c00330{bottom:917.253687px;}
.y8_c00330{bottom:983.086809px;}
.y7_c00330{bottom:1013.443686px;}
.y6_c00330{bottom:1043.800563px;}
.y5_c00330{bottom:1074.157440px;}
.y4_c00330{bottom:1104.514316px;}
.y3_c00330{bottom:1134.871193px;}
.y2_c00330{bottom:1165.228070px;}
.y13_c00330{bottom:1198.941187px;}
.h4_c00330{height:55.127245px;}
.h5_c00330{height:66.961090px;}
.h3_c00330{height:67.002968px;}
.h2_c00330{height:1304.999946px;}
.h0_c00330{height:1304.999953px;}
.h1_c00330{height:1305.000000px;}
.w2_c00330{width:934.874961px;}
.w0_c00330{width:934.875000px;}
.w1_c00330{width:935.250000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:87.850202px;}
.x2_c00330{left:451.985828px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls1_c00330{letter-spacing:0.000000pt;}
.ls0_c00330{letter-spacing:0.031231pt;}
.ws0_c00330{word-spacing:-16.604696pt;}
.ws1_c00330{word-spacing:0.000000pt;}
._0_c00330{width:1.119510pt;}
._3_c00330{width:2.378406pt;}
._8_c00330{width:3.379508pt;}
._b_c00330{width:5.397608pt;}
._9_c00330{width:6.343682pt;}
._2_c00330{width:7.442639pt;}
._c_c00330{width:9.250704pt;}
._a_c00330{width:12.315523pt;}
._1_c00330{width:13.242094pt;}
._4_c00330{width:14.798417pt;}
._7_c00330{width:19.399853pt;}
._6_c00330{width:21.325768pt;}
._5_c00330{width:23.798293pt;}
.fs1_c00330{font-size:63.921837pt;}
.fs0_c00330{font-size:63.961814pt;}
.y0_c00330{bottom:0.000000pt;}
.y1_c00330{bottom:0.000007pt;}
.y20_c00330{bottom:26.805533pt;}
.y1e_c00330{bottom:170.783967pt;}
.y1d_c00330{bottom:197.767857pt;}
.y1c_c00330{bottom:224.751747pt;}
.y1b_c00330{bottom:251.735638pt;}
.y1a_c00330{bottom:278.719528pt;}
.y19_c00330{bottom:305.703419pt;}
.y1f_c00330{bottom:336.239024pt;}
.y17_c00330{bottom:397.516508pt;}
.y16_c00330{bottom:424.500399pt;}
.y15_c00330{bottom:451.484289pt;}
.y14_c00330{bottom:478.468180pt;}
.y18_c00330{bottom:511.965321pt;}
.y11_c00330{bottom:571.355453pt;}
.y10_c00330{bottom:598.339343pt;}
.yf_c00330{bottom:625.323234pt;}
.ye_c00330{bottom:652.307124pt;}
.yd_c00330{bottom:679.291015pt;}
.yc_c00330{bottom:706.274905pt;}
.yb_c00330{bottom:733.258795pt;}
.ya_c00330{bottom:760.242686pt;}
.y9_c00330{bottom:787.226576pt;}
.y12_c00330{bottom:815.336611pt;}
.y8_c00330{bottom:873.854942pt;}
.y7_c00330{bottom:900.838832pt;}
.y6_c00330{bottom:927.822723pt;}
.y5_c00330{bottom:954.806613pt;}
.y4_c00330{bottom:981.790503pt;}
.y3_c00330{bottom:1008.774394pt;}
.y2_c00330{bottom:1035.758284pt;}
.y13_c00330{bottom:1065.725500pt;}
.h4_c00330{height:49.001996pt;}
.h5_c00330{height:59.520969pt;}
.h3_c00330{height:59.558193pt;}
.h2_c00330{height:1159.999952pt;}
.h0_c00330{height:1159.999959pt;}
.h1_c00330{height:1160.000000pt;}
.w2_c00330{width:830.999965pt;}
.w0_c00330{width:831.000000pt;}
.w1_c00330{width:831.333333pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:78.089069pt;}
.x2_c00330{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c0d5651c4be7d28fa244e34.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:0.743000;font-style:normal;font-weight:normal;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_3cde51b125c7f326f8e730f4.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.000000;font-style:normal;font-weight: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_c00331;src:url('chunks/assets/font_235d1a23e0e2d8863f92fd84.woff2')format("woff");}.ff5_c00331{font-family:ff5_c00331;line-height:1.171387;font-style:normal;font-weight: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_c00331;src:url('chunks/assets/font_ee75355a758ed6df8bef7c6f.woff2')format("woff");}.ff6_c00331{font-family:ff6_c00331;line-height:1.000000;font-style:normal;font-weight: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_c00331;src:url('chunks/assets/font_3028eac6a66d0079329184ff.woff2')format("woff");}.ff7_c00331{font-family:ff7_c00331;line-height:1.000000;font-style:normal;font-weight: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_c00331;src:url('chunks/assets/font_7800f617606f7656592f6ffb.woff2')format("woff");}.ff8_c00331{font-family:ff8_c00331;line-height:1.006348;font-style:normal;font-weight: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_c00331;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00331{font-family:ff9_c00331;line-height:0.734863;font-style:normal;font-weight: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_c00331;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00331{font-family:ffa_c00331;line-height:0.940000;font-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_c00331{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00331{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00331{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00331{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00331{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00331{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00331{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00331{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00331{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00331{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00331{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00331{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00331{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00331{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00331{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00331{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00331{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00331{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00331{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00331{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00331{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00331{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00331{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00331{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00331{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00331{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00331{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00331{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00331{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00331{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00331{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00331{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00331{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00331{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00331{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00331{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00331{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00331{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00331{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00331{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00331{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00331{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00331{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00331{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00331{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00331{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00331{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00331{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00331{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00331{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00331{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00331{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00331{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00331{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00331{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00331{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00331{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00331{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00331{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00331{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00331{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00331{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.v1_c00331{vertical-align:26.810561px;}
.ls0_c00331{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00331{word-spacing:-41.664701px;}
.ws2_c00331{word-spacing:-18.680283px;}
.ws4_c00331{word-spacing:0.000000px;}
.ws1_c00331{word-spacing:281.470806px;}
.ws0_c00331{word-spacing:1114.343689px;}
._2_c00331{width:1.159465px;}
._1_c00331{width:3.064869px;}
._0_c00331{width:5.533806px;}
._4_c00331{width:8.578839px;}
._3_c00331{width:28.213624px;}
._5_c00331{width:59.089705px;}
.fc3_c00331{color:rgb(9,71,81);}
.fc2_c00331{color:rgb(198,111,25);}
.fc1_c00331{color:rgb(255,255,255);}
.fc0_c00331{color:rgb(0,0,0);}
.fs8_c00331{font-size:41.974772px;}
.fsc_c00331{font-size:41.975069px;}
.fs2_c00331{font-size:47.339969px;}
.fs5_c00331{font-size:47.339970px;}
.fs1_c00331{font-size:47.339972px;}
.fs4_c00331{font-size:47.339973px;}
.fs3_c00331{font-size:47.339974px;}
.fs6_c00331{font-size:47.339975px;}
.fsd_c00331{font-size:51.630774px;}
.fs9_c00331{font-size:55.721735px;}
.fsb_c00331{font-size:59.949210px;}
.fse_c00331{font-size:71.912067px;}
.fs0_c00331{font-size:71.957041px;}
.fs7_c00331{font-size:76.965540px;}
.fsa_c00331{font-size:89.946302px;}
.y0_c00331{bottom:0.000000px;}
.y1_c00331{bottom:0.000008px;}
.y53_c00331{bottom:30.156225px;}
.y4f_c00331{bottom:101.214052px;}
.y4e_c00331{bottom:131.570929px;}
.y4d_c00331{bottom:161.927806px;}
.y4c_c00331{bottom:192.284682px;}
.y4b_c00331{bottom:222.641559px;}
.y4a_c00331{bottom:252.998436px;}
.y49_c00331{bottom:283.355313px;}
.y50_c00331{bottom:319.370961px;}
.y52_c00331{bottom:402.064151px;}
.y10_c00331{bottom:493.812629px;}
.y38_c00331{bottom:493.827623px;}
.yf_c00331{bottom:494.337609px;}
.y39_c00331{bottom:494.357158px;}
.y22_c00331{bottom:494.700737px;}
.y37_c00331{bottom:495.071586px;}
.ye_c00331{bottom:495.403002px;}
.y23_c00331{bottom:495.533530px;}
.y21_c00331{bottom:495.553663px;}
.y36_c00331{bottom:496.322201px;}
.yd_c00331{bottom:496.475623px;}
.y20_c00331{bottom:496.587915px;}
.y3a_c00331{bottom:496.772260px;}
.y11_c00331{bottom:496.835884px;}
.y24_c00331{bottom:497.713596px;}
.y35_c00331{bottom:497.966053px;}
.yc_c00331{bottom:498.126234px;}
.y1f_c00331{bottom:498.789265px;}
.y25_c00331{bottom:499.103521px;}
.y34_c00331{bottom:499.653306px;}
.yb_c00331{bottom:499.818769px;}
.y26_c00331{bottom:500.800864px;}
.y12_c00331{bottom:501.110605px;}
.y33_c00331{bottom:501.517382px;}
.ya_c00331{bottom:501.687706px;}
.y3b_c00331{bottom:501.869915px;}
.y1e_c00331{bottom:502.578702px;}
.y27_c00331{bottom:503.241722px;}
.y13_c00331{bottom:503.627848px;}
.y3c_c00331{bottom:505.496019px;}
.y28_c00331{bottom:505.499367px;}
.y32_c00331{bottom:506.168989px;}
.y9_c00331{bottom:506.348634px;}
.y1d_c00331{bottom:508.044213px;}
.y29_c00331{bottom:508.766327px;}
.y14_c00331{bottom:509.576794px;}
.y3d_c00331{bottom:511.126534px;}
.y1c_c00331{bottom:512.508085px;}
.y31_c00331{bottom:512.566592px;}
.y8_c00331{bottom:512.754669px;}
.y15_c00331{bottom:514.322677px;}
.y2a_c00331{bottom:517.158603px;}
.y3e_c00331{bottom:517.780195px;}
.y1b_c00331{bottom:518.929057px;}
.y30_c00331{bottom:519.869222px;}
.y7_c00331{bottom:519.959421px;}
.y6_c00331{bottom:523.416158px;}
.y1a_c00331{bottom:523.496236px;}
.y2b_c00331{bottom:525.202812px;}
.y16_c00331{bottom:526.099549px;}
.y2f_c00331{bottom:527.026630px;}
.y5_c00331{bottom:529.422883px;}
.y3f_c00331{bottom:529.736175px;}
.y19_c00331{bottom:531.263725px;}
.y2e_c00331{bottom:531.792993px;}
.y41_c00331{bottom:533.728456px;}
.y48_c00331{bottom:534.421816px;}
.y18_c00331{bottom:535.155114px;}
.y4_c00331{bottom:536.678099px;}
.y2d_c00331{bottom:537.961701px;}
.y17_c00331{bottom:538.332892px;}
.y40_c00331{bottom:538.696314px;}
.y2c_c00331{bottom:545.020884px;}
.y3_c00331{bottom:546.207017px;}
.y42_c00331{bottom:577.871130px;}
.y2_c00331{bottom:597.559761px;}
.y43_c00331{bottom:639.489911px;}
.y54_c00331{bottom:1024.443964px;}
.y51_c00331{bottom:1127.585799px;}
.y45_c00331{bottom:1129.718199px;}
.y44_c00331{bottom:1147.707459px;}
.y47_c00331{bottom:1150.991694px;}
.y46_c00331{bottom:1170.658440px;}
.hb_c00331{height:32.157430px;}
.h8_c00331{height:35.967282px;}
.h7_c00331{height:35.967283px;}
.h9_c00331{height:35.967285px;}
.h5_c00331{height:36.267779px;}
.h4_c00331{height:36.267781px;}
.h6_c00331{height:36.267783px;}
.h13_c00331{height:37.437353px;}
.hf_c00331{height:39.085184px;}
.h15_c00331{height:45.561399px;}
.hc_c00331{height:51.885424px;}
.h14_c00331{height:55.092790px;}
.h3_c00331{height:55.127245px;}
.he_c00331{height:55.821847px;}
.h11_c00331{height:56.261810px;}
.ha_c00331{height:58.967991px;}
.h12_c00331{height:67.002968px;}
.hd_c00331{height:68.338108px;}
.h10_c00331{height:83.753709px;}
.h2_c00331{height:1304.999946px;}
.h0_c00331{height:1304.999953px;}
.h1_c00331{height:1305.000000px;}
.w2_c00331{width:934.874961px;}
.w0_c00331{width:934.875000px;}
.w1_c00331{width:935.250000px;}
.x0_c00331{left:0.000000px;}
.x3e_c00331{left:89.434062px;}
.x3a_c00331{left:107.403263px;}
.x3b_c00331{left:109.658623px;}
.x41_c00331{left:131.272077px;}
.x27_c00331{left:134.894322px;}
.x26_c00331{left:136.566734px;}
.x28_c00331{left:139.937719px;}
.x29_c00331{left:144.785273px;}
.x2a_c00331{left:150.147890px;}
.x2b_c00331{left:152.899057px;}
.x2c_c00331{left:155.907145px;}
.x2d_c00331{left:159.752336px;}
.x37_c00331{left:161.347648px;}
.x2e_c00331{left:163.203941px;}
.x2f_c00331{left:171.483965px;}
.x30_c00331{left:179.748684px;}
.x31_c00331{left:188.175145px;}
.x32_c00331{left:196.556636px;}
.x33_c00331{left:200.721504px;}
.x34_c00331{left:205.276922px;}
.x35_c00331{left:209.084069px;}
.x36_c00331{left:211.669316px;}
.x3_c00331{left:230.260919px;}
.x2_c00331{left:232.395871px;}
.x4_c00331{left:235.482735px;}
.x5_c00331{left:240.319117px;}
.x6_c00331{left:245.673577px;}
.x7_c00331{left:248.421493px;}
.x8_c00331{left:251.426626px;}
.x9_c00331{left:255.268917px;}
.x3d_c00331{left:256.468943px;}
.xa_c00331{left:258.553698px;}
.xb_c00331{left:262.988294px;}
.xc_c00331{left:271.601212px;}
.xd_c00331{left:283.434780px;}
.xe_c00331{left:290.867654px;}
.xf_c00331{left:294.260334px;}
.x3c_c00331{left:295.438786px;}
.x10_c00331{left:299.596701px;}
.x11_c00331{left:302.984150px;}
.x12_c00331{left:306.993562px;}
.x13_c00331{left:325.378518px;}
.x14_c00331{left:326.595106px;}
.x15_c00331{left:328.015253px;}
.x16_c00331{left:331.410444px;}
.x17_c00331{left:334.633053px;}
.x18_c00331{left:340.511825px;}
.x19_c00331{left:346.695139px;}
.x1a_c00331{left:352.384720px;}
.x1b_c00331{left:355.792694px;}
.x1c_c00331{left:363.695116px;}
.x1d_c00331{left:371.679253px;}
.x1e_c00331{left:378.434940px;}
.x1f_c00331{left:381.453328px;}
.x20_c00331{left:384.455783px;}
.x21_c00331{left:387.851715px;}
.x22_c00331{left:390.467224px;}
.x23_c00331{left:393.779799px;}
.x24_c00331{left:398.952070px;}
.x25_c00331{left:401.755082px;}
.x40_c00331{left:451.985828px;}
.x1_c00331{left:465.097640px;}
.x39_c00331{left:676.474352px;}
.x3f_c00331{left:696.904800px;}
.x38_c00331{left:733.103068px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.v1_c00331{vertical-align:23.831609pt;}
.ls0_c00331{letter-spacing:0.000000pt;}
.ws3_c00331{word-spacing:-37.035289pt;}
.ws2_c00331{word-spacing:-16.604696pt;}
.ws4_c00331{word-spacing:0.000000pt;}
.ws1_c00331{word-spacing:250.196272pt;}
.ws0_c00331{word-spacing:990.527723pt;}
._2_c00331{width:1.030636pt;}
._1_c00331{width:2.724328pt;}
._0_c00331{width:4.918939pt;}
._4_c00331{width:7.625635pt;}
._3_c00331{width:25.078777pt;}
._5_c00331{width:52.524182pt;}
.fs8_c00331{font-size:37.310908pt;}
.fsc_c00331{font-size:37.311173pt;}
.fs2_c00331{font-size:42.079973pt;}
.fs5_c00331{font-size:42.079974pt;}
.fs1_c00331{font-size:42.079975pt;}
.fs4_c00331{font-size:42.079976pt;}
.fs3_c00331{font-size:42.079977pt;}
.fs6_c00331{font-size:42.079978pt;}
.fsd_c00331{font-size:45.894021pt;}
.fs9_c00331{font-size:49.530431pt;}
.fsb_c00331{font-size:53.288186pt;}
.fse_c00331{font-size:63.921837pt;}
.fs0_c00331{font-size:63.961814pt;}
.fs7_c00331{font-size:68.413814pt;}
.fsa_c00331{font-size:79.952268pt;}
.y0_c00331{bottom:0.000000pt;}
.y1_c00331{bottom:0.000007pt;}
.y53_c00331{bottom:26.805533pt;}
.y4f_c00331{bottom:89.968046pt;}
.y4e_c00331{bottom:116.951937pt;}
.y4d_c00331{bottom:143.935827pt;}
.y4c_c00331{bottom:170.919718pt;}
.y4b_c00331{bottom:197.903608pt;}
.y4a_c00331{bottom:224.887499pt;}
.y49_c00331{bottom:251.871389pt;}
.y50_c00331{bottom:283.885299pt;}
.y52_c00331{bottom:357.390356pt;}
.y10_c00331{bottom:438.944560pt;}
.y38_c00331{bottom:438.957887pt;}
.yf_c00331{bottom:439.411208pt;}
.y39_c00331{bottom:439.428585pt;}
.y22_c00331{bottom:439.733989pt;}
.y37_c00331{bottom:440.063632pt;}
.ye_c00331{bottom:440.358224pt;}
.y23_c00331{bottom:440.474249pt;}
.y21_c00331{bottom:440.492144pt;}
.y36_c00331{bottom:441.175290pt;}
.yd_c00331{bottom:441.311665pt;}
.y20_c00331{bottom:441.411480pt;}
.y3a_c00331{bottom:441.575343pt;}
.y11_c00331{bottom:441.631897pt;}
.y24_c00331{bottom:442.412085pt;}
.y35_c00331{bottom:442.636491pt;}
.yc_c00331{bottom:442.778875pt;}
.y1f_c00331{bottom:443.368235pt;}
.y25_c00331{bottom:443.647574pt;}
.y34_c00331{bottom:444.136272pt;}
.yb_c00331{bottom:444.283350pt;}
.y26_c00331{bottom:445.156323pt;}
.y12_c00331{bottom:445.431649pt;}
.y33_c00331{bottom:445.793228pt;}
.ya_c00331{bottom:445.944627pt;}
.y3b_c00331{bottom:446.106592pt;}
.y1e_c00331{bottom:446.736624pt;}
.y27_c00331{bottom:447.325975pt;}
.y13_c00331{bottom:447.669198pt;}
.y3c_c00331{bottom:449.329795pt;}
.y28_c00331{bottom:449.332771pt;}
.y32_c00331{bottom:449.927990pt;}
.y9_c00331{bottom:450.087675pt;}
.y1d_c00331{bottom:451.594856pt;}
.y29_c00331{bottom:452.236735pt;}
.y14_c00331{bottom:452.957150pt;}
.y3d_c00331{bottom:454.334697pt;}
.y1c_c00331{bottom:455.562742pt;}
.y31_c00331{bottom:455.614749pt;}
.y8_c00331{bottom:455.781928pt;}
.y15_c00331{bottom:457.175713pt;}
.y2a_c00331{bottom:459.696536pt;}
.y3e_c00331{bottom:460.249062pt;}
.y1b_c00331{bottom:461.270273pt;}
.y30_c00331{bottom:462.105976pt;}
.y7_c00331{bottom:462.186152pt;}
.y6_c00331{bottom:465.258807pt;}
.y1a_c00331{bottom:465.329988pt;}
.y2b_c00331{bottom:466.846944pt;}
.y16_c00331{bottom:467.644044pt;}
.y2f_c00331{bottom:468.468115pt;}
.y5_c00331{bottom:470.598118pt;}
.y3f_c00331{bottom:470.876600pt;}
.y19_c00331{bottom:472.234422pt;}
.y2e_c00331{bottom:472.704883pt;}
.y41_c00331{bottom:474.425294pt;}
.y48_c00331{bottom:475.041614pt;}
.y18_c00331{bottom:475.693435pt;}
.y4_c00331{bottom:477.047199pt;}
.y2d_c00331{bottom:478.188178pt;}
.y17_c00331{bottom:478.518126pt;}
.y40_c00331{bottom:478.841168pt;}
.y2c_c00331{bottom:484.463008pt;}
.y3_c00331{bottom:485.517349pt;}
.y42_c00331{bottom:513.663227pt;}
.y2_c00331{bottom:531.164232pt;}
.y43_c00331{bottom:568.435476pt;}
.y54_c00331{bottom:910.616857pt;}
.y51_c00331{bottom:1002.298488pt;}
.y45_c00331{bottom:1004.193955pt;}
.y44_c00331{bottom:1020.184408pt;}
.y47_c00331{bottom:1023.103728pt;}
.y46_c00331{bottom:1040.585280pt;}
.hb_c00331{height:28.584382pt;}
.h8_c00331{height:31.970917pt;}
.h7_c00331{height:31.970918pt;}
.h9_c00331{height:31.970920pt;}
.h5_c00331{height:32.238026pt;}
.h4_c00331{height:32.238028pt;}
.h6_c00331{height:32.238029pt;}
.h13_c00331{height:33.277647pt;}
.hf_c00331{height:34.742386pt;}
.h15_c00331{height:40.499022pt;}
.hc_c00331{height:46.120377pt;}
.h14_c00331{height:48.971369pt;}
.h3_c00331{height:49.001996pt;}
.he_c00331{height:49.619420pt;}
.h11_c00331{height:50.010498pt;}
.ha_c00331{height:52.415992pt;}
.h12_c00331{height:59.558193pt;}
.hd_c00331{height:60.744985pt;}
.h10_c00331{height:74.447742pt;}
.h2_c00331{height:1159.999952pt;}
.h0_c00331{height:1159.999959pt;}
.h1_c00331{height:1160.000000pt;}
.w2_c00331{width:830.999965pt;}
.w0_c00331{width:831.000000pt;}
.w1_c00331{width:831.333333pt;}
.x0_c00331{left:0.000000pt;}
.x3e_c00331{left:79.496944pt;}
.x3a_c00331{left:95.469567pt;}
.x3b_c00331{left:97.474332pt;}
.x41_c00331{left:116.686291pt;}
.x27_c00331{left:119.906064pt;}
.x26_c00331{left:121.392652pt;}
.x28_c00331{left:124.389083pt;}
.x29_c00331{left:128.698021pt;}
.x2a_c00331{left:133.464791pt;}
.x2b_c00331{left:135.910272pt;}
.x2c_c00331{left:138.584129pt;}
.x2d_c00331{left:142.002076pt;}
.x37_c00331{left:143.420132pt;}
.x2e_c00331{left:145.070170pt;}
.x2f_c00331{left:152.430191pt;}
.x30_c00331{left:159.776608pt;}
.x31_c00331{left:167.266795pt;}
.x32_c00331{left:174.717010pt;}
.x33_c00331{left:178.419115pt;}
.x34_c00331{left:182.468375pt;}
.x35_c00331{left:185.852506pt;}
.x36_c00331{left:188.150503pt;}
.x3_c00331{left:204.676373pt;}
.x2_c00331{left:206.574107pt;}
.x4_c00331{left:209.317987pt;}
.x5_c00331{left:213.616993pt;}
.x6_c00331{left:218.376513pt;}
.x7_c00331{left:220.819105pt;}
.x8_c00331{left:223.490334pt;}
.x9_c00331{left:226.905704pt;}
.x3d_c00331{left:227.972394pt;}
.xa_c00331{left:229.825509pt;}
.xb_c00331{left:233.767373pt;}
.xc_c00331{left:241.423300pt;}
.xd_c00331{left:251.942027pt;}
.xe_c00331{left:258.549026pt;}
.xf_c00331{left:261.564741pt;}
.x3c_c00331{left:262.612255pt;}
.x10_c00331{left:266.308178pt;}
.x11_c00331{left:269.319244pt;}
.x12_c00331{left:272.883167pt;}
.x13_c00331{left:289.225349pt;}
.x14_c00331{left:290.306761pt;}
.x15_c00331{left:291.569114pt;}
.x16_c00331{left:294.587062pt;}
.x17_c00331{left:297.451603pt;}
.x18_c00331{left:302.677178pt;}
.x19_c00331{left:308.173457pt;}
.x1a_c00331{left:313.230862pt;}
.x1b_c00331{left:316.260173pt;}
.x1c_c00331{left:323.284548pt;}
.x1d_c00331{left:330.381558pt;}
.x1e_c00331{left:336.386614pt;}
.x1f_c00331{left:339.069625pt;}
.x20_c00331{left:341.738474pt;}
.x21_c00331{left:344.757080pt;}
.x22_c00331{left:347.081977pt;}
.x23_c00331{left:350.026488pt;}
.x24_c00331{left:354.624063pt;}
.x25_c00331{left:357.115628pt;}
.x40_c00331{left:401.765180pt;}
.x1_c00331{left:413.420124pt;}
.x39_c00331{left:601.310535pt;}
.x3f_c00331{left:619.470933pt;}
.x38_c00331{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0676bd8fc25d64e2f6c7efc4.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.171387;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.006348;font-style:normal;font-weight:normal;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_c92ff38a9009cae100398c87.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.005371;font-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_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);}
.v0_c00332{vertical-align:0.000000px;}
.ls0_c00332{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00332{word-spacing:0.000000px;}
._7_c00332{width:1.697268px;}
._3_c00332{width:5.613820px;}
._a_c00332{width:6.663345px;}
._5_c00332{width:9.468954px;}
._6_c00332{width:11.078043px;}
._1_c00332{width:13.038475px;}
._0_c00332{width:14.171181px;}
._4_c00332{width:15.881143px;}
._b_c00332{width:17.227947px;}
._8_c00332{width:20.554131px;}
._2_c00332{width:33.103809px;}
._9_c00332{width:40.517969px;}
.fc1_c00332{color:rgb(198,111,25);}
.fc0_c00332{color:rgb(0,0,0);}
.fs1_c00332{font-size:71.912067px;}
.fs0_c00332{font-size:71.957041px;}
.y0_c00332{bottom:0.000000px;}
.y1_c00332{bottom:0.000008px;}
.y1c_c00332{bottom:30.156225px;}
.y1b_c00332{bottom:276.065629px;}
.y1a_c00332{bottom:306.422506px;}
.y19_c00332{bottom:336.779382px;}
.yf_c00332{bottom:374.331943px;}
.yd_c00332{bottom:457.601331px;}
.yc_c00332{bottom:487.958208px;}
.ye_c00332{bottom:525.642492px;}
.y9_c00332{bottom:591.824587px;}
.y8_c00332{bottom:622.181464px;}
.y7_c00332{bottom:652.538341px;}
.y6_c00332{bottom:682.895218px;}
.y5_c00332{bottom:713.252094px;}
.y4_c00332{bottom:743.608971px;}
.y3_c00332{bottom:773.965848px;}
.y2_c00332{bottom:804.322725px;}
.ya_c00332{bottom:846.336746px;}
.y18_c00332{bottom:920.465610px;}
.y17_c00332{bottom:950.822487px;}
.y16_c00332{bottom:981.179364px;}
.y15_c00332{bottom:1011.536241px;}
.y14_c00332{bottom:1041.893117px;}
.y13_c00332{bottom:1072.249994px;}
.y12_c00332{bottom:1102.606871px;}
.y11_c00332{bottom:1132.963748px;}
.y10_c00332{bottom:1163.320624px;}
.yb_c00332{bottom:1198.941187px;}
.h4_c00332{height:55.127245px;}
.h5_c00332{height:66.961090px;}
.h3_c00332{height:67.002968px;}
.h2_c00332{height:1304.999946px;}
.h0_c00332{height:1304.999953px;}
.h1_c00332{height:1305.000000px;}
.w2_c00332{width:934.874961px;}
.w0_c00332{width:934.875000px;}
.w1_c00332{width:935.250000px;}
.x0_c00332{left:0.000000px;}
.x1_c00332{left:87.850202px;}
.x2_c00332{left:451.985828px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ws0_c00332{word-spacing:-16.604696pt;}
.ws1_c00332{word-spacing:0.000000pt;}
._7_c00332{width:1.508683pt;}
._3_c00332{width:4.990062pt;}
._a_c00332{width:5.922974pt;}
._5_c00332{width:8.416848pt;}
._6_c00332{width:9.847149pt;}
._1_c00332{width:11.589756pt;}
._0_c00332{width:12.596606pt;}
._4_c00332{width:14.116572pt;}
._b_c00332{width:15.313730pt;}
._8_c00332{width:18.270339pt;}
._2_c00332{width:29.425608pt;}
._9_c00332{width:36.015972pt;}
.fs1_c00332{font-size:63.921837pt;}
.fs0_c00332{font-size:63.961814pt;}
.y0_c00332{bottom:0.000000pt;}
.y1_c00332{bottom:0.000007pt;}
.y1c_c00332{bottom:26.805533pt;}
.y1b_c00332{bottom:245.391670pt;}
.y1a_c00332{bottom:272.375561pt;}
.y19_c00332{bottom:299.359451pt;}
.yf_c00332{bottom:332.739504pt;}
.yd_c00332{bottom:406.756739pt;}
.yc_c00332{bottom:433.740629pt;}
.ye_c00332{bottom:467.237771pt;}
.y9_c00332{bottom:526.066300pt;}
.y8_c00332{bottom:553.050190pt;}
.y7_c00332{bottom:580.034081pt;}
.y6_c00332{bottom:607.017971pt;}
.y5_c00332{bottom:634.001862pt;}
.y4_c00332{bottom:660.985752pt;}
.y3_c00332{bottom:687.969643pt;}
.y2_c00332{bottom:714.953533pt;}
.ya_c00332{bottom:752.299330pt;}
.y18_c00332{bottom:818.191654pt;}
.y17_c00332{bottom:845.175544pt;}
.y16_c00332{bottom:872.159435pt;}
.y15_c00332{bottom:899.143325pt;}
.y14_c00332{bottom:926.127215pt;}
.y13_c00332{bottom:953.111106pt;}
.y12_c00332{bottom:980.094996pt;}
.y11_c00332{bottom:1007.078887pt;}
.y10_c00332{bottom:1034.062777pt;}
.yb_c00332{bottom:1065.725500pt;}
.h4_c00332{height:49.001996pt;}
.h5_c00332{height:59.520969pt;}
.h3_c00332{height:59.558193pt;}
.h2_c00332{height:1159.999952pt;}
.h0_c00332{height:1159.999959pt;}
.h1_c00332{height:1160.000000pt;}
.w2_c00332{width:830.999965pt;}
.w0_c00332{width:831.000000pt;}
.w1_c00332{width:831.333333pt;}
.x0_c00332{left:0.000000pt;}
.x1_c00332{left:78.089069pt;}
.x2_c00332{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9add7447523c032eae5262b6.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00333;src:url('chunks/assets/font_32247fb70577a5fa230c061e.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:1.000000;font-style:normal;font-weight: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_c00333;src:url('chunks/assets/font_7ded7fbbc688ca330d42f96a.woff2')format("woff");}.ff5_c00333{font-family:ff5_c00333;line-height:1.171387;font-style:normal;font-weight: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_c00333;src:url('chunks/assets/font_69d810c662697469c0177369.woff2')format("woff");}.ff6_c00333{font-family:ff6_c00333;line-height:1.000000;font-style:normal;font-weight: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_c00333;src:url('chunks/assets/font_3cd1c3ba28decdf59d568bb5.woff2')format("woff");}.ff7_c00333{font-family:ff7_c00333;line-height:1.000000;font-style:normal;font-weight: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_c00333;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00333{font-family:ff8_c00333;line-height:1.006348;font-style:normal;font-weight: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_c00333;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00333{font-family:ff9_c00333;line-height:0.734863;font-style:normal;font-weight: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_c00333;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00333{font-family:ffa_c00333;line-height:0.940000;font-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_c00333{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00333{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00333{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00333{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00333{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00333{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00333{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00333{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00333{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00333{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00333{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00333{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00333{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00333{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00333{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00333{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00333{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00333{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00333{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00333{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00333{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00333{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00333{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00333{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00333{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00333{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00333{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00333{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00333{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00333{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00333{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00333{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00333{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00333{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00333{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00333{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00333{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00333{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00333{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00333{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00333{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00333{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00333{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00333{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00333{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00333{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00333{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00333{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00333{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00333{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00333{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00333{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00333{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00333{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00333{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00333{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00333{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00333{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00333{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00333{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00333{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00333{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.v1_c00333{vertical-align:26.810561px;}
.ls0_c00333{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00333{word-spacing:-41.664701px;}
.ws2_c00333{word-spacing:-18.680283px;}
.ws4_c00333{word-spacing:0.000000px;}
.ws1_c00333{word-spacing:281.470806px;}
.ws0_c00333{word-spacing:1114.343689px;}
._3_c00333{width:12.865893px;}
._0_c00333{width:21.827789px;}
._1_c00333{width:27.998901px;}
._2_c00333{width:37.657190px;}
.fc3_c00333{color:rgb(9,71,81);}
.fc2_c00333{color:rgb(198,111,25);}
.fc1_c00333{color:rgb(255,255,255);}
.fc0_c00333{color:rgb(0,0,0);}
.fsb_c00333{font-size:35.978583px;}
.fs8_c00333{font-size:41.974772px;}
.fsc_c00333{font-size:41.975069px;}
.fs2_c00333{font-size:47.339969px;}
.fs5_c00333{font-size:47.339970px;}
.fs1_c00333{font-size:47.339972px;}
.fs4_c00333{font-size:47.339973px;}
.fs3_c00333{font-size:47.339974px;}
.fs6_c00333{font-size:47.339975px;}
.fse_c00333{font-size:51.630774px;}
.fs9_c00333{font-size:55.721735px;}
.fs10_c00333{font-size:59.949210px;}
.fsf_c00333{font-size:71.912067px;}
.fs0_c00333{font-size:71.957041px;}
.fsa_c00333{font-size:71.957166px;}
.fs7_c00333{font-size:76.965540px;}
.fsd_c00333{font-size:89.946302px;}
.y0_c00333{bottom:0.000000px;}
.y1_c00333{bottom:0.000008px;}
.y51_c00333{bottom:30.156225px;}
.y48_c00333{bottom:157.430542px;}
.y47_c00333{bottom:187.787419px;}
.y46_c00333{bottom:218.144295px;}
.y45_c00333{bottom:248.501172px;}
.y44_c00333{bottom:278.858049px;}
.y4f_c00333{bottom:314.873661px;}
.y50_c00333{bottom:402.064151px;}
.y10_c00333{bottom:493.812629px;}
.y38_c00333{bottom:493.827623px;}
.yf_c00333{bottom:494.337609px;}
.y39_c00333{bottom:494.357158px;}
.y22_c00333{bottom:494.700737px;}
.y37_c00333{bottom:495.071586px;}
.ye_c00333{bottom:495.403002px;}
.y23_c00333{bottom:495.533530px;}
.y21_c00333{bottom:495.553663px;}
.y36_c00333{bottom:496.322201px;}
.yd_c00333{bottom:496.475623px;}
.y20_c00333{bottom:496.587915px;}
.y3a_c00333{bottom:496.772260px;}
.y11_c00333{bottom:496.835884px;}
.y24_c00333{bottom:497.713596px;}
.y35_c00333{bottom:497.966053px;}
.yc_c00333{bottom:498.126234px;}
.y1f_c00333{bottom:498.789265px;}
.y25_c00333{bottom:499.103521px;}
.y34_c00333{bottom:499.653306px;}
.yb_c00333{bottom:499.818769px;}
.y26_c00333{bottom:500.800864px;}
.y12_c00333{bottom:501.110605px;}
.y33_c00333{bottom:501.517382px;}
.ya_c00333{bottom:501.687706px;}
.y3b_c00333{bottom:501.869915px;}
.y1e_c00333{bottom:502.578702px;}
.y27_c00333{bottom:503.241722px;}
.y13_c00333{bottom:503.627848px;}
.y3c_c00333{bottom:505.496019px;}
.y28_c00333{bottom:505.499367px;}
.y32_c00333{bottom:506.168989px;}
.y9_c00333{bottom:506.348634px;}
.y1d_c00333{bottom:508.044213px;}
.y29_c00333{bottom:508.766327px;}
.y14_c00333{bottom:509.576794px;}
.y3d_c00333{bottom:511.126534px;}
.y1c_c00333{bottom:512.508085px;}
.y31_c00333{bottom:512.566592px;}
.y8_c00333{bottom:512.754669px;}
.y15_c00333{bottom:514.322677px;}
.y2a_c00333{bottom:517.158603px;}
.y3e_c00333{bottom:517.780195px;}
.y1b_c00333{bottom:518.929057px;}
.y30_c00333{bottom:519.869222px;}
.y7_c00333{bottom:519.959421px;}
.y6_c00333{bottom:523.416158px;}
.y1a_c00333{bottom:523.496236px;}
.y2b_c00333{bottom:525.202812px;}
.y16_c00333{bottom:526.099549px;}
.y2f_c00333{bottom:527.026630px;}
.y5_c00333{bottom:529.422883px;}
.y3f_c00333{bottom:529.736175px;}
.y19_c00333{bottom:531.263725px;}
.y2e_c00333{bottom:531.792993px;}
.y41_c00333{bottom:533.728456px;}
.y4e_c00333{bottom:534.421816px;}
.y18_c00333{bottom:535.155114px;}
.y4_c00333{bottom:536.678099px;}
.y2d_c00333{bottom:537.961701px;}
.y17_c00333{bottom:538.332892px;}
.y40_c00333{bottom:538.696314px;}
.y2c_c00333{bottom:545.020884px;}
.y3_c00333{bottom:546.207017px;}
.y42_c00333{bottom:577.871130px;}
.y2_c00333{bottom:597.559761px;}
.y43_c00333{bottom:639.489911px;}
.y52_c00333{bottom:1024.443964px;}
.y4c_c00333{bottom:1127.585799px;}
.y4a_c00333{bottom:1140.391775px;}
.y4d_c00333{bottom:1150.991694px;}
.y49_c00333{bottom:1152.384636px;}
.y4b_c00333{bottom:1170.658440px;}
.hb_c00333{height:32.157430px;}
.he_c00333{height:33.501542px;}
.h8_c00333{height:35.967282px;}
.h7_c00333{height:35.967283px;}
.h9_c00333{height:35.967285px;}
.h5_c00333{height:36.267779px;}
.h4_c00333{height:36.267781px;}
.h6_c00333{height:36.267783px;}
.h13_c00333{height:37.437353px;}
.hf_c00333{height:39.085184px;}
.h15_c00333{height:45.561399px;}
.hc_c00333{height:51.885424px;}
.hd_c00333{height:54.670581px;}
.h14_c00333{height:55.092790px;}
.h3_c00333{height:55.127245px;}
.h12_c00333{height:56.261810px;}
.ha_c00333{height:58.967991px;}
.h10_c00333{height:67.002968px;}
.h11_c00333{height:83.753709px;}
.h2_c00333{height:1304.999946px;}
.h0_c00333{height:1304.999953px;}
.h1_c00333{height:1305.000000px;}
.w2_c00333{width:934.874961px;}
.w0_c00333{width:934.875000px;}
.w1_c00333{width:935.250000px;}
.x0_c00333{left:0.000000px;}
.x3a_c00333{left:92.988738px;}
.x3b_c00333{left:107.403263px;}
.x3c_c00333{left:109.658623px;}
.x41_c00333{left:131.272077px;}
.x27_c00333{left:134.894322px;}
.x26_c00333{left:136.566734px;}
.x28_c00333{left:139.937719px;}
.x29_c00333{left:144.785273px;}
.x2a_c00333{left:150.147890px;}
.x2b_c00333{left:152.899057px;}
.x2c_c00333{left:155.907145px;}
.x2d_c00333{left:159.752336px;}
.x37_c00333{left:161.347648px;}
.x2e_c00333{left:163.203941px;}
.x2f_c00333{left:171.483965px;}
.x30_c00333{left:179.748684px;}
.x31_c00333{left:188.175145px;}
.x32_c00333{left:196.556636px;}
.x33_c00333{left:200.721504px;}
.x34_c00333{left:205.276922px;}
.x35_c00333{left:209.084069px;}
.x36_c00333{left:211.669316px;}
.x3_c00333{left:230.260919px;}
.x2_c00333{left:232.395871px;}
.x4_c00333{left:235.482735px;}
.x5_c00333{left:240.319117px;}
.x6_c00333{left:245.673577px;}
.x7_c00333{left:248.421493px;}
.x8_c00333{left:251.426626px;}
.x9_c00333{left:255.268917px;}
.x3e_c00333{left:256.468943px;}
.xa_c00333{left:258.553698px;}
.xb_c00333{left:262.988294px;}
.xc_c00333{left:271.601212px;}
.xd_c00333{left:283.434780px;}
.xe_c00333{left:290.867654px;}
.xf_c00333{left:294.260334px;}
.x3d_c00333{left:295.438786px;}
.x10_c00333{left:299.596701px;}
.x11_c00333{left:302.984150px;}
.x12_c00333{left:306.993562px;}
.x13_c00333{left:325.378518px;}
.x14_c00333{left:326.595106px;}
.x15_c00333{left:328.015253px;}
.x16_c00333{left:331.410444px;}
.x17_c00333{left:334.633053px;}
.x18_c00333{left:340.511825px;}
.x19_c00333{left:346.695139px;}
.x1a_c00333{left:352.384720px;}
.x1b_c00333{left:355.792694px;}
.x1c_c00333{left:363.695116px;}
.x1d_c00333{left:371.679253px;}
.x1e_c00333{left:378.434940px;}
.x1f_c00333{left:381.453328px;}
.x20_c00333{left:384.455783px;}
.x21_c00333{left:387.851715px;}
.x22_c00333{left:390.467224px;}
.x23_c00333{left:393.779799px;}
.x24_c00333{left:398.952070px;}
.x25_c00333{left:401.755082px;}
.x40_c00333{left:451.985828px;}
.x1_c00333{left:465.097640px;}
.x39_c00333{left:676.474352px;}
.x3f_c00333{left:696.904800px;}
.x38_c00333{left:733.103068px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.v1_c00333{vertical-align:23.831609pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ws3_c00333{word-spacing:-37.035289pt;}
.ws2_c00333{word-spacing:-16.604696pt;}
.ws4_c00333{word-spacing:0.000000pt;}
.ws1_c00333{word-spacing:250.196272pt;}
.ws0_c00333{word-spacing:990.527723pt;}
._3_c00333{width:11.436350pt;}
._0_c00333{width:19.402479pt;}
._1_c00333{width:24.887912pt;}
._2_c00333{width:33.473057pt;}
.fsb_c00333{font-size:31.980963pt;}
.fs8_c00333{font-size:37.310908pt;}
.fsc_c00333{font-size:37.311173pt;}
.fs2_c00333{font-size:42.079973pt;}
.fs5_c00333{font-size:42.079974pt;}
.fs1_c00333{font-size:42.079975pt;}
.fs4_c00333{font-size:42.079976pt;}
.fs3_c00333{font-size:42.079977pt;}
.fs6_c00333{font-size:42.079978pt;}
.fse_c00333{font-size:45.894021pt;}
.fs9_c00333{font-size:49.530431pt;}
.fs10_c00333{font-size:53.288186pt;}
.fsf_c00333{font-size:63.921837pt;}
.fs0_c00333{font-size:63.961814pt;}
.fsa_c00333{font-size:63.961925pt;}
.fs7_c00333{font-size:68.413814pt;}
.fsd_c00333{font-size:79.952268pt;}
.y0_c00333{bottom:0.000000pt;}
.y1_c00333{bottom:0.000007pt;}
.y51_c00333{bottom:26.805533pt;}
.y48_c00333{bottom:139.938259pt;}
.y47_c00333{bottom:166.922150pt;}
.y46_c00333{bottom:193.906040pt;}
.y45_c00333{bottom:220.889931pt;}
.y44_c00333{bottom:247.873821pt;}
.y4f_c00333{bottom:279.887699pt;}
.y50_c00333{bottom:357.390356pt;}
.y10_c00333{bottom:438.944560pt;}
.y38_c00333{bottom:438.957887pt;}
.yf_c00333{bottom:439.411208pt;}
.y39_c00333{bottom:439.428585pt;}
.y22_c00333{bottom:439.733989pt;}
.y37_c00333{bottom:440.063632pt;}
.ye_c00333{bottom:440.358224pt;}
.y23_c00333{bottom:440.474249pt;}
.y21_c00333{bottom:440.492144pt;}
.y36_c00333{bottom:441.175290pt;}
.yd_c00333{bottom:441.311665pt;}
.y20_c00333{bottom:441.411480pt;}
.y3a_c00333{bottom:441.575343pt;}
.y11_c00333{bottom:441.631897pt;}
.y24_c00333{bottom:442.412085pt;}
.y35_c00333{bottom:442.636491pt;}
.yc_c00333{bottom:442.778875pt;}
.y1f_c00333{bottom:443.368235pt;}
.y25_c00333{bottom:443.647574pt;}
.y34_c00333{bottom:444.136272pt;}
.yb_c00333{bottom:444.283350pt;}
.y26_c00333{bottom:445.156323pt;}
.y12_c00333{bottom:445.431649pt;}
.y33_c00333{bottom:445.793228pt;}
.ya_c00333{bottom:445.944627pt;}
.y3b_c00333{bottom:446.106592pt;}
.y1e_c00333{bottom:446.736624pt;}
.y27_c00333{bottom:447.325975pt;}
.y13_c00333{bottom:447.669198pt;}
.y3c_c00333{bottom:449.329795pt;}
.y28_c00333{bottom:449.332771pt;}
.y32_c00333{bottom:449.927990pt;}
.y9_c00333{bottom:450.087675pt;}
.y1d_c00333{bottom:451.594856pt;}
.y29_c00333{bottom:452.236735pt;}
.y14_c00333{bottom:452.957150pt;}
.y3d_c00333{bottom:454.334697pt;}
.y1c_c00333{bottom:455.562742pt;}
.y31_c00333{bottom:455.614749pt;}
.y8_c00333{bottom:455.781928pt;}
.y15_c00333{bottom:457.175713pt;}
.y2a_c00333{bottom:459.696536pt;}
.y3e_c00333{bottom:460.249062pt;}
.y1b_c00333{bottom:461.270273pt;}
.y30_c00333{bottom:462.105976pt;}
.y7_c00333{bottom:462.186152pt;}
.y6_c00333{bottom:465.258807pt;}
.y1a_c00333{bottom:465.329988pt;}
.y2b_c00333{bottom:466.846944pt;}
.y16_c00333{bottom:467.644044pt;}
.y2f_c00333{bottom:468.468115pt;}
.y5_c00333{bottom:470.598118pt;}
.y3f_c00333{bottom:470.876600pt;}
.y19_c00333{bottom:472.234422pt;}
.y2e_c00333{bottom:472.704883pt;}
.y41_c00333{bottom:474.425294pt;}
.y4e_c00333{bottom:475.041614pt;}
.y18_c00333{bottom:475.693435pt;}
.y4_c00333{bottom:477.047199pt;}
.y2d_c00333{bottom:478.188178pt;}
.y17_c00333{bottom:478.518126pt;}
.y40_c00333{bottom:478.841168pt;}
.y2c_c00333{bottom:484.463008pt;}
.y3_c00333{bottom:485.517349pt;}
.y42_c00333{bottom:513.663227pt;}
.y2_c00333{bottom:531.164232pt;}
.y43_c00333{bottom:568.435476pt;}
.y52_c00333{bottom:910.616857pt;}
.y4c_c00333{bottom:1002.298488pt;}
.y4a_c00333{bottom:1013.681578pt;}
.y4d_c00333{bottom:1023.103728pt;}
.y49_c00333{bottom:1024.341898pt;}
.y4b_c00333{bottom:1040.585280pt;}
.hb_c00333{height:28.584382pt;}
.he_c00333{height:29.779148pt;}
.h8_c00333{height:31.970917pt;}
.h7_c00333{height:31.970918pt;}
.h9_c00333{height:31.970920pt;}
.h5_c00333{height:32.238026pt;}
.h4_c00333{height:32.238028pt;}
.h6_c00333{height:32.238029pt;}
.h13_c00333{height:33.277647pt;}
.hf_c00333{height:34.742386pt;}
.h15_c00333{height:40.499022pt;}
.hc_c00333{height:46.120377pt;}
.hd_c00333{height:48.596072pt;}
.h14_c00333{height:48.971369pt;}
.h3_c00333{height:49.001996pt;}
.h12_c00333{height:50.010498pt;}
.ha_c00333{height:52.415992pt;}
.h10_c00333{height:59.558193pt;}
.h11_c00333{height:74.447742pt;}
.h2_c00333{height:1159.999952pt;}
.h0_c00333{height:1159.999959pt;}
.h1_c00333{height:1160.000000pt;}
.w2_c00333{width:830.999965pt;}
.w0_c00333{width:831.000000pt;}
.w1_c00333{width:831.333333pt;}
.x0_c00333{left:0.000000pt;}
.x3a_c00333{left:82.656656pt;}
.x3b_c00333{left:95.469567pt;}
.x3c_c00333{left:97.474332pt;}
.x41_c00333{left:116.686291pt;}
.x27_c00333{left:119.906064pt;}
.x26_c00333{left:121.392652pt;}
.x28_c00333{left:124.389083pt;}
.x29_c00333{left:128.698021pt;}
.x2a_c00333{left:133.464791pt;}
.x2b_c00333{left:135.910272pt;}
.x2c_c00333{left:138.584129pt;}
.x2d_c00333{left:142.002076pt;}
.x37_c00333{left:143.420132pt;}
.x2e_c00333{left:145.070170pt;}
.x2f_c00333{left:152.430191pt;}
.x30_c00333{left:159.776608pt;}
.x31_c00333{left:167.266795pt;}
.x32_c00333{left:174.717010pt;}
.x33_c00333{left:178.419115pt;}
.x34_c00333{left:182.468375pt;}
.x35_c00333{left:185.852506pt;}
.x36_c00333{left:188.150503pt;}
.x3_c00333{left:204.676373pt;}
.x2_c00333{left:206.574107pt;}
.x4_c00333{left:209.317987pt;}
.x5_c00333{left:213.616993pt;}
.x6_c00333{left:218.376513pt;}
.x7_c00333{left:220.819105pt;}
.x8_c00333{left:223.490334pt;}
.x9_c00333{left:226.905704pt;}
.x3e_c00333{left:227.972394pt;}
.xa_c00333{left:229.825509pt;}
.xb_c00333{left:233.767373pt;}
.xc_c00333{left:241.423300pt;}
.xd_c00333{left:251.942027pt;}
.xe_c00333{left:258.549026pt;}
.xf_c00333{left:261.564741pt;}
.x3d_c00333{left:262.612255pt;}
.x10_c00333{left:266.308178pt;}
.x11_c00333{left:269.319244pt;}
.x12_c00333{left:272.883167pt;}
.x13_c00333{left:289.225349pt;}
.x14_c00333{left:290.306761pt;}
.x15_c00333{left:291.569114pt;}
.x16_c00333{left:294.587062pt;}
.x17_c00333{left:297.451603pt;}
.x18_c00333{left:302.677178pt;}
.x19_c00333{left:308.173457pt;}
.x1a_c00333{left:313.230862pt;}
.x1b_c00333{left:316.260173pt;}
.x1c_c00333{left:323.284548pt;}
.x1d_c00333{left:330.381558pt;}
.x1e_c00333{left:336.386614pt;}
.x1f_c00333{left:339.069625pt;}
.x20_c00333{left:341.738474pt;}
.x21_c00333{left:344.757080pt;}
.x22_c00333{left:347.081977pt;}
.x23_c00333{left:350.026488pt;}
.x24_c00333{left:354.624063pt;}
.x25_c00333{left:357.115628pt;}
.x40_c00333{left:401.765180pt;}
.x1_c00333{left:413.420124pt;}
.x39_c00333{left:601.310535pt;}
.x3f_c00333{left:619.470933pt;}
.x38_c00333{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c661502f658304927d935bfc.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.171387;font-style:normal;font-weight:normal;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_69d810c662697469c0177369.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.000000;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.006348;font-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_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);}
.v0_c00334{vertical-align:0.000000px;}
.ls0_c00334{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00334{word-spacing:-18.680283px;}
.ws1_c00334{word-spacing:0.000000px;}
._6_c00334{width:1.872186px;}
._1_c00334{width:3.127038px;}
._2_c00334{width:4.190984px;}
._b_c00334{width:5.506351px;}
._5_c00334{width:7.755288px;}
._e_c00334{width:10.292641px;}
._4_c00334{width:11.339087px;}
._7_c00334{width:12.789241px;}
._a_c00334{width:14.632470px;}
._8_c00334{width:15.998215px;}
._9_c00334{width:17.204617px;}
._d_c00334{width:19.933227px;}
._0_c00334{width:25.131258px;}
._3_c00334{width:26.937019px;}
._c_c00334{width:28.663934px;}
.fc1_c00334{color:rgb(198,111,25);}
.fc0_c00334{color:rgb(0,0,0);}
.fs1_c00334{font-size:71.912067px;}
.fs0_c00334{font-size:71.957041px;}
.y0_c00334{bottom:0.000000px;}
.y1_c00334{bottom:0.000008px;}
.y24_c00334{bottom:30.156225px;}
.y23_c00334{bottom:150.947064px;}
.y22_c00334{bottom:181.303941px;}
.y21_c00334{bottom:211.660817px;}
.y20_c00334{bottom:242.017694px;}
.y1f_c00334{bottom:272.374571px;}
.y1e_c00334{bottom:302.731448px;}
.y1d_c00334{bottom:333.088325px;}
.y1c_c00334{bottom:363.445201px;}
.y1b_c00334{bottom:393.802078px;}
.y1a_c00334{bottom:424.158955px;}
.y19_c00334{bottom:454.515832px;}
.y18_c00334{bottom:484.872708px;}
.y17_c00334{bottom:515.229585px;}
.y16_c00334{bottom:545.586462px;}
.y15_c00334{bottom:575.943339px;}
.y14_c00334{bottom:606.300215px;}
.y13_c00334{bottom:636.657092px;}
.y12_c00334{bottom:667.013969px;}
.y11_c00334{bottom:697.370846px;}
.y10_c00334{bottom:727.727722px;}
.yf_c00334{bottom:758.084599px;}
.ye_c00334{bottom:788.441476px;}
.yd_c00334{bottom:818.798353px;}
.yc_c00334{bottom:852.349387px;}
.ya_c00334{bottom:923.266947px;}
.y9_c00334{bottom:953.623823px;}
.y8_c00334{bottom:983.980700px;}
.y7_c00334{bottom:1014.337577px;}
.y6_c00334{bottom:1044.694454px;}
.y5_c00334{bottom:1075.051330px;}
.y4_c00334{bottom:1105.408207px;}
.y3_c00334{bottom:1135.765084px;}
.y2_c00334{bottom:1166.121961px;}
.yb_c00334{bottom:1199.835078px;}
.h4_c00334{height:55.127245px;}
.h5_c00334{height:66.961090px;}
.h3_c00334{height:67.002968px;}
.h2_c00334{height:1304.999946px;}
.h0_c00334{height:1304.999953px;}
.h1_c00334{height:1305.000000px;}
.w2_c00334{width:934.874961px;}
.w0_c00334{width:934.875000px;}
.w1_c00334{width:935.250000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:87.850202px;}
.x2_c00334{left:90.225997px;}
.x3_c00334{left:451.985828px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls0_c00334{letter-spacing:0.000000pt;}
.ws0_c00334{word-spacing:-16.604696pt;}
.ws1_c00334{word-spacing:0.000000pt;}
._6_c00334{width:1.664165pt;}
._1_c00334{width:2.779590pt;}
._2_c00334{width:3.725319pt;}
._b_c00334{width:4.894534pt;}
._5_c00334{width:6.893590pt;}
._e_c00334{width:9.149014pt;}
._4_c00334{width:10.079189pt;}
._7_c00334{width:11.368215pt;}
._a_c00334{width:13.006640pt;}
._8_c00334{width:14.220636pt;}
._9_c00334{width:15.292993pt;}
._d_c00334{width:17.718424pt;}
._0_c00334{width:22.338896pt;}
._3_c00334{width:23.944017pt;}
._c_c00334{width:25.479052pt;}
.fs1_c00334{font-size:63.921837pt;}
.fs0_c00334{font-size:63.961814pt;}
.y0_c00334{bottom:0.000000pt;}
.y1_c00334{bottom:0.000007pt;}
.y24_c00334{bottom:26.805533pt;}
.y23_c00334{bottom:134.175168pt;}
.y22_c00334{bottom:161.159058pt;}
.y21_c00334{bottom:188.142949pt;}
.y20_c00334{bottom:215.126839pt;}
.y1f_c00334{bottom:242.110730pt;}
.y1e_c00334{bottom:269.094620pt;}
.y1d_c00334{bottom:296.078511pt;}
.y1c_c00334{bottom:323.062401pt;}
.y1b_c00334{bottom:350.046292pt;}
.y1a_c00334{bottom:377.030182pt;}
.y19_c00334{bottom:404.014073pt;}
.y18_c00334{bottom:430.997963pt;}
.y17_c00334{bottom:457.981853pt;}
.y16_c00334{bottom:484.965744pt;}
.y15_c00334{bottom:511.949634pt;}
.y14_c00334{bottom:538.933525pt;}
.y13_c00334{bottom:565.917415pt;}
.y12_c00334{bottom:592.901306pt;}
.y11_c00334{bottom:619.885196pt;}
.y10_c00334{bottom:646.869087pt;}
.yf_c00334{bottom:673.852977pt;}
.ye_c00334{bottom:700.836868pt;}
.yd_c00334{bottom:727.820758pt;}
.yc_c00334{bottom:757.643900pt;}
.ya_c00334{bottom:820.681730pt;}
.y9_c00334{bottom:847.665621pt;}
.y8_c00334{bottom:874.649511pt;}
.y7_c00334{bottom:901.633402pt;}
.y6_c00334{bottom:928.617292pt;}
.y5_c00334{bottom:955.601183pt;}
.y4_c00334{bottom:982.585073pt;}
.y3_c00334{bottom:1009.568964pt;}
.y2_c00334{bottom:1036.552854pt;}
.yb_c00334{bottom:1066.520069pt;}
.h4_c00334{height:49.001996pt;}
.h5_c00334{height:59.520969pt;}
.h3_c00334{height:59.558193pt;}
.h2_c00334{height:1159.999952pt;}
.h0_c00334{height:1159.999959pt;}
.h1_c00334{height:1160.000000pt;}
.w2_c00334{width:830.999965pt;}
.w0_c00334{width:831.000000pt;}
.w1_c00334{width:831.333333pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:78.089069pt;}
.x2_c00334{left:80.200886pt;}
.x3_c00334{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a8db7926f44ff2c1425726a.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.006348;font-style:normal;font-weight:normal;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_2295078047f949feb20f4d16.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.000000;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:1.006348;font-style:normal;font-weight:normal;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_af24c93efcc5d6409d693242.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:0.727051;font-style:normal;font-weight: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_c505dd030d830023959c37e1.woff2')format("woff");}.ff5_c00335{font-family:ff5_c00335;line-height:0.888672;font-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_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;}
.ls0_c00335{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00335{word-spacing:-18.680283px;}
.ws0_c00335{word-spacing:-0.053968px;}
.ws2_c00335{word-spacing:0.000000px;}
._5_c00335{width:6.470721px;}
._3_c00335{width:7.823429px;}
._4_c00335{width:9.054267px;}
._0_c00335{width:14.577912px;}
._7_c00335{width:15.727770px;}
._6_c00335{width:17.227947px;}
._1_c00335{width:21.451662px;}
._2_c00335{width:43.195252px;}
.fc1_c00335{color:rgb(198,111,25);}
.fc2_c00335{color:rgb(255,255,255);}
.fc0_c00335{color:rgb(0,0,0);}
.fs1_c00335{font-size:53.967781px;}
.fs2_c00335{font-size:71.912067px;}
.fs0_c00335{font-size:71.957041px;}
.y0_c00335{bottom:0.000000px;}
.y1_c00335{bottom:0.000008px;}
.y10_c00335{bottom:30.156225px;}
.yf_c00335{bottom:543.169264px;}
.ye_c00335{bottom:785.382063px;}
.yd_c00335{bottom:815.738939px;}
.yc_c00335{bottom:846.095816px;}
.yb_c00335{bottom:875.541922px;}
.y9_c00335{bottom:953.623823px;}
.y8_c00335{bottom:983.980700px;}
.y7_c00335{bottom:1014.337577px;}
.y6_c00335{bottom:1044.694454px;}
.y5_c00335{bottom:1075.051330px;}
.y4_c00335{bottom:1105.408207px;}
.y3_c00335{bottom:1135.765084px;}
.y2_c00335{bottom:1166.121961px;}
.ya_c00335{bottom:1199.835078px;}
.h4_c00335{height:41.002865px;}
.h5_c00335{height:55.092790px;}
.h3_c00335{height:55.127245px;}
.h2_c00335{height:1304.999946px;}
.h0_c00335{height:1304.999953px;}
.h1_c00335{height:1305.000000px;}
.w2_c00335{width:934.874961px;}
.w0_c00335{width:934.875000px;}
.w1_c00335{width:935.250000px;}
.x0_c00335{left:0.000000px;}
.x1_c00335{left:87.850202px;}
.x2_c00335{left:451.985828px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls0_c00335{letter-spacing:0.000000pt;}
.ws1_c00335{word-spacing:-16.604696pt;}
.ws0_c00335{word-spacing:-0.047971pt;}
.ws2_c00335{word-spacing:0.000000pt;}
._5_c00335{width:5.751752pt;}
._3_c00335{width:6.954159pt;}
._4_c00335{width:8.048238pt;}
._0_c00335{width:12.958144pt;}
._7_c00335{width:13.980240pt;}
._6_c00335{width:15.313730pt;}
._1_c00335{width:19.068144pt;}
._2_c00335{width:38.395780pt;}
.fs1_c00335{font-size:47.971361pt;}
.fs2_c00335{font-size:63.921837pt;}
.fs0_c00335{font-size:63.961814pt;}
.y0_c00335{bottom:0.000000pt;}
.y1_c00335{bottom:0.000007pt;}
.y10_c00335{bottom:26.805533pt;}
.yf_c00335{bottom:482.817123pt;}
.ye_c00335{bottom:698.117389pt;}
.yd_c00335{bottom:725.101279pt;}
.yc_c00335{bottom:752.085170pt;}
.yb_c00335{bottom:778.259486pt;}
.y9_c00335{bottom:847.665621pt;}
.y8_c00335{bottom:874.649511pt;}
.y7_c00335{bottom:901.633402pt;}
.y6_c00335{bottom:928.617292pt;}
.y5_c00335{bottom:955.601183pt;}
.y4_c00335{bottom:982.585073pt;}
.y3_c00335{bottom:1009.568964pt;}
.y2_c00335{bottom:1036.552854pt;}
.ya_c00335{bottom:1066.520069pt;}
.h4_c00335{height:36.446991pt;}
.h5_c00335{height:48.971369pt;}
.h3_c00335{height:49.001996pt;}
.h2_c00335{height:1159.999952pt;}
.h0_c00335{height:1159.999959pt;}
.h1_c00335{height:1160.000000pt;}
.w2_c00335{width:830.999965pt;}
.w0_c00335{width:831.000000pt;}
.w1_c00335{width:831.333333pt;}
.x0_c00335{left:0.000000pt;}
.x1_c00335{left:78.089069pt;}
.x2_c00335{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a42f0d62e661c9ab2fe91ca.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:0.743000;font-style:normal;font-weight:normal;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_9ea164314d7f3a9bb8e3124f.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:0.769531;font-style:normal;font-weight: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_93f372707faaa0f619aee0e0.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;line-height:1.171387;font-style:normal;font-weight: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_3efd59ffd5717980876f3f74.woff2')format("woff");}.ff6_c00336{font-family:ff6_c00336;line-height:0.769531;font-style:normal;font-weight: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_7800f617606f7656592f6ffb.woff2')format("woff");}.ff7_c00336{font-family:ff7_c00336;line-height:1.006348;font-style:normal;font-weight: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_c00336;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00336{font-family:ff8_c00336;line-height:0.734863;font-style:normal;font-weight: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_c00336;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00336{font-family:ff9_c00336;line-height:0.940000;font-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_c00336{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00336{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00336{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00336{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00336{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00336{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00336{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00336{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00336{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00336{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00336{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00336{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00336{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00336{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00336{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00336{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00336{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00336{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00336{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00336{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00336{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00336{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00336{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00336{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00336{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00336{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00336{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00336{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00336{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00336{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00336{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00336{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00336{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00336{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00336{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00336{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00336{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00336{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00336{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00336{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00336{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00336{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00336{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00336{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00336{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00336{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00336{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00336{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00336{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00336{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00336{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00336{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00336{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00336{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00336{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00336{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00336{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00336{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00336{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00336{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00336{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00336{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00336{vertical-align:0.000000px;}
.v1_c00336{vertical-align:2.773440px;}
.ls0_c00336{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00336{word-spacing:-41.664701px;}
.ws3_c00336{word-spacing:-18.680283px;}
.ws2_c00336{word-spacing:-0.059949px;}
.ws5_c00336{word-spacing:0.000000px;}
.ws1_c00336{word-spacing:281.470806px;}
.ws0_c00336{word-spacing:281.744147px;}
._0_c00336{width:1.901971px;}
._2_c00336{width:5.096946px;}
._1_c00336{width:6.921647px;}
._3_c00336{width:9.187872px;}
._4_c00336{width:20.568135px;}
.fc3_c00336{color:rgb(9,71,81);}
.fc2_c00336{color:rgb(198,111,25);}
.fc1_c00336{color:rgb(255,255,255);}
.fc0_c00336{color:rgb(0,0,0);}
.fsc_c00336{font-size:41.974772px;}
.fsa_c00336{font-size:41.975069px;}
.fs2_c00336{font-size:47.339969px;}
.fs5_c00336{font-size:47.339970px;}
.fs1_c00336{font-size:47.339972px;}
.fs4_c00336{font-size:47.339973px;}
.fs3_c00336{font-size:47.339974px;}
.fs6_c00336{font-size:47.339975px;}
.fsd_c00336{font-size:51.630774px;}
.fs8_c00336{font-size:59.949210px;}
.fse_c00336{font-size:71.912067px;}
.fs0_c00336{font-size:71.957041px;}
.fs7_c00336{font-size:76.965540px;}
.fs9_c00336{font-size:89.946302px;}
.fsb_c00336{font-size:95.927731px;}
.y0_c00336{bottom:0.000000px;}
.y1_c00336{bottom:0.000008px;}
.y54_c00336{bottom:30.156225px;}
.y4f_c00336{bottom:110.208724px;}
.y4e_c00336{bottom:140.565600px;}
.y4d_c00336{bottom:170.922477px;}
.y4c_c00336{bottom:201.279354px;}
.y4b_c00336{bottom:231.636231px;}
.y4a_c00336{bottom:261.993108px;}
.y49_c00336{bottom:292.349984px;}
.y50_c00336{bottom:328.365596px;}
.y53_c00336{bottom:402.064151px;}
.y10_c00336{bottom:493.812629px;}
.y38_c00336{bottom:493.827623px;}
.yf_c00336{bottom:494.337609px;}
.y39_c00336{bottom:494.357158px;}
.y22_c00336{bottom:494.700737px;}
.y37_c00336{bottom:495.071586px;}
.ye_c00336{bottom:495.403002px;}
.y23_c00336{bottom:495.533530px;}
.y21_c00336{bottom:495.553663px;}
.y36_c00336{bottom:496.322201px;}
.yd_c00336{bottom:496.475623px;}
.y20_c00336{bottom:496.587915px;}
.y3a_c00336{bottom:496.772260px;}
.y11_c00336{bottom:496.835884px;}
.y24_c00336{bottom:497.713596px;}
.y35_c00336{bottom:497.966053px;}
.yc_c00336{bottom:498.126234px;}
.y1f_c00336{bottom:498.789265px;}
.y25_c00336{bottom:499.103521px;}
.y34_c00336{bottom:499.653306px;}
.yb_c00336{bottom:499.818769px;}
.y26_c00336{bottom:500.800864px;}
.y12_c00336{bottom:501.110605px;}
.y33_c00336{bottom:501.517382px;}
.ya_c00336{bottom:501.687706px;}
.y3b_c00336{bottom:501.869915px;}
.y1e_c00336{bottom:502.578702px;}
.y27_c00336{bottom:503.241722px;}
.y13_c00336{bottom:503.627848px;}
.y3c_c00336{bottom:505.496019px;}
.y28_c00336{bottom:505.499367px;}
.y32_c00336{bottom:506.168989px;}
.y9_c00336{bottom:506.348634px;}
.y1d_c00336{bottom:508.044213px;}
.y29_c00336{bottom:508.766327px;}
.y14_c00336{bottom:509.576794px;}
.y3d_c00336{bottom:511.126534px;}
.y1c_c00336{bottom:512.508085px;}
.y31_c00336{bottom:512.566592px;}
.y8_c00336{bottom:512.754669px;}
.y15_c00336{bottom:514.322677px;}
.y2a_c00336{bottom:517.158603px;}
.y3e_c00336{bottom:517.780195px;}
.y1b_c00336{bottom:518.929057px;}
.y30_c00336{bottom:519.869222px;}
.y7_c00336{bottom:519.959421px;}
.y6_c00336{bottom:523.416158px;}
.y1a_c00336{bottom:523.496236px;}
.y2b_c00336{bottom:525.202812px;}
.y16_c00336{bottom:526.099549px;}
.y2f_c00336{bottom:527.026630px;}
.y5_c00336{bottom:529.422883px;}
.y3f_c00336{bottom:529.736175px;}
.y19_c00336{bottom:531.263725px;}
.y2e_c00336{bottom:531.792993px;}
.y41_c00336{bottom:533.728456px;}
.y18_c00336{bottom:535.155114px;}
.y4_c00336{bottom:536.678099px;}
.y2d_c00336{bottom:537.961701px;}
.y17_c00336{bottom:538.332892px;}
.y40_c00336{bottom:538.696314px;}
.y51_c00336{bottom:539.306780px;}
.y2c_c00336{bottom:545.020884px;}
.y3_c00336{bottom:546.207017px;}
.y52_c00336{bottom:576.746779px;}
.y42_c00336{bottom:596.435373px;}
.y2_c00336{bottom:597.559761px;}
.y43_c00336{bottom:638.470702px;}
.y55_c00336{bottom:1024.443964px;}
.y47_c00336{bottom:1127.585799px;}
.y45_c00336{bottom:1129.718199px;}
.y44_c00336{bottom:1147.707459px;}
.y48_c00336{bottom:1150.017273px;}
.y46_c00336{bottom:1170.658440px;}
.h10_c00336{height:32.157430px;}
.h8_c00336{height:35.967282px;}
.h7_c00336{height:35.967283px;}
.h9_c00336{height:35.967285px;}
.h5_c00336{height:36.267779px;}
.h4_c00336{height:36.267781px;}
.h6_c00336{height:36.267783px;}
.h11_c00336{height:37.437353px;}
.hd_c00336{height:39.085184px;}
.h13_c00336{height:45.561399px;}
.h12_c00336{height:55.092790px;}
.h3_c00336{height:55.127245px;}
.hb_c00336{height:55.821847px;}
.ha_c00336{height:59.035250px;}
.he_c00336{height:67.002968px;}
.hc_c00336{height:68.338108px;}
.hf_c00336{height:89.323331px;}
.h2_c00336{height:1304.999946px;}
.h0_c00336{height:1304.999953px;}
.h1_c00336{height:1305.000000px;}
.w2_c00336{width:934.874961px;}
.w0_c00336{width:934.875000px;}
.w1_c00336{width:935.250000px;}
.x0_c00336{left:0.000000px;}
.x3c_c00336{left:89.434062px;}
.x39_c00336{left:107.403263px;}
.x3a_c00336{left:109.695383px;}
.x40_c00336{left:131.272077px;}
.x27_c00336{left:134.894322px;}
.x26_c00336{left:136.566734px;}
.x28_c00336{left:139.937719px;}
.x29_c00336{left:144.785273px;}
.x2a_c00336{left:150.147890px;}
.x2b_c00336{left:152.899057px;}
.x2c_c00336{left:155.907145px;}
.x2d_c00336{left:159.752336px;}
.x37_c00336{left:161.347648px;}
.x2e_c00336{left:163.203941px;}
.x2f_c00336{left:171.483965px;}
.x30_c00336{left:179.748684px;}
.x31_c00336{left:188.175145px;}
.x32_c00336{left:196.556636px;}
.x33_c00336{left:200.721504px;}
.x34_c00336{left:205.276922px;}
.x35_c00336{left:209.084069px;}
.x36_c00336{left:211.669316px;}
.x3_c00336{left:230.260919px;}
.x2_c00336{left:232.395871px;}
.x4_c00336{left:235.482735px;}
.x5_c00336{left:240.319117px;}
.x6_c00336{left:245.673577px;}
.x7_c00336{left:248.421493px;}
.x8_c00336{left:251.426626px;}
.x9_c00336{left:255.268917px;}
.xa_c00336{left:258.553698px;}
.xb_c00336{left:262.988294px;}
.xc_c00336{left:271.601212px;}
.xd_c00336{left:283.434780px;}
.xe_c00336{left:290.867654px;}
.xf_c00336{left:294.260334px;}
.x3b_c00336{left:295.438786px;}
.x10_c00336{left:299.596701px;}
.x11_c00336{left:302.984150px;}
.x12_c00336{left:306.993562px;}
.x13_c00336{left:325.378518px;}
.x14_c00336{left:326.595106px;}
.x15_c00336{left:328.015253px;}
.x16_c00336{left:331.410444px;}
.x17_c00336{left:334.633053px;}
.x18_c00336{left:340.511825px;}
.x19_c00336{left:346.695139px;}
.x1a_c00336{left:352.384720px;}
.x1b_c00336{left:355.792694px;}
.x1c_c00336{left:363.695116px;}
.x1d_c00336{left:371.679253px;}
.x1e_c00336{left:378.434940px;}
.x1f_c00336{left:381.453328px;}
.x20_c00336{left:384.455783px;}
.x21_c00336{left:387.851715px;}
.x22_c00336{left:390.467224px;}
.x23_c00336{left:393.779799px;}
.x24_c00336{left:398.952070px;}
.x25_c00336{left:401.755082px;}
.x3f_c00336{left:451.985828px;}
.x1_c00336{left:465.097640px;}
.x38_c00336{left:661.177232px;}
.x3e_c00336{left:696.904800px;}
.x3d_c00336{left:733.103068px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.v1_c00336{vertical-align:2.465280pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ws4_c00336{word-spacing:-37.035289pt;}
.ws3_c00336{word-spacing:-16.604696pt;}
.ws2_c00336{word-spacing:-0.053288pt;}
.ws5_c00336{word-spacing:0.000000pt;}
.ws1_c00336{word-spacing:250.196272pt;}
.ws0_c00336{word-spacing:250.439242pt;}
._0_c00336{width:1.690641pt;}
._2_c00336{width:4.530619pt;}
._1_c00336{width:6.152575pt;}
._3_c00336{width:8.166997pt;}
._4_c00336{width:18.282787pt;}
.fsc_c00336{font-size:37.310908pt;}
.fsa_c00336{font-size:37.311173pt;}
.fs2_c00336{font-size:42.079973pt;}
.fs5_c00336{font-size:42.079974pt;}
.fs1_c00336{font-size:42.079975pt;}
.fs4_c00336{font-size:42.079976pt;}
.fs3_c00336{font-size:42.079977pt;}
.fs6_c00336{font-size:42.079978pt;}
.fsd_c00336{font-size:45.894021pt;}
.fs8_c00336{font-size:53.288186pt;}
.fse_c00336{font-size:63.921837pt;}
.fs0_c00336{font-size:63.961814pt;}
.fs7_c00336{font-size:68.413814pt;}
.fs9_c00336{font-size:79.952268pt;}
.fsb_c00336{font-size:85.269094pt;}
.y0_c00336{bottom:0.000000pt;}
.y1_c00336{bottom:0.000007pt;}
.y54_c00336{bottom:26.805533pt;}
.y4f_c00336{bottom:97.963310pt;}
.y4e_c00336{bottom:124.947200pt;}
.y4d_c00336{bottom:151.931091pt;}
.y4c_c00336{bottom:178.914981pt;}
.y4b_c00336{bottom:205.898872pt;}
.y4a_c00336{bottom:232.882762pt;}
.y49_c00336{bottom:259.866653pt;}
.y50_c00336{bottom:291.880530pt;}
.y53_c00336{bottom:357.390356pt;}
.y10_c00336{bottom:438.944560pt;}
.y38_c00336{bottom:438.957887pt;}
.yf_c00336{bottom:439.411208pt;}
.y39_c00336{bottom:439.428585pt;}
.y22_c00336{bottom:439.733989pt;}
.y37_c00336{bottom:440.063632pt;}
.ye_c00336{bottom:440.358224pt;}
.y23_c00336{bottom:440.474249pt;}
.y21_c00336{bottom:440.492144pt;}
.y36_c00336{bottom:441.175290pt;}
.yd_c00336{bottom:441.311665pt;}
.y20_c00336{bottom:441.411480pt;}
.y3a_c00336{bottom:441.575343pt;}
.y11_c00336{bottom:441.631897pt;}
.y24_c00336{bottom:442.412085pt;}
.y35_c00336{bottom:442.636491pt;}
.yc_c00336{bottom:442.778875pt;}
.y1f_c00336{bottom:443.368235pt;}
.y25_c00336{bottom:443.647574pt;}
.y34_c00336{bottom:444.136272pt;}
.yb_c00336{bottom:444.283350pt;}
.y26_c00336{bottom:445.156323pt;}
.y12_c00336{bottom:445.431649pt;}
.y33_c00336{bottom:445.793228pt;}
.ya_c00336{bottom:445.944627pt;}
.y3b_c00336{bottom:446.106592pt;}
.y1e_c00336{bottom:446.736624pt;}
.y27_c00336{bottom:447.325975pt;}
.y13_c00336{bottom:447.669198pt;}
.y3c_c00336{bottom:449.329795pt;}
.y28_c00336{bottom:449.332771pt;}
.y32_c00336{bottom:449.927990pt;}
.y9_c00336{bottom:450.087675pt;}
.y1d_c00336{bottom:451.594856pt;}
.y29_c00336{bottom:452.236735pt;}
.y14_c00336{bottom:452.957150pt;}
.y3d_c00336{bottom:454.334697pt;}
.y1c_c00336{bottom:455.562742pt;}
.y31_c00336{bottom:455.614749pt;}
.y8_c00336{bottom:455.781928pt;}
.y15_c00336{bottom:457.175713pt;}
.y2a_c00336{bottom:459.696536pt;}
.y3e_c00336{bottom:460.249062pt;}
.y1b_c00336{bottom:461.270273pt;}
.y30_c00336{bottom:462.105976pt;}
.y7_c00336{bottom:462.186152pt;}
.y6_c00336{bottom:465.258807pt;}
.y1a_c00336{bottom:465.329988pt;}
.y2b_c00336{bottom:466.846944pt;}
.y16_c00336{bottom:467.644044pt;}
.y2f_c00336{bottom:468.468115pt;}
.y5_c00336{bottom:470.598118pt;}
.y3f_c00336{bottom:470.876600pt;}
.y19_c00336{bottom:472.234422pt;}
.y2e_c00336{bottom:472.704883pt;}
.y41_c00336{bottom:474.425294pt;}
.y18_c00336{bottom:475.693435pt;}
.y4_c00336{bottom:477.047199pt;}
.y2d_c00336{bottom:478.188178pt;}
.y17_c00336{bottom:478.518126pt;}
.y40_c00336{bottom:478.841168pt;}
.y51_c00336{bottom:479.383805pt;}
.y2c_c00336{bottom:484.463008pt;}
.y3_c00336{bottom:485.517349pt;}
.y52_c00336{bottom:512.663803pt;}
.y42_c00336{bottom:530.164776pt;}
.y2_c00336{bottom:531.164232pt;}
.y43_c00336{bottom:567.529513pt;}
.y55_c00336{bottom:910.616857pt;}
.y47_c00336{bottom:1002.298488pt;}
.y45_c00336{bottom:1004.193955pt;}
.y44_c00336{bottom:1020.184408pt;}
.y48_c00336{bottom:1022.237576pt;}
.y46_c00336{bottom:1040.585280pt;}
.h10_c00336{height:28.584382pt;}
.h8_c00336{height:31.970917pt;}
.h7_c00336{height:31.970918pt;}
.h9_c00336{height:31.970920pt;}
.h5_c00336{height:32.238026pt;}
.h4_c00336{height:32.238028pt;}
.h6_c00336{height:32.238029pt;}
.h11_c00336{height:33.277647pt;}
.hd_c00336{height:34.742386pt;}
.h13_c00336{height:40.499022pt;}
.h12_c00336{height:48.971369pt;}
.h3_c00336{height:49.001996pt;}
.hb_c00336{height:49.619420pt;}
.ha_c00336{height:52.475778pt;}
.he_c00336{height:59.558193pt;}
.hc_c00336{height:60.744985pt;}
.hf_c00336{height:79.398517pt;}
.h2_c00336{height:1159.999952pt;}
.h0_c00336{height:1159.999959pt;}
.h1_c00336{height:1160.000000pt;}
.w2_c00336{width:830.999965pt;}
.w0_c00336{width:831.000000pt;}
.w1_c00336{width:831.333333pt;}
.x0_c00336{left:0.000000pt;}
.x3c_c00336{left:79.496944pt;}
.x39_c00336{left:95.469567pt;}
.x3a_c00336{left:97.507007pt;}
.x40_c00336{left:116.686291pt;}
.x27_c00336{left:119.906064pt;}
.x26_c00336{left:121.392652pt;}
.x28_c00336{left:124.389083pt;}
.x29_c00336{left:128.698021pt;}
.x2a_c00336{left:133.464791pt;}
.x2b_c00336{left:135.910272pt;}
.x2c_c00336{left:138.584129pt;}
.x2d_c00336{left:142.002076pt;}
.x37_c00336{left:143.420132pt;}
.x2e_c00336{left:145.070170pt;}
.x2f_c00336{left:152.430191pt;}
.x30_c00336{left:159.776608pt;}
.x31_c00336{left:167.266795pt;}
.x32_c00336{left:174.717010pt;}
.x33_c00336{left:178.419115pt;}
.x34_c00336{left:182.468375pt;}
.x35_c00336{left:185.852506pt;}
.x36_c00336{left:188.150503pt;}
.x3_c00336{left:204.676373pt;}
.x2_c00336{left:206.574107pt;}
.x4_c00336{left:209.317987pt;}
.x5_c00336{left:213.616993pt;}
.x6_c00336{left:218.376513pt;}
.x7_c00336{left:220.819105pt;}
.x8_c00336{left:223.490334pt;}
.x9_c00336{left:226.905704pt;}
.xa_c00336{left:229.825509pt;}
.xb_c00336{left:233.767373pt;}
.xc_c00336{left:241.423300pt;}
.xd_c00336{left:251.942027pt;}
.xe_c00336{left:258.549026pt;}
.xf_c00336{left:261.564741pt;}
.x3b_c00336{left:262.612255pt;}
.x10_c00336{left:266.308178pt;}
.x11_c00336{left:269.319244pt;}
.x12_c00336{left:272.883167pt;}
.x13_c00336{left:289.225349pt;}
.x14_c00336{left:290.306761pt;}
.x15_c00336{left:291.569114pt;}
.x16_c00336{left:294.587062pt;}
.x17_c00336{left:297.451603pt;}
.x18_c00336{left:302.677178pt;}
.x19_c00336{left:308.173457pt;}
.x1a_c00336{left:313.230862pt;}
.x1b_c00336{left:316.260173pt;}
.x1c_c00336{left:323.284548pt;}
.x1d_c00336{left:330.381558pt;}
.x1e_c00336{left:336.386614pt;}
.x1f_c00336{left:339.069625pt;}
.x20_c00336{left:341.738474pt;}
.x21_c00336{left:344.757080pt;}
.x22_c00336{left:347.081977pt;}
.x23_c00336{left:350.026488pt;}
.x24_c00336{left:354.624063pt;}
.x25_c00336{left:357.115628pt;}
.x3f_c00336{left:401.765180pt;}
.x1_c00336{left:413.420124pt;}
.x38_c00336{left:587.713096pt;}
.x3e_c00336{left:619.470933pt;}
.x3d_c00336{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d22816f37c2d9cdc5c74094.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.171387;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.006348;font-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_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);}
.v0_c00337{vertical-align:0.000000px;}
.ls0_c00337{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00337{word-spacing:-18.680283px;}
.ws1_c00337{word-spacing:0.000000px;}
._6_c00337{width:1.008834px;}
._0_c00337{width:2.930225px;}
._2_c00337{width:4.032869px;}
._7_c00337{width:5.243395px;}
._3_c00337{width:6.567550px;}
._5_c00337{width:7.619143px;}
._f_c00337{width:8.669056px;}
._10_c00337{width:9.760514px;}
._a_c00337{width:10.821664px;}
._11_c00337{width:12.297345px;}
._8_c00337{width:13.737893px;}
._b_c00337{width:17.375970px;}
._d_c00337{width:19.796114px;}
._9_c00337{width:21.051035px;}
._12_c00337{width:22.270344px;}
._4_c00337{width:24.556813px;}
._1_c00337{width:26.920001px;}
._e_c00337{width:40.458265px;}
._c_c00337{width:50.026181px;}
.fc1_c00337{color:rgb(198,111,25);}
.fc0_c00337{color:rgb(0,0,0);}
.fs1_c00337{font-size:71.912067px;}
.fs0_c00337{font-size:71.957041px;}
.y0_c00337{bottom:0.000000px;}
.y1_c00337{bottom:0.000008px;}
.y22_c00337{bottom:30.156225px;}
.y1e_c00337{bottom:178.682821px;}
.y1d_c00337{bottom:209.039697px;}
.y1c_c00337{bottom:239.396574px;}
.y1b_c00337{bottom:269.753451px;}
.y1a_c00337{bottom:300.110328px;}
.y19_c00337{bottom:330.467205px;}
.y18_c00337{bottom:360.824081px;}
.y17_c00337{bottom:391.180958px;}
.y16_c00337{bottom:421.537835px;}
.y15_c00337{bottom:451.894712px;}
.y14_c00337{bottom:482.251588px;}
.y13_c00337{bottom:512.608465px;}
.y12_c00337{bottom:542.965342px;}
.y1f_c00337{bottom:580.353418px;}
.y10_c00337{bottom:647.138553px;}
.yf_c00337{bottom:677.495430px;}
.ye_c00337{bottom:707.852307px;}
.yd_c00337{bottom:738.209183px;}
.yc_c00337{bottom:768.566060px;}
.yb_c00337{bottom:798.922937px;}
.ya_c00337{bottom:829.279814px;}
.y9_c00337{bottom:859.636690px;}
.y8_c00337{bottom:889.993567px;}
.y7_c00337{bottom:920.350444px;}
.y6_c00337{bottom:950.707321px;}
.y5_c00337{bottom:981.064198px;}
.y4_c00337{bottom:1011.421074px;}
.y3_c00337{bottom:1041.777951px;}
.y2_c00337{bottom:1072.134828px;}
.y11_c00337{bottom:1103.351388px;}
.y21_c00337{bottom:1169.927934px;}
.y20_c00337{bottom:1200.284811px;}
.h4_c00337{height:55.127245px;}
.h5_c00337{height:66.961090px;}
.h3_c00337{height:67.002968px;}
.h2_c00337{height:1304.999946px;}
.h0_c00337{height:1304.999953px;}
.h1_c00337{height:1305.000000px;}
.w2_c00337{width:934.874961px;}
.w0_c00337{width:934.875000px;}
.w1_c00337{width:935.250000px;}
.x0_c00337{left:0.000000px;}
.x2_c00337{left:87.850202px;}
.x1_c00337{left:89.434062px;}
.x3_c00337{left:451.985828px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls0_c00337{letter-spacing:0.000000pt;}
.ws0_c00337{word-spacing:-16.604696pt;}
.ws1_c00337{word-spacing:0.000000pt;}
._6_c00337{width:0.896741pt;}
._0_c00337{width:2.604644pt;}
._2_c00337{width:3.584772pt;}
._7_c00337{width:4.660796pt;}
._3_c00337{width:5.837822pt;}
._5_c00337{width:6.772571pt;}
._f_c00337{width:7.705827pt;}
._10_c00337{width:8.676012pt;}
._a_c00337{width:9.619257pt;}
._11_c00337{width:10.930973pt;}
._8_c00337{width:12.211461pt;}
._b_c00337{width:15.445307pt;}
._d_c00337{width:17.596545pt;}
._9_c00337{width:18.712032pt;}
._12_c00337{width:19.795861pt;}
._4_c00337{width:21.828278pt;}
._1_c00337{width:23.928890pt;}
._e_c00337{width:35.962902pt;}
._c_c00337{width:44.467716pt;}
.fs1_c00337{font-size:63.921837pt;}
.fs0_c00337{font-size:63.961814pt;}
.y0_c00337{bottom:0.000000pt;}
.y1_c00337{bottom:0.000007pt;}
.y22_c00337{bottom:26.805533pt;}
.y1e_c00337{bottom:158.829174pt;}
.y1d_c00337{bottom:185.813064pt;}
.y1c_c00337{bottom:212.796955pt;}
.y1b_c00337{bottom:239.780845pt;}
.y1a_c00337{bottom:266.764736pt;}
.y19_c00337{bottom:293.748626pt;}
.y18_c00337{bottom:320.732517pt;}
.y17_c00337{bottom:347.716407pt;}
.y16_c00337{bottom:374.700298pt;}
.y15_c00337{bottom:401.684188pt;}
.y14_c00337{bottom:428.668079pt;}
.y13_c00337{bottom:455.651969pt;}
.y12_c00337{bottom:482.635859pt;}
.y1f_c00337{bottom:515.869705pt;}
.y10_c00337{bottom:575.234269pt;}
.yf_c00337{bottom:602.218160pt;}
.ye_c00337{bottom:629.202050pt;}
.yd_c00337{bottom:656.185941pt;}
.yc_c00337{bottom:683.169831pt;}
.yb_c00337{bottom:710.153722pt;}
.ya_c00337{bottom:737.137612pt;}
.y9_c00337{bottom:764.121503pt;}
.y8_c00337{bottom:791.105393pt;}
.y7_c00337{bottom:818.089284pt;}
.y6_c00337{bottom:845.073174pt;}
.y5_c00337{bottom:872.057064pt;}
.y4_c00337{bottom:899.040955pt;}
.y3_c00337{bottom:926.024845pt;}
.y2_c00337{bottom:953.008736pt;}
.y11_c00337{bottom:980.756789pt;}
.y21_c00337{bottom:1039.935941pt;}
.y20_c00337{bottom:1066.919832pt;}
.h4_c00337{height:49.001996pt;}
.h5_c00337{height:59.520969pt;}
.h3_c00337{height:59.558193pt;}
.h2_c00337{height:1159.999952pt;}
.h0_c00337{height:1159.999959pt;}
.h1_c00337{height:1160.000000pt;}
.w2_c00337{width:830.999965pt;}
.w0_c00337{width:831.000000pt;}
.w1_c00337{width:831.333333pt;}
.x0_c00337{left:0.000000pt;}
.x2_c00337{left:78.089069pt;}
.x1_c00337{left:79.496944pt;}
.x3_c00337{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94c496cf3fac11b296faad45.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.171387;font-style:normal;font-weight:normal;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_92bb305a2da8a325d9530dc5.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.005371;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.006348;font-style:normal;font-weight:normal;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_af24c93efcc5d6409d693242.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:0.727051;font-style:normal;font-weight: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_90e64c1a087bdf787665e583.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:0.965332;font-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_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;}
.ls0_c00338{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00338{word-spacing:-18.680283px;}
.ws0_c00338{word-spacing:-0.053968px;}
.ws2_c00338{word-spacing:0.000000px;}
._8_c00338{width:1.019202px;}
._5_c00338{width:2.414246px;}
._3_c00338{width:3.527526px;}
._7_c00338{width:4.729282px;}
._2_c00338{width:5.867589px;}
._4_c00338{width:7.610218px;}
._9_c00338{width:9.308102px;}
._1_c00338{width:14.627938px;}
._0_c00338{width:25.604006px;}
._6_c00338{width:34.144419px;}
.fc1_c00338{color:rgb(198,111,25);}
.fc2_c00338{color:rgb(255,255,255);}
.fc0_c00338{color:rgb(0,0,0);}
.fs1_c00338{font-size:53.967781px;}
.fs2_c00338{font-size:71.912067px;}
.fs0_c00338{font-size:71.957041px;}
.y0_c00338{bottom:0.000000px;}
.y1_c00338{bottom:0.000008px;}
.y14_c00338{bottom:30.156225px;}
.y13_c00338{bottom:97.060234px;}
.y12_c00338{bottom:674.207256px;}
.y11_c00338{bottom:704.564132px;}
.y10_c00338{bottom:734.921009px;}
.yf_c00338{bottom:765.277886px;}
.ye_c00338{bottom:794.723988px;}
.yc_c00338{bottom:861.977830px;}
.yb_c00338{bottom:892.334707px;}
.ya_c00338{bottom:922.691584px;}
.y9_c00338{bottom:953.048461px;}
.y8_c00338{bottom:983.405337px;}
.y7_c00338{bottom:1013.762214px;}
.y6_c00338{bottom:1044.119091px;}
.y5_c00338{bottom:1074.475968px;}
.y4_c00338{bottom:1104.832844px;}
.y3_c00338{bottom:1135.189721px;}
.y2_c00338{bottom:1165.546598px;}
.yd_c00338{bottom:1199.274180px;}
.h5_c00338{height:39.131911px;}
.h4_c00338{height:55.127245px;}
.h6_c00338{height:66.961090px;}
.h3_c00338{height:67.002968px;}
.h2_c00338{height:1304.999946px;}
.h0_c00338{height:1304.999953px;}
.h1_c00338{height:1305.000000px;}
.w2_c00338{width:934.874961px;}
.w0_c00338{width:934.875000px;}
.w1_c00338{width:935.250000px;}
.x0_c00338{left:0.000000px;}
.x1_c00338{left:87.850202px;}
.x2_c00338{left:451.985828px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls0_c00338{letter-spacing:0.000000pt;}
.ws1_c00338{word-spacing:-16.604696pt;}
.ws0_c00338{word-spacing:-0.047971pt;}
.ws2_c00338{word-spacing:0.000000pt;}
._8_c00338{width:0.905957pt;}
._5_c00338{width:2.145997pt;}
._3_c00338{width:3.135578pt;}
._7_c00338{width:4.203807pt;}
._2_c00338{width:5.215635pt;}
._4_c00338{width:6.764638pt;}
._9_c00338{width:8.273869pt;}
._1_c00338{width:13.002612pt;}
._0_c00338{width:22.759116pt;}
._6_c00338{width:30.350594pt;}
.fs1_c00338{font-size:47.971361pt;}
.fs2_c00338{font-size:63.921837pt;}
.fs0_c00338{font-size:63.961814pt;}
.y0_c00338{bottom:0.000000pt;}
.y1_c00338{bottom:0.000007pt;}
.y14_c00338{bottom:26.805533pt;}
.y13_c00338{bottom:86.275764pt;}
.y12_c00338{bottom:599.295338pt;}
.y11_c00338{bottom:626.279229pt;}
.y10_c00338{bottom:653.263119pt;}
.yf_c00338{bottom:680.247010pt;}
.ye_c00338{bottom:706.421323pt;}
.yc_c00338{bottom:766.202516pt;}
.yb_c00338{bottom:793.186406pt;}
.ya_c00338{bottom:820.170297pt;}
.y9_c00338{bottom:847.154187pt;}
.y8_c00338{bottom:874.138078pt;}
.y7_c00338{bottom:901.121968pt;}
.y6_c00338{bottom:928.105859pt;}
.y5_c00338{bottom:955.089749pt;}
.y4_c00338{bottom:982.073639pt;}
.y3_c00338{bottom:1009.057530pt;}
.y2_c00338{bottom:1036.041420pt;}
.yd_c00338{bottom:1066.021493pt;}
.h5_c00338{height:34.783921pt;}
.h4_c00338{height:49.001996pt;}
.h6_c00338{height:59.520969pt;}
.h3_c00338{height:59.558193pt;}
.h2_c00338{height:1159.999952pt;}
.h0_c00338{height:1159.999959pt;}
.h1_c00338{height:1160.000000pt;}
.w2_c00338{width:830.999965pt;}
.w0_c00338{width:831.000000pt;}
.w1_c00338{width:831.333333pt;}
.x0_c00338{left:0.000000pt;}
.x1_c00338{left:78.089069pt;}
.x2_c00338{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2fc49c374b6d5cb6fdd2aa7.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00339;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:0.734863;font-style:normal;font-weight: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_c00339;src:url('chunks/assets/font_9ea164314d7f3a9bb8e3124f.woff2')format("woff");}.ff5_c00339{font-family:ff5_c00339;line-height:0.769531;font-style:normal;font-weight: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_c00339;src:url('chunks/assets/font_a82b9287ffaf0b80a53544f5.woff2')format("woff");}.ff6_c00339{font-family:ff6_c00339;line-height:1.171387;font-style:normal;font-weight: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_c00339;src:url('chunks/assets/font_dd781a885d7fc81a9c93832a.woff2')format("woff");}.ff7_c00339{font-family:ff7_c00339;line-height:1.005371;font-style:normal;font-weight: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_c00339;src:url('chunks/assets/font_7800f617606f7656592f6ffb.woff2')format("woff");}.ff8_c00339{font-family:ff8_c00339;line-height:1.006348;font-style:normal;font-weight: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_c00339;src:url('chunks/assets/font_e31600ede7607b54d2ea5c6e.woff2')format("woff");}.ff9_c00339{font-family:ff9_c00339;line-height:0.743652;font-style:normal;font-weight: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_c00339;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00339{font-family:ffa_c00339;line-height:0.940000;font-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_c00339{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00339{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00339{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00339{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00339{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00339{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00339{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00339{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00339{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00339{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00339{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00339{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00339{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00339{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00339{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00339{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00339{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00339{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00339{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00339{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00339{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00339{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00339{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00339{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00339{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00339{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00339{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00339{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00339{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00339{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00339{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00339{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00339{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00339{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00339{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00339{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00339{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00339{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00339{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00339{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00339{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00339{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00339{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00339{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00339{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00339{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00339{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00339{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00339{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00339{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00339{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00339{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00339{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00339{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00339{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00339{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00339{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00339{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00339{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00339{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00339{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00339{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00339{vertical-align:0.000000px;}
.v1_c00339{vertical-align:2.773440px;}
.ls0_c00339{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00339{word-spacing:-41.664701px;}
.ws3_c00339{word-spacing:-18.680283px;}
.ws2_c00339{word-spacing:-0.059949px;}
.ws5_c00339{word-spacing:0.000000px;}
.ws1_c00339{word-spacing:281.470806px;}
.ws0_c00339{word-spacing:281.744147px;}
._0_c00339{width:4.486472px;}
._3_c00339{width:6.386245px;}
._1_c00339{width:8.309492px;}
._5_c00339{width:9.751340px;}
._2_c00339{width:14.876220px;}
._4_c00339{width:20.682940px;}
.fc3_c00339{color:rgb(198,111,25);}
.fc2_c00339{color:rgb(9,71,81);}
.fc1_c00339{color:rgb(255,255,255);}
.fc0_c00339{color:rgb(0,0,0);}
.fsc_c00339{font-size:41.974772px;}
.fsa_c00339{font-size:41.975069px;}
.fs2_c00339{font-size:47.339969px;}
.fs5_c00339{font-size:47.339970px;}
.fs1_c00339{font-size:47.339972px;}
.fs4_c00339{font-size:47.339973px;}
.fs3_c00339{font-size:47.339974px;}
.fs6_c00339{font-size:47.339975px;}
.fs8_c00339{font-size:51.630774px;}
.fs9_c00339{font-size:59.949210px;}
.fsd_c00339{font-size:71.912067px;}
.fs0_c00339{font-size:71.957041px;}
.fs7_c00339{font-size:76.965540px;}
.fsb_c00339{font-size:89.946302px;}
.y0_c00339{bottom:0.000000px;}
.y1_c00339{bottom:0.000008px;}
.y54_c00339{bottom:30.156225px;}
.y51_c00339{bottom:83.060095px;}
.y50_c00339{bottom:113.416972px;}
.y4f_c00339{bottom:143.773848px;}
.y4e_c00339{bottom:174.130725px;}
.y4d_c00339{bottom:204.487602px;}
.y4c_c00339{bottom:234.844479px;}
.y4b_c00339{bottom:265.201355px;}
.y4a_c00339{bottom:295.558232px;}
.y48_c00339{bottom:331.986404px;}
.y43_c00339{bottom:402.064151px;}
.y10_c00339{bottom:493.812629px;}
.y38_c00339{bottom:493.827623px;}
.yf_c00339{bottom:494.337609px;}
.y39_c00339{bottom:494.357158px;}
.y22_c00339{bottom:494.700737px;}
.y37_c00339{bottom:495.071586px;}
.ye_c00339{bottom:495.403002px;}
.y23_c00339{bottom:495.533530px;}
.y21_c00339{bottom:495.553663px;}
.y36_c00339{bottom:496.322201px;}
.yd_c00339{bottom:496.475623px;}
.y20_c00339{bottom:496.587915px;}
.y3a_c00339{bottom:496.772260px;}
.y11_c00339{bottom:496.835884px;}
.y24_c00339{bottom:497.713596px;}
.y35_c00339{bottom:497.966053px;}
.yc_c00339{bottom:498.126234px;}
.y1f_c00339{bottom:498.789265px;}
.y25_c00339{bottom:499.103521px;}
.y34_c00339{bottom:499.653306px;}
.yb_c00339{bottom:499.818769px;}
.y26_c00339{bottom:500.800864px;}
.y12_c00339{bottom:501.110605px;}
.y33_c00339{bottom:501.517382px;}
.ya_c00339{bottom:501.687706px;}
.y3b_c00339{bottom:501.869915px;}
.y1e_c00339{bottom:502.578702px;}
.y27_c00339{bottom:503.241722px;}
.y13_c00339{bottom:503.627848px;}
.y3c_c00339{bottom:505.496019px;}
.y28_c00339{bottom:505.499367px;}
.y32_c00339{bottom:506.168989px;}
.y9_c00339{bottom:506.348634px;}
.y1d_c00339{bottom:508.044213px;}
.y29_c00339{bottom:508.766327px;}
.y14_c00339{bottom:509.576794px;}
.y3d_c00339{bottom:511.126534px;}
.y1c_c00339{bottom:512.508085px;}
.y31_c00339{bottom:512.566592px;}
.y8_c00339{bottom:512.754669px;}
.y15_c00339{bottom:514.322677px;}
.y2a_c00339{bottom:517.158603px;}
.y3e_c00339{bottom:517.780195px;}
.y1b_c00339{bottom:518.929057px;}
.y30_c00339{bottom:519.869222px;}
.y7_c00339{bottom:519.959421px;}
.y6_c00339{bottom:523.416158px;}
.y1a_c00339{bottom:523.496236px;}
.y2b_c00339{bottom:525.202812px;}
.y16_c00339{bottom:526.099549px;}
.y2f_c00339{bottom:527.026630px;}
.y5_c00339{bottom:529.422883px;}
.y3f_c00339{bottom:529.736175px;}
.y19_c00339{bottom:531.263725px;}
.y2e_c00339{bottom:531.792993px;}
.y41_c00339{bottom:533.728456px;}
.y18_c00339{bottom:535.155114px;}
.y4_c00339{bottom:536.678099px;}
.y2d_c00339{bottom:537.961701px;}
.y17_c00339{bottom:538.332892px;}
.y40_c00339{bottom:538.696314px;}
.y49_c00339{bottom:539.306780px;}
.y2c_c00339{bottom:545.020884px;}
.y3_c00339{bottom:546.207017px;}
.y42_c00339{bottom:596.435373px;}
.y2_c00339{bottom:597.559761px;}
.y44_c00339{bottom:638.470702px;}
.y55_c00339{bottom:1024.443964px;}
.y46_c00339{bottom:1127.585799px;}
.y53_c00339{bottom:1129.718199px;}
.y52_c00339{bottom:1147.707459px;}
.y47_c00339{bottom:1150.991694px;}
.y45_c00339{bottom:1170.658440px;}
.h10_c00339{height:32.157430px;}
.h8_c00339{height:35.967282px;}
.h7_c00339{height:35.967283px;}
.h9_c00339{height:35.967285px;}
.h5_c00339{height:36.267779px;}
.h4_c00339{height:36.267781px;}
.h6_c00339{height:36.267783px;}
.hb_c00339{height:37.437353px;}
.hd_c00339{height:39.085184px;}
.h13_c00339{height:45.561399px;}
.h12_c00339{height:55.092790px;}
.h3_c00339{height:55.127245px;}
.hc_c00339{height:55.821847px;}
.ha_c00339{height:59.035250px;}
.he_c00339{height:67.002968px;}
.h11_c00339{height:68.338108px;}
.hf_c00339{height:83.753709px;}
.h2_c00339{height:1304.999946px;}
.h0_c00339{height:1304.999953px;}
.h1_c00339{height:1305.000000px;}
.w2_c00339{width:934.874961px;}
.w0_c00339{width:934.875000px;}
.w1_c00339{width:935.250000px;}
.x0_c00339{left:0.000000px;}
.x3c_c00339{left:90.139917px;}
.x3d_c00339{left:107.403263px;}
.x3a_c00339{left:109.695383px;}
.x3f_c00339{left:131.272077px;}
.x27_c00339{left:134.894322px;}
.x26_c00339{left:136.566734px;}
.x28_c00339{left:139.937719px;}
.x29_c00339{left:144.785273px;}
.x2a_c00339{left:150.147890px;}
.x2b_c00339{left:152.899057px;}
.x2c_c00339{left:155.907145px;}
.x2d_c00339{left:159.752336px;}
.x37_c00339{left:161.347648px;}
.x2e_c00339{left:163.203941px;}
.x2f_c00339{left:171.483965px;}
.x30_c00339{left:179.748684px;}
.x31_c00339{left:188.175145px;}
.x32_c00339{left:196.556636px;}
.x33_c00339{left:200.721504px;}
.x34_c00339{left:205.276922px;}
.x35_c00339{left:209.084069px;}
.x36_c00339{left:211.669316px;}
.x3_c00339{left:230.260919px;}
.x2_c00339{left:232.395871px;}
.x4_c00339{left:235.482735px;}
.x5_c00339{left:240.319117px;}
.x6_c00339{left:245.673577px;}
.x7_c00339{left:248.421493px;}
.x8_c00339{left:251.426626px;}
.x9_c00339{left:255.268917px;}
.xa_c00339{left:258.553698px;}
.xb_c00339{left:262.988294px;}
.xc_c00339{left:271.601212px;}
.xd_c00339{left:283.434780px;}
.xe_c00339{left:290.867654px;}
.xf_c00339{left:294.260334px;}
.x3b_c00339{left:295.438786px;}
.x10_c00339{left:299.596701px;}
.x11_c00339{left:302.984150px;}
.x12_c00339{left:306.993562px;}
.x13_c00339{left:325.378518px;}
.x14_c00339{left:326.595106px;}
.x15_c00339{left:328.015253px;}
.x16_c00339{left:331.410444px;}
.x17_c00339{left:334.633053px;}
.x18_c00339{left:340.511825px;}
.x19_c00339{left:346.695139px;}
.x1a_c00339{left:352.384720px;}
.x1b_c00339{left:355.792694px;}
.x1c_c00339{left:363.695116px;}
.x1d_c00339{left:371.679253px;}
.x1e_c00339{left:378.434940px;}
.x1f_c00339{left:381.453328px;}
.x20_c00339{left:384.455783px;}
.x21_c00339{left:387.851715px;}
.x22_c00339{left:390.467224px;}
.x23_c00339{left:393.779799px;}
.x24_c00339{left:398.952070px;}
.x25_c00339{left:401.755082px;}
.x3e_c00339{left:451.985828px;}
.x1_c00339{left:465.097640px;}
.x39_c00339{left:676.474352px;}
.x38_c00339{left:696.904800px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.v1_c00339{vertical-align:2.465280pt;}
.ls0_c00339{letter-spacing:0.000000pt;}
.ws4_c00339{word-spacing:-37.035289pt;}
.ws3_c00339{word-spacing:-16.604696pt;}
.ws2_c00339{word-spacing:-0.053288pt;}
.ws5_c00339{word-spacing:0.000000pt;}
.ws1_c00339{word-spacing:250.196272pt;}
.ws0_c00339{word-spacing:250.439242pt;}
._0_c00339{width:3.987975pt;}
._3_c00339{width:5.676662pt;}
._1_c00339{width:7.386215pt;}
._5_c00339{width:8.667858pt;}
._2_c00339{width:13.223306pt;}
._4_c00339{width:18.384836pt;}
.fsc_c00339{font-size:37.310908pt;}
.fsa_c00339{font-size:37.311173pt;}
.fs2_c00339{font-size:42.079973pt;}
.fs5_c00339{font-size:42.079974pt;}
.fs1_c00339{font-size:42.079975pt;}
.fs4_c00339{font-size:42.079976pt;}
.fs3_c00339{font-size:42.079977pt;}
.fs6_c00339{font-size:42.079978pt;}
.fs8_c00339{font-size:45.894021pt;}
.fs9_c00339{font-size:53.288186pt;}
.fsd_c00339{font-size:63.921837pt;}
.fs0_c00339{font-size:63.961814pt;}
.fs7_c00339{font-size:68.413814pt;}
.fsb_c00339{font-size:79.952268pt;}
.y0_c00339{bottom:0.000000pt;}
.y1_c00339{bottom:0.000007pt;}
.y54_c00339{bottom:26.805533pt;}
.y51_c00339{bottom:73.831195pt;}
.y50_c00339{bottom:100.815086pt;}
.y4f_c00339{bottom:127.798976pt;}
.y4e_c00339{bottom:154.782867pt;}
.y4d_c00339{bottom:181.766757pt;}
.y4c_c00339{bottom:208.750648pt;}
.y4b_c00339{bottom:235.734538pt;}
.y4a_c00339{bottom:262.718429pt;}
.y48_c00339{bottom:295.099026pt;}
.y43_c00339{bottom:357.390356pt;}
.y10_c00339{bottom:438.944560pt;}
.y38_c00339{bottom:438.957887pt;}
.yf_c00339{bottom:439.411208pt;}
.y39_c00339{bottom:439.428585pt;}
.y22_c00339{bottom:439.733989pt;}
.y37_c00339{bottom:440.063632pt;}
.ye_c00339{bottom:440.358224pt;}
.y23_c00339{bottom:440.474249pt;}
.y21_c00339{bottom:440.492144pt;}
.y36_c00339{bottom:441.175290pt;}
.yd_c00339{bottom:441.311665pt;}
.y20_c00339{bottom:441.411480pt;}
.y3a_c00339{bottom:441.575343pt;}
.y11_c00339{bottom:441.631897pt;}
.y24_c00339{bottom:442.412085pt;}
.y35_c00339{bottom:442.636491pt;}
.yc_c00339{bottom:442.778875pt;}
.y1f_c00339{bottom:443.368235pt;}
.y25_c00339{bottom:443.647574pt;}
.y34_c00339{bottom:444.136272pt;}
.yb_c00339{bottom:444.283350pt;}
.y26_c00339{bottom:445.156323pt;}
.y12_c00339{bottom:445.431649pt;}
.y33_c00339{bottom:445.793228pt;}
.ya_c00339{bottom:445.944627pt;}
.y3b_c00339{bottom:446.106592pt;}
.y1e_c00339{bottom:446.736624pt;}
.y27_c00339{bottom:447.325975pt;}
.y13_c00339{bottom:447.669198pt;}
.y3c_c00339{bottom:449.329795pt;}
.y28_c00339{bottom:449.332771pt;}
.y32_c00339{bottom:449.927990pt;}
.y9_c00339{bottom:450.087675pt;}
.y1d_c00339{bottom:451.594856pt;}
.y29_c00339{bottom:452.236735pt;}
.y14_c00339{bottom:452.957150pt;}
.y3d_c00339{bottom:454.334697pt;}
.y1c_c00339{bottom:455.562742pt;}
.y31_c00339{bottom:455.614749pt;}
.y8_c00339{bottom:455.781928pt;}
.y15_c00339{bottom:457.175713pt;}
.y2a_c00339{bottom:459.696536pt;}
.y3e_c00339{bottom:460.249062pt;}
.y1b_c00339{bottom:461.270273pt;}
.y30_c00339{bottom:462.105976pt;}
.y7_c00339{bottom:462.186152pt;}
.y6_c00339{bottom:465.258807pt;}
.y1a_c00339{bottom:465.329988pt;}
.y2b_c00339{bottom:466.846944pt;}
.y16_c00339{bottom:467.644044pt;}
.y2f_c00339{bottom:468.468115pt;}
.y5_c00339{bottom:470.598118pt;}
.y3f_c00339{bottom:470.876600pt;}
.y19_c00339{bottom:472.234422pt;}
.y2e_c00339{bottom:472.704883pt;}
.y41_c00339{bottom:474.425294pt;}
.y18_c00339{bottom:475.693435pt;}
.y4_c00339{bottom:477.047199pt;}
.y2d_c00339{bottom:478.188178pt;}
.y17_c00339{bottom:478.518126pt;}
.y40_c00339{bottom:478.841168pt;}
.y49_c00339{bottom:479.383805pt;}
.y2c_c00339{bottom:484.463008pt;}
.y3_c00339{bottom:485.517349pt;}
.y42_c00339{bottom:530.164776pt;}
.y2_c00339{bottom:531.164232pt;}
.y44_c00339{bottom:567.529513pt;}
.y55_c00339{bottom:910.616857pt;}
.y46_c00339{bottom:1002.298488pt;}
.y53_c00339{bottom:1004.193955pt;}
.y52_c00339{bottom:1020.184408pt;}
.y47_c00339{bottom:1023.103728pt;}
.y45_c00339{bottom:1040.585280pt;}
.h10_c00339{height:28.584382pt;}
.h8_c00339{height:31.970917pt;}
.h7_c00339{height:31.970918pt;}
.h9_c00339{height:31.970920pt;}
.h5_c00339{height:32.238026pt;}
.h4_c00339{height:32.238028pt;}
.h6_c00339{height:32.238029pt;}
.hb_c00339{height:33.277647pt;}
.hd_c00339{height:34.742386pt;}
.h13_c00339{height:40.499022pt;}
.h12_c00339{height:48.971369pt;}
.h3_c00339{height:49.001996pt;}
.hc_c00339{height:49.619420pt;}
.ha_c00339{height:52.475778pt;}
.he_c00339{height:59.558193pt;}
.h11_c00339{height:60.744985pt;}
.hf_c00339{height:74.447742pt;}
.h2_c00339{height:1159.999952pt;}
.h0_c00339{height:1159.999959pt;}
.h1_c00339{height:1160.000000pt;}
.w2_c00339{width:830.999965pt;}
.w0_c00339{width:831.000000pt;}
.w1_c00339{width:831.333333pt;}
.x0_c00339{left:0.000000pt;}
.x3c_c00339{left:80.124371pt;}
.x3d_c00339{left:95.469567pt;}
.x3a_c00339{left:97.507007pt;}
.x3f_c00339{left:116.686291pt;}
.x27_c00339{left:119.906064pt;}
.x26_c00339{left:121.392652pt;}
.x28_c00339{left:124.389083pt;}
.x29_c00339{left:128.698021pt;}
.x2a_c00339{left:133.464791pt;}
.x2b_c00339{left:135.910272pt;}
.x2c_c00339{left:138.584129pt;}
.x2d_c00339{left:142.002076pt;}
.x37_c00339{left:143.420132pt;}
.x2e_c00339{left:145.070170pt;}
.x2f_c00339{left:152.430191pt;}
.x30_c00339{left:159.776608pt;}
.x31_c00339{left:167.266795pt;}
.x32_c00339{left:174.717010pt;}
.x33_c00339{left:178.419115pt;}
.x34_c00339{left:182.468375pt;}
.x35_c00339{left:185.852506pt;}
.x36_c00339{left:188.150503pt;}
.x3_c00339{left:204.676373pt;}
.x2_c00339{left:206.574107pt;}
.x4_c00339{left:209.317987pt;}
.x5_c00339{left:213.616993pt;}
.x6_c00339{left:218.376513pt;}
.x7_c00339{left:220.819105pt;}
.x8_c00339{left:223.490334pt;}
.x9_c00339{left:226.905704pt;}
.xa_c00339{left:229.825509pt;}
.xb_c00339{left:233.767373pt;}
.xc_c00339{left:241.423300pt;}
.xd_c00339{left:251.942027pt;}
.xe_c00339{left:258.549026pt;}
.xf_c00339{left:261.564741pt;}
.x3b_c00339{left:262.612255pt;}
.x10_c00339{left:266.308178pt;}
.x11_c00339{left:269.319244pt;}
.x12_c00339{left:272.883167pt;}
.x13_c00339{left:289.225349pt;}
.x14_c00339{left:290.306761pt;}
.x15_c00339{left:291.569114pt;}
.x16_c00339{left:294.587062pt;}
.x17_c00339{left:297.451603pt;}
.x18_c00339{left:302.677178pt;}
.x19_c00339{left:308.173457pt;}
.x1a_c00339{left:313.230862pt;}
.x1b_c00339{left:316.260173pt;}
.x1c_c00339{left:323.284548pt;}
.x1d_c00339{left:330.381558pt;}
.x1e_c00339{left:336.386614pt;}
.x1f_c00339{left:339.069625pt;}
.x20_c00339{left:341.738474pt;}
.x21_c00339{left:344.757080pt;}
.x22_c00339{left:347.081977pt;}
.x23_c00339{left:350.026488pt;}
.x24_c00339{left:354.624063pt;}
.x25_c00339{left:357.115628pt;}
.x3e_c00339{left:401.765180pt;}
.x1_c00339{left:413.420124pt;}
.x39_c00339{left:601.310535pt;}
.x38_c00339{left:619.470933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.006348;font-style:normal;font-weight:normal;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_0164bbf15eacca16f8a320f1.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.171387;font-style:normal;font-weight:normal;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_7d699a0754f7501520265c09.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.005371;font-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_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);}
.v0_c00340{vertical-align:0.000000px;}
.ls0_c00340{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00340{word-spacing:-18.691966px;}
.ws1_c00340{word-spacing:-18.680283px;}
.ws2_c00340{word-spacing:0.000000px;}
._5_c00340{width:1.586917px;}
._7_c00340{width:2.734103px;}
._6_c00340{width:4.161262px;}
._1_c00340{width:5.179913px;}
._9_c00340{width:6.730946px;}
._4_c00340{width:8.116247px;}
._3_c00340{width:9.275713px;}
._b_c00340{width:10.549913px;}
._8_c00340{width:12.976579px;}
._d_c00340{width:14.082115px;}
._0_c00340{width:15.115167px;}
._2_c00340{width:22.632947px;}
._a_c00340{width:23.669514px;}
._e_c00340{width:26.158210px;}
._c_c00340{width:32.989279px;}
._f_c00340{width:43.840997px;}
.fc1_c00340{color:rgb(0,0,0);}
.fc0_c00340{color:rgb(198,111,25);}
.fs1_c00340{font-size:71.912067px;}
.fs0_c00340{font-size:71.957041px;}
.y0_c00340{bottom:0.000000px;}
.y1_c00340{bottom:0.000008px;}
.y26_c00340{bottom:30.156225px;}
.y25_c00340{bottom:65.389050px;}
.y24_c00340{bottom:95.745926px;}
.y23_c00340{bottom:126.102803px;}
.y22_c00340{bottom:156.459680px;}
.y21_c00340{bottom:186.816557px;}
.y20_c00340{bottom:217.173433px;}
.y1f_c00340{bottom:247.530310px;}
.y1e_c00340{bottom:278.912255px;}
.y1d_c00340{bottom:337.703373px;}
.y1c_c00340{bottom:368.060250px;}
.y1b_c00340{bottom:398.417127px;}
.y1a_c00340{bottom:428.774003px;}
.y19_c00340{bottom:459.130880px;}
.y18_c00340{bottom:489.487757px;}
.y17_c00340{bottom:519.844634px;}
.y16_c00340{bottom:550.201510px;}
.y15_c00340{bottom:580.558387px;}
.y14_c00340{bottom:610.915264px;}
.y13_c00340{bottom:641.272141px;}
.y12_c00340{bottom:671.629018px;}
.y11_c00340{bottom:701.985894px;}
.y10_c00340{bottom:732.342771px;}
.yf_c00340{bottom:762.699648px;}
.ye_c00340{bottom:793.056525px;}
.yd_c00340{bottom:823.413401px;}
.y3_c00340{bottom:861.842453px;}
.yc_c00340{bottom:920.662296px;}
.yb_c00340{bottom:951.019173px;}
.ya_c00340{bottom:981.376050px;}
.y9_c00340{bottom:1011.732927px;}
.y8_c00340{bottom:1042.089803px;}
.y7_c00340{bottom:1072.446680px;}
.y6_c00340{bottom:1102.803557px;}
.y5_c00340{bottom:1133.160434px;}
.y4_c00340{bottom:1163.517310px;}
.y2_c00340{bottom:1199.835078px;}
.h3_c00340{height:55.127245px;}
.h5_c00340{height:66.961090px;}
.h4_c00340{height:67.002968px;}
.h2_c00340{height:1304.999946px;}
.h0_c00340{height:1304.999953px;}
.h1_c00340{height:1305.000000px;}
.w2_c00340{width:934.874961px;}
.w0_c00340{width:934.875000px;}
.w1_c00340{width:935.250000px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:87.850202px;}
.x2_c00340{left:451.985828px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls0_c00340{letter-spacing:0.000000pt;}
.ws0_c00340{word-spacing:-16.615081pt;}
.ws1_c00340{word-spacing:-16.604696pt;}
.ws2_c00340{word-spacing:0.000000pt;}
._5_c00340{width:1.410593pt;}
._7_c00340{width:2.430313pt;}
._6_c00340{width:3.698899pt;}
._1_c00340{width:4.604367pt;}
._9_c00340{width:5.983063pt;}
._4_c00340{width:7.214442pt;}
._3_c00340{width:8.245078pt;}
._b_c00340{width:9.377701pt;}
._8_c00340{width:11.534737pt;}
._d_c00340{width:12.517436pt;}
._0_c00340{width:13.435704pt;}
._2_c00340{width:20.118175pt;}
._a_c00340{width:21.039568pt;}
._e_c00340{width:23.251742pt;}
._c_c00340{width:29.323803pt;}
._f_c00340{width:38.969775pt;}
.fs1_c00340{font-size:63.921837pt;}
.fs0_c00340{font-size:63.961814pt;}
.y0_c00340{bottom:0.000000pt;}
.y1_c00340{bottom:0.000007pt;}
.y26_c00340{bottom:26.805533pt;}
.y25_c00340{bottom:58.123600pt;}
.y24_c00340{bottom:85.107490pt;}
.y23_c00340{bottom:112.091381pt;}
.y22_c00340{bottom:139.075271pt;}
.y21_c00340{bottom:166.059161pt;}
.y20_c00340{bottom:193.043052pt;}
.y1f_c00340{bottom:220.026942pt;}
.y1e_c00340{bottom:247.922004pt;}
.y1d_c00340{bottom:300.180776pt;}
.y1c_c00340{bottom:327.164667pt;}
.y1b_c00340{bottom:354.148557pt;}
.y1a_c00340{bottom:381.132447pt;}
.y19_c00340{bottom:408.116338pt;}
.y18_c00340{bottom:435.100228pt;}
.y17_c00340{bottom:462.084119pt;}
.y16_c00340{bottom:489.068009pt;}
.y15_c00340{bottom:516.051900pt;}
.y14_c00340{bottom:543.035790pt;}
.y13_c00340{bottom:570.019681pt;}
.y12_c00340{bottom:597.003571pt;}
.y11_c00340{bottom:623.987462pt;}
.y10_c00340{bottom:650.971352pt;}
.yf_c00340{bottom:677.955243pt;}
.ye_c00340{bottom:704.939133pt;}
.yd_c00340{bottom:731.923023pt;}
.y3_c00340{bottom:766.082181pt;}
.yc_c00340{bottom:818.366486pt;}
.yb_c00340{bottom:845.350376pt;}
.ya_c00340{bottom:872.334267pt;}
.y9_c00340{bottom:899.318157pt;}
.y8_c00340{bottom:926.302047pt;}
.y7_c00340{bottom:953.285938pt;}
.y6_c00340{bottom:980.269828pt;}
.y5_c00340{bottom:1007.253719pt;}
.y4_c00340{bottom:1034.237609pt;}
.y2_c00340{bottom:1066.520069pt;}
.h3_c00340{height:49.001996pt;}
.h5_c00340{height:59.520969pt;}
.h4_c00340{height:59.558193pt;}
.h2_c00340{height:1159.999952pt;}
.h0_c00340{height:1159.999959pt;}
.h1_c00340{height:1160.000000pt;}
.w2_c00340{width:830.999965pt;}
.w0_c00340{width:831.000000pt;}
.w1_c00340{width:831.333333pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:78.089069pt;}
.x2_c00340{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ebdf86397a3fb4d4b68efd8.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:0.957031;font-style:normal;font-weight:normal;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_04c4f5ccc9cf25d5c4f0ec5f.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.006348;font-style:normal;font-weight:normal;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_af24c93efcc5d6409d693242.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:0.727051;font-style:normal;font-weight:normal;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_90e64c1a087bdf787665e583.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:0.965332;font-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_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);}
.v0_c00341{vertical-align:0.000000px;}
.ls0_c00341{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00341{word-spacing:-18.680283px;}
.ws0_c00341{word-spacing:-0.053968px;}
.ws2_c00341{word-spacing:0.000000px;}
._3_c00341{width:2.938748px;}
._1_c00341{width:4.184252px;}
._0_c00341{width:17.011854px;}
._2_c00341{width:22.901128px;}
.fc2_c00341{color:rgb(255,255,255);}
.fc1_c00341{color:rgb(0,0,0);}
.fc0_c00341{color:rgb(198,111,25);}
.fs1_c00341{font-size:53.967781px;}
.fs2_c00341{font-size:71.912067px;}
.fs0_c00341{font-size:71.957041px;}
.y0_c00341{bottom:0.000000px;}
.y1_c00341{bottom:0.000008px;}
.y9_c00341{bottom:30.156225px;}
.y8_c00341{bottom:55.025376px;}
.y7_c00341{bottom:1048.961458px;}
.y6_c00341{bottom:1079.318335px;}
.y5_c00341{bottom:1109.675211px;}
.y4_c00341{bottom:1140.032088px;}
.y3_c00341{bottom:1170.388965px;}
.y2_c00341{bottom:1204.084507px;}
.h5_c00341{height:39.131911px;}
.h3_c00341{height:51.578582px;}
.h6_c00341{height:55.092790px;}
.h4_c00341{height:55.127245px;}
.h2_c00341{height:1304.999946px;}
.h0_c00341{height:1304.999953px;}
.h1_c00341{height:1305.000000px;}
.w2_c00341{width:934.874961px;}
.w0_c00341{width:934.875000px;}
.w1_c00341{width:935.250000px;}
.x0_c00341{left:0.000000px;}
.x1_c00341{left:87.850202px;}
.x2_c00341{left:451.985828px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls0_c00341{letter-spacing:0.000000pt;}
.ws1_c00341{word-spacing:-16.604696pt;}
.ws0_c00341{word-spacing:-0.047971pt;}
.ws2_c00341{word-spacing:0.000000pt;}
._3_c00341{width:2.612220pt;}
._1_c00341{width:3.719335pt;}
._0_c00341{width:15.121648pt;}
._2_c00341{width:20.356558pt;}
.fs1_c00341{font-size:47.971361pt;}
.fs2_c00341{font-size:63.921837pt;}
.fs0_c00341{font-size:63.961814pt;}
.y0_c00341{bottom:0.000000pt;}
.y1_c00341{bottom:0.000007pt;}
.y9_c00341{bottom:26.805533pt;}
.y8_c00341{bottom:48.911445pt;}
.y7_c00341{bottom:932.410185pt;}
.y6_c00341{bottom:959.394075pt;}
.y5_c00341{bottom:986.377966pt;}
.y4_c00341{bottom:1013.361856pt;}
.y3_c00341{bottom:1040.345747pt;}
.y2_c00341{bottom:1070.297339pt;}
.h5_c00341{height:34.783921pt;}
.h3_c00341{height:45.847629pt;}
.h6_c00341{height:48.971369pt;}
.h4_c00341{height:49.001996pt;}
.h2_c00341{height:1159.999952pt;}
.h0_c00341{height:1159.999959pt;}
.h1_c00341{height:1160.000000pt;}
.w2_c00341{width:830.999965pt;}
.w0_c00341{width:831.000000pt;}
.w1_c00341{width:831.333333pt;}
.x0_c00341{left:0.000000pt;}
.x1_c00341{left:78.089069pt;}
.x2_c00341{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50faec689f85deca4cf0d711.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:0.734863;font-style:normal;font-weight: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_c00342;src:url('chunks/assets/font_95884b782c71a8dd40b5972d.woff2')format("woff");}.ff5_c00342{font-family:ff5_c00342;line-height:1.171387;font-style:normal;font-weight: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_c00342;src:url('chunks/assets/font_f63dc5520dbd4f8ff6eaf0d3.woff2')format("woff");}.ff6_c00342{font-family:ff6_c00342;line-height:1.000000;font-style:normal;font-weight: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_c00342;src:url('chunks/assets/font_7800f617606f7656592f6ffb.woff2')format("woff");}.ff7_c00342{font-family:ff7_c00342;line-height:1.006348;font-style:normal;font-weight: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_c00342;src:url('chunks/assets/font_9ea164314d7f3a9bb8e3124f.woff2')format("woff");}.ff8_c00342{font-family:ff8_c00342;line-height:0.769531;font-style:normal;font-weight: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_c00342;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00342{font-family:ff9_c00342;line-height:0.940000;font-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_c00342{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00342{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00342{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00342{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00342{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00342{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00342{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00342{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00342{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00342{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00342{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00342{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00342{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00342{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00342{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00342{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00342{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00342{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00342{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00342{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00342{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00342{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00342{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00342{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00342{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00342{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00342{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00342{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00342{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00342{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00342{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00342{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00342{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00342{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00342{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00342{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00342{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00342{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00342{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00342{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00342{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00342{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00342{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00342{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00342{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00342{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00342{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00342{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00342{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00342{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00342{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00342{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00342{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00342{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00342{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00342{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00342{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00342{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00342{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00342{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00342{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00342{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00342{vertical-align:0.000000px;}
.v1_c00342{vertical-align:2.773440px;}
.ls0_c00342{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00342{word-spacing:-41.664701px;}
.ws3_c00342{word-spacing:-18.680283px;}
.ws2_c00342{word-spacing:-0.059949px;}
.ws5_c00342{word-spacing:0.000000px;}
.ws1_c00342{word-spacing:281.470806px;}
.ws0_c00342{word-spacing:281.744147px;}
._1_c00342{width:4.120366px;}
._5_c00342{width:5.504018px;}
._4_c00342{width:14.098782px;}
._2_c00342{width:19.716721px;}
._0_c00342{width:22.563845px;}
._6_c00342{width:26.907168px;}
._3_c00342{width:30.089802px;}
.fc3_c00342{color:rgb(198,111,25);}
.fc2_c00342{color:rgb(9,71,81);}
.fc1_c00342{color:rgb(255,255,255);}
.fc0_c00342{color:rgb(0,0,0);}
.fsb_c00342{font-size:41.974772px;}
.fs9_c00342{font-size:41.975069px;}
.fs2_c00342{font-size:47.339969px;}
.fs5_c00342{font-size:47.339970px;}
.fs1_c00342{font-size:47.339972px;}
.fs4_c00342{font-size:47.339973px;}
.fs3_c00342{font-size:47.339974px;}
.fs6_c00342{font-size:47.339975px;}
.fs8_c00342{font-size:51.630774px;}
.fsc_c00342{font-size:59.949210px;}
.fsd_c00342{font-size:71.912067px;}
.fs0_c00342{font-size:71.957041px;}
.fs7_c00342{font-size:76.965540px;}
.fsa_c00342{font-size:89.946302px;}
.y0_c00342{bottom:0.000000px;}
.y1_c00342{bottom:0.000008px;}
.y55_c00342{bottom:30.156225px;}
.y51_c00342{bottom:80.563567px;}
.y50_c00342{bottom:110.920444px;}
.y4f_c00342{bottom:141.277320px;}
.y4e_c00342{bottom:171.634197px;}
.y4d_c00342{bottom:201.991074px;}
.y4c_c00342{bottom:232.347951px;}
.y4b_c00342{bottom:262.704828px;}
.y4a_c00342{bottom:293.061704px;}
.y47_c00342{bottom:329.489984px;}
.y43_c00342{bottom:402.064151px;}
.y10_c00342{bottom:493.812629px;}
.y38_c00342{bottom:493.827623px;}
.yf_c00342{bottom:494.337609px;}
.y39_c00342{bottom:494.357158px;}
.y22_c00342{bottom:494.700737px;}
.y37_c00342{bottom:495.071586px;}
.ye_c00342{bottom:495.403002px;}
.y23_c00342{bottom:495.533530px;}
.y21_c00342{bottom:495.553663px;}
.y36_c00342{bottom:496.322201px;}
.yd_c00342{bottom:496.475623px;}
.y20_c00342{bottom:496.587915px;}
.y3a_c00342{bottom:496.772260px;}
.y11_c00342{bottom:496.835884px;}
.y24_c00342{bottom:497.713596px;}
.y35_c00342{bottom:497.966053px;}
.yc_c00342{bottom:498.126234px;}
.y1f_c00342{bottom:498.789265px;}
.y25_c00342{bottom:499.103521px;}
.y34_c00342{bottom:499.653306px;}
.yb_c00342{bottom:499.818769px;}
.y26_c00342{bottom:500.800864px;}
.y12_c00342{bottom:501.110605px;}
.y33_c00342{bottom:501.517382px;}
.ya_c00342{bottom:501.687706px;}
.y3b_c00342{bottom:501.869915px;}
.y1e_c00342{bottom:502.578702px;}
.y27_c00342{bottom:503.241722px;}
.y13_c00342{bottom:503.627848px;}
.y3c_c00342{bottom:505.496019px;}
.y28_c00342{bottom:505.499367px;}
.y32_c00342{bottom:506.168989px;}
.y9_c00342{bottom:506.348634px;}
.y1d_c00342{bottom:508.044213px;}
.y29_c00342{bottom:508.766327px;}
.y14_c00342{bottom:509.576794px;}
.y3d_c00342{bottom:511.126534px;}
.y1c_c00342{bottom:512.508085px;}
.y31_c00342{bottom:512.566592px;}
.y8_c00342{bottom:512.754669px;}
.y15_c00342{bottom:514.322677px;}
.y2a_c00342{bottom:517.158603px;}
.y3e_c00342{bottom:517.780195px;}
.y1b_c00342{bottom:518.929057px;}
.y30_c00342{bottom:519.869222px;}
.y7_c00342{bottom:519.959421px;}
.y6_c00342{bottom:523.416158px;}
.y1a_c00342{bottom:523.496236px;}
.y2b_c00342{bottom:525.202812px;}
.y16_c00342{bottom:526.099549px;}
.y2f_c00342{bottom:527.026630px;}
.y5_c00342{bottom:529.422883px;}
.y3f_c00342{bottom:529.736175px;}
.y19_c00342{bottom:531.263725px;}
.y2e_c00342{bottom:531.792993px;}
.y41_c00342{bottom:533.728456px;}
.y18_c00342{bottom:535.155114px;}
.y4_c00342{bottom:536.678099px;}
.y2d_c00342{bottom:537.961701px;}
.y17_c00342{bottom:538.332892px;}
.y40_c00342{bottom:538.696314px;}
.y48_c00342{bottom:539.306780px;}
.y2c_c00342{bottom:545.020884px;}
.y3_c00342{bottom:546.207017px;}
.y49_c00342{bottom:576.746779px;}
.y42_c00342{bottom:596.435373px;}
.y2_c00342{bottom:597.559761px;}
.y54_c00342{bottom:638.470702px;}
.y56_c00342{bottom:1024.443964px;}
.y45_c00342{bottom:1127.585799px;}
.y53_c00342{bottom:1129.718199px;}
.y52_c00342{bottom:1147.707459px;}
.y46_c00342{bottom:1150.991694px;}
.y44_c00342{bottom:1170.658440px;}
.hf_c00342{height:32.157430px;}
.h8_c00342{height:35.967282px;}
.h7_c00342{height:35.967283px;}
.h9_c00342{height:35.967285px;}
.h5_c00342{height:36.267779px;}
.h4_c00342{height:36.267781px;}
.h6_c00342{height:36.267783px;}
.hb_c00342{height:37.437353px;}
.hc_c00342{height:39.085184px;}
.h13_c00342{height:45.561399px;}
.h12_c00342{height:55.092790px;}
.h3_c00342{height:55.127245px;}
.h11_c00342{height:55.821847px;}
.ha_c00342{height:59.035250px;}
.hd_c00342{height:67.002968px;}
.h10_c00342{height:68.338108px;}
.he_c00342{height:83.753709px;}
.h2_c00342{height:1304.999946px;}
.h0_c00342{height:1304.999953px;}
.h1_c00342{height:1305.000000px;}
.w2_c00342{width:934.874961px;}
.w0_c00342{width:934.875000px;}
.w1_c00342{width:935.250000px;}
.x0_c00342{left:0.000000px;}
.x3b_c00342{left:87.850202px;}
.x3d_c00342{left:89.434062px;}
.x3e_c00342{left:107.403263px;}
.x39_c00342{left:109.695383px;}
.x41_c00342{left:131.272077px;}
.x27_c00342{left:134.894322px;}
.x26_c00342{left:136.566734px;}
.x28_c00342{left:139.937719px;}
.x29_c00342{left:144.785273px;}
.x2a_c00342{left:150.147890px;}
.x2b_c00342{left:152.899057px;}
.x2c_c00342{left:155.907145px;}
.x2d_c00342{left:159.752336px;}
.x37_c00342{left:161.347648px;}
.x2e_c00342{left:163.203941px;}
.x2f_c00342{left:171.483965px;}
.x30_c00342{left:179.748684px;}
.x31_c00342{left:188.175145px;}
.x32_c00342{left:196.556636px;}
.x33_c00342{left:200.721504px;}
.x34_c00342{left:205.276922px;}
.x35_c00342{left:209.084069px;}
.x36_c00342{left:211.669316px;}
.x3_c00342{left:230.260919px;}
.x2_c00342{left:232.395871px;}
.x4_c00342{left:235.482735px;}
.x5_c00342{left:240.319117px;}
.x6_c00342{left:245.673577px;}
.x7_c00342{left:248.421493px;}
.x8_c00342{left:251.426626px;}
.x9_c00342{left:255.268917px;}
.xa_c00342{left:258.553698px;}
.xb_c00342{left:262.988294px;}
.xc_c00342{left:271.601212px;}
.xd_c00342{left:283.434780px;}
.xe_c00342{left:290.867654px;}
.xf_c00342{left:294.260334px;}
.x3a_c00342{left:295.438786px;}
.x10_c00342{left:299.596701px;}
.x11_c00342{left:302.984150px;}
.x12_c00342{left:306.993562px;}
.x13_c00342{left:325.378518px;}
.x14_c00342{left:326.595106px;}
.x15_c00342{left:328.015253px;}
.x16_c00342{left:331.410444px;}
.x17_c00342{left:334.633053px;}
.x18_c00342{left:340.511825px;}
.x19_c00342{left:346.695139px;}
.x1a_c00342{left:352.384720px;}
.x1b_c00342{left:355.792694px;}
.x1c_c00342{left:363.695116px;}
.x1d_c00342{left:371.679253px;}
.x1e_c00342{left:378.434940px;}
.x1f_c00342{left:381.453328px;}
.x20_c00342{left:384.455783px;}
.x21_c00342{left:387.851715px;}
.x22_c00342{left:390.467224px;}
.x23_c00342{left:393.779799px;}
.x24_c00342{left:398.952070px;}
.x25_c00342{left:401.755082px;}
.x40_c00342{left:451.985828px;}
.x1_c00342{left:465.097640px;}
.x3f_c00342{left:661.177232px;}
.x38_c00342{left:696.904800px;}
.x3c_c00342{left:733.103068px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.v1_c00342{vertical-align:2.465280pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ws4_c00342{word-spacing:-37.035289pt;}
.ws3_c00342{word-spacing:-16.604696pt;}
.ws2_c00342{word-spacing:-0.053288pt;}
.ws5_c00342{word-spacing:0.000000pt;}
.ws1_c00342{word-spacing:250.196272pt;}
.ws0_c00342{word-spacing:250.439242pt;}
._1_c00342{width:3.662548pt;}
._5_c00342{width:4.892460pt;}
._4_c00342{width:12.532251pt;}
._2_c00342{width:17.525974pt;}
._0_c00342{width:20.056751pt;}
._6_c00342{width:23.917483pt;}
._3_c00342{width:26.746491pt;}
.fsb_c00342{font-size:37.310908pt;}
.fs9_c00342{font-size:37.311173pt;}
.fs2_c00342{font-size:42.079973pt;}
.fs5_c00342{font-size:42.079974pt;}
.fs1_c00342{font-size:42.079975pt;}
.fs4_c00342{font-size:42.079976pt;}
.fs3_c00342{font-size:42.079977pt;}
.fs6_c00342{font-size:42.079978pt;}
.fs8_c00342{font-size:45.894021pt;}
.fsc_c00342{font-size:53.288186pt;}
.fsd_c00342{font-size:63.921837pt;}
.fs0_c00342{font-size:63.961814pt;}
.fs7_c00342{font-size:68.413814pt;}
.fsa_c00342{font-size:79.952268pt;}
.y0_c00342{bottom:0.000000pt;}
.y1_c00342{bottom:0.000007pt;}
.y55_c00342{bottom:26.805533pt;}
.y51_c00342{bottom:71.612059pt;}
.y50_c00342{bottom:98.595950pt;}
.y4f_c00342{bottom:125.579840pt;}
.y4e_c00342{bottom:152.563731pt;}
.y4d_c00342{bottom:179.547621pt;}
.y4c_c00342{bottom:206.531512pt;}
.y4b_c00342{bottom:233.515402pt;}
.y4a_c00342{bottom:260.499293pt;}
.y47_c00342{bottom:292.879986pt;}
.y43_c00342{bottom:357.390356pt;}
.y10_c00342{bottom:438.944560pt;}
.y38_c00342{bottom:438.957887pt;}
.yf_c00342{bottom:439.411208pt;}
.y39_c00342{bottom:439.428585pt;}
.y22_c00342{bottom:439.733989pt;}
.y37_c00342{bottom:440.063632pt;}
.ye_c00342{bottom:440.358224pt;}
.y23_c00342{bottom:440.474249pt;}
.y21_c00342{bottom:440.492144pt;}
.y36_c00342{bottom:441.175290pt;}
.yd_c00342{bottom:441.311665pt;}
.y20_c00342{bottom:441.411480pt;}
.y3a_c00342{bottom:441.575343pt;}
.y11_c00342{bottom:441.631897pt;}
.y24_c00342{bottom:442.412085pt;}
.y35_c00342{bottom:442.636491pt;}
.yc_c00342{bottom:442.778875pt;}
.y1f_c00342{bottom:443.368235pt;}
.y25_c00342{bottom:443.647574pt;}
.y34_c00342{bottom:444.136272pt;}
.yb_c00342{bottom:444.283350pt;}
.y26_c00342{bottom:445.156323pt;}
.y12_c00342{bottom:445.431649pt;}
.y33_c00342{bottom:445.793228pt;}
.ya_c00342{bottom:445.944627pt;}
.y3b_c00342{bottom:446.106592pt;}
.y1e_c00342{bottom:446.736624pt;}
.y27_c00342{bottom:447.325975pt;}
.y13_c00342{bottom:447.669198pt;}
.y3c_c00342{bottom:449.329795pt;}
.y28_c00342{bottom:449.332771pt;}
.y32_c00342{bottom:449.927990pt;}
.y9_c00342{bottom:450.087675pt;}
.y1d_c00342{bottom:451.594856pt;}
.y29_c00342{bottom:452.236735pt;}
.y14_c00342{bottom:452.957150pt;}
.y3d_c00342{bottom:454.334697pt;}
.y1c_c00342{bottom:455.562742pt;}
.y31_c00342{bottom:455.614749pt;}
.y8_c00342{bottom:455.781928pt;}
.y15_c00342{bottom:457.175713pt;}
.y2a_c00342{bottom:459.696536pt;}
.y3e_c00342{bottom:460.249062pt;}
.y1b_c00342{bottom:461.270273pt;}
.y30_c00342{bottom:462.105976pt;}
.y7_c00342{bottom:462.186152pt;}
.y6_c00342{bottom:465.258807pt;}
.y1a_c00342{bottom:465.329988pt;}
.y2b_c00342{bottom:466.846944pt;}
.y16_c00342{bottom:467.644044pt;}
.y2f_c00342{bottom:468.468115pt;}
.y5_c00342{bottom:470.598118pt;}
.y3f_c00342{bottom:470.876600pt;}
.y19_c00342{bottom:472.234422pt;}
.y2e_c00342{bottom:472.704883pt;}
.y41_c00342{bottom:474.425294pt;}
.y18_c00342{bottom:475.693435pt;}
.y4_c00342{bottom:477.047199pt;}
.y2d_c00342{bottom:478.188178pt;}
.y17_c00342{bottom:478.518126pt;}
.y40_c00342{bottom:478.841168pt;}
.y48_c00342{bottom:479.383805pt;}
.y2c_c00342{bottom:484.463008pt;}
.y3_c00342{bottom:485.517349pt;}
.y49_c00342{bottom:512.663803pt;}
.y42_c00342{bottom:530.164776pt;}
.y2_c00342{bottom:531.164232pt;}
.y54_c00342{bottom:567.529513pt;}
.y56_c00342{bottom:910.616857pt;}
.y45_c00342{bottom:1002.298488pt;}
.y53_c00342{bottom:1004.193955pt;}
.y52_c00342{bottom:1020.184408pt;}
.y46_c00342{bottom:1023.103728pt;}
.y44_c00342{bottom:1040.585280pt;}
.hf_c00342{height:28.584382pt;}
.h8_c00342{height:31.970917pt;}
.h7_c00342{height:31.970918pt;}
.h9_c00342{height:31.970920pt;}
.h5_c00342{height:32.238026pt;}
.h4_c00342{height:32.238028pt;}
.h6_c00342{height:32.238029pt;}
.hb_c00342{height:33.277647pt;}
.hc_c00342{height:34.742386pt;}
.h13_c00342{height:40.499022pt;}
.h12_c00342{height:48.971369pt;}
.h3_c00342{height:49.001996pt;}
.h11_c00342{height:49.619420pt;}
.ha_c00342{height:52.475778pt;}
.hd_c00342{height:59.558193pt;}
.h10_c00342{height:60.744985pt;}
.he_c00342{height:74.447742pt;}
.h2_c00342{height:1159.999952pt;}
.h0_c00342{height:1159.999959pt;}
.h1_c00342{height:1160.000000pt;}
.w2_c00342{width:830.999965pt;}
.w0_c00342{width:831.000000pt;}
.w1_c00342{width:831.333333pt;}
.x0_c00342{left:0.000000pt;}
.x3b_c00342{left:78.089069pt;}
.x3d_c00342{left:79.496944pt;}
.x3e_c00342{left:95.469567pt;}
.x39_c00342{left:97.507007pt;}
.x41_c00342{left:116.686291pt;}
.x27_c00342{left:119.906064pt;}
.x26_c00342{left:121.392652pt;}
.x28_c00342{left:124.389083pt;}
.x29_c00342{left:128.698021pt;}
.x2a_c00342{left:133.464791pt;}
.x2b_c00342{left:135.910272pt;}
.x2c_c00342{left:138.584129pt;}
.x2d_c00342{left:142.002076pt;}
.x37_c00342{left:143.420132pt;}
.x2e_c00342{left:145.070170pt;}
.x2f_c00342{left:152.430191pt;}
.x30_c00342{left:159.776608pt;}
.x31_c00342{left:167.266795pt;}
.x32_c00342{left:174.717010pt;}
.x33_c00342{left:178.419115pt;}
.x34_c00342{left:182.468375pt;}
.x35_c00342{left:185.852506pt;}
.x36_c00342{left:188.150503pt;}
.x3_c00342{left:204.676373pt;}
.x2_c00342{left:206.574107pt;}
.x4_c00342{left:209.317987pt;}
.x5_c00342{left:213.616993pt;}
.x6_c00342{left:218.376513pt;}
.x7_c00342{left:220.819105pt;}
.x8_c00342{left:223.490334pt;}
.x9_c00342{left:226.905704pt;}
.xa_c00342{left:229.825509pt;}
.xb_c00342{left:233.767373pt;}
.xc_c00342{left:241.423300pt;}
.xd_c00342{left:251.942027pt;}
.xe_c00342{left:258.549026pt;}
.xf_c00342{left:261.564741pt;}
.x3a_c00342{left:262.612255pt;}
.x10_c00342{left:266.308178pt;}
.x11_c00342{left:269.319244pt;}
.x12_c00342{left:272.883167pt;}
.x13_c00342{left:289.225349pt;}
.x14_c00342{left:290.306761pt;}
.x15_c00342{left:291.569114pt;}
.x16_c00342{left:294.587062pt;}
.x17_c00342{left:297.451603pt;}
.x18_c00342{left:302.677178pt;}
.x19_c00342{left:308.173457pt;}
.x1a_c00342{left:313.230862pt;}
.x1b_c00342{left:316.260173pt;}
.x1c_c00342{left:323.284548pt;}
.x1d_c00342{left:330.381558pt;}
.x1e_c00342{left:336.386614pt;}
.x1f_c00342{left:339.069625pt;}
.x20_c00342{left:341.738474pt;}
.x21_c00342{left:344.757080pt;}
.x22_c00342{left:347.081977pt;}
.x23_c00342{left:350.026488pt;}
.x24_c00342{left:354.624063pt;}
.x25_c00342{left:357.115628pt;}
.x40_c00342{left:401.765180pt;}
.x1_c00342{left:413.420124pt;}
.x3f_c00342{left:587.713096pt;}
.x38_c00342{left:619.470933pt;}
.x3c_c00342{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3efe7878c8b23f146b9b5e2.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.171387;font-style:normal;font-weight:normal;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_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.006348;font-style:normal;font-weight:normal;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_d1b9e7c325e0fe02286b93a5.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.000000;font-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_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;}
.ls0_c00343{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00343{word-spacing:-18.680283px;}
.ws1_c00343{word-spacing:0.000000px;}
._4_c00343{width:1.699255px;}
._c_c00343{width:2.713515px;}
._b_c00343{width:5.737758px;}
._0_c00343{width:7.343272px;}
._5_c00343{width:8.826982px;}
._8_c00343{width:10.013552px;}
._2_c00343{width:11.705054px;}
._3_c00343{width:13.005059px;}
._7_c00343{width:14.732655px;}
._1_c00343{width:16.275731px;}
._f_c00343{width:17.586293px;}
._10_c00343{width:19.991969px;}
._9_c00343{width:22.918974px;}
._d_c00343{width:23.997394px;}
._6_c00343{width:26.864417px;}
._a_c00343{width:30.883904px;}
._e_c00343{width:56.380378px;}
.fc1_c00343{color:rgb(198,111,25);}
.fc0_c00343{color:rgb(0,0,0);}
.fs1_c00343{font-size:71.912067px;}
.fs0_c00343{font-size:71.957041px;}
.y0_c00343{bottom:0.000000px;}
.y1_c00343{bottom:0.000008px;}
.y25_c00343{bottom:30.156225px;}
.y23_c00343{bottom:68.282458px;}
.y22_c00343{bottom:98.639334px;}
.y21_c00343{bottom:128.996211px;}
.y24_c00343{bottom:163.811583px;}
.y20_c00343{bottom:227.539477px;}
.y1f_c00343{bottom:257.896353px;}
.y1e_c00343{bottom:288.253230px;}
.y1d_c00343{bottom:318.610107px;}
.y1c_c00343{bottom:348.966984px;}
.y1b_c00343{bottom:379.323860px;}
.y1a_c00343{bottom:409.680737px;}
.y19_c00343{bottom:440.037614px;}
.y18_c00343{bottom:470.394491px;}
.y17_c00343{bottom:500.751368px;}
.y16_c00343{bottom:531.108244px;}
.y15_c00343{bottom:561.465121px;}
.y14_c00343{bottom:591.821998px;}
.y13_c00343{bottom:622.178875px;}
.y8_c00343{bottom:659.235643px;}
.y12_c00343{bottom:718.150489px;}
.y11_c00343{bottom:748.507366px;}
.y10_c00343{bottom:778.864243px;}
.yf_c00343{bottom:809.221119px;}
.ye_c00343{bottom:839.577996px;}
.yd_c00343{bottom:869.934873px;}
.yc_c00343{bottom:900.291750px;}
.yb_c00343{bottom:930.648626px;}
.ya_c00343{bottom:961.005503px;}
.y9_c00343{bottom:991.362380px;}
.y7_c00343{bottom:1024.279371px;}
.y6_c00343{bottom:1078.857304px;}
.y5_c00343{bottom:1109.214181px;}
.y4_c00343{bottom:1139.571057px;}
.y3_c00343{bottom:1169.927934px;}
.y2_c00343{bottom:1200.284811px;}
.h4_c00343{height:55.127245px;}
.h5_c00343{height:66.961090px;}
.h3_c00343{height:67.002968px;}
.h2_c00343{height:1304.999946px;}
.h0_c00343{height:1304.999953px;}
.h1_c00343{height:1305.000000px;}
.w2_c00343{width:934.874961px;}
.w0_c00343{width:934.875000px;}
.w1_c00343{width:935.250000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:87.850202px;}
.x2_c00343{left:93.487496px;}
.x3_c00343{left:451.985828px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ws0_c00343{word-spacing:-16.604696pt;}
.ws1_c00343{word-spacing:0.000000pt;}
._4_c00343{width:1.510449pt;}
._c_c00343{width:2.412013pt;}
._b_c00343{width:5.100229pt;}
._0_c00343{width:6.527353pt;}
._5_c00343{width:7.846206pt;}
._8_c00343{width:8.900935pt;}
._2_c00343{width:10.404493pt;}
._3_c00343{width:11.560052pt;}
._7_c00343{width:13.095693pt;}
._1_c00343{width:14.467316pt;}
._f_c00343{width:15.632260pt;}
._10_c00343{width:17.770639pt;}
._9_c00343{width:20.372421pt;}
._d_c00343{width:21.331016pt;}
._6_c00343{width:23.879481pt;}
._a_c00343{width:27.452359pt;}
._e_c00343{width:50.115892pt;}
.fs1_c00343{font-size:63.921837pt;}
.fs0_c00343{font-size:63.961814pt;}
.y0_c00343{bottom:0.000000pt;}
.y1_c00343{bottom:0.000007pt;}
.y25_c00343{bottom:26.805533pt;}
.y23_c00343{bottom:60.695518pt;}
.y22_c00343{bottom:87.679408pt;}
.y21_c00343{bottom:114.663299pt;}
.y24_c00343{bottom:145.610296pt;}
.y20_c00343{bottom:202.257313pt;}
.y1f_c00343{bottom:229.241203pt;}
.y1e_c00343{bottom:256.225093pt;}
.y1d_c00343{bottom:283.208984pt;}
.y1c_c00343{bottom:310.192874pt;}
.y1b_c00343{bottom:337.176765pt;}
.y1a_c00343{bottom:364.160655pt;}
.y19_c00343{bottom:391.144546pt;}
.y18_c00343{bottom:418.128436pt;}
.y17_c00343{bottom:445.112327pt;}
.y16_c00343{bottom:472.096217pt;}
.y15_c00343{bottom:499.080108pt;}
.y14_c00343{bottom:526.063998pt;}
.y13_c00343{bottom:553.047889pt;}
.y8_c00343{bottom:585.987238pt;}
.y12_c00343{bottom:638.355990pt;}
.y11_c00343{bottom:665.339881pt;}
.y10_c00343{bottom:692.323771pt;}
.yf_c00343{bottom:719.307662pt;}
.ye_c00343{bottom:746.291552pt;}
.yd_c00343{bottom:773.275443pt;}
.yc_c00343{bottom:800.259333pt;}
.yb_c00343{bottom:827.243224pt;}
.ya_c00343{bottom:854.227114pt;}
.y9_c00343{bottom:881.211004pt;}
.y7_c00343{bottom:910.470552pt;}
.y6_c00343{bottom:958.984270pt;}
.y5_c00343{bottom:985.968161pt;}
.y4_c00343{bottom:1012.952051pt;}
.y3_c00343{bottom:1039.935941pt;}
.y2_c00343{bottom:1066.919832pt;}
.h4_c00343{height:49.001996pt;}
.h5_c00343{height:59.520969pt;}
.h3_c00343{height:59.558193pt;}
.h2_c00343{height:1159.999952pt;}
.h0_c00343{height:1159.999959pt;}
.h1_c00343{height:1160.000000pt;}
.w2_c00343{width:830.999965pt;}
.w0_c00343{width:831.000000pt;}
.w1_c00343{width:831.333333pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:78.089069pt;}
.x2_c00343{left:83.099997pt;}
.x3_c00343{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ebdf86397a3fb4d4b68efd8.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:0.957031;font-style:normal;font-weight:normal;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_b9905c1be288f8c33e5017af.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.006348;font-style:normal;font-weight:normal;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_af24c93efcc5d6409d693242.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:0.727051;font-style:normal;font-weight:normal;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_ceef49924abd245a55ed610b.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:0.862793;font-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_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;}
.ls0_c00344{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00344{word-spacing:-18.680283px;}
.ws0_c00344{word-spacing:-0.053968px;}
.ws2_c00344{word-spacing:0.000000px;}
._1_c00344{width:10.952736px;}
._0_c00344{width:12.841943px;}
.fc2_c00344{color:rgb(255,255,255);}
.fc1_c00344{color:rgb(0,0,0);}
.fc0_c00344{color:rgb(198,111,25);}
.fs1_c00344{font-size:53.967781px;}
.fs2_c00344{font-size:71.912067px;}
.fs0_c00344{font-size:71.957041px;}
.y0_c00344{bottom:0.000000px;}
.y1_c00344{bottom:0.000008px;}
.y7_c00344{bottom:30.156225px;}
.y6_c00344{bottom:55.025376px;}
.y5_c00344{bottom:1091.280307px;}
.y4_c00344{bottom:1121.637183px;}
.y3_c00344{bottom:1151.994060px;}
.y2_c00344{bottom:1187.297985px;}
.h5_c00344{height:39.606238px;}
.h3_c00344{height:51.578582px;}
.h6_c00344{height:55.092790px;}
.h4_c00344{height:55.127245px;}
.h2_c00344{height:1304.999946px;}
.h0_c00344{height:1304.999953px;}
.h1_c00344{height:1305.000000px;}
.w2_c00344{width:934.874961px;}
.w0_c00344{width:934.875000px;}
.w1_c00344{width:935.250000px;}
.x0_c00344{left:0.000000px;}
.x2_c00344{left:87.850202px;}
.x1_c00344{left:93.487496px;}
.x3_c00344{left:451.985828px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws1_c00344{word-spacing:-16.604696pt;}
.ws0_c00344{word-spacing:-0.047971pt;}
.ws2_c00344{word-spacing:0.000000pt;}
._1_c00344{width:9.735765pt;}
._0_c00344{width:11.415061pt;}
.fs1_c00344{font-size:47.971361pt;}
.fs2_c00344{font-size:63.921837pt;}
.fs0_c00344{font-size:63.961814pt;}
.y0_c00344{bottom:0.000000pt;}
.y1_c00344{bottom:0.000007pt;}
.y7_c00344{bottom:26.805533pt;}
.y6_c00344{bottom:48.911445pt;}
.y5_c00344{bottom:970.026939pt;}
.y4_c00344{bottom:997.010830pt;}
.y3_c00344{bottom:1023.994720pt;}
.y2_c00344{bottom:1055.375986pt;}
.h5_c00344{height:35.205545pt;}
.h3_c00344{height:45.847629pt;}
.h6_c00344{height:48.971369pt;}
.h4_c00344{height:49.001996pt;}
.h2_c00344{height:1159.999952pt;}
.h0_c00344{height:1159.999959pt;}
.h1_c00344{height:1160.000000pt;}
.w2_c00344{width:830.999965pt;}
.w0_c00344{width:831.000000pt;}
.w1_c00344{width:831.333333pt;}
.x0_c00344{left:0.000000pt;}
.x2_c00344{left:78.089069pt;}
.x1_c00344{left:83.099997pt;}
.x3_c00344{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5da66f0e36af05b5930d529d.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:0.734863;font-style:normal;font-weight: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_c00345;src:url('chunks/assets/font_b366cdc561621e233b708bdb.woff2')format("woff");}.ff5_c00345{font-family:ff5_c00345;line-height:1.171387;font-style:normal;font-weight: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_c00345;src:url('chunks/assets/font_143e2275ee774b506e21cd23.woff2')format("woff");}.ff6_c00345{font-family:ff6_c00345;line-height:0.769531;font-style:normal;font-weight: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_c00345;src:url('chunks/assets/font_7800f617606f7656592f6ffb.woff2')format("woff");}.ff7_c00345{font-family:ff7_c00345;line-height:1.006348;font-style:normal;font-weight: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_c00345;src:url('chunks/assets/font_9ea164314d7f3a9bb8e3124f.woff2')format("woff");}.ff8_c00345{font-family:ff8_c00345;line-height:0.769531;font-style:normal;font-weight: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_c00345;src:url('chunks/assets/font_58a93de6c2c0f58e8604101c.woff2')format("woff");}.ff9_c00345{font-family:ff9_c00345;line-height:0.894000;font-style:normal;font-weight: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_c00345;src:url('chunks/assets/font_6e2905414da2f4c29a41e484.woff2')format("woff");}.ffa_c00345{font-family:ffa_c00345;line-height:1.119000;font-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_c00345{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00345{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00345{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00345{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00345{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00345{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00345{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00345{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00345{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00345{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00345{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00345{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00345{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00345{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00345{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00345{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00345{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00345{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00345{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00345{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00345{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00345{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00345{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00345{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00345{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00345{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00345{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00345{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00345{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00345{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00345{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00345{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00345{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00345{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00345{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00345{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00345{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00345{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00345{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00345{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00345{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00345{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00345{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00345{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00345{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00345{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00345{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00345{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00345{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00345{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00345{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00345{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00345{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00345{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00345{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00345{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00345{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00345{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00345{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00345{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00345{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00345{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00345{vertical-align:0.000000px;}
.v1_c00345{vertical-align:2.773440px;}
.ls0_c00345{letter-spacing:0.000000px;}
.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;}
}
.ws5_c00345{word-spacing:-41.664701px;}
.ws3_c00345{word-spacing:-39.102529px;}
.ws4_c00345{word-spacing:-18.680283px;}
.ws2_c00345{word-spacing:-0.055722px;}
.ws6_c00345{word-spacing:0.000000px;}
.ws1_c00345{word-spacing:281.470806px;}
.ws0_c00345{word-spacing:281.744147px;}
._3_c00345{width:7.237866px;}
._2_c00345{width:8.556744px;}
._0_c00345{width:21.028463px;}
._1_c00345{width:22.170213px;}
.fc3_c00345{color:rgb(198,111,25);}
.fc2_c00345{color:rgb(9,71,81);}
.fc1_c00345{color:rgb(255,255,255);}
.fc0_c00345{color:rgb(0,0,0);}
.fsb_c00345{font-size:41.974772px;}
.fs9_c00345{font-size:41.975069px;}
.fs2_c00345{font-size:47.339969px;}
.fs5_c00345{font-size:47.339970px;}
.fs1_c00345{font-size:47.339972px;}
.fs4_c00345{font-size:47.339973px;}
.fs3_c00345{font-size:47.339974px;}
.fs6_c00345{font-size:47.339975px;}
.fs8_c00345{font-size:51.630774px;}
.fsd_c00345{font-size:55.721735px;}
.fse_c00345{font-size:56.262632px;}
.fsc_c00345{font-size:59.949210px;}
.fsf_c00345{font-size:71.912067px;}
.fs0_c00345{font-size:71.957041px;}
.fs7_c00345{font-size:76.965540px;}
.fsa_c00345{font-size:89.946302px;}
.y0_c00345{bottom:0.000000px;}
.y1_c00345{bottom:0.000008px;}
.y54_c00345{bottom:30.156225px;}
.y4b_c00345{bottom:154.057558px;}
.y4a_c00345{bottom:184.414435px;}
.y49_c00345{bottom:214.771311px;}
.y48_c00345{bottom:245.128188px;}
.y47_c00345{bottom:275.485065px;}
.y4c_c00345{bottom:311.500677px;}
.y43_c00345{bottom:402.064151px;}
.y53_c00345{bottom:487.376458px;}
.y10_c00345{bottom:493.812629px;}
.y38_c00345{bottom:493.827623px;}
.yf_c00345{bottom:494.337609px;}
.y39_c00345{bottom:494.357158px;}
.y22_c00345{bottom:494.700737px;}
.y37_c00345{bottom:495.071586px;}
.ye_c00345{bottom:495.403002px;}
.y23_c00345{bottom:495.533530px;}
.y21_c00345{bottom:495.553663px;}
.y36_c00345{bottom:496.322201px;}
.yd_c00345{bottom:496.475623px;}
.y20_c00345{bottom:496.587915px;}
.y3a_c00345{bottom:496.772260px;}
.y11_c00345{bottom:496.835884px;}
.y24_c00345{bottom:497.713596px;}
.y35_c00345{bottom:497.966053px;}
.yc_c00345{bottom:498.126234px;}
.y1f_c00345{bottom:498.789265px;}
.y25_c00345{bottom:499.103521px;}
.y34_c00345{bottom:499.653306px;}
.yb_c00345{bottom:499.818769px;}
.y26_c00345{bottom:500.800864px;}
.y12_c00345{bottom:501.110605px;}
.y33_c00345{bottom:501.517382px;}
.ya_c00345{bottom:501.687706px;}
.y3b_c00345{bottom:501.869915px;}
.y1e_c00345{bottom:502.578702px;}
.y27_c00345{bottom:503.241722px;}
.y13_c00345{bottom:503.627848px;}
.y3c_c00345{bottom:505.496019px;}
.y28_c00345{bottom:505.499367px;}
.y32_c00345{bottom:506.168989px;}
.y9_c00345{bottom:506.348634px;}
.y1d_c00345{bottom:508.044213px;}
.y29_c00345{bottom:508.766327px;}
.y14_c00345{bottom:509.576794px;}
.y3d_c00345{bottom:511.126534px;}
.y1c_c00345{bottom:512.508085px;}
.y31_c00345{bottom:512.566592px;}
.y8_c00345{bottom:512.754669px;}
.y15_c00345{bottom:514.322677px;}
.y2a_c00345{bottom:517.158603px;}
.y3e_c00345{bottom:517.780195px;}
.y1b_c00345{bottom:518.929057px;}
.y30_c00345{bottom:519.869222px;}
.y7_c00345{bottom:519.959421px;}
.y6_c00345{bottom:523.416158px;}
.y1a_c00345{bottom:523.496236px;}
.y2b_c00345{bottom:525.202812px;}
.y16_c00345{bottom:526.099549px;}
.y2f_c00345{bottom:527.026630px;}
.y5_c00345{bottom:529.422883px;}
.y3f_c00345{bottom:529.736175px;}
.y19_c00345{bottom:531.263725px;}
.y2e_c00345{bottom:531.792993px;}
.y41_c00345{bottom:533.728456px;}
.y18_c00345{bottom:535.155114px;}
.y4_c00345{bottom:536.678099px;}
.y2d_c00345{bottom:537.961701px;}
.y17_c00345{bottom:538.332892px;}
.y40_c00345{bottom:538.696314px;}
.y4d_c00345{bottom:539.306780px;}
.y2c_c00345{bottom:545.020884px;}
.y3_c00345{bottom:546.207017px;}
.y4e_c00345{bottom:576.746779px;}
.y42_c00345{bottom:596.435373px;}
.y2_c00345{bottom:597.559761px;}
.y51_c00345{bottom:639.489911px;}
.y55_c00345{bottom:974.323769px;}
.y52_c00345{bottom:1027.380534px;}
.y45_c00345{bottom:1127.585799px;}
.y50_c00345{bottom:1129.718199px;}
.y4f_c00345{bottom:1147.707459px;}
.y46_c00345{bottom:1150.991694px;}
.y44_c00345{bottom:1170.658440px;}
.hf_c00345{height:32.157430px;}
.h8_c00345{height:35.967282px;}
.h7_c00345{height:35.967283px;}
.h9_c00345{height:35.967285px;}
.h5_c00345{height:36.267779px;}
.h4_c00345{height:36.267781px;}
.h6_c00345{height:36.267783px;}
.hb_c00345{height:37.437353px;}
.hc_c00345{height:39.085184px;}
.h12_c00345{height:51.885424px;}
.h13_c00345{height:52.830612px;}
.h14_c00345{height:55.092790px;}
.h3_c00345{height:55.127245px;}
.h11_c00345{height:55.821847px;}
.h15_c00345{height:56.292308px;}
.ha_c00345{height:59.035250px;}
.hd_c00345{height:67.002968px;}
.h10_c00345{height:68.338108px;}
.he_c00345{height:83.753709px;}
.h2_c00345{height:1304.999946px;}
.h0_c00345{height:1304.999953px;}
.h1_c00345{height:1305.000000px;}
.w2_c00345{width:934.874961px;}
.w0_c00345{width:934.875000px;}
.w1_c00345{width:935.250000px;}
.x0_c00345{left:0.000000px;}
.x3b_c00345{left:87.850202px;}
.x3d_c00345{left:107.403263px;}
.x39_c00345{left:109.695383px;}
.x3f_c00345{left:114.902858px;}
.x42_c00345{left:131.272077px;}
.x27_c00345{left:134.894322px;}
.x26_c00345{left:136.566734px;}
.x28_c00345{left:139.937719px;}
.x29_c00345{left:144.785273px;}
.x2a_c00345{left:150.147890px;}
.x2b_c00345{left:152.899057px;}
.x2c_c00345{left:155.907145px;}
.x2d_c00345{left:159.752336px;}
.x37_c00345{left:161.347648px;}
.x2e_c00345{left:163.203941px;}
.x2f_c00345{left:171.483965px;}
.x30_c00345{left:179.748684px;}
.x31_c00345{left:188.175145px;}
.x32_c00345{left:196.556636px;}
.x33_c00345{left:200.721504px;}
.x34_c00345{left:205.276922px;}
.x35_c00345{left:209.084069px;}
.x36_c00345{left:211.669316px;}
.x3_c00345{left:230.260919px;}
.x2_c00345{left:232.395871px;}
.x4_c00345{left:235.482735px;}
.x5_c00345{left:240.319117px;}
.x6_c00345{left:245.673577px;}
.x7_c00345{left:248.421493px;}
.x8_c00345{left:251.426626px;}
.x9_c00345{left:255.268917px;}
.xa_c00345{left:258.553698px;}
.xb_c00345{left:262.988294px;}
.xc_c00345{left:271.601212px;}
.xd_c00345{left:283.434780px;}
.xe_c00345{left:290.867654px;}
.xf_c00345{left:294.260334px;}
.x3a_c00345{left:295.438786px;}
.x10_c00345{left:299.596701px;}
.x11_c00345{left:302.984150px;}
.x12_c00345{left:306.993562px;}
.x13_c00345{left:325.378518px;}
.x14_c00345{left:326.595106px;}
.x15_c00345{left:328.015253px;}
.x16_c00345{left:331.410444px;}
.x17_c00345{left:334.633053px;}
.x18_c00345{left:340.511825px;}
.x19_c00345{left:346.695139px;}
.x1a_c00345{left:352.384720px;}
.x1b_c00345{left:355.792694px;}
.x1c_c00345{left:363.695116px;}
.x1d_c00345{left:371.679253px;}
.x1e_c00345{left:378.434940px;}
.x1f_c00345{left:381.453328px;}
.x20_c00345{left:384.455783px;}
.x21_c00345{left:387.851715px;}
.x22_c00345{left:390.467224px;}
.x23_c00345{left:393.779799px;}
.x24_c00345{left:398.952070px;}
.x25_c00345{left:401.755082px;}
.x41_c00345{left:451.985828px;}
.x1_c00345{left:465.097640px;}
.x3e_c00345{left:661.177232px;}
.x38_c00345{left:696.904800px;}
.x3c_c00345{left:733.103068px;}
.x40_c00345{left:756.637341px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.v1_c00345{vertical-align:2.465280pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ws5_c00345{word-spacing:-37.035289pt;}
.ws3_c00345{word-spacing:-34.757804pt;}
.ws4_c00345{word-spacing:-16.604696pt;}
.ws2_c00345{word-spacing:-0.049530pt;}
.ws6_c00345{word-spacing:0.000000pt;}
.ws1_c00345{word-spacing:250.196272pt;}
.ws0_c00345{word-spacing:250.439242pt;}
._3_c00345{width:6.433659pt;}
._2_c00345{width:7.605995pt;}
._0_c00345{width:18.691967pt;}
._1_c00345{width:19.706856pt;}
.fsb_c00345{font-size:37.310908pt;}
.fs9_c00345{font-size:37.311173pt;}
.fs2_c00345{font-size:42.079973pt;}
.fs5_c00345{font-size:42.079974pt;}
.fs1_c00345{font-size:42.079975pt;}
.fs4_c00345{font-size:42.079976pt;}
.fs3_c00345{font-size:42.079977pt;}
.fs6_c00345{font-size:42.079978pt;}
.fs8_c00345{font-size:45.894021pt;}
.fsd_c00345{font-size:49.530431pt;}
.fse_c00345{font-size:50.011229pt;}
.fsc_c00345{font-size:53.288186pt;}
.fsf_c00345{font-size:63.921837pt;}
.fs0_c00345{font-size:63.961814pt;}
.fs7_c00345{font-size:68.413814pt;}
.fsa_c00345{font-size:79.952268pt;}
.y0_c00345{bottom:0.000000pt;}
.y1_c00345{bottom:0.000007pt;}
.y54_c00345{bottom:26.805533pt;}
.y4b_c00345{bottom:136.940052pt;}
.y4a_c00345{bottom:163.923942pt;}
.y49_c00345{bottom:190.907832pt;}
.y48_c00345{bottom:217.891723pt;}
.y47_c00345{bottom:244.875613pt;}
.y4c_c00345{bottom:276.889491pt;}
.y43_c00345{bottom:357.390356pt;}
.y53_c00345{bottom:433.223518pt;}
.y10_c00345{bottom:438.944560pt;}
.y38_c00345{bottom:438.957887pt;}
.yf_c00345{bottom:439.411208pt;}
.y39_c00345{bottom:439.428585pt;}
.y22_c00345{bottom:439.733989pt;}
.y37_c00345{bottom:440.063632pt;}
.ye_c00345{bottom:440.358224pt;}
.y23_c00345{bottom:440.474249pt;}
.y21_c00345{bottom:440.492144pt;}
.y36_c00345{bottom:441.175290pt;}
.yd_c00345{bottom:441.311665pt;}
.y20_c00345{bottom:441.411480pt;}
.y3a_c00345{bottom:441.575343pt;}
.y11_c00345{bottom:441.631897pt;}
.y24_c00345{bottom:442.412085pt;}
.y35_c00345{bottom:442.636491pt;}
.yc_c00345{bottom:442.778875pt;}
.y1f_c00345{bottom:443.368235pt;}
.y25_c00345{bottom:443.647574pt;}
.y34_c00345{bottom:444.136272pt;}
.yb_c00345{bottom:444.283350pt;}
.y26_c00345{bottom:445.156323pt;}
.y12_c00345{bottom:445.431649pt;}
.y33_c00345{bottom:445.793228pt;}
.ya_c00345{bottom:445.944627pt;}
.y3b_c00345{bottom:446.106592pt;}
.y1e_c00345{bottom:446.736624pt;}
.y27_c00345{bottom:447.325975pt;}
.y13_c00345{bottom:447.669198pt;}
.y3c_c00345{bottom:449.329795pt;}
.y28_c00345{bottom:449.332771pt;}
.y32_c00345{bottom:449.927990pt;}
.y9_c00345{bottom:450.087675pt;}
.y1d_c00345{bottom:451.594856pt;}
.y29_c00345{bottom:452.236735pt;}
.y14_c00345{bottom:452.957150pt;}
.y3d_c00345{bottom:454.334697pt;}
.y1c_c00345{bottom:455.562742pt;}
.y31_c00345{bottom:455.614749pt;}
.y8_c00345{bottom:455.781928pt;}
.y15_c00345{bottom:457.175713pt;}
.y2a_c00345{bottom:459.696536pt;}
.y3e_c00345{bottom:460.249062pt;}
.y1b_c00345{bottom:461.270273pt;}
.y30_c00345{bottom:462.105976pt;}
.y7_c00345{bottom:462.186152pt;}
.y6_c00345{bottom:465.258807pt;}
.y1a_c00345{bottom:465.329988pt;}
.y2b_c00345{bottom:466.846944pt;}
.y16_c00345{bottom:467.644044pt;}
.y2f_c00345{bottom:468.468115pt;}
.y5_c00345{bottom:470.598118pt;}
.y3f_c00345{bottom:470.876600pt;}
.y19_c00345{bottom:472.234422pt;}
.y2e_c00345{bottom:472.704883pt;}
.y41_c00345{bottom:474.425294pt;}
.y18_c00345{bottom:475.693435pt;}
.y4_c00345{bottom:477.047199pt;}
.y2d_c00345{bottom:478.188178pt;}
.y17_c00345{bottom:478.518126pt;}
.y40_c00345{bottom:478.841168pt;}
.y4d_c00345{bottom:479.383805pt;}
.y2c_c00345{bottom:484.463008pt;}
.y3_c00345{bottom:485.517349pt;}
.y4e_c00345{bottom:512.663803pt;}
.y42_c00345{bottom:530.164776pt;}
.y2_c00345{bottom:531.164232pt;}
.y51_c00345{bottom:568.435476pt;}
.y55_c00345{bottom:866.065573pt;}
.y52_c00345{bottom:913.227141pt;}
.y45_c00345{bottom:1002.298488pt;}
.y50_c00345{bottom:1004.193955pt;}
.y4f_c00345{bottom:1020.184408pt;}
.y46_c00345{bottom:1023.103728pt;}
.y44_c00345{bottom:1040.585280pt;}
.hf_c00345{height:28.584382pt;}
.h8_c00345{height:31.970917pt;}
.h7_c00345{height:31.970918pt;}
.h9_c00345{height:31.970920pt;}
.h5_c00345{height:32.238026pt;}
.h4_c00345{height:32.238028pt;}
.h6_c00345{height:32.238029pt;}
.hb_c00345{height:33.277647pt;}
.hc_c00345{height:34.742386pt;}
.h12_c00345{height:46.120377pt;}
.h13_c00345{height:46.960544pt;}
.h14_c00345{height:48.971369pt;}
.h3_c00345{height:49.001996pt;}
.h11_c00345{height:49.619420pt;}
.h15_c00345{height:50.037607pt;}
.ha_c00345{height:52.475778pt;}
.hd_c00345{height:59.558193pt;}
.h10_c00345{height:60.744985pt;}
.he_c00345{height:74.447742pt;}
.h2_c00345{height:1159.999952pt;}
.h0_c00345{height:1159.999959pt;}
.h1_c00345{height:1160.000000pt;}
.w2_c00345{width:830.999965pt;}
.w0_c00345{width:831.000000pt;}
.w1_c00345{width:831.333333pt;}
.x0_c00345{left:0.000000pt;}
.x3b_c00345{left:78.089069pt;}
.x3d_c00345{left:95.469567pt;}
.x39_c00345{left:97.507007pt;}
.x3f_c00345{left:102.135874pt;}
.x42_c00345{left:116.686291pt;}
.x27_c00345{left:119.906064pt;}
.x26_c00345{left:121.392652pt;}
.x28_c00345{left:124.389083pt;}
.x29_c00345{left:128.698021pt;}
.x2a_c00345{left:133.464791pt;}
.x2b_c00345{left:135.910272pt;}
.x2c_c00345{left:138.584129pt;}
.x2d_c00345{left:142.002076pt;}
.x37_c00345{left:143.420132pt;}
.x2e_c00345{left:145.070170pt;}
.x2f_c00345{left:152.430191pt;}
.x30_c00345{left:159.776608pt;}
.x31_c00345{left:167.266795pt;}
.x32_c00345{left:174.717010pt;}
.x33_c00345{left:178.419115pt;}
.x34_c00345{left:182.468375pt;}
.x35_c00345{left:185.852506pt;}
.x36_c00345{left:188.150503pt;}
.x3_c00345{left:204.676373pt;}
.x2_c00345{left:206.574107pt;}
.x4_c00345{left:209.317987pt;}
.x5_c00345{left:213.616993pt;}
.x6_c00345{left:218.376513pt;}
.x7_c00345{left:220.819105pt;}
.x8_c00345{left:223.490334pt;}
.x9_c00345{left:226.905704pt;}
.xa_c00345{left:229.825509pt;}
.xb_c00345{left:233.767373pt;}
.xc_c00345{left:241.423300pt;}
.xd_c00345{left:251.942027pt;}
.xe_c00345{left:258.549026pt;}
.xf_c00345{left:261.564741pt;}
.x3a_c00345{left:262.612255pt;}
.x10_c00345{left:266.308178pt;}
.x11_c00345{left:269.319244pt;}
.x12_c00345{left:272.883167pt;}
.x13_c00345{left:289.225349pt;}
.x14_c00345{left:290.306761pt;}
.x15_c00345{left:291.569114pt;}
.x16_c00345{left:294.587062pt;}
.x17_c00345{left:297.451603pt;}
.x18_c00345{left:302.677178pt;}
.x19_c00345{left:308.173457pt;}
.x1a_c00345{left:313.230862pt;}
.x1b_c00345{left:316.260173pt;}
.x1c_c00345{left:323.284548pt;}
.x1d_c00345{left:330.381558pt;}
.x1e_c00345{left:336.386614pt;}
.x1f_c00345{left:339.069625pt;}
.x20_c00345{left:341.738474pt;}
.x21_c00345{left:344.757080pt;}
.x22_c00345{left:347.081977pt;}
.x23_c00345{left:350.026488pt;}
.x24_c00345{left:354.624063pt;}
.x25_c00345{left:357.115628pt;}
.x41_c00345{left:401.765180pt;}
.x1_c00345{left:413.420124pt;}
.x3e_c00345{left:587.713096pt;}
.x38_c00345{left:619.470933pt;}
.x3c_c00345{left:651.647171pt;}
.x40_c00345{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf32c01f039b6e6d10716232.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.171387;font-style:normal;font-weight:normal;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_0137c75b259ac90003393834.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.005371;font-style:normal;font-weight:normal;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_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.006348;font-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_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);}
.v0_c00346{vertical-align:0.000000px;}
.ls1_c00346{letter-spacing:0.000000px;}
.ls0_c00346{letter-spacing:0.035158px;}
.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;}
}
.ws0_c00346{word-spacing:-18.691966px;}
.ws1_c00346{word-spacing:-18.680283px;}
.ws2_c00346{word-spacing:0.000000px;}
._8_c00346{width:1.520015px;}
._2_c00346{width:3.239583px;}
._0_c00346{width:4.308119px;}
._3_c00346{width:5.902728px;}
._1_c00346{width:7.298737px;}
._6_c00346{width:8.299877px;}
._9_c00346{width:9.406689px;}
._7_c00346{width:11.664911px;}
._c_c00346{width:13.281134px;}
._b_c00346{width:17.260889px;}
._5_c00346{width:19.716721px;}
._4_c00346{width:25.065446px;}
._a_c00346{width:26.875738px;}
._d_c00346{width:31.660723px;}
.fc1_c00346{color:rgb(198,111,25);}
.fc0_c00346{color:rgb(0,0,0);}
.fs1_c00346{font-size:71.912067px;}
.fs0_c00346{font-size:71.957041px;}
.y0_c00346{bottom:0.000000px;}
.y1_c00346{bottom:0.000008px;}
.y22_c00346{bottom:30.156225px;}
.y20_c00346{bottom:166.165141px;}
.y1f_c00346{bottom:196.522018px;}
.y1e_c00346{bottom:226.878895px;}
.y1d_c00346{bottom:257.235772px;}
.y1c_c00346{bottom:287.592648px;}
.y1b_c00346{bottom:317.949525px;}
.y1a_c00346{bottom:348.306402px;}
.y21_c00346{bottom:376.698402px;}
.y18_c00346{bottom:447.732917px;}
.y17_c00346{bottom:478.089794px;}
.y16_c00346{bottom:508.446671px;}
.y15_c00346{bottom:538.803547px;}
.y14_c00346{bottom:569.160424px;}
.y13_c00346{bottom:599.517301px;}
.y12_c00346{bottom:629.874178px;}
.y11_c00346{bottom:660.231054px;}
.y10_c00346{bottom:690.587931px;}
.yf_c00346{bottom:720.944808px;}
.ye_c00346{bottom:751.301685px;}
.yd_c00346{bottom:781.658561px;}
.yc_c00346{bottom:812.015438px;}
.y19_c00346{bottom:844.073077px;}
.ya_c00346{bottom:921.514056px;}
.y9_c00346{bottom:951.870933px;}
.y8_c00346{bottom:982.227810px;}
.y7_c00346{bottom:1012.584687px;}
.y6_c00346{bottom:1042.941563px;}
.y5_c00346{bottom:1073.298440px;}
.y4_c00346{bottom:1103.655317px;}
.y3_c00346{bottom:1134.012194px;}
.y2_c00346{bottom:1164.369070px;}
.yb_c00346{bottom:1199.835078px;}
.h4_c00346{height:55.127245px;}
.h5_c00346{height:66.961090px;}
.h3_c00346{height:67.002968px;}
.h2_c00346{height:1304.999946px;}
.h0_c00346{height:1304.999953px;}
.h1_c00346{height:1305.000000px;}
.w2_c00346{width:934.874961px;}
.w0_c00346{width:934.875000px;}
.w1_c00346{width:935.250000px;}
.x0_c00346{left:0.000000px;}
.x1_c00346{left:89.434062px;}
.x2_c00346{left:451.985828px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls1_c00346{letter-spacing:0.000000pt;}
.ls0_c00346{letter-spacing:0.031251pt;}
.ws0_c00346{word-spacing:-16.615081pt;}
.ws1_c00346{word-spacing:-16.604696pt;}
.ws2_c00346{word-spacing:0.000000pt;}
._8_c00346{width:1.351124pt;}
._2_c00346{width:2.879629pt;}
._0_c00346{width:3.829439pt;}
._3_c00346{width:5.246869pt;}
._1_c00346{width:6.487767pt;}
._6_c00346{width:7.377669pt;}
._9_c00346{width:8.361501pt;}
._7_c00346{width:10.368809pt;}
._c_c00346{width:11.805452pt;}
._b_c00346{width:15.343013pt;}
._5_c00346{width:17.525974pt;}
._4_c00346{width:22.280397pt;}
._a_c00346{width:23.889545pt;}
._d_c00346{width:28.142865pt;}
.fs1_c00346{font-size:63.921837pt;}
.fs0_c00346{font-size:63.961814pt;}
.y0_c00346{bottom:0.000000pt;}
.y1_c00346{bottom:0.000007pt;}
.y22_c00346{bottom:26.805533pt;}
.y20_c00346{bottom:147.702348pt;}
.y1f_c00346{bottom:174.686238pt;}
.y1e_c00346{bottom:201.670129pt;}
.y1d_c00346{bottom:228.654019pt;}
.y1c_c00346{bottom:255.637910pt;}
.y1b_c00346{bottom:282.621800pt;}
.y1a_c00346{bottom:309.605691pt;}
.y21_c00346{bottom:334.843024pt;}
.y18_c00346{bottom:397.984815pt;}
.y17_c00346{bottom:424.968706pt;}
.y16_c00346{bottom:451.952596pt;}
.y15_c00346{bottom:478.936487pt;}
.y14_c00346{bottom:505.920377pt;}
.y13_c00346{bottom:532.904267pt;}
.y12_c00346{bottom:559.888158pt;}
.y11_c00346{bottom:586.872048pt;}
.y10_c00346{bottom:613.855939pt;}
.yf_c00346{bottom:640.839829pt;}
.ye_c00346{bottom:667.823720pt;}
.yd_c00346{bottom:694.807610pt;}
.yc_c00346{bottom:721.791501pt;}
.y19_c00346{bottom:750.287180pt;}
.ya_c00346{bottom:819.123606pt;}
.y9_c00346{bottom:846.107496pt;}
.y8_c00346{bottom:873.091386pt;}
.y7_c00346{bottom:900.075277pt;}
.y6_c00346{bottom:927.059167pt;}
.y5_c00346{bottom:954.043058pt;}
.y4_c00346{bottom:981.026948pt;}
.y3_c00346{bottom:1008.010839pt;}
.y2_c00346{bottom:1034.994729pt;}
.yb_c00346{bottom:1066.520069pt;}
.h4_c00346{height:49.001996pt;}
.h5_c00346{height:59.520969pt;}
.h3_c00346{height:59.558193pt;}
.h2_c00346{height:1159.999952pt;}
.h0_c00346{height:1159.999959pt;}
.h1_c00346{height:1160.000000pt;}
.w2_c00346{width:830.999965pt;}
.w0_c00346{width:831.000000pt;}
.w1_c00346{width:831.333333pt;}
.x0_c00346{left:0.000000pt;}
.x1_c00346{left:79.496944pt;}
.x2_c00346{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cd58b61b7b4e68ba37e6ddc4.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.006348;font-style:normal;font-weight:normal;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_592529842e1ce8492925c6d3.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:0.748047;font-style:normal;font-weight:normal;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_0ebdf86397a3fb4d4b68efd8.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:0.957031;font-style:normal;font-weight:normal;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_af24c93efcc5d6409d693242.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:0.727051;font-style:normal;font-weight: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_c00347;src:url('chunks/assets/font_90e64c1a087bdf787665e583.woff2')format("woff");}.ff5_c00347{font-family:ff5_c00347;line-height:0.965332;font-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_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);}
.v0_c00347{vertical-align:0.000000px;}
.ls0_c00347{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws0_c00347{word-spacing:-0.053968px;}
.ws2_c00347{word-spacing:0.000000px;}
._1_c00347{width:1.437321px;}
._4_c00347{width:4.145962px;}
._5_c00347{width:5.864847px;}
._9_c00347{width:8.157216px;}
._0_c00347{width:10.005389px;}
._6_c00347{width:11.375521px;}
._3_c00347{width:12.677934px;}
._2_c00347{width:15.454100px;}
._8_c00347{width:21.362248px;}
._7_c00347{width:23.772512px;}
._a_c00347{width:25.167630px;}
.fc1_c00347{color:rgb(198,111,25);}
.fc2_c00347{color:rgb(255,255,255);}
.fc0_c00347{color:rgb(0,0,0);}
.fs1_c00347{font-size:53.967781px;}
.fs2_c00347{font-size:71.912067px;}
.fs0_c00347{font-size:71.957041px;}
.y0_c00347{bottom:0.000000px;}
.y1_c00347{bottom:0.000008px;}
.y12_c00347{bottom:30.156225px;}
.y11_c00347{bottom:55.025376px;}
.yf_c00347{bottom:765.205769px;}
.ye_c00347{bottom:795.562645px;}
.yd_c00347{bottom:825.919522px;}
.yc_c00347{bottom:856.276399px;}
.yb_c00347{bottom:886.633276px;}
.ya_c00347{bottom:916.990152px;}
.y9_c00347{bottom:947.347029px;}
.y8_c00347{bottom:977.703906px;}
.y7_c00347{bottom:1008.060783px;}
.y6_c00347{bottom:1038.417660px;}
.y5_c00347{bottom:1068.774536px;}
.y4_c00347{bottom:1099.131413px;}
.y3_c00347{bottom:1129.488290px;}
.y2_c00347{bottom:1159.845167px;}
.y10_c00347{bottom:1194.197788px;}
.h5_c00347{height:39.131911px;}
.h4_c00347{height:51.578582px;}
.h6_c00347{height:55.092790px;}
.h3_c00347{height:55.127245px;}
.h2_c00347{height:1304.999946px;}
.h0_c00347{height:1304.999953px;}
.h1_c00347{height:1305.000000px;}
.w2_c00347{width:934.874961px;}
.w0_c00347{width:934.875000px;}
.w1_c00347{width:935.250000px;}
.x0_c00347{left:0.000000px;}
.x1_c00347{left:87.850202px;}
.x2_c00347{left:451.985828px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ws1_c00347{word-spacing:-16.604696pt;}
.ws0_c00347{word-spacing:-0.047971pt;}
.ws2_c00347{word-spacing:0.000000pt;}
._1_c00347{width:1.277619pt;}
._4_c00347{width:3.685299pt;}
._5_c00347{width:5.213197pt;}
._9_c00347{width:7.250858pt;}
._0_c00347{width:8.893679pt;}
._6_c00347{width:10.111574pt;}
._3_c00347{width:11.269275pt;}
._2_c00347{width:13.736978pt;}
._8_c00347{width:18.988665pt;}
._7_c00347{width:21.131122pt;}
._a_c00347{width:22.371226pt;}
.fs1_c00347{font-size:47.971361pt;}
.fs2_c00347{font-size:63.921837pt;}
.fs0_c00347{font-size:63.961814pt;}
.y0_c00347{bottom:0.000000pt;}
.y1_c00347{bottom:0.000007pt;}
.y12_c00347{bottom:26.805533pt;}
.y11_c00347{bottom:48.911445pt;}
.yf_c00347{bottom:680.182905pt;}
.ye_c00347{bottom:707.166796pt;}
.yd_c00347{bottom:734.150686pt;}
.yc_c00347{bottom:761.134577pt;}
.yb_c00347{bottom:788.118467pt;}
.ya_c00347{bottom:815.102358pt;}
.y9_c00347{bottom:842.086248pt;}
.y8_c00347{bottom:869.070139pt;}
.y7_c00347{bottom:896.054029pt;}
.y6_c00347{bottom:923.037920pt;}
.y5_c00347{bottom:950.021810pt;}
.y4_c00347{bottom:977.005700pt;}
.y3_c00347{bottom:1003.989591pt;}
.y2_c00347{bottom:1030.973481pt;}
.y10_c00347{bottom:1061.509145pt;}
.h5_c00347{height:34.783921pt;}
.h4_c00347{height:45.847629pt;}
.h6_c00347{height:48.971369pt;}
.h3_c00347{height:49.001996pt;}
.h2_c00347{height:1159.999952pt;}
.h0_c00347{height:1159.999959pt;}
.h1_c00347{height:1160.000000pt;}
.w2_c00347{width:830.999965pt;}
.w0_c00347{width:831.000000pt;}
.w1_c00347{width:831.333333pt;}
.x0_c00347{left:0.000000pt;}
.x1_c00347{left:78.089069pt;}
.x2_c00347{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_78f9e3f7dc67c3a697738d0b.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:0.769531;font-style:normal;font-weight:normal;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_7616de49c392b56c5d70188c.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:0.744000;font-style:normal;font-weight:normal;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_05bd3aa0c27a139906e5044f.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:1.000000;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_3d8ebc27f211f3575b2b4a1d.woff2')format("woff");}.ff5_c00348{font-family:ff5_c00348;line-height:1.171387;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_97ee904cbcca0d1958dd1bdf.woff2')format("woff");}.ff6_c00348{font-family:ff6_c00348;line-height:1.000000;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_4cbe18e8cad9d922de63253f.woff2')format("woff");}.ff7_c00348{font-family:ff7_c00348;line-height:1.000000;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_7800f617606f7656592f6ffb.woff2')format("woff");}.ff8_c00348{font-family:ff8_c00348;line-height:1.006348;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00348{font-family:ff9_c00348;line-height:0.734863;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00348{font-family:ffa_c00348;line-height:0.940000;font-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_c00348{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00348{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00348{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00348{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00348{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00348{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00348{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00348{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00348{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00348{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00348{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00348{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00348{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00348{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00348{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00348{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00348{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00348{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00348{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00348{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00348{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00348{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00348{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00348{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00348{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00348{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00348{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00348{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00348{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00348{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00348{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00348{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00348{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00348{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00348{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00348{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00348{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00348{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00348{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00348{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00348{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00348{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00348{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00348{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00348{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00348{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00348{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00348{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00348{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00348{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00348{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00348{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00348{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00348{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00348{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00348{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00348{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00348{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00348{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00348{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00348{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00348{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00348{vertical-align:0.000000px;}
.v1_c00348{vertical-align:33.018832px;}
.ls0_c00348{letter-spacing:0.000000px;}
.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;}
}
.ws5_c00348{word-spacing:-41.664701px;}
.ws4_c00348{word-spacing:-18.680283px;}
.ws2_c00348{word-spacing:-15.162211px;}
.ws3_c00348{word-spacing:-0.071957px;}
.ws6_c00348{word-spacing:0.000000px;}
.ws1_c00348{word-spacing:285.968171px;}
.ws0_c00348{word-spacing:1103.102295px;}
._1_c00348{width:1.728626px;}
._5_c00348{width:5.001975px;}
._4_c00348{width:6.207209px;}
._0_c00348{width:8.164149px;}
._2_c00348{width:12.416749px;}
._3_c00348{width:19.867349px;}
.fc3_c00348{color:rgb(9,71,81);}
.fc2_c00348{color:rgb(198,111,25);}
.fc1_c00348{color:rgb(255,255,255);}
.fc0_c00348{color:rgb(0,0,0);}
.fs8_c00348{font-size:41.974772px;}
.fsb_c00348{font-size:41.975069px;}
.fs2_c00348{font-size:47.339969px;}
.fs5_c00348{font-size:47.339970px;}
.fs1_c00348{font-size:47.339972px;}
.fs4_c00348{font-size:47.339973px;}
.fs3_c00348{font-size:47.339974px;}
.fs6_c00348{font-size:47.339975px;}
.fsc_c00348{font-size:51.630774px;}
.fs9_c00348{font-size:59.949210px;}
.fsd_c00348{font-size:71.912067px;}
.fs0_c00348{font-size:71.957041px;}
.fs7_c00348{font-size:76.965540px;}
.fsa_c00348{font-size:89.946302px;}
.y0_c00348{bottom:0.000000px;}
.y1_c00348{bottom:0.000008px;}
.y54_c00348{bottom:30.156225px;}
.y51_c00348{bottom:90.538986px;}
.y50_c00348{bottom:120.895863px;}
.y4f_c00348{bottom:151.252740px;}
.y4e_c00348{bottom:181.609617px;}
.y4d_c00348{bottom:211.966494px;}
.y4c_c00348{bottom:242.323370px;}
.y4b_c00348{bottom:272.680247px;}
.y4a_c00348{bottom:303.037124px;}
.y52_c00348{bottom:331.738652px;}
.y53_c00348{bottom:402.064151px;}
.y10_c00348{bottom:493.812629px;}
.y38_c00348{bottom:493.827623px;}
.yf_c00348{bottom:494.337609px;}
.y39_c00348{bottom:494.357158px;}
.y22_c00348{bottom:494.700737px;}
.y37_c00348{bottom:495.071586px;}
.ye_c00348{bottom:495.403002px;}
.y23_c00348{bottom:495.533530px;}
.y21_c00348{bottom:495.553663px;}
.y36_c00348{bottom:496.322201px;}
.yd_c00348{bottom:496.475623px;}
.y20_c00348{bottom:496.587915px;}
.y3a_c00348{bottom:496.772260px;}
.y11_c00348{bottom:496.835884px;}
.y24_c00348{bottom:497.713596px;}
.y35_c00348{bottom:497.966053px;}
.yc_c00348{bottom:498.126234px;}
.y1f_c00348{bottom:498.789265px;}
.y25_c00348{bottom:499.103521px;}
.y34_c00348{bottom:499.653306px;}
.yb_c00348{bottom:499.818769px;}
.y26_c00348{bottom:500.800864px;}
.y12_c00348{bottom:501.110605px;}
.y33_c00348{bottom:501.517382px;}
.ya_c00348{bottom:501.687706px;}
.y3b_c00348{bottom:501.869915px;}
.y1e_c00348{bottom:502.578702px;}
.y27_c00348{bottom:503.241722px;}
.y13_c00348{bottom:503.627848px;}
.y3c_c00348{bottom:505.496019px;}
.y28_c00348{bottom:505.499367px;}
.y32_c00348{bottom:506.168989px;}
.y9_c00348{bottom:506.348634px;}
.y1d_c00348{bottom:508.044213px;}
.y29_c00348{bottom:508.766327px;}
.y14_c00348{bottom:509.576794px;}
.y3d_c00348{bottom:511.126534px;}
.y1c_c00348{bottom:512.508085px;}
.y31_c00348{bottom:512.566592px;}
.y8_c00348{bottom:512.754669px;}
.y15_c00348{bottom:514.322677px;}
.y2a_c00348{bottom:517.158603px;}
.y3e_c00348{bottom:517.780195px;}
.y1b_c00348{bottom:518.929057px;}
.y30_c00348{bottom:519.869222px;}
.y7_c00348{bottom:519.959421px;}
.y6_c00348{bottom:523.416158px;}
.y1a_c00348{bottom:523.496236px;}
.y2b_c00348{bottom:525.202812px;}
.y16_c00348{bottom:526.099549px;}
.y2f_c00348{bottom:527.026630px;}
.y5_c00348{bottom:529.422883px;}
.y3f_c00348{bottom:529.736175px;}
.y19_c00348{bottom:531.263725px;}
.y2e_c00348{bottom:531.792993px;}
.y49_c00348{bottom:532.106620px;}
.y41_c00348{bottom:532.176388px;}
.y18_c00348{bottom:535.155114px;}
.y4_c00348{bottom:536.678099px;}
.y2d_c00348{bottom:537.961701px;}
.y17_c00348{bottom:538.332892px;}
.y40_c00348{bottom:538.696314px;}
.y2c_c00348{bottom:545.020884px;}
.y3_c00348{bottom:546.207017px;}
.y42_c00348{bottom:577.871130px;}
.y2_c00348{bottom:597.559761px;}
.y43_c00348{bottom:638.470702px;}
.y55_c00348{bottom:1024.443964px;}
.y47_c00348{bottom:1127.585799px;}
.y45_c00348{bottom:1129.718199px;}
.y44_c00348{bottom:1147.707459px;}
.y48_c00348{bottom:1150.991694px;}
.y46_c00348{bottom:1170.658440px;}
.hb_c00348{height:32.157430px;}
.h8_c00348{height:35.967282px;}
.h7_c00348{height:35.967283px;}
.h9_c00348{height:35.967285px;}
.h5_c00348{height:36.267779px;}
.h4_c00348{height:36.267781px;}
.h6_c00348{height:36.267783px;}
.h12_c00348{height:37.437353px;}
.he_c00348{height:39.085184px;}
.h14_c00348{height:45.561399px;}
.h13_c00348{height:55.092790px;}
.h3_c00348{height:55.127245px;}
.hc_c00348{height:55.821847px;}
.h11_c00348{height:56.540882px;}
.ha_c00348{height:65.176263px;}
.hf_c00348{height:67.002968px;}
.hd_c00348{height:68.338108px;}
.h10_c00348{height:83.753709px;}
.h2_c00348{height:1304.999946px;}
.h0_c00348{height:1304.999953px;}
.h1_c00348{height:1305.000000px;}
.w2_c00348{width:934.874961px;}
.w0_c00348{width:934.875000px;}
.w1_c00348{width:935.250000px;}
.x0_c00348{left:0.000000px;}
.x3d_c00348{left:86.597032px;}
.x39_c00348{left:107.403263px;}
.x3a_c00348{left:109.695383px;}
.x40_c00348{left:131.272077px;}
.x27_c00348{left:134.894322px;}
.x26_c00348{left:136.566734px;}
.x28_c00348{left:139.937719px;}
.x29_c00348{left:144.785273px;}
.x2a_c00348{left:150.147890px;}
.x2b_c00348{left:152.899057px;}
.x2c_c00348{left:155.907145px;}
.x2d_c00348{left:159.752336px;}
.x2e_c00348{left:163.203941px;}
.x2f_c00348{left:171.483965px;}
.x30_c00348{left:179.748684px;}
.x31_c00348{left:188.175145px;}
.x32_c00348{left:196.556636px;}
.x33_c00348{left:200.721504px;}
.x34_c00348{left:205.276922px;}
.x35_c00348{left:209.084069px;}
.x36_c00348{left:211.669316px;}
.x3_c00348{left:230.260919px;}
.x2_c00348{left:232.395871px;}
.x4_c00348{left:235.482735px;}
.x5_c00348{left:240.319117px;}
.x6_c00348{left:245.673577px;}
.x7_c00348{left:248.421493px;}
.x8_c00348{left:251.426626px;}
.x9_c00348{left:255.268917px;}
.x3c_c00348{left:256.468943px;}
.xa_c00348{left:258.553698px;}
.xb_c00348{left:262.988294px;}
.xc_c00348{left:271.601212px;}
.xd_c00348{left:283.434780px;}
.xe_c00348{left:290.867654px;}
.xf_c00348{left:294.260334px;}
.x3b_c00348{left:295.438786px;}
.x10_c00348{left:299.596701px;}
.x11_c00348{left:302.984150px;}
.x12_c00348{left:306.993562px;}
.x13_c00348{left:325.378518px;}
.x14_c00348{left:326.595106px;}
.x15_c00348{left:328.015253px;}
.x16_c00348{left:331.410444px;}
.x17_c00348{left:334.633053px;}
.x18_c00348{left:340.511825px;}
.x19_c00348{left:346.695139px;}
.x1a_c00348{left:352.384720px;}
.x1b_c00348{left:355.792694px;}
.x1c_c00348{left:363.695116px;}
.x1d_c00348{left:371.679253px;}
.x1e_c00348{left:378.434940px;}
.x1f_c00348{left:381.453328px;}
.x20_c00348{left:384.455783px;}
.x21_c00348{left:387.851715px;}
.x22_c00348{left:390.467224px;}
.x23_c00348{left:393.779799px;}
.x24_c00348{left:398.952070px;}
.x25_c00348{left:401.755082px;}
.x3f_c00348{left:451.985828px;}
.x1_c00348{left:465.097640px;}
.x38_c00348{left:676.474352px;}
.x3e_c00348{left:696.904800px;}
.x37_c00348{left:733.103068px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.v1_c00348{vertical-align:29.350073pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws5_c00348{word-spacing:-37.035289pt;}
.ws4_c00348{word-spacing:-16.604696pt;}
.ws2_c00348{word-spacing:-13.477521pt;}
.ws3_c00348{word-spacing:-0.063962pt;}
.ws6_c00348{word-spacing:0.000000pt;}
.ws1_c00348{word-spacing:254.193930pt;}
.ws0_c00348{word-spacing:980.535373pt;}
._1_c00348{width:1.536556pt;}
._5_c00348{width:4.446200pt;}
._4_c00348{width:5.517519pt;}
._0_c00348{width:7.257021pt;}
._2_c00348{width:11.037110pt;}
._3_c00348{width:17.659866pt;}
.fs8_c00348{font-size:37.310908pt;}
.fsb_c00348{font-size:37.311173pt;}
.fs2_c00348{font-size:42.079973pt;}
.fs5_c00348{font-size:42.079974pt;}
.fs1_c00348{font-size:42.079975pt;}
.fs4_c00348{font-size:42.079976pt;}
.fs3_c00348{font-size:42.079977pt;}
.fs6_c00348{font-size:42.079978pt;}
.fsc_c00348{font-size:45.894021pt;}
.fs9_c00348{font-size:53.288186pt;}
.fsd_c00348{font-size:63.921837pt;}
.fs0_c00348{font-size:63.961814pt;}
.fs7_c00348{font-size:68.413814pt;}
.fsa_c00348{font-size:79.952268pt;}
.y0_c00348{bottom:0.000000pt;}
.y1_c00348{bottom:0.000007pt;}
.y54_c00348{bottom:26.805533pt;}
.y51_c00348{bottom:80.479099pt;}
.y50_c00348{bottom:107.462990pt;}
.y4f_c00348{bottom:134.446880pt;}
.y4e_c00348{bottom:161.430770pt;}
.y4d_c00348{bottom:188.414661pt;}
.y4c_c00348{bottom:215.398551pt;}
.y4b_c00348{bottom:242.382442pt;}
.y4a_c00348{bottom:269.366332pt;}
.y52_c00348{bottom:294.878802pt;}
.y53_c00348{bottom:357.390356pt;}
.y10_c00348{bottom:438.944560pt;}
.y38_c00348{bottom:438.957887pt;}
.yf_c00348{bottom:439.411208pt;}
.y39_c00348{bottom:439.428585pt;}
.y22_c00348{bottom:439.733989pt;}
.y37_c00348{bottom:440.063632pt;}
.ye_c00348{bottom:440.358224pt;}
.y23_c00348{bottom:440.474249pt;}
.y21_c00348{bottom:440.492144pt;}
.y36_c00348{bottom:441.175290pt;}
.yd_c00348{bottom:441.311665pt;}
.y20_c00348{bottom:441.411480pt;}
.y3a_c00348{bottom:441.575343pt;}
.y11_c00348{bottom:441.631897pt;}
.y24_c00348{bottom:442.412085pt;}
.y35_c00348{bottom:442.636491pt;}
.yc_c00348{bottom:442.778875pt;}
.y1f_c00348{bottom:443.368235pt;}
.y25_c00348{bottom:443.647574pt;}
.y34_c00348{bottom:444.136272pt;}
.yb_c00348{bottom:444.283350pt;}
.y26_c00348{bottom:445.156323pt;}
.y12_c00348{bottom:445.431649pt;}
.y33_c00348{bottom:445.793228pt;}
.ya_c00348{bottom:445.944627pt;}
.y3b_c00348{bottom:446.106592pt;}
.y1e_c00348{bottom:446.736624pt;}
.y27_c00348{bottom:447.325975pt;}
.y13_c00348{bottom:447.669198pt;}
.y3c_c00348{bottom:449.329795pt;}
.y28_c00348{bottom:449.332771pt;}
.y32_c00348{bottom:449.927990pt;}
.y9_c00348{bottom:450.087675pt;}
.y1d_c00348{bottom:451.594856pt;}
.y29_c00348{bottom:452.236735pt;}
.y14_c00348{bottom:452.957150pt;}
.y3d_c00348{bottom:454.334697pt;}
.y1c_c00348{bottom:455.562742pt;}
.y31_c00348{bottom:455.614749pt;}
.y8_c00348{bottom:455.781928pt;}
.y15_c00348{bottom:457.175713pt;}
.y2a_c00348{bottom:459.696536pt;}
.y3e_c00348{bottom:460.249062pt;}
.y1b_c00348{bottom:461.270273pt;}
.y30_c00348{bottom:462.105976pt;}
.y7_c00348{bottom:462.186152pt;}
.y6_c00348{bottom:465.258807pt;}
.y1a_c00348{bottom:465.329988pt;}
.y2b_c00348{bottom:466.846944pt;}
.y16_c00348{bottom:467.644044pt;}
.y2f_c00348{bottom:468.468115pt;}
.y5_c00348{bottom:470.598118pt;}
.y3f_c00348{bottom:470.876600pt;}
.y19_c00348{bottom:472.234422pt;}
.y2e_c00348{bottom:472.704883pt;}
.y49_c00348{bottom:472.983662pt;}
.y41_c00348{bottom:473.045678pt;}
.y18_c00348{bottom:475.693435pt;}
.y4_c00348{bottom:477.047199pt;}
.y2d_c00348{bottom:478.188178pt;}
.y17_c00348{bottom:478.518126pt;}
.y40_c00348{bottom:478.841168pt;}
.y2c_c00348{bottom:484.463008pt;}
.y3_c00348{bottom:485.517349pt;}
.y42_c00348{bottom:513.663227pt;}
.y2_c00348{bottom:531.164232pt;}
.y43_c00348{bottom:567.529513pt;}
.y55_c00348{bottom:910.616857pt;}
.y47_c00348{bottom:1002.298488pt;}
.y45_c00348{bottom:1004.193955pt;}
.y44_c00348{bottom:1020.184408pt;}
.y48_c00348{bottom:1023.103728pt;}
.y46_c00348{bottom:1040.585280pt;}
.hb_c00348{height:28.584382pt;}
.h8_c00348{height:31.970917pt;}
.h7_c00348{height:31.970918pt;}
.h9_c00348{height:31.970920pt;}
.h5_c00348{height:32.238026pt;}
.h4_c00348{height:32.238028pt;}
.h6_c00348{height:32.238029pt;}
.h12_c00348{height:33.277647pt;}
.he_c00348{height:34.742386pt;}
.h14_c00348{height:40.499022pt;}
.h13_c00348{height:48.971369pt;}
.h3_c00348{height:49.001996pt;}
.hc_c00348{height:49.619420pt;}
.h11_c00348{height:50.258562pt;}
.ha_c00348{height:57.934456pt;}
.hf_c00348{height:59.558193pt;}
.hd_c00348{height:60.744985pt;}
.h10_c00348{height:74.447742pt;}
.h2_c00348{height:1159.999952pt;}
.h0_c00348{height:1159.999959pt;}
.h1_c00348{height:1160.000000pt;}
.w2_c00348{width:830.999965pt;}
.w0_c00348{width:831.000000pt;}
.w1_c00348{width:831.333333pt;}
.x0_c00348{left:0.000000pt;}
.x3d_c00348{left:76.975139pt;}
.x39_c00348{left:95.469567pt;}
.x3a_c00348{left:97.507007pt;}
.x40_c00348{left:116.686291pt;}
.x27_c00348{left:119.906064pt;}
.x26_c00348{left:121.392652pt;}
.x28_c00348{left:124.389083pt;}
.x29_c00348{left:128.698021pt;}
.x2a_c00348{left:133.464791pt;}
.x2b_c00348{left:135.910272pt;}
.x2c_c00348{left:138.584129pt;}
.x2d_c00348{left:142.002076pt;}
.x2e_c00348{left:145.070170pt;}
.x2f_c00348{left:152.430191pt;}
.x30_c00348{left:159.776608pt;}
.x31_c00348{left:167.266795pt;}
.x32_c00348{left:174.717010pt;}
.x33_c00348{left:178.419115pt;}
.x34_c00348{left:182.468375pt;}
.x35_c00348{left:185.852506pt;}
.x36_c00348{left:188.150503pt;}
.x3_c00348{left:204.676373pt;}
.x2_c00348{left:206.574107pt;}
.x4_c00348{left:209.317987pt;}
.x5_c00348{left:213.616993pt;}
.x6_c00348{left:218.376513pt;}
.x7_c00348{left:220.819105pt;}
.x8_c00348{left:223.490334pt;}
.x9_c00348{left:226.905704pt;}
.x3c_c00348{left:227.972394pt;}
.xa_c00348{left:229.825509pt;}
.xb_c00348{left:233.767373pt;}
.xc_c00348{left:241.423300pt;}
.xd_c00348{left:251.942027pt;}
.xe_c00348{left:258.549026pt;}
.xf_c00348{left:261.564741pt;}
.x3b_c00348{left:262.612255pt;}
.x10_c00348{left:266.308178pt;}
.x11_c00348{left:269.319244pt;}
.x12_c00348{left:272.883167pt;}
.x13_c00348{left:289.225349pt;}
.x14_c00348{left:290.306761pt;}
.x15_c00348{left:291.569114pt;}
.x16_c00348{left:294.587062pt;}
.x17_c00348{left:297.451603pt;}
.x18_c00348{left:302.677178pt;}
.x19_c00348{left:308.173457pt;}
.x1a_c00348{left:313.230862pt;}
.x1b_c00348{left:316.260173pt;}
.x1c_c00348{left:323.284548pt;}
.x1d_c00348{left:330.381558pt;}
.x1e_c00348{left:336.386614pt;}
.x1f_c00348{left:339.069625pt;}
.x20_c00348{left:341.738474pt;}
.x21_c00348{left:344.757080pt;}
.x22_c00348{left:347.081977pt;}
.x23_c00348{left:350.026488pt;}
.x24_c00348{left:354.624063pt;}
.x25_c00348{left:357.115628pt;}
.x3f_c00348{left:401.765180pt;}
.x1_c00348{left:413.420124pt;}
.x38_c00348{left:601.310535pt;}
.x3e_c00348{left:619.470933pt;}
.x37_c00348{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77e9fa873dedae2e997acce0.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.171387;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.006348;font-style:normal;font-weight:normal;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_7cd7b40cfadd0789627b9077.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.005371;font-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_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);}
.v0_c00349{vertical-align:0.000000px;}
.ls0_c00349{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00349{word-spacing:-18.680283px;}
.ws1_c00349{word-spacing:0.000000px;}
._0_c00349{width:1.088915px;}
._e_c00349{width:3.507627px;}
._7_c00349{width:5.276675px;}
._a_c00349{width:8.065466px;}
._d_c00349{width:9.310846px;}
._9_c00349{width:10.540581px;}
._6_c00349{width:12.775171px;}
._1_c00349{width:14.834085px;}
._2_c00349{width:16.376746px;}
._b_c00349{width:17.493517px;}
._8_c00349{width:24.620218px;}
._f_c00349{width:25.768155px;}
._4_c00349{width:26.885481px;}
._3_c00349{width:35.088404px;}
._5_c00349{width:41.370138px;}
._c_c00349{width:47.481755px;}
.fc1_c00349{color:rgb(198,111,25);}
.fc0_c00349{color:rgb(0,0,0);}
.fs1_c00349{font-size:71.912067px;}
.fs0_c00349{font-size:71.957041px;}
.y0_c00349{bottom:0.000000px;}
.y1_c00349{bottom:0.000008px;}
.y20_c00349{bottom:30.156225px;}
.y1e_c00349{bottom:98.425248px;}
.y1d_c00349{bottom:128.782125px;}
.y1c_c00349{bottom:159.139002px;}
.y1b_c00349{bottom:189.495879px;}
.y1a_c00349{bottom:219.852755px;}
.y1f_c00349{bottom:258.128843px;}
.y14_c00349{bottom:335.032898px;}
.y13_c00349{bottom:365.389775px;}
.y12_c00349{bottom:395.746652px;}
.y11_c00349{bottom:426.103529px;}
.y10_c00349{bottom:456.460405px;}
.y15_c00349{bottom:492.888758px;}
.yf_c00349{bottom:569.792799px;}
.ye_c00349{bottom:600.149675px;}
.yd_c00349{bottom:630.506552px;}
.yc_c00349{bottom:660.863429px;}
.yb_c00349{bottom:701.654898px;}
.y9_c00349{bottom:778.558934px;}
.y8_c00349{bottom:808.915811px;}
.y7_c00349{bottom:839.272687px;}
.y6_c00349{bottom:869.629564px;}
.y5_c00349{bottom:899.986441px;}
.y4_c00349{bottom:930.343318px;}
.y3_c00349{bottom:960.700194px;}
.y2_c00349{bottom:991.057071px;}
.ya_c00349{bottom:1026.349199px;}
.y19_c00349{bottom:1103.576887px;}
.y18_c00349{bottom:1133.933764px;}
.y17_c00349{bottom:1164.290640px;}
.y16_c00349{bottom:1194.647517px;}
.h4_c00349{height:55.127245px;}
.h5_c00349{height:66.961090px;}
.h3_c00349{height:67.002968px;}
.h2_c00349{height:1304.999946px;}
.h0_c00349{height:1304.999953px;}
.h1_c00349{height:1305.000000px;}
.w2_c00349{width:934.874961px;}
.w0_c00349{width:934.875000px;}
.w1_c00349{width:935.250000px;}
.x0_c00349{left:0.000000px;}
.x1_c00349{left:87.850202px;}
.x2_c00349{left:451.985828px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws0_c00349{word-spacing:-16.604696pt;}
.ws1_c00349{word-spacing:0.000000pt;}
._0_c00349{width:0.967924pt;}
._e_c00349{width:3.117890pt;}
._7_c00349{width:4.690378pt;}
._a_c00349{width:7.169303pt;}
._d_c00349{width:8.276308pt;}
._9_c00349{width:9.369406pt;}
._6_c00349{width:11.355708pt;}
._1_c00349{width:13.185854pt;}
._2_c00349{width:14.557107pt;}
._b_c00349{width:15.549793pt;}
._8_c00349{width:21.884638pt;}
._f_c00349{width:22.905027pt;}
._4_c00349{width:23.898206pt;}
._3_c00349{width:31.189693pt;}
._5_c00349{width:36.773456pt;}
._c_c00349{width:42.206005pt;}
.fs1_c00349{font-size:63.921837pt;}
.fs0_c00349{font-size:63.961814pt;}
.y0_c00349{bottom:0.000000pt;}
.y1_c00349{bottom:0.000007pt;}
.y20_c00349{bottom:26.805533pt;}
.y1e_c00349{bottom:87.489110pt;}
.y1d_c00349{bottom:114.473000pt;}
.y1c_c00349{bottom:141.456890pt;}
.y1b_c00349{bottom:168.440781pt;}
.y1a_c00349{bottom:195.424671pt;}
.y1f_c00349{bottom:229.447861pt;}
.y14_c00349{bottom:297.807021pt;}
.y13_c00349{bottom:324.790911pt;}
.y12_c00349{bottom:351.774802pt;}
.y11_c00349{bottom:378.758692pt;}
.y10_c00349{bottom:405.742583pt;}
.y15_c00349{bottom:438.123340pt;}
.yf_c00349{bottom:506.482488pt;}
.ye_c00349{bottom:533.466378pt;}
.yd_c00349{bottom:560.450269pt;}
.yc_c00349{bottom:587.434159pt;}
.yb_c00349{bottom:623.693243pt;}
.y9_c00349{bottom:692.052386pt;}
.y8_c00349{bottom:719.036276pt;}
.y7_c00349{bottom:746.020167pt;}
.y6_c00349{bottom:773.004057pt;}
.y5_c00349{bottom:799.987947pt;}
.y4_c00349{bottom:826.971838pt;}
.y3_c00349{bottom:853.955728pt;}
.y2_c00349{bottom:880.939619pt;}
.ya_c00349{bottom:912.310399pt;}
.y19_c00349{bottom:980.957233pt;}
.y18_c00349{bottom:1007.941123pt;}
.y17_c00349{bottom:1034.925014pt;}
.y16_c00349{bottom:1061.908904pt;}
.h4_c00349{height:49.001996pt;}
.h5_c00349{height:59.520969pt;}
.h3_c00349{height:59.558193pt;}
.h2_c00349{height:1159.999952pt;}
.h0_c00349{height:1159.999959pt;}
.h1_c00349{height:1160.000000pt;}
.w2_c00349{width:830.999965pt;}
.w0_c00349{width:831.000000pt;}
.w1_c00349{width:831.333333pt;}
.x0_c00349{left:0.000000pt;}
.x1_c00349{left:78.089069pt;}
.x2_c00349{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a19865ac0e31a44986151dc.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:0.743000;font-style:normal;font-weight:normal;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_05bd3aa0c27a139906e5044f.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:1.000000;font-style:normal;font-weight: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_c00350;src:url('chunks/assets/font_ff10dcbd327a96fc7848e975.woff2')format("woff");}.ff5_c00350{font-family:ff5_c00350;line-height:1.171387;font-style:normal;font-weight: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_c00350;src:url('chunks/assets/font_8c9453da4275a06a9c5e8f34.woff2')format("woff");}.ff6_c00350{font-family:ff6_c00350;line-height:1.000000;font-style:normal;font-weight: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_c00350;src:url('chunks/assets/font_7800f617606f7656592f6ffb.woff2')format("woff");}.ff7_c00350{font-family:ff7_c00350;line-height:1.006348;font-style:normal;font-weight: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_c00350;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00350{font-family:ff8_c00350;line-height:0.734863;font-style:normal;font-weight: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_c00350;src:url('chunks/assets/font_58a93de6c2c0f58e8604101c.woff2')format("woff");}.ff9_c00350{font-family:ff9_c00350;line-height:0.894000;font-style:normal;font-weight: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_c00350;src:url('chunks/assets/font_6e2905414da2f4c29a41e484.woff2')format("woff");}.ffa_c00350{font-family:ffa_c00350;line-height:1.119000;font-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_c00350{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00350{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00350{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00350{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00350{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00350{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00350{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00350{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00350{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00350{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00350{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00350{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00350{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00350{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00350{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00350{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00350{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00350{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00350{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00350{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00350{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00350{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00350{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00350{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00350{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00350{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00350{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00350{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00350{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00350{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00350{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00350{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00350{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00350{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00350{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00350{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00350{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00350{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00350{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00350{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00350{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00350{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00350{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00350{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00350{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00350{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00350{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00350{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00350{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00350{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00350{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00350{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00350{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00350{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00350{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00350{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00350{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00350{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00350{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00350{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00350{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00350{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00350{vertical-align:0.000000px;}
.ls0_c00350{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00350{word-spacing:-41.664701px;}
.ws2_c00350{word-spacing:-39.102529px;}
.ws3_c00350{word-spacing:-18.680283px;}
.ws0_c00350{word-spacing:-15.162211px;}
.ws5_c00350{word-spacing:0.000000px;}
.ws1_c00350{word-spacing:280.571339px;}
._2_c00350{width:2.625539px;}
._5_c00350{width:6.507144px;}
._4_c00350{width:7.724548px;}
._0_c00350{width:8.902674px;}
._6_c00350{width:10.243237px;}
._3_c00350{width:13.466831px;}
._1_c00350{width:21.277905px;}
.fc3_c00350{color:rgb(9,71,81);}
.fc2_c00350{color:rgb(198,111,25);}
.fc1_c00350{color:rgb(255,255,255);}
.fc0_c00350{color:rgb(0,0,0);}
.fsb_c00350{font-size:41.974772px;}
.fs9_c00350{font-size:41.975069px;}
.fs2_c00350{font-size:47.339969px;}
.fs5_c00350{font-size:47.339970px;}
.fs1_c00350{font-size:47.339972px;}
.fs4_c00350{font-size:47.339973px;}
.fs3_c00350{font-size:47.339974px;}
.fs6_c00350{font-size:47.339975px;}
.fsd_c00350{font-size:51.630774px;}
.fs8_c00350{font-size:55.721735px;}
.fse_c00350{font-size:56.262632px;}
.fsc_c00350{font-size:59.949210px;}
.fsf_c00350{font-size:71.912067px;}
.fs0_c00350{font-size:71.957041px;}
.fs7_c00350{font-size:76.965540px;}
.fsa_c00350{font-size:89.946302px;}
.y0_c00350{bottom:0.000000px;}
.y1_c00350{bottom:0.000008px;}
.y57_c00350{bottom:30.156225px;}
.y4e_c00350{bottom:89.970835px;}
.y4d_c00350{bottom:120.327711px;}
.y4c_c00350{bottom:150.684588px;}
.y4b_c00350{bottom:181.041465px;}
.y4a_c00350{bottom:211.398342px;}
.y49_c00350{bottom:241.755218px;}
.y48_c00350{bottom:272.112095px;}
.y47_c00350{bottom:302.468972px;}
.y4f_c00350{bottom:338.484620px;}
.y55_c00350{bottom:402.064151px;}
.y50_c00350{bottom:487.376458px;}
.y10_c00350{bottom:493.812629px;}
.y38_c00350{bottom:493.827623px;}
.yf_c00350{bottom:494.337609px;}
.y39_c00350{bottom:494.357158px;}
.y22_c00350{bottom:494.700737px;}
.y37_c00350{bottom:495.071586px;}
.ye_c00350{bottom:495.403002px;}
.y23_c00350{bottom:495.533530px;}
.y21_c00350{bottom:495.553663px;}
.y36_c00350{bottom:496.322201px;}
.yd_c00350{bottom:496.475623px;}
.y20_c00350{bottom:496.587915px;}
.y3a_c00350{bottom:496.772260px;}
.y11_c00350{bottom:496.835884px;}
.y24_c00350{bottom:497.713596px;}
.y35_c00350{bottom:497.966053px;}
.yc_c00350{bottom:498.126234px;}
.y1f_c00350{bottom:498.789265px;}
.y25_c00350{bottom:499.103521px;}
.y34_c00350{bottom:499.653306px;}
.yb_c00350{bottom:499.818769px;}
.y26_c00350{bottom:500.800864px;}
.y12_c00350{bottom:501.110605px;}
.y33_c00350{bottom:501.517382px;}
.ya_c00350{bottom:501.687706px;}
.y3b_c00350{bottom:501.869915px;}
.y1e_c00350{bottom:502.578702px;}
.y27_c00350{bottom:503.241722px;}
.y13_c00350{bottom:503.627848px;}
.y3c_c00350{bottom:505.496019px;}
.y28_c00350{bottom:505.499367px;}
.y32_c00350{bottom:506.168989px;}
.y9_c00350{bottom:506.348634px;}
.y1d_c00350{bottom:508.044213px;}
.y29_c00350{bottom:508.766327px;}
.y14_c00350{bottom:509.576794px;}
.y3d_c00350{bottom:511.126534px;}
.y1c_c00350{bottom:512.508085px;}
.y31_c00350{bottom:512.566592px;}
.y8_c00350{bottom:512.754669px;}
.y15_c00350{bottom:514.322677px;}
.y2a_c00350{bottom:517.158603px;}
.y3e_c00350{bottom:517.780195px;}
.y1b_c00350{bottom:518.929057px;}
.y30_c00350{bottom:519.869222px;}
.y7_c00350{bottom:519.959421px;}
.y6_c00350{bottom:523.416158px;}
.y1a_c00350{bottom:523.496236px;}
.y2b_c00350{bottom:525.202812px;}
.y16_c00350{bottom:526.099549px;}
.y2f_c00350{bottom:527.026630px;}
.y5_c00350{bottom:529.422883px;}
.y3f_c00350{bottom:529.736175px;}
.y19_c00350{bottom:531.263725px;}
.y2e_c00350{bottom:531.792993px;}
.y46_c00350{bottom:532.176388px;}
.y41_c00350{bottom:533.331196px;}
.y18_c00350{bottom:535.155114px;}
.y4_c00350{bottom:536.678099px;}
.y2d_c00350{bottom:537.961701px;}
.y17_c00350{bottom:538.332892px;}
.y40_c00350{bottom:538.696314px;}
.y51_c00350{bottom:540.431096px;}
.y2c_c00350{bottom:545.020884px;}
.y3_c00350{bottom:546.207017px;}
.y52_c00350{bottom:577.871130px;}
.y2_c00350{bottom:597.559761px;}
.y42_c00350{bottom:639.489911px;}
.y58_c00350{bottom:978.573191px;}
.y56_c00350{bottom:1027.380534px;}
.y44_c00350{bottom:1127.585799px;}
.y54_c00350{bottom:1129.718199px;}
.y53_c00350{bottom:1147.707459px;}
.y45_c00350{bottom:1150.991694px;}
.y43_c00350{bottom:1170.658440px;}
.h8_c00350{height:35.967282px;}
.h7_c00350{height:35.967283px;}
.h9_c00350{height:35.967285px;}
.h12_c00350{height:37.437353px;}
.hf_c00350{height:39.084907px;}
.hc_c00350{height:39.085184px;}
.h5_c00350{height:44.080723px;}
.h4_c00350{height:44.080726px;}
.h6_c00350{height:44.080728px;}
.hb_c00350{height:51.885424px;}
.h13_c00350{height:52.830612px;}
.he_c00350{height:55.127245px;}
.h11_c00350{height:55.821847px;}
.ha_c00350{height:56.261810px;}
.h15_c00350{height:56.292308px;}
.h14_c00350{height:66.961090px;}
.h3_c00350{height:67.002968px;}
.h10_c00350{height:68.338108px;}
.hd_c00350{height:83.753709px;}
.h2_c00350{height:1304.999946px;}
.h0_c00350{height:1304.999953px;}
.h1_c00350{height:1305.000000px;}
.w2_c00350{width:934.874961px;}
.w0_c00350{width:934.875000px;}
.w1_c00350{width:935.250000px;}
.x0_c00350{left:0.000000px;}
.x3b_c00350{left:89.434062px;}
.x3e_c00350{left:107.403263px;}
.x39_c00350{left:109.695383px;}
.x40_c00350{left:111.067973px;}
.x42_c00350{left:131.272077px;}
.x27_c00350{left:134.894322px;}
.x26_c00350{left:136.566734px;}
.x28_c00350{left:139.937719px;}
.x29_c00350{left:144.785273px;}
.x2a_c00350{left:150.147890px;}
.x2b_c00350{left:152.899057px;}
.x2c_c00350{left:155.907145px;}
.x2d_c00350{left:159.752336px;}
.x37_c00350{left:161.347648px;}
.x2e_c00350{left:163.203941px;}
.x2f_c00350{left:171.483965px;}
.x30_c00350{left:179.748684px;}
.x31_c00350{left:188.175145px;}
.x32_c00350{left:196.556636px;}
.x33_c00350{left:200.721504px;}
.x34_c00350{left:205.276922px;}
.x35_c00350{left:209.084069px;}
.x36_c00350{left:211.669316px;}
.x3_c00350{left:230.260919px;}
.x2_c00350{left:232.395871px;}
.x4_c00350{left:235.482735px;}
.x5_c00350{left:240.319117px;}
.x6_c00350{left:245.673577px;}
.x7_c00350{left:248.421493px;}
.x8_c00350{left:251.426626px;}
.x9_c00350{left:255.268917px;}
.xa_c00350{left:258.553698px;}
.xb_c00350{left:262.988294px;}
.xc_c00350{left:271.601212px;}
.xd_c00350{left:283.434780px;}
.xe_c00350{left:290.867654px;}
.xf_c00350{left:294.260334px;}
.x3a_c00350{left:295.438786px;}
.x10_c00350{left:299.596701px;}
.x11_c00350{left:302.984150px;}
.x12_c00350{left:306.993562px;}
.x13_c00350{left:325.378518px;}
.x14_c00350{left:326.595106px;}
.x15_c00350{left:328.015253px;}
.x16_c00350{left:331.410444px;}
.x17_c00350{left:334.633053px;}
.x18_c00350{left:340.511825px;}
.x19_c00350{left:346.695139px;}
.x1a_c00350{left:352.384720px;}
.x1b_c00350{left:355.792694px;}
.x1c_c00350{left:363.695116px;}
.x1d_c00350{left:371.679253px;}
.x1e_c00350{left:378.434940px;}
.x1f_c00350{left:381.453328px;}
.x20_c00350{left:384.455783px;}
.x21_c00350{left:387.851715px;}
.x22_c00350{left:390.467224px;}
.x23_c00350{left:393.779799px;}
.x24_c00350{left:398.952070px;}
.x25_c00350{left:401.755082px;}
.x41_c00350{left:451.985828px;}
.x1_c00350{left:465.097640px;}
.x38_c00350{left:676.474352px;}
.x3f_c00350{left:696.904800px;}
.x3d_c00350{left:733.103068px;}
.x3c_c00350{left:756.637341px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ws4_c00350{word-spacing:-37.035289pt;}
.ws2_c00350{word-spacing:-34.757804pt;}
.ws3_c00350{word-spacing:-16.604696pt;}
.ws0_c00350{word-spacing:-13.477521pt;}
.ws5_c00350{word-spacing:0.000000pt;}
.ws1_c00350{word-spacing:249.396746pt;}
._2_c00350{width:2.333813pt;}
._5_c00350{width:5.784128pt;}
._4_c00350{width:6.866265pt;}
._0_c00350{width:7.913488pt;}
._6_c00350{width:9.105100pt;}
._3_c00350{width:11.970516pt;}
._1_c00350{width:18.913694pt;}
.fsb_c00350{font-size:37.310908pt;}
.fs9_c00350{font-size:37.311173pt;}
.fs2_c00350{font-size:42.079973pt;}
.fs5_c00350{font-size:42.079974pt;}
.fs1_c00350{font-size:42.079975pt;}
.fs4_c00350{font-size:42.079976pt;}
.fs3_c00350{font-size:42.079977pt;}
.fs6_c00350{font-size:42.079978pt;}
.fsd_c00350{font-size:45.894021pt;}
.fs8_c00350{font-size:49.530431pt;}
.fse_c00350{font-size:50.011229pt;}
.fsc_c00350{font-size:53.288186pt;}
.fsf_c00350{font-size:63.921837pt;}
.fs0_c00350{font-size:63.961814pt;}
.fs7_c00350{font-size:68.413814pt;}
.fsa_c00350{font-size:79.952268pt;}
.y0_c00350{bottom:0.000000pt;}
.y1_c00350{bottom:0.000007pt;}
.y57_c00350{bottom:26.805533pt;}
.y4e_c00350{bottom:79.974075pt;}
.y4d_c00350{bottom:106.957966pt;}
.y4c_c00350{bottom:133.941856pt;}
.y4b_c00350{bottom:160.925747pt;}
.y4a_c00350{bottom:187.909637pt;}
.y49_c00350{bottom:214.893527pt;}
.y48_c00350{bottom:241.877418pt;}
.y47_c00350{bottom:268.861308pt;}
.y4f_c00350{bottom:300.875218pt;}
.y55_c00350{bottom:357.390356pt;}
.y50_c00350{bottom:433.223518pt;}
.y10_c00350{bottom:438.944560pt;}
.y38_c00350{bottom:438.957887pt;}
.yf_c00350{bottom:439.411208pt;}
.y39_c00350{bottom:439.428585pt;}
.y22_c00350{bottom:439.733989pt;}
.y37_c00350{bottom:440.063632pt;}
.ye_c00350{bottom:440.358224pt;}
.y23_c00350{bottom:440.474249pt;}
.y21_c00350{bottom:440.492144pt;}
.y36_c00350{bottom:441.175290pt;}
.yd_c00350{bottom:441.311665pt;}
.y20_c00350{bottom:441.411480pt;}
.y3a_c00350{bottom:441.575343pt;}
.y11_c00350{bottom:441.631897pt;}
.y24_c00350{bottom:442.412085pt;}
.y35_c00350{bottom:442.636491pt;}
.yc_c00350{bottom:442.778875pt;}
.y1f_c00350{bottom:443.368235pt;}
.y25_c00350{bottom:443.647574pt;}
.y34_c00350{bottom:444.136272pt;}
.yb_c00350{bottom:444.283350pt;}
.y26_c00350{bottom:445.156323pt;}
.y12_c00350{bottom:445.431649pt;}
.y33_c00350{bottom:445.793228pt;}
.ya_c00350{bottom:445.944627pt;}
.y3b_c00350{bottom:446.106592pt;}
.y1e_c00350{bottom:446.736624pt;}
.y27_c00350{bottom:447.325975pt;}
.y13_c00350{bottom:447.669198pt;}
.y3c_c00350{bottom:449.329795pt;}
.y28_c00350{bottom:449.332771pt;}
.y32_c00350{bottom:449.927990pt;}
.y9_c00350{bottom:450.087675pt;}
.y1d_c00350{bottom:451.594856pt;}
.y29_c00350{bottom:452.236735pt;}
.y14_c00350{bottom:452.957150pt;}
.y3d_c00350{bottom:454.334697pt;}
.y1c_c00350{bottom:455.562742pt;}
.y31_c00350{bottom:455.614749pt;}
.y8_c00350{bottom:455.781928pt;}
.y15_c00350{bottom:457.175713pt;}
.y2a_c00350{bottom:459.696536pt;}
.y3e_c00350{bottom:460.249062pt;}
.y1b_c00350{bottom:461.270273pt;}
.y30_c00350{bottom:462.105976pt;}
.y7_c00350{bottom:462.186152pt;}
.y6_c00350{bottom:465.258807pt;}
.y1a_c00350{bottom:465.329988pt;}
.y2b_c00350{bottom:466.846944pt;}
.y16_c00350{bottom:467.644044pt;}
.y2f_c00350{bottom:468.468115pt;}
.y5_c00350{bottom:470.598118pt;}
.y3f_c00350{bottom:470.876600pt;}
.y19_c00350{bottom:472.234422pt;}
.y2e_c00350{bottom:472.704883pt;}
.y46_c00350{bottom:473.045678pt;}
.y41_c00350{bottom:474.072174pt;}
.y18_c00350{bottom:475.693435pt;}
.y4_c00350{bottom:477.047199pt;}
.y2d_c00350{bottom:478.188178pt;}
.y17_c00350{bottom:478.518126pt;}
.y40_c00350{bottom:478.841168pt;}
.y51_c00350{bottom:480.383196pt;}
.y2c_c00350{bottom:484.463008pt;}
.y3_c00350{bottom:485.517349pt;}
.y52_c00350{bottom:513.663227pt;}
.y2_c00350{bottom:531.164232pt;}
.y42_c00350{bottom:568.435476pt;}
.y58_c00350{bottom:869.842836pt;}
.y56_c00350{bottom:913.227141pt;}
.y44_c00350{bottom:1002.298488pt;}
.y54_c00350{bottom:1004.193955pt;}
.y53_c00350{bottom:1020.184408pt;}
.y45_c00350{bottom:1023.103728pt;}
.y43_c00350{bottom:1040.585280pt;}
.h8_c00350{height:31.970917pt;}
.h7_c00350{height:31.970918pt;}
.h9_c00350{height:31.970920pt;}
.h12_c00350{height:33.277647pt;}
.hf_c00350{height:34.742140pt;}
.hc_c00350{height:34.742386pt;}
.h5_c00350{height:39.182865pt;}
.h4_c00350{height:39.182867pt;}
.h6_c00350{height:39.182869pt;}
.hb_c00350{height:46.120377pt;}
.h13_c00350{height:46.960544pt;}
.he_c00350{height:49.001996pt;}
.h11_c00350{height:49.619420pt;}
.ha_c00350{height:50.010498pt;}
.h15_c00350{height:50.037607pt;}
.h14_c00350{height:59.520969pt;}
.h3_c00350{height:59.558193pt;}
.h10_c00350{height:60.744985pt;}
.hd_c00350{height:74.447742pt;}
.h2_c00350{height:1159.999952pt;}
.h0_c00350{height:1159.999959pt;}
.h1_c00350{height:1160.000000pt;}
.w2_c00350{width:830.999965pt;}
.w0_c00350{width:831.000000pt;}
.w1_c00350{width:831.333333pt;}
.x0_c00350{left:0.000000pt;}
.x3b_c00350{left:79.496944pt;}
.x3e_c00350{left:95.469567pt;}
.x39_c00350{left:97.507007pt;}
.x40_c00350{left:98.727087pt;}
.x42_c00350{left:116.686291pt;}
.x27_c00350{left:119.906064pt;}
.x26_c00350{left:121.392652pt;}
.x28_c00350{left:124.389083pt;}
.x29_c00350{left:128.698021pt;}
.x2a_c00350{left:133.464791pt;}
.x2b_c00350{left:135.910272pt;}
.x2c_c00350{left:138.584129pt;}
.x2d_c00350{left:142.002076pt;}
.x37_c00350{left:143.420132pt;}
.x2e_c00350{left:145.070170pt;}
.x2f_c00350{left:152.430191pt;}
.x30_c00350{left:159.776608pt;}
.x31_c00350{left:167.266795pt;}
.x32_c00350{left:174.717010pt;}
.x33_c00350{left:178.419115pt;}
.x34_c00350{left:182.468375pt;}
.x35_c00350{left:185.852506pt;}
.x36_c00350{left:188.150503pt;}
.x3_c00350{left:204.676373pt;}
.x2_c00350{left:206.574107pt;}
.x4_c00350{left:209.317987pt;}
.x5_c00350{left:213.616993pt;}
.x6_c00350{left:218.376513pt;}
.x7_c00350{left:220.819105pt;}
.x8_c00350{left:223.490334pt;}
.x9_c00350{left:226.905704pt;}
.xa_c00350{left:229.825509pt;}
.xb_c00350{left:233.767373pt;}
.xc_c00350{left:241.423300pt;}
.xd_c00350{left:251.942027pt;}
.xe_c00350{left:258.549026pt;}
.xf_c00350{left:261.564741pt;}
.x3a_c00350{left:262.612255pt;}
.x10_c00350{left:266.308178pt;}
.x11_c00350{left:269.319244pt;}
.x12_c00350{left:272.883167pt;}
.x13_c00350{left:289.225349pt;}
.x14_c00350{left:290.306761pt;}
.x15_c00350{left:291.569114pt;}
.x16_c00350{left:294.587062pt;}
.x17_c00350{left:297.451603pt;}
.x18_c00350{left:302.677178pt;}
.x19_c00350{left:308.173457pt;}
.x1a_c00350{left:313.230862pt;}
.x1b_c00350{left:316.260173pt;}
.x1c_c00350{left:323.284548pt;}
.x1d_c00350{left:330.381558pt;}
.x1e_c00350{left:336.386614pt;}
.x1f_c00350{left:339.069625pt;}
.x20_c00350{left:341.738474pt;}
.x21_c00350{left:344.757080pt;}
.x22_c00350{left:347.081977pt;}
.x23_c00350{left:350.026488pt;}
.x24_c00350{left:354.624063pt;}
.x25_c00350{left:357.115628pt;}
.x41_c00350{left:401.765180pt;}
.x1_c00350{left:413.420124pt;}
.x38_c00350{left:601.310535pt;}
.x3f_c00350{left:619.470933pt;}
.x3d_c00350{left:651.647171pt;}
.x3c_c00350{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_746624715e07394f03e3051c.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.171387;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.006348;font-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_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;}
.ls0_c00351{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00351{word-spacing:-18.680283px;}
.ws1_c00351{word-spacing:0.000000px;}
._10_c00351{width:2.241246px;}
._9_c00351{width:3.456020px;}
._0_c00351{width:4.903839px;}
._6_c00351{width:6.292508px;}
._a_c00351{width:7.442915px;}
._f_c00351{width:9.226509px;}
._12_c00351{width:10.449173px;}
._1_c00351{width:11.922524px;}
._4_c00351{width:13.878427px;}
._2_c00351{width:15.210347px;}
._5_c00351{width:17.235017px;}
._7_c00351{width:20.084542px;}
._3_c00351{width:21.376246px;}
._b_c00351{width:22.587453px;}
._c_c00351{width:27.985245px;}
._8_c00351{width:31.309372px;}
._11_c00351{width:32.530594px;}
._13_c00351{width:33.993376px;}
._d_c00351{width:37.362796px;}
._e_c00351{width:55.935355px;}
.fc1_c00351{color:rgb(198,111,25);}
.fc0_c00351{color:rgb(0,0,0);}
.fs1_c00351{font-size:71.912067px;}
.fs0_c00351{font-size:71.957041px;}
.y0_c00351{bottom:0.000000px;}
.y1_c00351{bottom:0.000008px;}
.y27_c00351{bottom:30.156225px;}
.y25_c00351{bottom:66.119713px;}
.y24_c00351{bottom:96.476589px;}
.y23_c00351{bottom:126.833466px;}
.y22_c00351{bottom:157.190343px;}
.y21_c00351{bottom:187.547220px;}
.y20_c00351{bottom:217.904096px;}
.y1f_c00351{bottom:248.260973px;}
.y1e_c00351{bottom:278.617850px;}
.y1d_c00351{bottom:308.974727px;}
.y1c_c00351{bottom:339.331604px;}
.y1b_c00351{bottom:369.688480px;}
.y1a_c00351{bottom:400.045357px;}
.y19_c00351{bottom:430.402234px;}
.y18_c00351{bottom:460.759111px;}
.y17_c00351{bottom:491.115987px;}
.y16_c00351{bottom:521.472864px;}
.y15_c00351{bottom:551.829741px;}
.y14_c00351{bottom:582.186618px;}
.y13_c00351{bottom:612.543494px;}
.y12_c00351{bottom:642.900371px;}
.y11_c00351{bottom:673.257248px;}
.y10_c00351{bottom:703.614125px;}
.yf_c00351{bottom:733.971001px;}
.ye_c00351{bottom:764.327878px;}
.y26_c00351{bottom:797.433920px;}
.yc_c00351{bottom:861.942014px;}
.yb_c00351{bottom:892.298891px;}
.ya_c00351{bottom:922.655767px;}
.y9_c00351{bottom:953.012644px;}
.y8_c00351{bottom:983.369521px;}
.y7_c00351{bottom:1013.726398px;}
.y6_c00351{bottom:1044.083274px;}
.y5_c00351{bottom:1074.440151px;}
.y4_c00351{bottom:1104.797028px;}
.y3_c00351{bottom:1135.153905px;}
.y2_c00351{bottom:1165.510782px;}
.yd_c00351{bottom:1199.835078px;}
.h4_c00351{height:55.127245px;}
.h5_c00351{height:66.961090px;}
.h3_c00351{height:67.002968px;}
.h2_c00351{height:1304.999946px;}
.h0_c00351{height:1304.999953px;}
.h1_c00351{height:1305.000000px;}
.w2_c00351{width:934.874961px;}
.w0_c00351{width:934.875000px;}
.w1_c00351{width:935.250000px;}
.x0_c00351{left:0.000000px;}
.x1_c00351{left:87.850202px;}
.x2_c00351{left:89.434062px;}
.x3_c00351{left:451.985828px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws0_c00351{word-spacing:-16.604696pt;}
.ws1_c00351{word-spacing:0.000000pt;}
._10_c00351{width:1.992219pt;}
._9_c00351{width:3.072018pt;}
._0_c00351{width:4.358968pt;}
._6_c00351{width:5.593341pt;}
._a_c00351{width:6.615924pt;}
._f_c00351{width:8.201341pt;}
._12_c00351{width:9.288154pt;}
._1_c00351{width:10.597799pt;}
._4_c00351{width:12.336380pt;}
._2_c00351{width:13.520309pt;}
._5_c00351{width:15.320015pt;}
._7_c00351{width:17.852926pt;}
._3_c00351{width:19.001108pt;}
._b_c00351{width:20.077736pt;}
._c_c00351{width:24.875773pt;}
._8_c00351{width:27.830553pt;}
._11_c00351{width:28.916084pt;}
._13_c00351{width:30.216334pt;}
._d_c00351{width:33.211374pt;}
._e_c00351{width:49.720316pt;}
.fs1_c00351{font-size:63.921837pt;}
.fs0_c00351{font-size:63.961814pt;}
.y0_c00351{bottom:0.000000pt;}
.y1_c00351{bottom:0.000007pt;}
.y27_c00351{bottom:26.805533pt;}
.y25_c00351{bottom:58.773078pt;}
.y24_c00351{bottom:85.756968pt;}
.y23_c00351{bottom:112.740859pt;}
.y22_c00351{bottom:139.724749pt;}
.y21_c00351{bottom:166.708640pt;}
.y20_c00351{bottom:193.692530pt;}
.y1f_c00351{bottom:220.676421pt;}
.y1e_c00351{bottom:247.660311pt;}
.y1d_c00351{bottom:274.644202pt;}
.y1c_c00351{bottom:301.628092pt;}
.y1b_c00351{bottom:328.611982pt;}
.y1a_c00351{bottom:355.595873pt;}
.y19_c00351{bottom:382.579763pt;}
.y18_c00351{bottom:409.563654pt;}
.y17_c00351{bottom:436.547544pt;}
.y16_c00351{bottom:463.531435pt;}
.y15_c00351{bottom:490.515325pt;}
.y14_c00351{bottom:517.499216pt;}
.y13_c00351{bottom:544.483106pt;}
.y12_c00351{bottom:571.466997pt;}
.y11_c00351{bottom:598.450887pt;}
.y10_c00351{bottom:625.434778pt;}
.yf_c00351{bottom:652.418668pt;}
.ye_c00351{bottom:679.402558pt;}
.y26_c00351{bottom:708.830151pt;}
.yc_c00351{bottom:766.170679pt;}
.yb_c00351{bottom:793.154569pt;}
.ya_c00351{bottom:820.138460pt;}
.y9_c00351{bottom:847.122350pt;}
.y8_c00351{bottom:874.106241pt;}
.y7_c00351{bottom:901.090131pt;}
.y6_c00351{bottom:928.074022pt;}
.y5_c00351{bottom:955.057912pt;}
.y4_c00351{bottom:982.041803pt;}
.y3_c00351{bottom:1009.025693pt;}
.y2_c00351{bottom:1036.009584pt;}
.yd_c00351{bottom:1066.520069pt;}
.h4_c00351{height:49.001996pt;}
.h5_c00351{height:59.520969pt;}
.h3_c00351{height:59.558193pt;}
.h2_c00351{height:1159.999952pt;}
.h0_c00351{height:1159.999959pt;}
.h1_c00351{height:1160.000000pt;}
.w2_c00351{width:830.999965pt;}
.w0_c00351{width:831.000000pt;}
.w1_c00351{width:831.333333pt;}
.x0_c00351{left:0.000000pt;}
.x1_c00351{left:78.089069pt;}
.x2_c00351{left:79.496944pt;}
.x3_c00351{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2245cbf5b4e92dffe4346946.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.171387;font-style:normal;font-weight:normal;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_35207dc11c33762b6eeb47d2.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.005371;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.006348;font-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_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);}
.v0_c00352{vertical-align:0.000000px;}
.ls0_c00352{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00352{word-spacing:-18.691966px;}
.ws1_c00352{word-spacing:-18.680283px;}
.ws2_c00352{word-spacing:0.000000px;}
._0_c00352{width:1.810770px;}
._9_c00352{width:2.906554px;}
._8_c00352{width:4.783749px;}
._3_c00352{width:6.436754px;}
._5_c00352{width:7.556829px;}
._2_c00352{width:9.378371px;}
._f_c00352{width:11.547770px;}
._10_c00352{width:14.876218px;}
._4_c00352{width:17.160013px;}
._7_c00352{width:19.879563px;}
._1_c00352{width:21.334111px;}
._e_c00352{width:23.175140px;}
._b_c00352{width:24.383882px;}
._a_c00352{width:31.848135px;}
._6_c00352{width:33.519050px;}
._d_c00352{width:35.240679px;}
._c_c00352{width:38.923431px;}
.fc1_c00352{color:rgb(198,111,25);}
.fc0_c00352{color:rgb(0,0,0);}
.fs1_c00352{font-size:71.912067px;}
.fs0_c00352{font-size:71.957041px;}
.y0_c00352{bottom:0.000000px;}
.y1_c00352{bottom:0.000008px;}
.y26_c00352{bottom:30.156225px;}
.y24_c00352{bottom:64.822740px;}
.y23_c00352{bottom:95.179616px;}
.y22_c00352{bottom:125.536493px;}
.y21_c00352{bottom:155.893370px;}
.y20_c00352{bottom:186.250247px;}
.y1f_c00352{bottom:216.607123px;}
.y1e_c00352{bottom:246.964000px;}
.y1d_c00352{bottom:277.320877px;}
.y1c_c00352{bottom:307.677754px;}
.y1b_c00352{bottom:338.034630px;}
.y25_c00352{bottom:372.387187px;}
.y19_c00352{bottom:431.549940px;}
.y18_c00352{bottom:461.906817px;}
.y17_c00352{bottom:492.263694px;}
.y16_c00352{bottom:522.620570px;}
.y15_c00352{bottom:552.977447px;}
.y14_c00352{bottom:583.334324px;}
.y13_c00352{bottom:613.691201px;}
.y12_c00352{bottom:644.048077px;}
.y11_c00352{bottom:674.404954px;}
.y10_c00352{bottom:704.761831px;}
.yf_c00352{bottom:735.118708px;}
.ye_c00352{bottom:765.475584px;}
.yd_c00352{bottom:795.832461px;}
.yc_c00352{bottom:826.189338px;}
.yb_c00352{bottom:856.546215px;}
.ya_c00352{bottom:886.903091px;}
.y9_c00352{bottom:917.259968px;}
.y8_c00352{bottom:947.616845px;}
.y1a_c00352{bottom:984.564764px;}
.y7_c00352{bottom:1048.500427px;}
.y6_c00352{bottom:1078.857304px;}
.y5_c00352{bottom:1109.214181px;}
.y4_c00352{bottom:1139.571057px;}
.y3_c00352{bottom:1169.927934px;}
.y2_c00352{bottom:1200.284811px;}
.h4_c00352{height:55.127245px;}
.h5_c00352{height:66.961090px;}
.h3_c00352{height:67.002968px;}
.h2_c00352{height:1304.999946px;}
.h0_c00352{height:1304.999953px;}
.h1_c00352{height:1305.000000px;}
.w2_c00352{width:934.874961px;}
.w0_c00352{width:934.875000px;}
.w1_c00352{width:935.250000px;}
.x0_c00352{left:0.000000px;}
.x1_c00352{left:89.434062px;}
.x2_c00352{left:93.487496px;}
.x3_c00352{left:451.985828px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls0_c00352{letter-spacing:0.000000pt;}
.ws0_c00352{word-spacing:-16.615081pt;}
.ws1_c00352{word-spacing:-16.604696pt;}
.ws2_c00352{word-spacing:0.000000pt;}
._0_c00352{width:1.609573pt;}
._9_c00352{width:2.583603pt;}
._8_c00352{width:4.252221pt;}
._3_c00352{width:5.721559pt;}
._5_c00352{width:6.717181pt;}
._2_c00352{width:8.336330pt;}
._f_c00352{width:10.264684pt;}
._10_c00352{width:13.223305pt;}
._4_c00352{width:15.253345pt;}
._7_c00352{width:17.670723pt;}
._1_c00352{width:18.963655pt;}
._e_c00352{width:20.600125pt;}
._b_c00352{width:21.674562pt;}
._a_c00352{width:28.309453pt;}
._6_c00352{width:29.794711pt;}
._d_c00352{width:31.325048pt;}
._c_c00352{width:34.598606pt;}
.fs1_c00352{font-size:63.921837pt;}
.fs0_c00352{font-size:63.961814pt;}
.y0_c00352{bottom:0.000000pt;}
.y1_c00352{bottom:0.000007pt;}
.y26_c00352{bottom:26.805533pt;}
.y24_c00352{bottom:57.620213pt;}
.y23_c00352{bottom:84.604103pt;}
.y22_c00352{bottom:111.587994pt;}
.y21_c00352{bottom:138.571884pt;}
.y20_c00352{bottom:165.555775pt;}
.y1f_c00352{bottom:192.539665pt;}
.y1e_c00352{bottom:219.523556pt;}
.y1d_c00352{bottom:246.507446pt;}
.y1c_c00352{bottom:273.491337pt;}
.y1b_c00352{bottom:300.475227pt;}
.y25_c00352{bottom:331.010833pt;}
.y19_c00352{bottom:383.599947pt;}
.y18_c00352{bottom:410.583837pt;}
.y17_c00352{bottom:437.567728pt;}
.y16_c00352{bottom:464.551618pt;}
.y15_c00352{bottom:491.535508pt;}
.y14_c00352{bottom:518.519399pt;}
.y13_c00352{bottom:545.503289pt;}
.y12_c00352{bottom:572.487180pt;}
.y11_c00352{bottom:599.471070pt;}
.y10_c00352{bottom:626.454961pt;}
.yf_c00352{bottom:653.438851pt;}
.ye_c00352{bottom:680.422742pt;}
.yd_c00352{bottom:707.406632pt;}
.yc_c00352{bottom:734.390523pt;}
.yb_c00352{bottom:761.374413pt;}
.ya_c00352{bottom:788.358304pt;}
.y9_c00352{bottom:815.342194pt;}
.y8_c00352{bottom:842.326084pt;}
.y1a_c00352{bottom:875.168679pt;}
.y7_c00352{bottom:932.000380pt;}
.y6_c00352{bottom:958.984270pt;}
.y5_c00352{bottom:985.968161pt;}
.y4_c00352{bottom:1012.952051pt;}
.y3_c00352{bottom:1039.935941pt;}
.y2_c00352{bottom:1066.919832pt;}
.h4_c00352{height:49.001996pt;}
.h5_c00352{height:59.520969pt;}
.h3_c00352{height:59.558193pt;}
.h2_c00352{height:1159.999952pt;}
.h0_c00352{height:1159.999959pt;}
.h1_c00352{height:1160.000000pt;}
.w2_c00352{width:830.999965pt;}
.w0_c00352{width:831.000000pt;}
.w1_c00352{width:831.333333pt;}
.x0_c00352{left:0.000000pt;}
.x1_c00352{left:79.496944pt;}
.x2_c00352{left:83.099997pt;}
.x3_c00352{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19953e3ee3ae379509269846.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;line-height:0.734863;font-style:normal;font-weight: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_8e8e134493dc56f58948d4e6.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:1.171387;font-style:normal;font-weight: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_3061c1197ff40f95e48515aa.woff2')format("woff");}.ff6_c00353{font-family:ff6_c00353;line-height:1.000000;font-style:normal;font-weight: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_c00353;src:url('chunks/assets/font_7800f617606f7656592f6ffb.woff2')format("woff");}.ff7_c00353{font-family:ff7_c00353;line-height:1.006348;font-style:normal;font-weight: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_c00353;src:url('chunks/assets/font_93829a77a27d0bd3b663b49a.woff2')format("woff");}.ff8_c00353{font-family:ff8_c00353;line-height:1.000000;font-style:normal;font-weight: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_c00353;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00353{font-family:ff9_c00353;line-height:0.940000;font-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_c00353{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00353{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00353{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00353{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00353{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00353{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00353{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00353{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00353{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00353{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00353{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00353{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00353{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00353{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00353{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00353{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00353{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00353{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00353{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00353{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00353{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00353{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00353{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00353{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00353{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00353{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00353{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00353{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00353{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00353{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00353{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00353{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00353{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00353{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00353{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00353{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00353{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00353{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00353{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00353{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00353{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00353{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00353{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00353{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00353{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00353{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00353{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00353{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00353{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00353{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00353{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00353{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00353{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00353{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00353{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00353{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00353{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00353{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00353{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00353{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00353{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00353{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00353{vertical-align:0.000000px;}
.v1_c00353{vertical-align:1.487808px;}
.ls0_c00353{letter-spacing:0.000000px;}
.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:-41.664701px;}
.ws4_c00353{word-spacing:-18.680283px;}
.ws2_c00353{word-spacing:-15.162211px;}
.ws3_c00353{word-spacing:-0.059949px;}
.ws6_c00353{word-spacing:0.000000px;}
.ws1_c00353{word-spacing:281.470720px;}
.ws0_c00353{word-spacing:287.140979px;}
._6_c00353{width:1.841955px;}
._2_c00353{width:2.903914px;}
._1_c00353{width:3.981258px;}
._0_c00353{width:5.383797px;}
._4_c00353{width:13.344334px;}
._5_c00353{width:15.791660px;}
._3_c00353{width:33.506216px;}
.fc3_c00353{color:rgb(198,111,25);}
.fc2_c00353{color:rgb(9,71,81);}
.fc1_c00353{color:rgb(255,255,255);}
.fc0_c00353{color:rgb(0,0,0);}
.fsb_c00353{font-size:41.974772px;}
.fs9_c00353{font-size:41.975069px;}
.fs2_c00353{font-size:47.339969px;}
.fs5_c00353{font-size:47.339970px;}
.fs1_c00353{font-size:47.339972px;}
.fs4_c00353{font-size:47.339973px;}
.fs3_c00353{font-size:47.339974px;}
.fs6_c00353{font-size:47.339975px;}
.fs8_c00353{font-size:51.630774px;}
.fsc_c00353{font-size:59.949210px;}
.fsd_c00353{font-size:71.912067px;}
.fs0_c00353{font-size:71.957041px;}
.fs7_c00353{font-size:76.965540px;}
.fsa_c00353{font-size:89.946302px;}
.y0_c00353{bottom:0.000000px;}
.y1_c00353{bottom:0.000008px;}
.y55_c00353{bottom:30.156225px;}
.y4e_c00353{bottom:95.179854px;}
.y4d_c00353{bottom:125.536731px;}
.y4c_c00353{bottom:155.893608px;}
.y4b_c00353{bottom:186.250485px;}
.y4a_c00353{bottom:216.607361px;}
.y49_c00353{bottom:246.964238px;}
.y48_c00353{bottom:277.321115px;}
.y47_c00353{bottom:307.677992px;}
.y4f_c00353{bottom:339.608900px;}
.y43_c00353{bottom:402.064151px;}
.y10_c00353{bottom:493.812629px;}
.y38_c00353{bottom:493.827623px;}
.yf_c00353{bottom:494.337609px;}
.y39_c00353{bottom:494.357158px;}
.y22_c00353{bottom:494.700737px;}
.y37_c00353{bottom:495.071586px;}
.ye_c00353{bottom:495.403002px;}
.y23_c00353{bottom:495.533530px;}
.y21_c00353{bottom:495.553663px;}
.y36_c00353{bottom:496.322201px;}
.yd_c00353{bottom:496.475623px;}
.y20_c00353{bottom:496.587915px;}
.y3a_c00353{bottom:496.772260px;}
.y11_c00353{bottom:496.835884px;}
.y24_c00353{bottom:497.713596px;}
.y35_c00353{bottom:497.966053px;}
.yc_c00353{bottom:498.126234px;}
.y1f_c00353{bottom:498.789265px;}
.y25_c00353{bottom:499.103521px;}
.y34_c00353{bottom:499.653306px;}
.yb_c00353{bottom:499.818769px;}
.y26_c00353{bottom:500.800864px;}
.y12_c00353{bottom:501.110605px;}
.y33_c00353{bottom:501.517382px;}
.ya_c00353{bottom:501.687706px;}
.y3b_c00353{bottom:501.869915px;}
.y1e_c00353{bottom:502.578702px;}
.y27_c00353{bottom:503.241722px;}
.y13_c00353{bottom:503.627848px;}
.y3c_c00353{bottom:505.496019px;}
.y28_c00353{bottom:505.499367px;}
.y32_c00353{bottom:506.168989px;}
.y9_c00353{bottom:506.348634px;}
.y1d_c00353{bottom:508.044213px;}
.y29_c00353{bottom:508.766327px;}
.y14_c00353{bottom:509.576794px;}
.y3d_c00353{bottom:511.126534px;}
.y1c_c00353{bottom:512.508085px;}
.y31_c00353{bottom:512.566592px;}
.y8_c00353{bottom:512.754669px;}
.y15_c00353{bottom:514.322677px;}
.y2a_c00353{bottom:517.158603px;}
.y3e_c00353{bottom:517.780195px;}
.y1b_c00353{bottom:518.929057px;}
.y30_c00353{bottom:519.869222px;}
.y7_c00353{bottom:519.959421px;}
.y6_c00353{bottom:523.416158px;}
.y1a_c00353{bottom:523.496236px;}
.y2b_c00353{bottom:525.202812px;}
.y16_c00353{bottom:526.099549px;}
.y2f_c00353{bottom:527.026630px;}
.y5_c00353{bottom:529.422883px;}
.y3f_c00353{bottom:529.736175px;}
.y19_c00353{bottom:531.263725px;}
.y2e_c00353{bottom:531.792993px;}
.y41_c00353{bottom:532.156012px;}
.y18_c00353{bottom:535.155114px;}
.y4_c00353{bottom:536.678099px;}
.y2d_c00353{bottom:537.961701px;}
.y17_c00353{bottom:538.332892px;}
.y40_c00353{bottom:538.696314px;}
.y50_c00353{bottom:539.306780px;}
.y2c_c00353{bottom:545.020884px;}
.y3_c00353{bottom:546.207017px;}
.y51_c00353{bottom:576.746779px;}
.y42_c00353{bottom:596.435373px;}
.y2_c00353{bottom:597.559761px;}
.y54_c00353{bottom:638.470702px;}
.y56_c00353{bottom:1024.443964px;}
.y45_c00353{bottom:1127.585799px;}
.y53_c00353{bottom:1129.718199px;}
.y52_c00353{bottom:1147.707459px;}
.y46_c00353{bottom:1150.991694px;}
.y44_c00353{bottom:1170.658440px;}
.hf_c00353{height:32.157430px;}
.h8_c00353{height:35.967282px;}
.h7_c00353{height:35.967283px;}
.h9_c00353{height:35.967285px;}
.h5_c00353{height:36.267779px;}
.h4_c00353{height:36.267781px;}
.h6_c00353{height:36.267783px;}
.hb_c00353{height:37.437353px;}
.hc_c00353{height:39.085184px;}
.h13_c00353{height:45.561399px;}
.h12_c00353{height:55.092790px;}
.h3_c00353{height:55.127245px;}
.h11_c00353{height:55.821847px;}
.ha_c00353{height:57.749618px;}
.hd_c00353{height:67.002968px;}
.h10_c00353{height:68.338108px;}
.he_c00353{height:83.753709px;}
.h2_c00353{height:1304.999946px;}
.h0_c00353{height:1304.999953px;}
.h1_c00353{height:1305.000000px;}
.w2_c00353{width:934.874961px;}
.w0_c00353{width:934.875000px;}
.w1_c00353{width:935.250000px;}
.x0_c00353{left:0.000000px;}
.x3b_c00353{left:89.434062px;}
.x3d_c00353{left:107.403263px;}
.x39_c00353{left:109.695383px;}
.x40_c00353{left:131.272077px;}
.x27_c00353{left:134.894322px;}
.x26_c00353{left:136.566734px;}
.x28_c00353{left:139.937719px;}
.x29_c00353{left:144.785273px;}
.x2a_c00353{left:150.147890px;}
.x2b_c00353{left:152.899057px;}
.x2c_c00353{left:155.907145px;}
.x2d_c00353{left:159.752336px;}
.x37_c00353{left:161.347648px;}
.x2e_c00353{left:163.203941px;}
.x2f_c00353{left:171.483965px;}
.x30_c00353{left:179.748684px;}
.x31_c00353{left:188.175145px;}
.x32_c00353{left:196.556636px;}
.x33_c00353{left:200.721504px;}
.x34_c00353{left:205.276922px;}
.x35_c00353{left:209.084069px;}
.x36_c00353{left:211.669316px;}
.x3_c00353{left:230.260919px;}
.x2_c00353{left:232.395871px;}
.x4_c00353{left:235.482735px;}
.x5_c00353{left:240.319117px;}
.x6_c00353{left:245.673577px;}
.x7_c00353{left:248.421493px;}
.x8_c00353{left:251.426626px;}
.x9_c00353{left:255.268917px;}
.xa_c00353{left:258.553698px;}
.xb_c00353{left:262.988294px;}
.xc_c00353{left:271.601212px;}
.xd_c00353{left:283.434780px;}
.xe_c00353{left:290.867654px;}
.xf_c00353{left:294.260334px;}
.x3a_c00353{left:295.438786px;}
.x10_c00353{left:299.596701px;}
.x11_c00353{left:302.984150px;}
.x12_c00353{left:306.993562px;}
.x13_c00353{left:325.378518px;}
.x14_c00353{left:326.595106px;}
.x15_c00353{left:328.015253px;}
.x16_c00353{left:331.410444px;}
.x17_c00353{left:334.633053px;}
.x18_c00353{left:340.511825px;}
.x19_c00353{left:346.695139px;}
.x1a_c00353{left:352.384720px;}
.x1b_c00353{left:355.792694px;}
.x1c_c00353{left:363.695116px;}
.x1d_c00353{left:371.679253px;}
.x1e_c00353{left:378.434940px;}
.x1f_c00353{left:381.453328px;}
.x20_c00353{left:384.455783px;}
.x21_c00353{left:387.851715px;}
.x22_c00353{left:390.467224px;}
.x23_c00353{left:393.779799px;}
.x24_c00353{left:398.952070px;}
.x25_c00353{left:401.755082px;}
.x3f_c00353{left:451.985828px;}
.x1_c00353{left:465.097640px;}
.x3e_c00353{left:661.177232px;}
.x38_c00353{left:696.904800px;}
.x3c_c00353{left:733.103068px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.v1_c00353{vertical-align:1.322496pt;}
.ls0_c00353{letter-spacing:0.000000pt;}
.ws5_c00353{word-spacing:-37.035289pt;}
.ws4_c00353{word-spacing:-16.604696pt;}
.ws2_c00353{word-spacing:-13.477521pt;}
.ws3_c00353{word-spacing:-0.053288pt;}
.ws6_c00353{word-spacing:0.000000pt;}
.ws1_c00353{word-spacing:250.196196pt;}
.ws0_c00353{word-spacing:255.236426pt;}
._6_c00353{width:1.637293pt;}
._2_c00353{width:2.581257pt;}
._1_c00353{width:3.538896pt;}
._0_c00353{width:4.785597pt;}
._4_c00353{width:11.861630pt;}
._5_c00353{width:14.037031pt;}
._3_c00353{width:29.783304pt;}
.fsb_c00353{font-size:37.310908pt;}
.fs9_c00353{font-size:37.311173pt;}
.fs2_c00353{font-size:42.079973pt;}
.fs5_c00353{font-size:42.079974pt;}
.fs1_c00353{font-size:42.079975pt;}
.fs4_c00353{font-size:42.079976pt;}
.fs3_c00353{font-size:42.079977pt;}
.fs6_c00353{font-size:42.079978pt;}
.fs8_c00353{font-size:45.894021pt;}
.fsc_c00353{font-size:53.288186pt;}
.fsd_c00353{font-size:63.921837pt;}
.fs0_c00353{font-size:63.961814pt;}
.fs7_c00353{font-size:68.413814pt;}
.fsa_c00353{font-size:79.952268pt;}
.y0_c00353{bottom:0.000000pt;}
.y1_c00353{bottom:0.000007pt;}
.y55_c00353{bottom:26.805533pt;}
.y4e_c00353{bottom:84.604315pt;}
.y4d_c00353{bottom:111.588205pt;}
.y4c_c00353{bottom:138.572096pt;}
.y4b_c00353{bottom:165.555986pt;}
.y4a_c00353{bottom:192.539877pt;}
.y49_c00353{bottom:219.523767pt;}
.y48_c00353{bottom:246.507658pt;}
.y47_c00353{bottom:273.491548pt;}
.y4f_c00353{bottom:301.874578pt;}
.y43_c00353{bottom:357.390356pt;}
.y10_c00353{bottom:438.944560pt;}
.y38_c00353{bottom:438.957887pt;}
.yf_c00353{bottom:439.411208pt;}
.y39_c00353{bottom:439.428585pt;}
.y22_c00353{bottom:439.733989pt;}
.y37_c00353{bottom:440.063632pt;}
.ye_c00353{bottom:440.358224pt;}
.y23_c00353{bottom:440.474249pt;}
.y21_c00353{bottom:440.492144pt;}
.y36_c00353{bottom:441.175290pt;}
.yd_c00353{bottom:441.311665pt;}
.y20_c00353{bottom:441.411480pt;}
.y3a_c00353{bottom:441.575343pt;}
.y11_c00353{bottom:441.631897pt;}
.y24_c00353{bottom:442.412085pt;}
.y35_c00353{bottom:442.636491pt;}
.yc_c00353{bottom:442.778875pt;}
.y1f_c00353{bottom:443.368235pt;}
.y25_c00353{bottom:443.647574pt;}
.y34_c00353{bottom:444.136272pt;}
.yb_c00353{bottom:444.283350pt;}
.y26_c00353{bottom:445.156323pt;}
.y12_c00353{bottom:445.431649pt;}
.y33_c00353{bottom:445.793228pt;}
.ya_c00353{bottom:445.944627pt;}
.y3b_c00353{bottom:446.106592pt;}
.y1e_c00353{bottom:446.736624pt;}
.y27_c00353{bottom:447.325975pt;}
.y13_c00353{bottom:447.669198pt;}
.y3c_c00353{bottom:449.329795pt;}
.y28_c00353{bottom:449.332771pt;}
.y32_c00353{bottom:449.927990pt;}
.y9_c00353{bottom:450.087675pt;}
.y1d_c00353{bottom:451.594856pt;}
.y29_c00353{bottom:452.236735pt;}
.y14_c00353{bottom:452.957150pt;}
.y3d_c00353{bottom:454.334697pt;}
.y1c_c00353{bottom:455.562742pt;}
.y31_c00353{bottom:455.614749pt;}
.y8_c00353{bottom:455.781928pt;}
.y15_c00353{bottom:457.175713pt;}
.y2a_c00353{bottom:459.696536pt;}
.y3e_c00353{bottom:460.249062pt;}
.y1b_c00353{bottom:461.270273pt;}
.y30_c00353{bottom:462.105976pt;}
.y7_c00353{bottom:462.186152pt;}
.y6_c00353{bottom:465.258807pt;}
.y1a_c00353{bottom:465.329988pt;}
.y2b_c00353{bottom:466.846944pt;}
.y16_c00353{bottom:467.644044pt;}
.y2f_c00353{bottom:468.468115pt;}
.y5_c00353{bottom:470.598118pt;}
.y3f_c00353{bottom:470.876600pt;}
.y19_c00353{bottom:472.234422pt;}
.y2e_c00353{bottom:472.704883pt;}
.y41_c00353{bottom:473.027566pt;}
.y18_c00353{bottom:475.693435pt;}
.y4_c00353{bottom:477.047199pt;}
.y2d_c00353{bottom:478.188178pt;}
.y17_c00353{bottom:478.518126pt;}
.y40_c00353{bottom:478.841168pt;}
.y50_c00353{bottom:479.383805pt;}
.y2c_c00353{bottom:484.463008pt;}
.y3_c00353{bottom:485.517349pt;}
.y51_c00353{bottom:512.663803pt;}
.y42_c00353{bottom:530.164776pt;}
.y2_c00353{bottom:531.164232pt;}
.y54_c00353{bottom:567.529513pt;}
.y56_c00353{bottom:910.616857pt;}
.y45_c00353{bottom:1002.298488pt;}
.y53_c00353{bottom:1004.193955pt;}
.y52_c00353{bottom:1020.184408pt;}
.y46_c00353{bottom:1023.103728pt;}
.y44_c00353{bottom:1040.585280pt;}
.hf_c00353{height:28.584382pt;}
.h8_c00353{height:31.970917pt;}
.h7_c00353{height:31.970918pt;}
.h9_c00353{height:31.970920pt;}
.h5_c00353{height:32.238026pt;}
.h4_c00353{height:32.238028pt;}
.h6_c00353{height:32.238029pt;}
.hb_c00353{height:33.277647pt;}
.hc_c00353{height:34.742386pt;}
.h13_c00353{height:40.499022pt;}
.h12_c00353{height:48.971369pt;}
.h3_c00353{height:49.001996pt;}
.h11_c00353{height:49.619420pt;}
.ha_c00353{height:51.332994pt;}
.hd_c00353{height:59.558193pt;}
.h10_c00353{height:60.744985pt;}
.he_c00353{height:74.447742pt;}
.h2_c00353{height:1159.999952pt;}
.h0_c00353{height:1159.999959pt;}
.h1_c00353{height:1160.000000pt;}
.w2_c00353{width:830.999965pt;}
.w0_c00353{width:831.000000pt;}
.w1_c00353{width:831.333333pt;}
.x0_c00353{left:0.000000pt;}
.x3b_c00353{left:79.496944pt;}
.x3d_c00353{left:95.469567pt;}
.x39_c00353{left:97.507007pt;}
.x40_c00353{left:116.686291pt;}
.x27_c00353{left:119.906064pt;}
.x26_c00353{left:121.392652pt;}
.x28_c00353{left:124.389083pt;}
.x29_c00353{left:128.698021pt;}
.x2a_c00353{left:133.464791pt;}
.x2b_c00353{left:135.910272pt;}
.x2c_c00353{left:138.584129pt;}
.x2d_c00353{left:142.002076pt;}
.x37_c00353{left:143.420132pt;}
.x2e_c00353{left:145.070170pt;}
.x2f_c00353{left:152.430191pt;}
.x30_c00353{left:159.776608pt;}
.x31_c00353{left:167.266795pt;}
.x32_c00353{left:174.717010pt;}
.x33_c00353{left:178.419115pt;}
.x34_c00353{left:182.468375pt;}
.x35_c00353{left:185.852506pt;}
.x36_c00353{left:188.150503pt;}
.x3_c00353{left:204.676373pt;}
.x2_c00353{left:206.574107pt;}
.x4_c00353{left:209.317987pt;}
.x5_c00353{left:213.616993pt;}
.x6_c00353{left:218.376513pt;}
.x7_c00353{left:220.819105pt;}
.x8_c00353{left:223.490334pt;}
.x9_c00353{left:226.905704pt;}
.xa_c00353{left:229.825509pt;}
.xb_c00353{left:233.767373pt;}
.xc_c00353{left:241.423300pt;}
.xd_c00353{left:251.942027pt;}
.xe_c00353{left:258.549026pt;}
.xf_c00353{left:261.564741pt;}
.x3a_c00353{left:262.612255pt;}
.x10_c00353{left:266.308178pt;}
.x11_c00353{left:269.319244pt;}
.x12_c00353{left:272.883167pt;}
.x13_c00353{left:289.225349pt;}
.x14_c00353{left:290.306761pt;}
.x15_c00353{left:291.569114pt;}
.x16_c00353{left:294.587062pt;}
.x17_c00353{left:297.451603pt;}
.x18_c00353{left:302.677178pt;}
.x19_c00353{left:308.173457pt;}
.x1a_c00353{left:313.230862pt;}
.x1b_c00353{left:316.260173pt;}
.x1c_c00353{left:323.284548pt;}
.x1d_c00353{left:330.381558pt;}
.x1e_c00353{left:336.386614pt;}
.x1f_c00353{left:339.069625pt;}
.x20_c00353{left:341.738474pt;}
.x21_c00353{left:344.757080pt;}
.x22_c00353{left:347.081977pt;}
.x23_c00353{left:350.026488pt;}
.x24_c00353{left:354.624063pt;}
.x25_c00353{left:357.115628pt;}
.x3f_c00353{left:401.765180pt;}
.x1_c00353{left:413.420124pt;}
.x3e_c00353{left:587.713096pt;}
.x38_c00353{left:619.470933pt;}
.x3c_c00353{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c7384d254255374ac9b749d.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.171387;font-style:normal;font-weight:normal;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_0452764bf26245d00dcd523f.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.000000;font-style:normal;font-weight:normal;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_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.006348;font-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_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;}
.ls1_c00354{letter-spacing:0.000000px;}
.ls0_c00354{letter-spacing:0.035135px;}
.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;}
}
.ws0_c00354{word-spacing:-18.691966px;}
.ws1_c00354{word-spacing:-18.680283px;}
.ws2_c00354{word-spacing:0.000000px;}
._0_c00354{width:1.164699px;}
._2_c00354{width:2.242754px;}
._4_c00354{width:3.594574px;}
._6_c00354{width:4.809620px;}
._7_c00354{width:5.933667px;}
._e_c00354{width:8.027037px;}
._b_c00354{width:9.689510px;}
._3_c00354{width:11.606308px;}
._1_c00354{width:12.660361px;}
._8_c00354{width:13.726647px;}
._a_c00354{width:14.943108px;}
._11_c00354{width:19.956855px;}
._d_c00354{width:21.596457px;}
._c_c00354{width:22.888985px;}
._10_c00354{width:27.777934px;}
._f_c00354{width:37.735284px;}
._5_c00354{width:41.336648px;}
._9_c00354{width:43.110985px;}
.fc1_c00354{color:rgb(198,111,25);}
.fc0_c00354{color:rgb(0,0,0);}
.fs1_c00354{font-size:71.912067px;}
.fs0_c00354{font-size:71.957041px;}
.y0_c00354{bottom:0.000000px;}
.y1_c00354{bottom:0.000008px;}
.y26_c00354{bottom:30.156225px;}
.y24_c00354{bottom:62.682836px;}
.y23_c00354{bottom:93.039712px;}
.y22_c00354{bottom:123.396589px;}
.y21_c00354{bottom:153.753466px;}
.y20_c00354{bottom:184.110343px;}
.y1f_c00354{bottom:214.467219px;}
.y1e_c00354{bottom:244.824096px;}
.y1d_c00354{bottom:275.180973px;}
.y25_c00354{bottom:312.865293px;}
.y1b_c00354{bottom:365.034104px;}
.y1a_c00354{bottom:395.390981px;}
.y19_c00354{bottom:425.747858px;}
.y18_c00354{bottom:456.104734px;}
.y17_c00354{bottom:486.461611px;}
.y16_c00354{bottom:516.818488px;}
.y15_c00354{bottom:547.175365px;}
.y14_c00354{bottom:577.532241px;}
.y13_c00354{bottom:607.889118px;}
.y12_c00354{bottom:638.245995px;}
.y11_c00354{bottom:668.602872px;}
.y10_c00354{bottom:698.959748px;}
.yf_c00354{bottom:729.316625px;}
.ye_c00354{bottom:759.673502px;}
.yd_c00354{bottom:790.030379px;}
.yc_c00354{bottom:820.387255px;}
.yb_c00354{bottom:850.744132px;}
.y1c_c00354{bottom:892.956129px;}
.y9_c00354{bottom:945.124954px;}
.y8_c00354{bottom:975.481831px;}
.y7_c00354{bottom:1005.838708px;}
.y6_c00354{bottom:1036.195585px;}
.y5_c00354{bottom:1066.552462px;}
.y4_c00354{bottom:1096.909338px;}
.y3_c00354{bottom:1127.266215px;}
.y2_c00354{bottom:1157.623092px;}
.ya_c00354{bottom:1199.835078px;}
.h4_c00354{height:55.127245px;}
.h5_c00354{height:66.961090px;}
.h3_c00354{height:67.002968px;}
.h2_c00354{height:1304.999946px;}
.h0_c00354{height:1304.999953px;}
.h1_c00354{height:1305.000000px;}
.w2_c00354{width:934.874961px;}
.w0_c00354{width:934.875000px;}
.w1_c00354{width:935.250000px;}
.x0_c00354{left:0.000000px;}
.x2_c00354{left:87.850202px;}
.x1_c00354{left:89.434062px;}
.x3_c00354{left:451.985828px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls1_c00354{letter-spacing:0.000000pt;}
.ls0_c00354{letter-spacing:0.031231pt;}
.ws0_c00354{word-spacing:-16.615081pt;}
.ws1_c00354{word-spacing:-16.604696pt;}
.ws2_c00354{word-spacing:0.000000pt;}
._0_c00354{width:1.035288pt;}
._2_c00354{width:1.993559pt;}
._4_c00354{width:3.195177pt;}
._6_c00354{width:4.275218pt;}
._7_c00354{width:5.274371pt;}
._e_c00354{width:7.135144pt;}
._b_c00354{width:8.612898pt;}
._3_c00354{width:10.316718pt;}
._1_c00354{width:11.253655pt;}
._8_c00354{width:12.201464pt;}
._a_c00354{width:13.282763pt;}
._11_c00354{width:17.739426pt;}
._d_c00354{width:19.196851pt;}
._c_c00354{width:20.345764pt;}
._10_c00354{width:24.691497pt;}
._f_c00354{width:33.542474pt;}
._5_c00354{width:36.743687pt;}
._9_c00354{width:38.320875pt;}
.fs1_c00354{font-size:63.921837pt;}
.fs0_c00354{font-size:63.961814pt;}
.y0_c00354{bottom:0.000000pt;}
.y1_c00354{bottom:0.000007pt;}
.y26_c00354{bottom:26.805533pt;}
.y24_c00354{bottom:55.718076pt;}
.y23_c00354{bottom:82.701967pt;}
.y22_c00354{bottom:109.685857pt;}
.y21_c00354{bottom:136.669748pt;}
.y20_c00354{bottom:163.653638pt;}
.y1f_c00354{bottom:190.637528pt;}
.y1e_c00354{bottom:217.621419pt;}
.y1d_c00354{bottom:244.605309pt;}
.y25_c00354{bottom:278.102483pt;}
.y1b_c00354{bottom:324.474759pt;}
.y1a_c00354{bottom:351.458650pt;}
.y19_c00354{bottom:378.442540pt;}
.y18_c00354{bottom:405.426430pt;}
.y17_c00354{bottom:432.410321pt;}
.y16_c00354{bottom:459.394211pt;}
.y15_c00354{bottom:486.378102pt;}
.y14_c00354{bottom:513.361992pt;}
.y13_c00354{bottom:540.345883pt;}
.y12_c00354{bottom:567.329773pt;}
.y11_c00354{bottom:594.313664pt;}
.y10_c00354{bottom:621.297554pt;}
.yf_c00354{bottom:648.281445pt;}
.ye_c00354{bottom:675.265335pt;}
.yd_c00354{bottom:702.249226pt;}
.yc_c00354{bottom:729.233116pt;}
.yb_c00354{bottom:756.217006pt;}
.y1c_c00354{bottom:793.738781pt;}
.y9_c00354{bottom:840.111071pt;}
.y8_c00354{bottom:867.094961pt;}
.y7_c00354{bottom:894.078852pt;}
.y6_c00354{bottom:921.062742pt;}
.y5_c00354{bottom:948.046632pt;}
.y4_c00354{bottom:975.030523pt;}
.y3_c00354{bottom:1002.014413pt;}
.y2_c00354{bottom:1028.998304pt;}
.ya_c00354{bottom:1066.520069pt;}
.h4_c00354{height:49.001996pt;}
.h5_c00354{height:59.520969pt;}
.h3_c00354{height:59.558193pt;}
.h2_c00354{height:1159.999952pt;}
.h0_c00354{height:1159.999959pt;}
.h1_c00354{height:1160.000000pt;}
.w2_c00354{width:830.999965pt;}
.w0_c00354{width:831.000000pt;}
.w1_c00354{width:831.333333pt;}
.x0_c00354{left:0.000000pt;}
.x2_c00354{left:78.089069pt;}
.x1_c00354{left:79.496944pt;}
.x3_c00354{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51d06736aa7069c7896d34e5.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:0.748047;font-style:normal;font-weight:normal;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_f1f4b4ed111bc536b5909ec3.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.006348;font-style:normal;font-weight:normal;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_0ebdf86397a3fb4d4b68efd8.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:0.957031;font-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_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);}
.v0_c00355{vertical-align:0.000000px;}
.ls0_c00355{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00355{word-spacing:-18.680283px;}
.ws1_c00355{word-spacing:0.000000px;}
._3_c00355{width:1.967578px;}
._8_c00355{width:3.590180px;}
._5_c00355{width:7.290570px;}
._2_c00355{width:8.502736px;}
._1_c00355{width:9.550342px;}
._0_c00355{width:12.827529px;}
._6_c00355{width:42.742061px;}
._4_c00355{width:45.090221px;}
._7_c00355{width:46.570569px;}
.fc1_c00355{color:rgb(198,111,25);}
.fc0_c00355{color:rgb(0,0,0);}
.fs1_c00355{font-size:71.912067px;}
.fs0_c00355{font-size:71.957041px;}
.y0_c00355{bottom:0.000000px;}
.y1_c00355{bottom:0.000008px;}
.yd_c00355{bottom:30.156225px;}
.yb_c00355{bottom:896.520013px;}
.ya_c00355{bottom:926.876890px;}
.y9_c00355{bottom:957.233766px;}
.y8_c00355{bottom:987.590643px;}
.y7_c00355{bottom:1017.947520px;}
.y6_c00355{bottom:1048.304397px;}
.y5_c00355{bottom:1078.661273px;}
.y4_c00355{bottom:1109.018150px;}
.y3_c00355{bottom:1139.375027px;}
.y2_c00355{bottom:1169.731904px;}
.yc_c00355{bottom:1204.084507px;}
.h4_c00355{height:51.578582px;}
.h5_c00355{height:55.092790px;}
.h3_c00355{height:55.127245px;}
.h2_c00355{height:1304.999946px;}
.h0_c00355{height:1304.999953px;}
.h1_c00355{height:1305.000000px;}
.w2_c00355{width:934.874961px;}
.w0_c00355{width:934.875000px;}
.w1_c00355{width:935.250000px;}
.x0_c00355{left:0.000000px;}
.x1_c00355{left:87.058271px;}
.x2_c00355{left:451.985828px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws0_c00355{word-spacing:-16.604696pt;}
.ws1_c00355{word-spacing:0.000000pt;}
._3_c00355{width:1.748959pt;}
._8_c00355{width:3.191271pt;}
._5_c00355{width:6.480507pt;}
._2_c00355{width:7.557988pt;}
._1_c00355{width:8.489193pt;}
._0_c00355{width:11.402248pt;}
._6_c00355{width:37.992943pt;}
._4_c00355{width:40.080196pt;}
._7_c00355{width:41.396062pt;}
.fs1_c00355{font-size:63.921837pt;}
.fs0_c00355{font-size:63.961814pt;}
.y0_c00355{bottom:0.000000pt;}
.y1_c00355{bottom:0.000007pt;}
.yd_c00355{bottom:26.805533pt;}
.yb_c00355{bottom:796.906678pt;}
.ya_c00355{bottom:823.890569pt;}
.y9_c00355{bottom:850.874459pt;}
.y8_c00355{bottom:877.858349pt;}
.y7_c00355{bottom:904.842240pt;}
.y6_c00355{bottom:931.826130pt;}
.y5_c00355{bottom:958.810021pt;}
.y4_c00355{bottom:985.793911pt;}
.y3_c00355{bottom:1012.777802pt;}
.y2_c00355{bottom:1039.761692pt;}
.yc_c00355{bottom:1070.297339pt;}
.h4_c00355{height:45.847629pt;}
.h5_c00355{height:48.971369pt;}
.h3_c00355{height:49.001996pt;}
.h2_c00355{height:1159.999952pt;}
.h0_c00355{height:1159.999959pt;}
.h1_c00355{height:1160.000000pt;}
.w2_c00355{width:830.999965pt;}
.w0_c00355{width:831.000000pt;}
.w1_c00355{width:831.333333pt;}
.x0_c00355{left:0.000000pt;}
.x1_c00355{left:77.385130pt;}
.x2_c00355{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44cab8874ba3e717472a70fd.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:0.775879;font-style:normal;font-weight:normal;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_b48fef5ce5944707c503ad53.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.006348;font-style:normal;font-weight:normal;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_c09df13aa7854b6da7d83294.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:0.929688;font-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_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);}
.v0_c00356{vertical-align:0.000000px;}
.ls0_c00356{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00356{word-spacing:-18.680283px;}
.ws1_c00356{word-spacing:0.000000px;}
._0_c00356{width:4.764327px;}
.fc1_c00356{color:rgb(0,0,0);}
.fc0_c00356{color:rgb(198,111,25);}
.fs1_c00356{font-size:71.912067px;}
.fs0_c00356{font-size:71.957041px;}
.y0_c00356{bottom:0.000000px;}
.y1_c00356{bottom:0.000008px;}
.y3_c00356{bottom:30.156225px;}
.y5_c00356{bottom:1113.346162px;}
.y4_c00356{bottom:1142.578710px;}
.y2_c00356{bottom:1199.835078px;}
.h4_c00356{height:55.092790px;}
.h3_c00356{height:55.127245px;}
.h2_c00356{height:1304.999946px;}
.h0_c00356{height:1304.999953px;}
.h1_c00356{height:1305.000000px;}
.w2_c00356{width:934.874961px;}
.w0_c00356{width:934.875000px;}
.w1_c00356{width:935.250000px;}
.x0_c00356{left:0.000000px;}
.x1_c00356{left:128.097383px;}
.x2_c00356{left:451.985828px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls0_c00356{letter-spacing:0.000000pt;}
.ws0_c00356{word-spacing:-16.604696pt;}
.ws1_c00356{word-spacing:0.000000pt;}
._0_c00356{width:4.234958pt;}
.fs1_c00356{font-size:63.921837pt;}
.fs0_c00356{font-size:63.961814pt;}
.y0_c00356{bottom:0.000000pt;}
.y1_c00356{bottom:0.000007pt;}
.y3_c00356{bottom:26.805533pt;}
.y5_c00356{bottom:989.641033pt;}
.y4_c00356{bottom:1015.625520pt;}
.y2_c00356{bottom:1066.520069pt;}
.h4_c00356{height:48.971369pt;}
.h3_c00356{height:49.001996pt;}
.h2_c00356{height:1159.999952pt;}
.h0_c00356{height:1159.999959pt;}
.h1_c00356{height:1160.000000pt;}
.w2_c00356{width:830.999965pt;}
.w0_c00356{width:831.000000pt;}
.w1_c00356{width:831.333333pt;}
.x0_c00356{left:0.000000pt;}
.x1_c00356{left:113.864341pt;}
.x2_c00356{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00357{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
}
.y0_c00357{bottom:0.000000px;}
.h0_c00357{height:1304.999953px;}
.h1_c00357{height:1305.000000px;}
.w0_c00357{width:934.875000px;}
.w1_c00357{width:935.250000px;}
.x0_c00357{left:0.000000px;}
@media print{
.y0_c00357{bottom:0.000000pt;}
.h0_c00357{height:1159.999959pt;}
.h1_c00357{height:1160.000000pt;}
.w0_c00357{width:831.000000pt;}
.w1_c00357{width:831.333333pt;}
.x0_c00357{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_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_7f036439889c836ca28e368b.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:0.708008;font-style:normal;font-weight:normal;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_461413af6b9d87d0b26d17c2.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.131747;font-style:normal;font-weight:normal;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_27f63d6b1f11d97dfa587be2.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.000000;font-style:normal;font-weight:normal;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_cbdec487af4497ca773b5de6.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:0.888672;font-style:normal;font-weight: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_af24c93efcc5d6409d693242.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;line-height:0.727051;font-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_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);}
.v0_c00358{vertical-align:0.000000px;}
.ls0_c00358{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00358{word-spacing:-0.384790px;}
.ws1_c00358{word-spacing:-0.059949px;}
.ws2_c00358{word-spacing:0.000000px;}
._0_c00358{margin-left:-6.195575px;}
.fc0_c00358{color:rgb(255,255,255);}
.fs1_c00358{font-size:59.949210px;}
.fs0_c00358{font-size:384.790269px;}
.y0_c00358{bottom:0.000000px;}
.y1_c00358{bottom:0.000008px;}
.y9_c00358{bottom:92.996880px;}
.y8_c00358{bottom:114.359127px;}
.y7_c00358{bottom:135.721374px;}
.y6_c00358{bottom:157.083620px;}
.y5_c00358{bottom:178.445867px;}
.y4_c00358{bottom:199.808114px;}
.y3_c00358{bottom:221.170360px;}
.y2_c00358{bottom:519.924756px;}
.yb_c00358{bottom:1210.261222px;}
.ya_c00358{bottom:1230.499139px;}
.h5_c00358{height:45.547349px;}
.h4_c00358{height:55.820707px;}
.h3_c00358{height:269.428343px;}
.h2_c00358{height:1304.999946px;}
.h0_c00358{height:1304.999953px;}
.h1_c00358{height:1305.000000px;}
.w2_c00358{width:934.874961px;}
.w0_c00358{width:934.875000px;}
.w1_c00358{width:935.250000px;}
.x0_c00358{left:0.000000px;}
.x2_c00358{left:87.850202px;}
.x1_c00358{left:118.261225px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls0_c00358{letter-spacing:0.000000pt;}
.ws0_c00358{word-spacing:-0.342036pt;}
.ws1_c00358{word-spacing:-0.053288pt;}
.ws2_c00358{word-spacing:0.000000pt;}
._0_c00358{margin-left:-5.507178pt;}
.fs1_c00358{font-size:53.288186pt;}
.fs0_c00358{font-size:342.035795pt;}
.y0_c00358{bottom:0.000000pt;}
.y1_c00358{bottom:0.000007pt;}
.y9_c00358{bottom:82.663894pt;}
.y8_c00358{bottom:101.652557pt;}
.y7_c00358{bottom:120.641221pt;}
.y6_c00358{bottom:139.629885pt;}
.y5_c00358{bottom:158.618548pt;}
.y4_c00358{bottom:177.607212pt;}
.y3_c00358{bottom:196.595876pt;}
.y2_c00358{bottom:462.155338pt;}
.yb_c00358{bottom:1075.787753pt;}
.ya_c00358{bottom:1093.777013pt;}
.h5_c00358{height:40.486532pt;}
.h4_c00358{height:49.618406pt;}
.h3_c00358{height:239.491860pt;}
.h2_c00358{height:1159.999952pt;}
.h0_c00358{height:1159.999959pt;}
.h1_c00358{height:1160.000000pt;}
.w2_c00358{width:830.999965pt;}
.w0_c00358{width:831.000000pt;}
.w1_c00358{width:831.333333pt;}
.x0_c00358{left:0.000000pt;}
.x2_c00358{left:78.089069pt;}
.x1_c00358{left:105.121089pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00359{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
}
.y0_c00359{bottom:0.000000px;}
.h0_c00359{height:1304.999953px;}
.h1_c00359{height:1305.000000px;}
.w0_c00359{width:934.875000px;}
.w1_c00359{width:935.250000px;}
.x0_c00359{left:0.000000px;}
@media print{
.y0_c00359{bottom:0.000000pt;}
.h0_c00359{height:1159.999959pt;}
.h1_c00359{height:1160.000000pt;}
.w0_c00359{width:831.000000pt;}
.w1_c00359{width:831.333333pt;}
.x0_c00359{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_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_540b24a283dab93996b42de5.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.006348;font-style:normal;font-weight:normal;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_42d871251c32323097b4c181.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:0.766602;font-style:normal;font-weight:normal;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_7177d96ad1c003d96a333464.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.006348;font-style:normal;font-weight:normal;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_a23b2788551900cbd75f6bba.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.000000;font-style:normal;font-weight: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_070a375ae72bd5b81e8eb348.woff2')format("woff");}.ff5_c00360{font-family:ff5_c00360;line-height:1.000000;font-style:normal;font-weight: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_6c45e07338fb5cdbfefc7ea0.woff2')format("woff");}.ff6_c00360{font-family:ff6_c00360;line-height:0.734375;font-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_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;}
.ls2_c00360{letter-spacing:0.000000px;}
.ls1_c00360{letter-spacing:0.940812px;}
.ls0_c00360{letter-spacing:0.940857px;}
.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:-31.145489px;}
.ws0_c00360{word-spacing:-18.691966px;}
.ws2_c00360{word-spacing:-18.680283px;}
.ws3_c00360{word-spacing:0.000000px;}
._1_c00360{width:1.839312px;}
._8_c00360{width:3.207794px;}
._6_c00360{width:4.592236px;}
._4_c00360{width:5.697744px;}
._9_c00360{width:8.055516px;}
._2_c00360{width:11.783651px;}
._3_c00360{width:13.035187px;}
._5_c00360{width:20.003491px;}
._0_c00360{width:23.462948px;}
._7_c00360{width:29.056872px;}
._a_c00360{width:39.328035px;}
.fc2_c00360{color:rgb(137,99,42);}
.fc1_c00360{color:rgb(0,0,0);}
.fc0_c00360{color:rgb(255,255,255);}
.fs0_c00360{font-size:59.949210px;}
.fs3_c00360{font-size:71.912067px;}
.fs1_c00360{font-size:71.957041px;}
.fs2_c00360{font-size:119.898420px;}
.y0_c00360{bottom:0.000000px;}
.y1_c00360{bottom:0.000008px;}
.y15_c00360{bottom:30.156225px;}
.y5_c00360{bottom:161.604415px;}
.y4_c00360{bottom:178.469346px;}
.y3_c00360{bottom:195.334278px;}
.y2_c00360{bottom:212.199209px;}
.yc_c00360{bottom:638.179885px;}
.yb_c00360{bottom:668.536762px;}
.ya_c00360{bottom:698.893638px;}
.y9_c00360{bottom:729.250515px;}
.y8_c00360{bottom:759.607392px;}
.y7_c00360{bottom:789.964269px;}
.y6_c00360{bottom:820.321146px;}
.y13_c00360{bottom:908.279986px;}
.y12_c00360{bottom:938.636863px;}
.y11_c00360{bottom:968.993740px;}
.y10_c00360{bottom:999.350617px;}
.yf_c00360{bottom:1029.707494px;}
.ye_c00360{bottom:1060.064370px;}
.y14_c00360{bottom:1116.465281px;}
.yd_c00360{bottom:1199.837793px;}
.h3_c00360{height:45.927886px;}
.h5_c00360{height:52.140747px;}
.h7_c00360{height:55.092790px;}
.h4_c00360{height:55.127245px;}
.h6_c00360{height:91.094698px;}
.h2_c00360{height:1304.999946px;}
.h0_c00360{height:1304.999953px;}
.h1_c00360{height:1305.000000px;}
.w2_c00360{width:934.874961px;}
.w0_c00360{width:934.875000px;}
.w1_c00360{width:935.250000px;}
.x0_c00360{left:0.000000px;}
.x2_c00360{left:87.850202px;}
.x1_c00360{left:164.892694px;}
.x4_c00360{left:451.985828px;}
.x3_c00360{left:759.962556px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls2_c00360{letter-spacing:0.000000pt;}
.ls1_c00360{letter-spacing:0.836277pt;}
.ls0_c00360{letter-spacing:0.836317pt;}
.ws1_c00360{word-spacing:-27.684879pt;}
.ws0_c00360{word-spacing:-16.615081pt;}
.ws2_c00360{word-spacing:-16.604696pt;}
.ws3_c00360{word-spacing:0.000000pt;}
._1_c00360{width:1.634944pt;}
._8_c00360{width:2.851372pt;}
._6_c00360{width:4.081988pt;}
._4_c00360{width:5.064662pt;}
._9_c00360{width:7.160459pt;}
._2_c00360{width:10.474357pt;}
._3_c00360{width:11.586833pt;}
._5_c00360{width:17.780881pt;}
._0_c00360{width:20.855954pt;}
._7_c00360{width:25.828331pt;}
._a_c00360{width:34.958254pt;}
.fs0_c00360{font-size:53.288186pt;}
.fs3_c00360{font-size:63.921837pt;}
.fs1_c00360{font-size:63.961814pt;}
.fs2_c00360{font-size:106.576373pt;}
.y0_c00360{bottom:0.000000pt;}
.y1_c00360{bottom:0.000007pt;}
.y15_c00360{bottom:26.805533pt;}
.y5_c00360{bottom:143.648369pt;}
.y4_c00360{bottom:158.639419pt;}
.y3_c00360{bottom:173.630469pt;}
.y2_c00360{bottom:188.621519pt;}
.yc_c00360{bottom:567.271009pt;}
.yb_c00360{bottom:594.254899pt;}
.ya_c00360{bottom:621.238790pt;}
.y9_c00360{bottom:648.222680pt;}
.y8_c00360{bottom:675.206571pt;}
.y7_c00360{bottom:702.190461pt;}
.y6_c00360{bottom:729.174352pt;}
.y13_c00360{bottom:807.359988pt;}
.y12_c00360{bottom:834.343878pt;}
.y11_c00360{bottom:861.327769pt;}
.y10_c00360{bottom:888.311659pt;}
.yf_c00360{bottom:915.295550pt;}
.ye_c00360{bottom:942.279440pt;}
.y14_c00360{bottom:992.413583pt;}
.yd_c00360{bottom:1066.522482pt;}
.h3_c00360{height:40.824787pt;}
.h5_c00360{height:46.347330pt;}
.h7_c00360{height:48.971369pt;}
.h4_c00360{height:49.001996pt;}
.h6_c00360{height:80.973065pt;}
.h2_c00360{height:1159.999952pt;}
.h0_c00360{height:1159.999959pt;}
.h1_c00360{height:1160.000000pt;}
.w2_c00360{width:830.999965pt;}
.w0_c00360{width:831.000000pt;}
.w1_c00360{width:831.333333pt;}
.x0_c00360{left:0.000000pt;}
.x2_c00360{left:78.089069pt;}
.x1_c00360{left:146.571283pt;}
.x4_c00360{left:401.765180pt;}
.x3_c00360{left:675.522272pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bbe8a391ae31f837893eea81.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.006348;font-style:normal;font-weight:normal;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_13c15ab01bf081f32576ca9c.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:0.974121;font-style:normal;font-weight:normal;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_6c45e07338fb5cdbfefc7ea0.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:0.734375;font-style:normal;font-weight:normal;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_3f9725e8c41cee9563c81ba0.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:1.005371;font-style:normal;font-weight: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_c00361;src:url('chunks/assets/font_c44129704758f15a6198f2a2.woff2')format("woff");}.ff5_c00361{font-family:ff5_c00361;line-height:1.006348;font-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_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);}
.v0_c00361{vertical-align:0.000000px;}
.ls0_c00361{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00361{word-spacing:-18.680283px;}
.ws0_c00361{word-spacing:-0.071957px;}
.ws2_c00361{word-spacing:0.000000px;}
._3_c00361{width:1.447544px;}
._5_c00361{width:3.121139px;}
._7_c00361{width:4.309902px;}
._a_c00361{width:7.609258px;}
._9_c00361{width:10.679404px;}
._2_c00361{width:12.074800px;}
._1_c00361{width:13.125277px;}
._0_c00361{width:14.229786px;}
._4_c00361{width:15.516960px;}
._b_c00361{width:16.578428px;}
._6_c00361{width:22.246458px;}
._c_c00361{width:24.975277px;}
._8_c00361{width:35.697438px;}
.fc1_c00361{color:rgb(137,99,42);}
.fc0_c00361{color:rgb(0,0,0);}
.fs2_c00361{font-size:71.912067px;}
.fs0_c00361{font-size:71.957041px;}
.fs1_c00361{font-size:119.898420px;}
.y0_c00361{bottom:0.000000px;}
.y1_c00361{bottom:0.000008px;}
.y1d_c00361{bottom:30.156225px;}
.y1c_c00361{bottom:196.144732px;}
.y1b_c00361{bottom:226.501609px;}
.y1a_c00361{bottom:256.858486px;}
.y19_c00361{bottom:296.434932px;}
.y15_c00361{bottom:378.735831px;}
.y14_c00361{bottom:409.092708px;}
.y13_c00361{bottom:439.449584px;}
.y12_c00361{bottom:469.806461px;}
.y11_c00361{bottom:500.163338px;}
.y10_c00361{bottom:530.520215px;}
.yf_c00361{bottom:560.877091px;}
.ye_c00361{bottom:621.590845px;}
.yd_c00361{bottom:651.947722px;}
.yc_c00361{bottom:682.304599px;}
.yb_c00361{bottom:712.661475px;}
.ya_c00361{bottom:743.018352px;}
.y9_c00361{bottom:773.375229px;}
.y8_c00361{bottom:834.088982px;}
.y7_c00361{bottom:864.445859px;}
.y6_c00361{bottom:894.802736px;}
.y5_c00361{bottom:925.159613px;}
.y4_c00361{bottom:955.516489px;}
.y3_c00361{bottom:985.873366px;}
.y2_c00361{bottom:1016.230243px;}
.y18_c00361{bottom:1055.590085px;}
.y17_c00361{bottom:1117.214853px;}
.y16_c00361{bottom:1199.837793px;}
.h4_c00361{height:52.140747px;}
.h6_c00361{height:55.092790px;}
.h3_c00361{height:55.127245px;}
.h5_c00361{height:91.738684px;}
.h2_c00361{height:1304.999946px;}
.h0_c00361{height:1304.999953px;}
.h1_c00361{height:1305.000000px;}
.w2_c00361{width:934.874961px;}
.w0_c00361{width:934.875000px;}
.w1_c00361{width:935.250000px;}
.x0_c00361{left:0.000000px;}
.x1_c00361{left:87.850202px;}
.x3_c00361{left:89.810669px;}
.x4_c00361{left:451.985828px;}
.x2_c00361{left:759.962556px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls0_c00361{letter-spacing:0.000000pt;}
.ws1_c00361{word-spacing:-16.604696pt;}
.ws0_c00361{word-spacing:-0.063962pt;}
.ws2_c00361{word-spacing:0.000000pt;}
._3_c00361{width:1.286706pt;}
._5_c00361{width:2.774346pt;}
._7_c00361{width:3.831024pt;}
._a_c00361{width:6.763785pt;}
._9_c00361{width:9.492804pt;}
._2_c00361{width:10.733156pt;}
._1_c00361{width:11.666913pt;}
._0_c00361{width:12.648699pt;}
._4_c00361{width:13.792853pt;}
._b_c00361{width:14.736380pt;}
._6_c00361{width:19.774630pt;}
._c_c00361{width:22.200246pt;}
._8_c00361{width:31.731056pt;}
.fs2_c00361{font-size:63.921837pt;}
.fs0_c00361{font-size:63.961814pt;}
.fs1_c00361{font-size:106.576373pt;}
.y0_c00361{bottom:0.000000pt;}
.y1_c00361{bottom:0.000007pt;}
.y1d_c00361{bottom:26.805533pt;}
.y1c_c00361{bottom:174.350873pt;}
.y1b_c00361{bottom:201.334764pt;}
.y1a_c00361{bottom:228.318654pt;}
.y19_c00361{bottom:263.497718pt;}
.y15_c00361{bottom:336.654072pt;}
.y14_c00361{bottom:363.637962pt;}
.y13_c00361{bottom:390.621853pt;}
.y12_c00361{bottom:417.605743pt;}
.y11_c00361{bottom:444.589634pt;}
.y10_c00361{bottom:471.573524pt;}
.yf_c00361{bottom:498.557415pt;}
.ye_c00361{bottom:552.525196pt;}
.yd_c00361{bottom:579.509086pt;}
.yc_c00361{bottom:606.492976pt;}
.yb_c00361{bottom:633.476867pt;}
.ya_c00361{bottom:660.460757pt;}
.y9_c00361{bottom:687.444648pt;}
.y8_c00361{bottom:741.412429pt;}
.y7_c00361{bottom:768.396319pt;}
.y6_c00361{bottom:795.380210pt;}
.y5_c00361{bottom:822.364100pt;}
.y4_c00361{bottom:849.347991pt;}
.y3_c00361{bottom:876.331881pt;}
.y2_c00361{bottom:903.315772pt;}
.y18_c00361{bottom:938.302297pt;}
.y17_c00361{bottom:993.079869pt;}
.y16_c00361{bottom:1066.522482pt;}
.h4_c00361{height:46.347330pt;}
.h6_c00361{height:48.971369pt;}
.h3_c00361{height:49.001996pt;}
.h5_c00361{height:81.545497pt;}
.h2_c00361{height:1159.999952pt;}
.h0_c00361{height:1159.999959pt;}
.h1_c00361{height:1160.000000pt;}
.w2_c00361{width:830.999965pt;}
.w0_c00361{width:831.000000pt;}
.w1_c00361{width:831.333333pt;}
.x0_c00361{left:0.000000pt;}
.x1_c00361{left:78.089069pt;}
.x3_c00361{left:79.831705pt;}
.x4_c00361{left:401.765180pt;}
.x2_c00361{left:675.522272pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8452fa7a0206e6229a95fe18.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.006348;font-style:normal;font-weight:normal;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_6c45e07338fb5cdbfefc7ea0.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:0.734375;font-style:normal;font-weight:normal;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_44c3f75c12ec2afde2937cd5.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.000000;font-style:normal;font-weight:normal;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_ef75ac09ec0bee8008350615.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:0.713867;font-style:normal;font-weight: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_c00362;src:url('chunks/assets/font_85b71e7e44206552b3fe163e.woff2')format("woff");}.ff5_c00362{font-family:ff5_c00362;line-height:0.737305;font-style:normal;font-weight: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_c00362;src:url('chunks/assets/font_6a1891226cd1766c524f46ab.woff2')format("woff");}.ff6_c00362{font-family:ff6_c00362;line-height:1.000000;font-style:normal;font-weight: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_c00362;src:url('chunks/assets/font_1e0b70bebfac2203d02feb45.woff2')format("woff");}.ff7_c00362{font-family:ff7_c00362;line-height:0.733887;font-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_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;}
.ls4_c00362{letter-spacing:0.000000px;}
.ls1_c00362{letter-spacing:0.035135px;}
.ls0_c00362{letter-spacing:45.008286px;}
.ls2_c00362{letter-spacing:1195.445715px;}
.ls3_c00362{letter-spacing:1200.755538px;}
.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;}
}
.ws2_c00362{word-spacing:-18.680283px;}
.ws1_c00362{word-spacing:-14.018975px;}
.ws0_c00362{word-spacing:-0.053968px;}
.ws3_c00362{word-spacing:0.000000px;}
._2_c00362{width:1.011780px;}
._9_c00362{width:2.190459px;}
._6_c00362{width:3.205409px;}
._7_c00362{width:6.269863px;}
._5_c00362{width:7.935494px;}
._b_c00362{width:9.529756px;}
._4_c00362{width:11.622705px;}
._0_c00362{width:14.974625px;}
._3_c00362{width:16.150492px;}
._15_c00362{width:17.930725px;}
._18_c00362{width:19.131159px;}
._8_c00362{width:20.161746px;}
._a_c00362{width:21.215800px;}
._17_c00362{width:28.122218px;}
._c_c00362{width:30.414316px;}
._10_c00362{width:31.814991px;}
._16_c00362{width:34.236442px;}
._1_c00362{width:35.586132px;}
._13_c00362{width:36.631540px;}
._e_c00362{width:38.836141px;}
._d_c00362{width:44.996551px;}
._14_c00362{width:47.010997px;}
._19_c00362{width:48.990236px;}
._12_c00362{width:49.997496px;}
._1a_c00362{width:51.227230px;}
._f_c00362{width:97.851737px;}
._11_c00362{width:140.822180px;}
.fc2_c00362{color:rgb(216,187,143);}
.fc1_c00362{color:rgb(137,99,42);}
.fc3_c00362{color:rgb(255,255,255);}
.fc0_c00362{color:rgb(0,0,0);}
.fs1_c00362{font-size:53.967781px;}
.fs3_c00362{font-size:71.912067px;}
.fs0_c00362{font-size:71.957041px;}
.fs2_c00362{font-size:100.689965px;}
.y0_c00362{bottom:0.000000px;}
.y1_c00362{bottom:0.000008px;}
.y29_c00362{bottom:30.156225px;}
.y26_c00362{bottom:257.713021px;}
.y25_c00362{bottom:276.826610px;}
.y24_c00362{bottom:295.940199px;}
.y23_c00362{bottom:315.053788px;}
.y22_c00362{bottom:334.167378px;}
.y21_c00362{bottom:353.280967px;}
.y20_c00362{bottom:372.394556px;}
.y28_c00362{bottom:387.085297px;}
.y1f_c00362{bottom:391.508145px;}
.y1e_c00362{bottom:410.621734px;}
.y1d_c00362{bottom:429.735323px;}
.y1c_c00362{bottom:448.848912px;}
.y1b_c00362{bottom:467.962501px;}
.y1a_c00362{bottom:487.076090px;}
.y19_c00362{bottom:506.189679px;}
.y18_c00362{bottom:525.303268px;}
.y17_c00362{bottom:544.416857px;}
.y16_c00362{bottom:563.530446px;}
.y15_c00362{bottom:582.644035px;}
.y14_c00362{bottom:601.757625px;}
.y27_c00362{bottom:609.542140px;}
.y13_c00362{bottom:620.871214px;}
.y12_c00362{bottom:639.984803px;}
.y10_c00362{bottom:703.836628px;}
.yf_c00362{bottom:734.193505px;}
.ye_c00362{bottom:764.550382px;}
.yd_c00362{bottom:794.907259px;}
.yc_c00362{bottom:825.264135px;}
.yb_c00362{bottom:855.621012px;}
.ya_c00362{bottom:885.977889px;}
.y9_c00362{bottom:916.334766px;}
.y8_c00362{bottom:946.691642px;}
.y7_c00362{bottom:977.048519px;}
.y6_c00362{bottom:1007.405396px;}
.y5_c00362{bottom:1037.762273px;}
.y4_c00362{bottom:1068.119150px;}
.y3_c00362{bottom:1098.476026px;}
.y2_c00362{bottom:1128.832903px;}
.y11_c00362{bottom:1199.837793px;}
.h5_c00362{height:41.345434px;}
.h4_c00362{height:52.140747px;}
.h7_c00362{height:55.092790px;}
.h3_c00362{height:55.127245px;}
.h6_c00362{height:76.500774px;}
.h2_c00362{height:1304.999946px;}
.h0_c00362{height:1304.999953px;}
.h1_c00362{height:1305.000000px;}
.w2_c00362{width:934.874961px;}
.w0_c00362{width:934.875000px;}
.w1_c00362{width:935.250000px;}
.x0_c00362{left:0.000000px;}
.x1_c00362{left:89.810669px;}
.x4_c00362{left:102.957479px;}
.x5_c00362{left:451.985828px;}
.x3_c00362{left:667.996460px;}
.x2_c00362{left:759.962556px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls4_c00362{letter-spacing:0.000000pt;}
.ls1_c00362{letter-spacing:0.031231pt;}
.ls0_c00362{letter-spacing:40.007365pt;}
.ls2_c00362{letter-spacing:1062.618414pt;}
.ls3_c00362{letter-spacing:1067.338256pt;}
.ws2_c00362{word-spacing:-16.604696pt;}
.ws1_c00362{word-spacing:-12.461311pt;}
.ws0_c00362{word-spacing:-0.047971pt;}
.ws3_c00362{word-spacing:0.000000pt;}
._2_c00362{width:0.899360pt;}
._9_c00362{width:1.947075pt;}
._6_c00362{width:2.849252pt;}
._7_c00362{width:5.573212pt;}
._5_c00362{width:7.053772pt;}
._b_c00362{width:8.470894pt;}
._4_c00362{width:10.331293pt;}
._0_c00362{width:13.310777pt;}
._3_c00362{width:14.355993pt;}
._15_c00362{width:15.938422pt;}
._18_c00362{width:17.005475pt;}
._8_c00362{width:17.921552pt;}
._a_c00362{width:18.858489pt;}
._17_c00362{width:24.997527pt;}
._c_c00362{width:27.034947pt;}
._10_c00362{width:28.279992pt;}
._16_c00362{width:30.432392pt;}
._1_c00362{width:31.632117pt;}
._13_c00362{width:32.561369pt;}
._e_c00362{width:34.521014pt;}
._d_c00362{width:39.996935pt;}
._14_c00362{width:41.787553pt;}
._19_c00362{width:43.546877pt;}
._12_c00362{width:44.442219pt;}
._1a_c00362{width:45.535316pt;}
._f_c00362{width:86.979322pt;}
._11_c00362{width:125.175271pt;}
.fs1_c00362{font-size:47.971361pt;}
.fs3_c00362{font-size:63.921837pt;}
.fs0_c00362{font-size:63.961814pt;}
.fs2_c00362{font-size:89.502191pt;}
.y0_c00362{bottom:0.000000pt;}
.y1_c00362{bottom:0.000007pt;}
.y29_c00362{bottom:26.805533pt;}
.y26_c00362{bottom:229.078241pt;}
.y25_c00362{bottom:246.068098pt;}
.y24_c00362{bottom:263.057955pt;}
.y23_c00362{bottom:280.047812pt;}
.y22_c00362{bottom:297.037669pt;}
.y21_c00362{bottom:314.027526pt;}
.y20_c00362{bottom:331.017383pt;}
.y28_c00362{bottom:344.075820pt;}
.y1f_c00362{bottom:348.007240pt;}
.y1e_c00362{bottom:364.997097pt;}
.y1d_c00362{bottom:381.986954pt;}
.y1c_c00362{bottom:398.976811pt;}
.y1b_c00362{bottom:415.966668pt;}
.y1a_c00362{bottom:432.956525pt;}
.y19_c00362{bottom:449.946382pt;}
.y18_c00362{bottom:466.936238pt;}
.y17_c00362{bottom:483.926095pt;}
.y16_c00362{bottom:500.915952pt;}
.y15_c00362{bottom:517.905809pt;}
.y14_c00362{bottom:534.895666pt;}
.y27_c00362{bottom:541.815235pt;}
.y13_c00362{bottom:551.885523pt;}
.y12_c00362{bottom:568.875380pt;}
.y10_c00362{bottom:625.632559pt;}
.yf_c00362{bottom:652.616449pt;}
.ye_c00362{bottom:679.600339pt;}
.yd_c00362{bottom:706.584230pt;}
.yc_c00362{bottom:733.568120pt;}
.yb_c00362{bottom:760.552011pt;}
.ya_c00362{bottom:787.535901pt;}
.y9_c00362{bottom:814.519792pt;}
.y8_c00362{bottom:841.503682pt;}
.y7_c00362{bottom:868.487573pt;}
.y6_c00362{bottom:895.471463pt;}
.y5_c00362{bottom:922.455354pt;}
.y4_c00362{bottom:949.439244pt;}
.y3_c00362{bottom:976.423134pt;}
.y2_c00362{bottom:1003.407025pt;}
.y11_c00362{bottom:1066.522482pt;}
.h5_c00362{height:36.751497pt;}
.h4_c00362{height:46.347330pt;}
.h7_c00362{height:48.971369pt;}
.h3_c00362{height:49.001996pt;}
.h6_c00362{height:68.000688pt;}
.h2_c00362{height:1159.999952pt;}
.h0_c00362{height:1159.999959pt;}
.h1_c00362{height:1160.000000pt;}
.w2_c00362{width:830.999965pt;}
.w0_c00362{width:831.000000pt;}
.w1_c00362{width:831.333333pt;}
.x0_c00362{left:0.000000pt;}
.x1_c00362{left:79.831705pt;}
.x4_c00362{left:91.517759pt;}
.x5_c00362{left:401.765180pt;}
.x3_c00362{left:593.774631pt;}
.x2_c00362{left:675.522272pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_513e4a0bc669f020f527b3f2.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.171387;font-style:normal;font-weight:normal;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_6c45e07338fb5cdbfefc7ea0.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:0.734375;font-style:normal;font-weight:normal;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_fa1b079a0ad4e38501a095dc.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:0.775879;font-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_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);}
.v0_c00363{vertical-align:0.000000px;}
.ls0_c00363{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00363{word-spacing:0.000000px;}
._1_c00363{width:1.742623px;}
._a_c00363{width:3.616187px;}
._d_c00363{width:6.359484px;}
._5_c00363{width:7.420418px;}
._0_c00363{width:8.512272px;}
._f_c00363{width:10.623617px;}
._3_c00363{width:11.805451px;}
._4_c00363{width:12.830205px;}
._c_c00363{width:13.919472px;}
._6_c00363{width:15.611726px;}
._7_c00363{width:17.465242px;}
._9_c00363{width:21.206058px;}
._b_c00363{width:22.703220px;}
._2_c00363{width:23.870851px;}
._e_c00363{width:30.825301px;}
._8_c00363{width:44.495256px;}
.fc1_c00363{color:rgb(137,99,42);}
.fc0_c00363{color:rgb(0,0,0);}
.fs2_c00363{font-size:71.912067px;}
.fs0_c00363{font-size:71.957041px;}
.fs1_c00363{font-size:119.898420px;}
.y0_c00363{bottom:0.000000px;}
.y1_c00363{bottom:0.000008px;}
.y21_c00363{bottom:30.156225px;}
.y20_c00363{bottom:178.567407px;}
.y1f_c00363{bottom:208.924284px;}
.y1e_c00363{bottom:239.281160px;}
.y1d_c00363{bottom:269.638037px;}
.y1c_c00363{bottom:299.994914px;}
.y1b_c00363{bottom:330.351791px;}
.y1a_c00363{bottom:360.708667px;}
.y19_c00363{bottom:391.065544px;}
.y18_c00363{bottom:443.289277px;}
.y17_c00363{bottom:473.646154px;}
.y16_c00363{bottom:504.003031px;}
.y15_c00363{bottom:534.359907px;}
.y14_c00363{bottom:564.716784px;}
.y13_c00363{bottom:595.073661px;}
.y12_c00363{bottom:625.430538px;}
.y11_c00363{bottom:655.787414px;}
.y10_c00363{bottom:686.144291px;}
.yd_c00363{bottom:738.368069px;}
.yc_c00363{bottom:768.724946px;}
.yb_c00363{bottom:799.081823px;}
.ya_c00363{bottom:829.438700px;}
.y9_c00363{bottom:859.795576px;}
.y8_c00363{bottom:890.152453px;}
.y7_c00363{bottom:920.509330px;}
.y6_c00363{bottom:950.866207px;}
.y5_c00363{bottom:981.223084px;}
.y4_c00363{bottom:1011.579960px;}
.y3_c00363{bottom:1041.936837px;}
.y2_c00363{bottom:1072.293714px;}
.yf_c00363{bottom:1117.214853px;}
.ye_c00363{bottom:1199.837793px;}
.h4_c00363{height:52.140747px;}
.h6_c00363{height:66.961090px;}
.h3_c00363{height:67.002968px;}
.h5_c00363{height:91.855772px;}
.h2_c00363{height:1304.999946px;}
.h0_c00363{height:1304.999953px;}
.h1_c00363{height:1305.000000px;}
.w2_c00363{width:934.874961px;}
.w0_c00363{width:934.875000px;}
.w1_c00363{width:935.250000px;}
.x0_c00363{left:0.000000px;}
.x1_c00363{left:87.850202px;}
.x3_c00363{left:451.985828px;}
.x2_c00363{left:759.962556px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws0_c00363{word-spacing:-16.604696pt;}
.ws1_c00363{word-spacing:0.000000pt;}
._1_c00363{width:1.548998pt;}
._a_c00363{width:3.214388pt;}
._d_c00363{width:5.652875pt;}
._5_c00363{width:6.595927pt;}
._0_c00363{width:7.566464pt;}
._f_c00363{width:9.443215pt;}
._3_c00363{width:10.493734pt;}
._4_c00363{width:11.404627pt;}
._c_c00363{width:12.372864pt;}
._6_c00363{width:13.877089pt;}
._7_c00363{width:15.524660pt;}
._9_c00363{width:18.849829pt;}
._b_c00363{width:20.180640pt;}
._2_c00363{width:21.218534pt;}
._e_c00363{width:27.400268pt;}
._8_c00363{width:39.551339pt;}
.fs2_c00363{font-size:63.921837pt;}
.fs0_c00363{font-size:63.961814pt;}
.fs1_c00363{font-size:106.576373pt;}
.y0_c00363{bottom:0.000000pt;}
.y1_c00363{bottom:0.000007pt;}
.y21_c00363{bottom:26.805533pt;}
.y20_c00363{bottom:158.726584pt;}
.y1f_c00363{bottom:185.710474pt;}
.y1e_c00363{bottom:212.694365pt;}
.y1d_c00363{bottom:239.678255pt;}
.y1c_c00363{bottom:266.662146pt;}
.y1b_c00363{bottom:293.646036pt;}
.y1a_c00363{bottom:320.629927pt;}
.y19_c00363{bottom:347.613817pt;}
.y18_c00363{bottom:394.034913pt;}
.y17_c00363{bottom:421.018803pt;}
.y16_c00363{bottom:448.002694pt;}
.y15_c00363{bottom:474.986584pt;}
.y14_c00363{bottom:501.970475pt;}
.y13_c00363{bottom:528.954365pt;}
.y12_c00363{bottom:555.938256pt;}
.y11_c00363{bottom:582.922146pt;}
.y10_c00363{bottom:609.906037pt;}
.yd_c00363{bottom:656.327173pt;}
.yc_c00363{bottom:683.311063pt;}
.yb_c00363{bottom:710.294954pt;}
.ya_c00363{bottom:737.278844pt;}
.y9_c00363{bottom:764.262735pt;}
.y8_c00363{bottom:791.246625pt;}
.y7_c00363{bottom:818.230516pt;}
.y6_c00363{bottom:845.214406pt;}
.y5_c00363{bottom:872.198296pt;}
.y4_c00363{bottom:899.182187pt;}
.y3_c00363{bottom:926.166077pt;}
.y2_c00363{bottom:953.149968pt;}
.yf_c00363{bottom:993.079869pt;}
.ye_c00363{bottom:1066.522482pt;}
.h4_c00363{height:46.347330pt;}
.h6_c00363{height:59.520969pt;}
.h3_c00363{height:59.558193pt;}
.h5_c00363{height:81.649575pt;}
.h2_c00363{height:1159.999952pt;}
.h0_c00363{height:1159.999959pt;}
.h1_c00363{height:1160.000000pt;}
.w2_c00363{width:830.999965pt;}
.w0_c00363{width:831.000000pt;}
.w1_c00363{width:831.333333pt;}
.x0_c00363{left:0.000000pt;}
.x1_c00363{left:78.089069pt;}
.x3_c00363{left:401.765180pt;}
.x2_c00363{left:675.522272pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c45e07338fb5cdbfefc7ea0.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:0.734375;font-style:normal;font-weight:normal;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_daa2d31faa5cb42a6999c697.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.171387;font-style:normal;font-weight:normal;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_8597e58d7294abbe095c9366.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.000000;font-style:normal;font-weight:normal;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_6c3a0f965ff93f51c6fb0330.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.000000;font-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_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);}
.v0_c00364{vertical-align:0.000000px;}
.ls0_c00364{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00364{word-spacing:-18.691966px;}
.ws1_c00364{word-spacing:-18.680283px;}
.ws2_c00364{word-spacing:0.000000px;}
._2_c00364{width:1.456330px;}
._1_c00364{width:2.594588px;}
._7_c00364{width:3.678596px;}
._b_c00364{width:5.149788px;}
._4_c00364{width:6.331419px;}
._0_c00364{width:7.722690px;}
._a_c00364{width:8.783534px;}
._3_c00364{width:9.791007px;}
._e_c00364{width:13.475021px;}
._c_c00364{width:14.926589px;}
._9_c00364{width:16.671684px;}
._5_c00364{width:24.179451px;}
._d_c00364{width:34.140538px;}
._8_c00364{width:39.313146px;}
._6_c00364{width:40.520507px;}
.fc1_c00364{color:rgb(0,0,0);}
.fc0_c00364{color:rgb(137,99,42);}
.fs1_c00364{font-size:59.949210px;}
.fs3_c00364{font-size:71.912067px;}
.fs0_c00364{font-size:71.957041px;}
.fs2_c00364{font-size:119.898420px;}
.y0_c00364{bottom:0.000000px;}
.y1_c00364{bottom:0.000008px;}
.y1e_c00364{bottom:30.156225px;}
.y1c_c00364{bottom:220.534466px;}
.y1b_c00364{bottom:245.269699px;}
.y1a_c00364{bottom:270.004932px;}
.y19_c00364{bottom:341.737115px;}
.y18_c00364{bottom:372.093992px;}
.y17_c00364{bottom:402.450869px;}
.y16_c00364{bottom:432.807746px;}
.y15_c00364{bottom:463.164623px;}
.y14_c00364{bottom:493.521499px;}
.y13_c00364{bottom:554.235253px;}
.y12_c00364{bottom:584.592130px;}
.y11_c00364{bottom:614.949006px;}
.y10_c00364{bottom:645.305883px;}
.yf_c00364{bottom:675.662760px;}
.ye_c00364{bottom:736.376513px;}
.yd_c00364{bottom:766.733390px;}
.yc_c00364{bottom:797.090267px;}
.yb_c00364{bottom:827.447144px;}
.ya_c00364{bottom:857.804021px;}
.y9_c00364{bottom:888.160897px;}
.y8_c00364{bottom:918.517774px;}
.y7_c00364{bottom:948.874651px;}
.y6_c00364{bottom:979.231528px;}
.y5_c00364{bottom:1009.588404px;}
.y4_c00364{bottom:1039.945281px;}
.y3_c00364{bottom:1070.302158px;}
.y1d_c00364{bottom:1117.214853px;}
.y2_c00364{bottom:1199.837793px;}
.h3_c00364{height:52.140747px;}
.h5_c00364{height:55.821847px;}
.h7_c00364{height:66.961090px;}
.h4_c00364{height:67.002968px;}
.h6_c00364{height:91.094698px;}
.h2_c00364{height:1304.999946px;}
.h0_c00364{height:1304.999953px;}
.h1_c00364{height:1305.000000px;}
.w2_c00364{width:934.874961px;}
.w0_c00364{width:934.875000px;}
.w1_c00364{width:935.250000px;}
.x0_c00364{left:0.000000px;}
.x2_c00364{left:88.708385px;}
.x4_c00364{left:451.985828px;}
.x3_c00364{left:587.465572px;}
.x1_c00364{left:759.962556px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls0_c00364{letter-spacing:0.000000pt;}
.ws0_c00364{word-spacing:-16.615081pt;}
.ws1_c00364{word-spacing:-16.604696pt;}
.ws2_c00364{word-spacing:0.000000pt;}
._2_c00364{width:1.294516pt;}
._1_c00364{width:2.306301pt;}
._7_c00364{width:3.269863pt;}
._b_c00364{width:4.577589pt;}
._4_c00364{width:5.627928pt;}
._0_c00364{width:6.864614pt;}
._a_c00364{width:7.807585pt;}
._3_c00364{width:8.703117pt;}
._e_c00364{width:11.977797pt;}
._c_c00364{width:13.268080pt;}
._9_c00364{width:14.819275pt;}
._5_c00364{width:21.492845pt;}
._d_c00364{width:30.347145pt;}
._8_c00364{width:34.945019pt;}
._6_c00364{width:36.018229pt;}
.fs1_c00364{font-size:53.288186pt;}
.fs3_c00364{font-size:63.921837pt;}
.fs0_c00364{font-size:63.961814pt;}
.fs2_c00364{font-size:106.576373pt;}
.y0_c00364{bottom:0.000000pt;}
.y1_c00364{bottom:0.000007pt;}
.y1e_c00364{bottom:26.805533pt;}
.y1c_c00364{bottom:196.030636pt;}
.y1b_c00364{bottom:218.017510pt;}
.y1a_c00364{bottom:240.004384pt;}
.y19_c00364{bottom:303.766325pt;}
.y18_c00364{bottom:330.750215pt;}
.y17_c00364{bottom:357.734106pt;}
.y16_c00364{bottom:384.717996pt;}
.y15_c00364{bottom:411.701887pt;}
.y14_c00364{bottom:438.685777pt;}
.y13_c00364{bottom:492.653558pt;}
.y12_c00364{bottom:519.637449pt;}
.y11_c00364{bottom:546.621339pt;}
.y10_c00364{bottom:573.605229pt;}
.yf_c00364{bottom:600.589120pt;}
.ye_c00364{bottom:654.556901pt;}
.yd_c00364{bottom:681.540791pt;}
.yc_c00364{bottom:708.524682pt;}
.yb_c00364{bottom:735.508572pt;}
.ya_c00364{bottom:762.492463pt;}
.y9_c00364{bottom:789.476353pt;}
.y8_c00364{bottom:816.460244pt;}
.y7_c00364{bottom:843.444134pt;}
.y6_c00364{bottom:870.428025pt;}
.y5_c00364{bottom:897.411915pt;}
.y4_c00364{bottom:924.395805pt;}
.y3_c00364{bottom:951.379696pt;}
.y1d_c00364{bottom:993.079869pt;}
.y2_c00364{bottom:1066.522482pt;}
.h3_c00364{height:46.347330pt;}
.h5_c00364{height:49.619420pt;}
.h7_c00364{height:59.520969pt;}
.h4_c00364{height:59.558193pt;}
.h6_c00364{height:80.973065pt;}
.h2_c00364{height:1159.999952pt;}
.h0_c00364{height:1159.999959pt;}
.h1_c00364{height:1160.000000pt;}
.w2_c00364{width:830.999965pt;}
.w0_c00364{width:831.000000pt;}
.w1_c00364{width:831.333333pt;}
.x0_c00364{left:0.000000pt;}
.x2_c00364{left:78.851898pt;}
.x4_c00364{left:401.765180pt;}
.x3_c00364{left:522.191620pt;}
.x1_c00364{left:675.522272pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ad23f6726aaf8216befec53.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00365;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:0.734863;font-style:normal;font-weight: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_c00365;src:url('chunks/assets/font_27f63d6b1f11d97dfa587be2.woff2')format("woff");}.ff5_c00365{font-family:ff5_c00365;line-height:1.000000;font-style:normal;font-weight: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_c00365;src:url('chunks/assets/font_6c9aaca1eb49ffb36694e0ce.woff2')format("woff");}.ff6_c00365{font-family:ff6_c00365;line-height:1.000000;font-style:normal;font-weight: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_c00365;src:url('chunks/assets/font_b950f7c5a086b6a1c394d671.woff2')format("woff");}.ff7_c00365{font-family:ff7_c00365;line-height:1.171387;font-style:normal;font-weight: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_c00365;src:url('chunks/assets/font_fdef36cf0e5b5efd663860d4.woff2')format("woff");}.ff8_c00365{font-family:ff8_c00365;line-height:1.000000;font-style:normal;font-weight: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_c00365;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff9_c00365{font-family:ff9_c00365;line-height:1.006348;font-style:normal;font-weight: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_c00365;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00365{font-family:ffa_c00365;line-height:0.940000;font-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_c00365{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00365{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00365{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00365{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00365{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00365{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00365{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00365{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00365{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00365{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00365{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00365{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00365{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00365{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00365{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00365{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00365{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00365{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00365{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00365{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00365{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00365{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00365{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00365{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00365{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00365{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00365{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00365{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00365{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00365{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00365{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00365{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00365{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00365{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00365{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00365{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00365{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00365{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00365{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00365{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00365{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00365{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00365{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00365{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00365{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00365{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00365{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00365{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00365{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00365{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00365{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00365{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00365{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00365{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00365{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00365{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00365{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00365{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00365{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00365{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00365{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00365{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00365{vertical-align:0.000000px;}
.ls0_c00365{letter-spacing:0.000000px;}
.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;}
}
.ws5_c00365{word-spacing:-41.664701px;}
.ws4_c00365{word-spacing:-18.680283px;}
.ws0_c00365{word-spacing:-15.162211px;}
.ws1_c00365{word-spacing:-0.077938px;}
.ws3_c00365{word-spacing:-0.055722px;}
.ws6_c00365{word-spacing:0.000000px;}
.ws2_c00365{word-spacing:281.470806px;}
._2_c00365{width:9.933192px;}
._0_c00365{width:14.942027px;}
._1_c00365{width:15.964412px;}
._3_c00365{width:35.233612px;}
.fc3_c00365{color:rgb(137,99,42);}
.fc2_c00365{color:rgb(9,71,81);}
.fc1_c00365{color:rgb(255,255,255);}
.fc0_c00365{color:rgb(0,0,0);}
.fs8_c00365{font-size:41.974772px;}
.fsc_c00365{font-size:41.975069px;}
.fs2_c00365{font-size:47.339969px;}
.fs5_c00365{font-size:47.339970px;}
.fs1_c00365{font-size:47.339972px;}
.fs4_c00365{font-size:47.339973px;}
.fs3_c00365{font-size:47.339974px;}
.fs6_c00365{font-size:47.339975px;}
.fs9_c00365{font-size:51.630774px;}
.fsf_c00365{font-size:55.721735px;}
.fsb_c00365{font-size:59.949210px;}
.fs10_c00365{font-size:71.912067px;}
.fs0_c00365{font-size:71.957041px;}
.fse_c00365{font-size:74.379845px;}
.fs7_c00365{font-size:76.965540px;}
.fsa_c00365{font-size:77.938470px;}
.fsd_c00365{font-size:95.927731px;}
.y0_c00365{bottom:0.000000px;}
.y1_c00365{bottom:0.000008px;}
.y55_c00365{bottom:30.156225px;}
.y4c_c00365{bottom:126.349287px;}
.y4b_c00365{bottom:156.706164px;}
.y4a_c00365{bottom:187.063041px;}
.y49_c00365{bottom:217.419917px;}
.y48_c00365{bottom:247.776794px;}
.y47_c00365{bottom:278.133671px;}
.y46_c00365{bottom:308.490548px;}
.y53_c00365{bottom:343.517039px;}
.y45_c00365{bottom:402.064151px;}
.y42_c00365{bottom:487.376458px;}
.y10_c00365{bottom:493.812629px;}
.y38_c00365{bottom:493.827623px;}
.yf_c00365{bottom:494.337609px;}
.y39_c00365{bottom:494.357158px;}
.y22_c00365{bottom:494.700737px;}
.y37_c00365{bottom:495.071586px;}
.ye_c00365{bottom:495.403002px;}
.y23_c00365{bottom:495.533530px;}
.y21_c00365{bottom:495.553663px;}
.y36_c00365{bottom:496.322201px;}
.yd_c00365{bottom:496.475623px;}
.y20_c00365{bottom:496.587915px;}
.y3a_c00365{bottom:496.772260px;}
.y11_c00365{bottom:496.835884px;}
.y24_c00365{bottom:497.713596px;}
.y35_c00365{bottom:497.966053px;}
.yc_c00365{bottom:498.126234px;}
.y1f_c00365{bottom:498.789265px;}
.y25_c00365{bottom:499.103521px;}
.y34_c00365{bottom:499.653306px;}
.yb_c00365{bottom:499.818769px;}
.y26_c00365{bottom:500.800864px;}
.y12_c00365{bottom:501.110605px;}
.y33_c00365{bottom:501.517382px;}
.ya_c00365{bottom:501.687706px;}
.y3b_c00365{bottom:501.869915px;}
.y1e_c00365{bottom:502.578702px;}
.y27_c00365{bottom:503.241722px;}
.y13_c00365{bottom:503.627848px;}
.y3c_c00365{bottom:505.496019px;}
.y28_c00365{bottom:505.499367px;}
.y32_c00365{bottom:506.168989px;}
.y9_c00365{bottom:506.348634px;}
.y1d_c00365{bottom:508.044213px;}
.y29_c00365{bottom:508.766327px;}
.y14_c00365{bottom:509.576794px;}
.y3d_c00365{bottom:511.126534px;}
.y1c_c00365{bottom:512.508085px;}
.y31_c00365{bottom:512.566592px;}
.y8_c00365{bottom:512.754669px;}
.y15_c00365{bottom:514.322677px;}
.y2a_c00365{bottom:517.158603px;}
.y3e_c00365{bottom:517.780195px;}
.y1b_c00365{bottom:518.929057px;}
.y30_c00365{bottom:519.869222px;}
.y7_c00365{bottom:519.959421px;}
.y6_c00365{bottom:523.416158px;}
.y1a_c00365{bottom:523.496236px;}
.y2b_c00365{bottom:525.202812px;}
.y16_c00365{bottom:526.099549px;}
.y2f_c00365{bottom:527.026630px;}
.y5_c00365{bottom:529.422883px;}
.y3f_c00365{bottom:529.736175px;}
.y19_c00365{bottom:531.263725px;}
.y2e_c00365{bottom:531.792993px;}
.y41_c00365{bottom:533.728456px;}
.y52_c00365{bottom:534.421816px;}
.y18_c00365{bottom:535.155114px;}
.y4_c00365{bottom:536.678099px;}
.y2d_c00365{bottom:537.961701px;}
.y17_c00365{bottom:538.332892px;}
.y40_c00365{bottom:538.696314px;}
.y43_c00365{bottom:540.431168px;}
.y2c_c00365{bottom:545.020884px;}
.y3_c00365{bottom:546.207017px;}
.y44_c00365{bottom:577.871130px;}
.y2_c00365{bottom:597.559761px;}
.y54_c00365{bottom:639.489911px;}
.y56_c00365{bottom:1021.609033px;}
.y50_c00365{bottom:1127.585799px;}
.y4e_c00365{bottom:1133.211112px;}
.y51_c00365{bottom:1150.017273px;}
.y4d_c00365{bottom:1151.200373px;}
.y4f_c00365{bottom:1170.658440px;}
.hb_c00365{height:32.157430px;}
.h8_c00365{height:35.967282px;}
.h7_c00365{height:35.967283px;}
.h9_c00365{height:35.967285px;}
.h5_c00365{height:36.267779px;}
.h4_c00365{height:36.267781px;}
.h6_c00365{height:36.267783px;}
.hc_c00365{height:37.437353px;}
.hf_c00365{height:39.085184px;}
.h15_c00365{height:45.561399px;}
.h13_c00365{height:51.885424px;}
.h14_c00365{height:55.092790px;}
.h3_c00365{height:55.127245px;}
.he_c00365{height:55.821847px;}
.ha_c00365{height:56.261810px;}
.h12_c00365{height:56.983387px;}
.hd_c00365{height:59.214971px;}
.h10_c00365{height:67.002968px;}
.h11_c00365{height:89.323331px;}
.h2_c00365{height:1304.999946px;}
.h0_c00365{height:1304.999953px;}
.h1_c00365{height:1305.000000px;}
.w2_c00365{width:934.874961px;}
.w0_c00365{width:934.875000px;}
.w1_c00365{width:935.250000px;}
.x0_c00365{left:0.000000px;}
.x3b_c00365{left:89.434062px;}
.x3c_c00365{left:108.062661px;}
.x3d_c00365{left:109.658623px;}
.x42_c00365{left:130.612669px;}
.x27_c00365{left:134.894322px;}
.x26_c00365{left:136.566734px;}
.x28_c00365{left:139.937719px;}
.x29_c00365{left:144.785273px;}
.x2a_c00365{left:150.147890px;}
.x2b_c00365{left:152.899057px;}
.x2c_c00365{left:155.907145px;}
.x2d_c00365{left:159.752336px;}
.x37_c00365{left:161.347648px;}
.x2e_c00365{left:163.203941px;}
.x2f_c00365{left:171.483965px;}
.x30_c00365{left:179.748684px;}
.x31_c00365{left:188.175145px;}
.x32_c00365{left:196.556636px;}
.x33_c00365{left:200.721504px;}
.x34_c00365{left:205.276922px;}
.x35_c00365{left:209.084069px;}
.x36_c00365{left:211.669316px;}
.x3_c00365{left:230.260919px;}
.x2_c00365{left:232.395871px;}
.x4_c00365{left:235.482735px;}
.x5_c00365{left:240.319117px;}
.x6_c00365{left:245.673577px;}
.x7_c00365{left:248.421493px;}
.x8_c00365{left:251.426626px;}
.x9_c00365{left:255.268917px;}
.x3f_c00365{left:256.468943px;}
.xa_c00365{left:258.553698px;}
.xb_c00365{left:262.988294px;}
.xc_c00365{left:271.601212px;}
.xd_c00365{left:283.434780px;}
.xe_c00365{left:290.867654px;}
.xf_c00365{left:294.260334px;}
.x3e_c00365{left:295.438786px;}
.x10_c00365{left:299.596701px;}
.x11_c00365{left:302.984150px;}
.x12_c00365{left:306.993562px;}
.x13_c00365{left:325.378518px;}
.x14_c00365{left:326.595106px;}
.x15_c00365{left:328.015253px;}
.x16_c00365{left:331.410444px;}
.x17_c00365{left:334.633053px;}
.x18_c00365{left:340.511825px;}
.x19_c00365{left:346.695139px;}
.x1a_c00365{left:352.384720px;}
.x1b_c00365{left:355.792694px;}
.x1c_c00365{left:363.695116px;}
.x1d_c00365{left:371.679253px;}
.x1e_c00365{left:378.434940px;}
.x1f_c00365{left:381.453328px;}
.x20_c00365{left:384.455783px;}
.x21_c00365{left:387.851715px;}
.x22_c00365{left:390.467224px;}
.x23_c00365{left:393.779799px;}
.x24_c00365{left:398.952070px;}
.x25_c00365{left:401.755082px;}
.x41_c00365{left:451.985828px;}
.x1_c00365{left:465.097640px;}
.x40_c00365{left:676.474352px;}
.x3a_c00365{left:696.904800px;}
.x39_c00365{left:733.103068px;}
.x38_c00365{left:756.637341px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls0_c00365{letter-spacing:0.000000pt;}
.ws5_c00365{word-spacing:-37.035289pt;}
.ws4_c00365{word-spacing:-16.604696pt;}
.ws0_c00365{word-spacing:-13.477521pt;}
.ws1_c00365{word-spacing:-0.069279pt;}
.ws3_c00365{word-spacing:-0.049530pt;}
.ws6_c00365{word-spacing:0.000000pt;}
.ws2_c00365{word-spacing:250.196272pt;}
._2_c00365{width:8.829504pt;}
._0_c00365{width:13.281801pt;}
._1_c00365{width:14.190588pt;}
._3_c00365{width:31.318766pt;}
.fs8_c00365{font-size:37.310908pt;}
.fsc_c00365{font-size:37.311173pt;}
.fs2_c00365{font-size:42.079973pt;}
.fs5_c00365{font-size:42.079974pt;}
.fs1_c00365{font-size:42.079975pt;}
.fs4_c00365{font-size:42.079976pt;}
.fs3_c00365{font-size:42.079977pt;}
.fs6_c00365{font-size:42.079978pt;}
.fs9_c00365{font-size:45.894021pt;}
.fsf_c00365{font-size:49.530431pt;}
.fsb_c00365{font-size:53.288186pt;}
.fs10_c00365{font-size:63.921837pt;}
.fs0_c00365{font-size:63.961814pt;}
.fse_c00365{font-size:66.115417pt;}
.fs7_c00365{font-size:68.413814pt;}
.fsa_c00365{font-size:69.278640pt;}
.fsd_c00365{font-size:85.269094pt;}
.y0_c00365{bottom:0.000000pt;}
.y1_c00365{bottom:0.000007pt;}
.y55_c00365{bottom:26.805533pt;}
.y4c_c00365{bottom:112.310477pt;}
.y4b_c00365{bottom:139.294368pt;}
.y4a_c00365{bottom:166.278258pt;}
.y49_c00365{bottom:193.262149pt;}
.y48_c00365{bottom:220.246039pt;}
.y47_c00365{bottom:247.229930pt;}
.y46_c00365{bottom:274.213820pt;}
.y53_c00365{bottom:305.348479pt;}
.y45_c00365{bottom:357.390356pt;}
.y42_c00365{bottom:433.223518pt;}
.y10_c00365{bottom:438.944560pt;}
.y38_c00365{bottom:438.957887pt;}
.yf_c00365{bottom:439.411208pt;}
.y39_c00365{bottom:439.428585pt;}
.y22_c00365{bottom:439.733989pt;}
.y37_c00365{bottom:440.063632pt;}
.ye_c00365{bottom:440.358224pt;}
.y23_c00365{bottom:440.474249pt;}
.y21_c00365{bottom:440.492144pt;}
.y36_c00365{bottom:441.175290pt;}
.yd_c00365{bottom:441.311665pt;}
.y20_c00365{bottom:441.411480pt;}
.y3a_c00365{bottom:441.575343pt;}
.y11_c00365{bottom:441.631897pt;}
.y24_c00365{bottom:442.412085pt;}
.y35_c00365{bottom:442.636491pt;}
.yc_c00365{bottom:442.778875pt;}
.y1f_c00365{bottom:443.368235pt;}
.y25_c00365{bottom:443.647574pt;}
.y34_c00365{bottom:444.136272pt;}
.yb_c00365{bottom:444.283350pt;}
.y26_c00365{bottom:445.156323pt;}
.y12_c00365{bottom:445.431649pt;}
.y33_c00365{bottom:445.793228pt;}
.ya_c00365{bottom:445.944627pt;}
.y3b_c00365{bottom:446.106592pt;}
.y1e_c00365{bottom:446.736624pt;}
.y27_c00365{bottom:447.325975pt;}
.y13_c00365{bottom:447.669198pt;}
.y3c_c00365{bottom:449.329795pt;}
.y28_c00365{bottom:449.332771pt;}
.y32_c00365{bottom:449.927990pt;}
.y9_c00365{bottom:450.087675pt;}
.y1d_c00365{bottom:451.594856pt;}
.y29_c00365{bottom:452.236735pt;}
.y14_c00365{bottom:452.957150pt;}
.y3d_c00365{bottom:454.334697pt;}
.y1c_c00365{bottom:455.562742pt;}
.y31_c00365{bottom:455.614749pt;}
.y8_c00365{bottom:455.781928pt;}
.y15_c00365{bottom:457.175713pt;}
.y2a_c00365{bottom:459.696536pt;}
.y3e_c00365{bottom:460.249062pt;}
.y1b_c00365{bottom:461.270273pt;}
.y30_c00365{bottom:462.105976pt;}
.y7_c00365{bottom:462.186152pt;}
.y6_c00365{bottom:465.258807pt;}
.y1a_c00365{bottom:465.329988pt;}
.y2b_c00365{bottom:466.846944pt;}
.y16_c00365{bottom:467.644044pt;}
.y2f_c00365{bottom:468.468115pt;}
.y5_c00365{bottom:470.598118pt;}
.y3f_c00365{bottom:470.876600pt;}
.y19_c00365{bottom:472.234422pt;}
.y2e_c00365{bottom:472.704883pt;}
.y41_c00365{bottom:474.425294pt;}
.y52_c00365{bottom:475.041614pt;}
.y18_c00365{bottom:475.693435pt;}
.y4_c00365{bottom:477.047199pt;}
.y2d_c00365{bottom:478.188178pt;}
.y17_c00365{bottom:478.518126pt;}
.y40_c00365{bottom:478.841168pt;}
.y43_c00365{bottom:480.383260pt;}
.y2c_c00365{bottom:484.463008pt;}
.y3_c00365{bottom:485.517349pt;}
.y44_c00365{bottom:513.663227pt;}
.y2_c00365{bottom:531.164232pt;}
.y54_c00365{bottom:568.435476pt;}
.y56_c00365{bottom:908.096918pt;}
.y50_c00365{bottom:1002.298488pt;}
.y4e_c00365{bottom:1007.298766pt;}
.y51_c00365{bottom:1022.237576pt;}
.y4d_c00365{bottom:1023.289220pt;}
.y4f_c00365{bottom:1040.585280pt;}
.hb_c00365{height:28.584382pt;}
.h8_c00365{height:31.970917pt;}
.h7_c00365{height:31.970918pt;}
.h9_c00365{height:31.970920pt;}
.h5_c00365{height:32.238026pt;}
.h4_c00365{height:32.238028pt;}
.h6_c00365{height:32.238029pt;}
.hc_c00365{height:33.277647pt;}
.hf_c00365{height:34.742386pt;}
.h15_c00365{height:40.499022pt;}
.h13_c00365{height:46.120377pt;}
.h14_c00365{height:48.971369pt;}
.h3_c00365{height:49.001996pt;}
.he_c00365{height:49.619420pt;}
.ha_c00365{height:50.010498pt;}
.h12_c00365{height:50.651899pt;}
.hd_c00365{height:52.635529pt;}
.h10_c00365{height:59.558193pt;}
.h11_c00365{height:79.398517pt;}
.h2_c00365{height:1159.999952pt;}
.h0_c00365{height:1159.999959pt;}
.h1_c00365{height:1160.000000pt;}
.w2_c00365{width:830.999965pt;}
.w0_c00365{width:831.000000pt;}
.w1_c00365{width:831.333333pt;}
.x0_c00365{left:0.000000pt;}
.x3b_c00365{left:79.496944pt;}
.x3c_c00365{left:96.055698pt;}
.x3d_c00365{left:97.474332pt;}
.x42_c00365{left:116.100150pt;}
.x27_c00365{left:119.906064pt;}
.x26_c00365{left:121.392652pt;}
.x28_c00365{left:124.389083pt;}
.x29_c00365{left:128.698021pt;}
.x2a_c00365{left:133.464791pt;}
.x2b_c00365{left:135.910272pt;}
.x2c_c00365{left:138.584129pt;}
.x2d_c00365{left:142.002076pt;}
.x37_c00365{left:143.420132pt;}
.x2e_c00365{left:145.070170pt;}
.x2f_c00365{left:152.430191pt;}
.x30_c00365{left:159.776608pt;}
.x31_c00365{left:167.266795pt;}
.x32_c00365{left:174.717010pt;}
.x33_c00365{left:178.419115pt;}
.x34_c00365{left:182.468375pt;}
.x35_c00365{left:185.852506pt;}
.x36_c00365{left:188.150503pt;}
.x3_c00365{left:204.676373pt;}
.x2_c00365{left:206.574107pt;}
.x4_c00365{left:209.317987pt;}
.x5_c00365{left:213.616993pt;}
.x6_c00365{left:218.376513pt;}
.x7_c00365{left:220.819105pt;}
.x8_c00365{left:223.490334pt;}
.x9_c00365{left:226.905704pt;}
.x3f_c00365{left:227.972394pt;}
.xa_c00365{left:229.825509pt;}
.xb_c00365{left:233.767373pt;}
.xc_c00365{left:241.423300pt;}
.xd_c00365{left:251.942027pt;}
.xe_c00365{left:258.549026pt;}
.xf_c00365{left:261.564741pt;}
.x3e_c00365{left:262.612255pt;}
.x10_c00365{left:266.308178pt;}
.x11_c00365{left:269.319244pt;}
.x12_c00365{left:272.883167pt;}
.x13_c00365{left:289.225349pt;}
.x14_c00365{left:290.306761pt;}
.x15_c00365{left:291.569114pt;}
.x16_c00365{left:294.587062pt;}
.x17_c00365{left:297.451603pt;}
.x18_c00365{left:302.677178pt;}
.x19_c00365{left:308.173457pt;}
.x1a_c00365{left:313.230862pt;}
.x1b_c00365{left:316.260173pt;}
.x1c_c00365{left:323.284548pt;}
.x1d_c00365{left:330.381558pt;}
.x1e_c00365{left:336.386614pt;}
.x1f_c00365{left:339.069625pt;}
.x20_c00365{left:341.738474pt;}
.x21_c00365{left:344.757080pt;}
.x22_c00365{left:347.081977pt;}
.x23_c00365{left:350.026488pt;}
.x24_c00365{left:354.624063pt;}
.x25_c00365{left:357.115628pt;}
.x41_c00365{left:401.765180pt;}
.x1_c00365{left:413.420124pt;}
.x40_c00365{left:601.310535pt;}
.x3a_c00365{left:619.470933pt;}
.x39_c00365{left:651.647171pt;}
.x38_c00365{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6629361c63413993f1287c20.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.171387;font-style:normal;font-weight:normal;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_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.006348;font-style:normal;font-weight:normal;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_16e5ad5d1f149ce9e995ace9.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.000000;font-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_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);}
.v0_c00366{vertical-align:0.000000px;}
.ls1_c00366{letter-spacing:0.000000px;}
.ls0_c00366{letter-spacing:26.351455px;}
.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;}
}
.ws0_c00366{word-spacing:-18.691966px;}
.ws1_c00366{word-spacing:-18.680283px;}
.ws2_c00366{word-spacing:0.000000px;}
._1_c00366{width:1.812895px;}
._9_c00366{width:3.970286px;}
._5_c00366{width:5.994064px;}
._6_c00366{width:7.352058px;}
._7_c00366{width:8.603192px;}
._0_c00366{width:9.669200px;}
._f_c00366{width:10.872515px;}
._13_c00366{width:11.975145px;}
._d_c00366{width:13.123644px;}
._c_c00366{width:14.822351px;}
._b_c00366{width:16.562713px;}
._10_c00366{width:17.601390px;}
._8_c00366{width:20.640328px;}
._12_c00366{width:21.962835px;}
._4_c00366{width:22.985466px;}
._e_c00366{width:24.883527px;}
._11_c00366{width:26.356462px;}
._a_c00366{width:27.528487px;}
._2_c00366{width:31.270396px;}
._3_c00366{width:42.630751px;}
.fc1_c00366{color:rgb(137,99,42);}
.fc0_c00366{color:rgb(0,0,0);}
.fs3_c00366{font-size:71.912067px;}
.fs0_c00366{font-size:71.957041px;}
.fs1_c00366{font-size:74.340621px;}
.fs2_c00366{font-size:74.379845px;}
.y0_c00366{bottom:0.000000px;}
.y1_c00366{bottom:0.000008px;}
.y25_c00366{bottom:30.156225px;}
.y1e_c00366{bottom:92.771908px;}
.y1d_c00366{bottom:123.128785px;}
.y1c_c00366{bottom:153.485662px;}
.y1b_c00366{bottom:183.842539px;}
.y1a_c00366{bottom:214.199416px;}
.y19_c00366{bottom:244.556292px;}
.y18_c00366{bottom:274.913169px;}
.y17_c00366{bottom:301.403097px;}
.yf_c00366{bottom:356.029177px;}
.ye_c00366{bottom:386.386054px;}
.yd_c00366{bottom:416.742931px;}
.yc_c00366{bottom:447.099808px;}
.yb_c00366{bottom:477.456684px;}
.ya_c00366{bottom:507.813561px;}
.y9_c00366{bottom:538.170438px;}
.y8_c00366{bottom:568.527315px;}
.y7_c00366{bottom:598.884191px;}
.y6_c00366{bottom:629.241068px;}
.y5_c00366{bottom:659.597945px;}
.y4_c00366{bottom:689.954822px;}
.y3_c00366{bottom:720.311698px;}
.y2_c00366{bottom:750.668575px;}
.y16_c00366{bottom:786.479761px;}
.y15_c00366{bottom:840.042040px;}
.y14_c00366{bottom:870.398917px;}
.y13_c00366{bottom:900.755793px;}
.y12_c00366{bottom:931.112670px;}
.y11_c00366{bottom:961.469547px;}
.y10_c00366{bottom:991.826424px;}
.y24_c00366{bottom:1027.080096px;}
.y23_c00366{bottom:1077.177180px;}
.y22_c00366{bottom:1107.534057px;}
.y21_c00366{bottom:1137.890934px;}
.y20_c00366{bottom:1168.247811px;}
.y1f_c00366{bottom:1198.604687px;}
.h4_c00366{height:55.127245px;}
.h5_c00366{height:56.953337px;}
.h6_c00366{height:56.983387px;}
.h7_c00366{height:66.961090px;}
.h3_c00366{height:67.002968px;}
.h2_c00366{height:1304.999946px;}
.h0_c00366{height:1304.999953px;}
.h1_c00366{height:1305.000000px;}
.w2_c00366{width:934.874961px;}
.w0_c00366{width:934.875000px;}
.w1_c00366{width:935.250000px;}
.x0_c00366{left:0.000000px;}
.x1_c00366{left:87.850202px;}
.x2_c00366{left:93.487496px;}
.x3_c00366{left:451.985828px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls1_c00366{letter-spacing:0.000000pt;}
.ls0_c00366{letter-spacing:23.423516pt;}
.ws0_c00366{word-spacing:-16.615081pt;}
.ws1_c00366{word-spacing:-16.604696pt;}
.ws2_c00366{word-spacing:0.000000pt;}
._1_c00366{width:1.611462pt;}
._9_c00366{width:3.529143pt;}
._5_c00366{width:5.328057pt;}
._6_c00366{width:6.535162pt;}
._7_c00366{width:7.647282pt;}
._0_c00366{width:8.594844pt;}
._f_c00366{width:9.664458pt;}
._13_c00366{width:10.644573pt;}
._d_c00366{width:11.665461pt;}
._c_c00366{width:13.175423pt;}
._b_c00366{width:14.722412pt;}
._10_c00366{width:15.645680pt;}
._8_c00366{width:18.346958pt;}
._12_c00366{width:19.522520pt;}
._4_c00366{width:20.431525pt;}
._e_c00366{width:22.118690pt;}
._11_c00366{width:23.427966pt;}
._a_c00366{width:24.469766pt;}
._2_c00366{width:27.795907pt;}
._3_c00366{width:37.894001pt;}
.fs3_c00366{font-size:63.921837pt;}
.fs0_c00366{font-size:63.961814pt;}
.fs1_c00366{font-size:66.080552pt;}
.fs2_c00366{font-size:66.115417pt;}
.y0_c00366{bottom:0.000000pt;}
.y1_c00366{bottom:0.000007pt;}
.y25_c00366{bottom:26.805533pt;}
.y1e_c00366{bottom:82.463919pt;}
.y1d_c00366{bottom:109.447809pt;}
.y1c_c00366{bottom:136.431700pt;}
.y1b_c00366{bottom:163.415590pt;}
.y1a_c00366{bottom:190.399480pt;}
.y19_c00366{bottom:217.383371pt;}
.y18_c00366{bottom:244.367261pt;}
.y17_c00366{bottom:267.913864pt;}
.yf_c00366{bottom:316.470380pt;}
.ye_c00366{bottom:343.454270pt;}
.yd_c00366{bottom:370.438161pt;}
.yc_c00366{bottom:397.422051pt;}
.yb_c00366{bottom:424.405942pt;}
.ya_c00366{bottom:451.389832pt;}
.y9_c00366{bottom:478.373723pt;}
.y8_c00366{bottom:505.357613pt;}
.y7_c00366{bottom:532.341503pt;}
.y6_c00366{bottom:559.325394pt;}
.y5_c00366{bottom:586.309284pt;}
.y4_c00366{bottom:613.293175pt;}
.y3_c00366{bottom:640.277065pt;}
.y2_c00366{bottom:667.260956pt;}
.y16_c00366{bottom:699.093121pt;}
.y15_c00366{bottom:746.704035pt;}
.y14_c00366{bottom:773.687926pt;}
.y13_c00366{bottom:800.671816pt;}
.y12_c00366{bottom:827.655707pt;}
.y11_c00366{bottom:854.639597pt;}
.y10_c00366{bottom:881.623488pt;}
.y24_c00366{bottom:912.960085pt;}
.y23_c00366{bottom:957.490827pt;}
.y22_c00366{bottom:984.474717pt;}
.y21_c00366{bottom:1011.458608pt;}
.y20_c00366{bottom:1038.442498pt;}
.y1f_c00366{bottom:1065.426389pt;}
.h4_c00366{height:49.001996pt;}
.h5_c00366{height:50.625189pt;}
.h6_c00366{height:50.651899pt;}
.h7_c00366{height:59.520969pt;}
.h3_c00366{height:59.558193pt;}
.h2_c00366{height:1159.999952pt;}
.h0_c00366{height:1159.999959pt;}
.h1_c00366{height:1160.000000pt;}
.w2_c00366{width:830.999965pt;}
.w0_c00366{width:831.000000pt;}
.w1_c00366{width:831.333333pt;}
.x0_c00366{left:0.000000pt;}
.x1_c00366{left:78.089069pt;}
.x2_c00366{left:83.099997pt;}
.x3_c00366{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18e20a3c367752e94eae9984.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.006348;font-style:normal;font-weight:normal;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_27f63d6b1f11d97dfa587be2.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.000000;font-style:normal;font-weight:normal;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_0ebdf86397a3fb4d4b68efd8.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:0.957031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_af24c93efcc5d6409d693242.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:0.727051;font-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_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);}
.v0_c00367{vertical-align:0.000000px;}
.ls0_c00367{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00367{word-spacing:-18.680283px;}
.ws0_c00367{word-spacing:-0.053968px;}
.ws2_c00367{word-spacing:0.000000px;}
._0_c00367{width:7.325703px;}
._2_c00367{width:9.201872px;}
._1_c00367{width:11.492392px;}
.fc1_c00367{color:rgb(137,99,42);}
.fc0_c00367{color:rgb(0,0,0);}
.fs2_c00367{font-size:53.967781px;}
.fs3_c00367{font-size:71.912067px;}
.fs0_c00367{font-size:71.957041px;}
.fs1_c00367{font-size:74.340621px;}
.y0_c00367{bottom:0.000000px;}
.y1_c00367{bottom:0.000008px;}
.y9_c00367{bottom:30.156225px;}
.y8_c00367{bottom:613.773037px;}
.y6_c00367{bottom:1044.054964px;}
.y5_c00367{bottom:1074.411841px;}
.y4_c00367{bottom:1104.768718px;}
.y3_c00367{bottom:1135.125594px;}
.y2_c00367{bottom:1165.482471px;}
.y7_c00367{bottom:1198.771323px;}
.h5_c00367{height:41.345434px;}
.h4_c00367{height:53.287125px;}
.h6_c00367{height:55.092790px;}
.h3_c00367{height:55.127245px;}
.h2_c00367{height:1304.999946px;}
.h0_c00367{height:1304.999953px;}
.h1_c00367{height:1305.000000px;}
.w2_c00367{width:934.874961px;}
.w0_c00367{width:934.875000px;}
.w1_c00367{width:935.250000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:87.850202px;}
.x2_c00367{left:451.985828px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws1_c00367{word-spacing:-16.604696pt;}
.ws0_c00367{word-spacing:-0.047971pt;}
.ws2_c00367{word-spacing:0.000000pt;}
._0_c00367{width:6.511736pt;}
._2_c00367{width:8.179442pt;}
._1_c00367{width:10.215459pt;}
.fs2_c00367{font-size:47.971361pt;}
.fs3_c00367{font-size:63.921837pt;}
.fs0_c00367{font-size:63.961814pt;}
.fs1_c00367{font-size:66.080552pt;}
.y0_c00367{bottom:0.000000pt;}
.y1_c00367{bottom:0.000007pt;}
.y9_c00367{bottom:26.805533pt;}
.y8_c00367{bottom:545.576033pt;}
.y6_c00367{bottom:928.048857pt;}
.y5_c00367{bottom:955.032747pt;}
.y4_c00367{bottom:982.016638pt;}
.y3_c00367{bottom:1009.000528pt;}
.y2_c00367{bottom:1035.984419pt;}
.y7_c00367{bottom:1065.574509pt;}
.h5_c00367{height:36.751497pt;}
.h4_c00367{height:47.366333pt;}
.h6_c00367{height:48.971369pt;}
.h3_c00367{height:49.001996pt;}
.h2_c00367{height:1159.999952pt;}
.h0_c00367{height:1159.999959pt;}
.h1_c00367{height:1160.000000pt;}
.w2_c00367{width:830.999965pt;}
.w0_c00367{width:831.000000pt;}
.w1_c00367{width:831.333333pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:78.089069pt;}
.x2_c00367{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d51fadcdab3cb79afa98a30.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00368;src:url('chunks/assets/font_e3087d4107afd4a8a5224ed0.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.000000;font-style:normal;font-weight: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_c00368;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:1.006348;font-style:normal;font-weight: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_c00368;src:url('chunks/assets/font_6c9aaca1eb49ffb36694e0ce.woff2')format("woff");}.ff6_c00368{font-family:ff6_c00368;line-height:1.000000;font-style:normal;font-weight: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_c00368;src:url('chunks/assets/font_34b77e5f2bb53b758884ce8e.woff2')format("woff");}.ff7_c00368{font-family:ff7_c00368;line-height:1.171387;font-style:normal;font-weight: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_c00368;src:url('chunks/assets/font_f9f91d7ca48950fa652ea6d3.woff2')format("woff");}.ff8_c00368{font-family:ff8_c00368;line-height:1.000000;font-style:normal;font-weight: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_c00368;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00368{font-family:ff9_c00368;line-height:0.734863;font-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_c00368{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00368{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00368{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00368{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00368{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00368{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00368{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00368{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00368{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00368{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00368{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00368{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00368{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00368{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00368{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00368{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00368{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00368{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00368{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00368{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00368{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00368{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00368{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00368{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00368{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00368{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00368{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00368{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00368{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00368{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00368{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00368{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00368{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00368{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00368{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00368{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00368{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00368{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00368{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00368{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00368{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00368{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00368{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00368{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00368{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00368{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00368{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00368{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00368{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00368{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00368{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00368{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00368{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00368{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00368{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00368{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00368{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00368{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00368{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00368{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00368{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00368{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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;}
.ls1_c00368{letter-spacing:0.000000px;}
.ls0_c00368{letter-spacing:4.708126px;}
.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;}
}
.ws1_c00368{word-spacing:-18.691966px;}
.ws5_c00368{word-spacing:-18.680283px;}
.ws0_c00368{word-spacing:-15.162211px;}
.ws2_c00368{word-spacing:-0.077938px;}
.ws4_c00368{word-spacing:-0.055722px;}
.ws6_c00368{word-spacing:0.000000px;}
.ws3_c00368{word-spacing:281.470806px;}
._0_c00368{margin-left:-13.265643px;}
._4_c00368{width:1.646277px;}
._1_c00368{width:4.708126px;}
._2_c00368{width:20.958189px;}
._3_c00368{width:23.732230px;}
.fc3_c00368{color:rgb(9,71,81);}
.fc2_c00368{color:rgb(137,99,42);}
.fc1_c00368{color:rgb(255,255,255);}
.fc0_c00368{color:rgb(0,0,0);}
.fs8_c00368{font-size:41.974772px;}
.fsc_c00368{font-size:41.975069px;}
.fs2_c00368{font-size:47.339969px;}
.fs5_c00368{font-size:47.339970px;}
.fs1_c00368{font-size:47.339972px;}
.fs4_c00368{font-size:47.339973px;}
.fs3_c00368{font-size:47.339974px;}
.fs6_c00368{font-size:47.339975px;}
.fse_c00368{font-size:51.630774px;}
.fsf_c00368{font-size:55.721735px;}
.fsb_c00368{font-size:59.949210px;}
.fs10_c00368{font-size:71.912067px;}
.fs0_c00368{font-size:71.957041px;}
.fs9_c00368{font-size:74.379845px;}
.fs7_c00368{font-size:76.965540px;}
.fsa_c00368{font-size:77.938470px;}
.fsd_c00368{font-size:95.927731px;}
.y0_c00368{bottom:0.000000px;}
.y1_c00368{bottom:0.000008px;}
.y54_c00368{bottom:30.156225px;}
.y4a_c00368{bottom:161.921700px;}
.y49_c00368{bottom:192.278576px;}
.y48_c00368{bottom:222.635453px;}
.y47_c00368{bottom:252.992330px;}
.y46_c00368{bottom:283.349207px;}
.y45_c00368{bottom:313.706083px;}
.y4b_c00368{bottom:343.517039px;}
.y52_c00368{bottom:402.064151px;}
.y42_c00368{bottom:488.381830px;}
.y10_c00368{bottom:494.817929px;}
.y38_c00368{bottom:494.832995px;}
.yf_c00368{bottom:495.342909px;}
.y39_c00368{bottom:495.362530px;}
.y22_c00368{bottom:495.705929px;}
.y37_c00368{bottom:496.076958px;}
.ye_c00368{bottom:496.408374px;}
.y23_c00368{bottom:496.538830px;}
.y21_c00368{bottom:496.558854px;}
.y36_c00368{bottom:497.327573px;}
.yd_c00368{bottom:497.480995px;}
.y20_c00368{bottom:497.593143px;}
.y3a_c00368{bottom:497.777632px;}
.y11_c00368{bottom:497.841184px;}
.y24_c00368{bottom:498.718788px;}
.y35_c00368{bottom:498.971425px;}
.yc_c00368{bottom:499.131534px;}
.y1f_c00368{bottom:499.794565px;}
.y25_c00368{bottom:500.108821px;}
.y34_c00368{bottom:500.658678px;}
.yb_c00368{bottom:500.824069px;}
.y26_c00368{bottom:501.806164px;}
.y12_c00368{bottom:502.115905px;}
.y33_c00368{bottom:502.522790px;}
.ya_c00368{bottom:502.693006px;}
.y3b_c00368{bottom:502.875323px;}
.y1e_c00368{bottom:503.584002px;}
.y27_c00368{bottom:504.247022px;}
.y13_c00368{bottom:504.633148px;}
.y3c_c00368{bottom:506.501391px;}
.y28_c00368{bottom:506.504631px;}
.y32_c00368{bottom:507.174361px;}
.y9_c00368{bottom:507.354006px;}
.y1d_c00368{bottom:509.049405px;}
.y29_c00368{bottom:509.771519px;}
.y14_c00368{bottom:510.582094px;}
.y3d_c00368{bottom:512.131906px;}
.y1c_c00368{bottom:513.513385px;}
.y31_c00368{bottom:513.571964px;}
.y8_c00368{bottom:513.759933px;}
.y15_c00368{bottom:515.327977px;}
.y2a_c00368{bottom:518.163903px;}
.y3e_c00368{bottom:518.785567px;}
.y1b_c00368{bottom:519.934249px;}
.y30_c00368{bottom:520.874630px;}
.y7_c00368{bottom:520.964721px;}
.y6_c00368{bottom:524.421458px;}
.y1a_c00368{bottom:524.501536px;}
.y2b_c00368{bottom:526.208076px;}
.y16_c00368{bottom:527.104921px;}
.y2f_c00368{bottom:528.032002px;}
.y5_c00368{bottom:530.428183px;}
.y3f_c00368{bottom:530.741547px;}
.y19_c00368{bottom:532.269024px;}
.y2e_c00368{bottom:532.798401px;}
.y41_c00368{bottom:534.733756px;}
.y51_c00368{bottom:535.427116px;}
.y18_c00368{bottom:536.160342px;}
.y4_c00368{bottom:537.683399px;}
.y2d_c00368{bottom:538.967073px;}
.y17_c00368{bottom:539.338192px;}
.y40_c00368{bottom:539.701686px;}
.y43_c00368{bottom:541.436468px;}
.y2c_c00368{bottom:546.026256px;}
.y3_c00368{bottom:547.212425px;}
.y44_c00368{bottom:578.876430px;}
.y2_c00368{bottom:597.559761px;}
.y53_c00368{bottom:639.489911px;}
.y4f_c00368{bottom:1127.585799px;}
.y4d_c00368{bottom:1133.211112px;}
.y50_c00368{bottom:1150.017273px;}
.y4c_c00368{bottom:1151.200373px;}
.y4e_c00368{bottom:1170.658440px;}
.hb_c00368{height:32.157430px;}
.h8_c00368{height:35.967282px;}
.h7_c00368{height:35.967283px;}
.h9_c00368{height:35.967285px;}
.h5_c00368{height:36.267779px;}
.h4_c00368{height:36.267781px;}
.h6_c00368{height:36.267783px;}
.h12_c00368{height:37.437353px;}
.hf_c00368{height:39.085184px;}
.h13_c00368{height:51.885424px;}
.h14_c00368{height:55.092790px;}
.h3_c00368{height:55.127245px;}
.he_c00368{height:55.821847px;}
.ha_c00368{height:56.261810px;}
.hc_c00368{height:56.983387px;}
.hd_c00368{height:59.214971px;}
.h10_c00368{height:67.002968px;}
.h11_c00368{height:89.323331px;}
.h2_c00368{height:1304.999946px;}
.h0_c00368{height:1304.999953px;}
.h1_c00368{height:1305.000000px;}
.w2_c00368{width:934.874961px;}
.w0_c00368{width:934.875000px;}
.w1_c00368{width:935.250000px;}
.x0_c00368{left:0.000000px;}
.x3a_c00368{left:89.206783px;}
.x3b_c00368{left:108.062661px;}
.x3c_c00368{left:109.658623px;}
.x27_c00368{left:134.894322px;}
.x26_c00368{left:136.566734px;}
.x28_c00368{left:139.937719px;}
.x29_c00368{left:144.785273px;}
.x2a_c00368{left:150.147890px;}
.x2b_c00368{left:152.899057px;}
.x2c_c00368{left:155.907145px;}
.x2d_c00368{left:159.752336px;}
.x37_c00368{left:161.347648px;}
.x2e_c00368{left:163.203941px;}
.x2f_c00368{left:171.483965px;}
.x30_c00368{left:179.748684px;}
.x31_c00368{left:188.175145px;}
.x32_c00368{left:196.556636px;}
.x33_c00368{left:200.721504px;}
.x34_c00368{left:205.276922px;}
.x35_c00368{left:209.084069px;}
.x36_c00368{left:211.669316px;}
.x3_c00368{left:230.260919px;}
.x2_c00368{left:232.395871px;}
.x4_c00368{left:235.482735px;}
.x5_c00368{left:240.319117px;}
.x6_c00368{left:245.673577px;}
.x7_c00368{left:248.421493px;}
.x8_c00368{left:251.426626px;}
.x9_c00368{left:255.268917px;}
.x3e_c00368{left:256.468943px;}
.xa_c00368{left:258.553698px;}
.xb_c00368{left:262.988294px;}
.xc_c00368{left:271.601212px;}
.xd_c00368{left:283.434780px;}
.xe_c00368{left:290.867654px;}
.xf_c00368{left:294.260334px;}
.x3d_c00368{left:295.438786px;}
.x10_c00368{left:299.596701px;}
.x11_c00368{left:302.984150px;}
.x12_c00368{left:306.993562px;}
.x13_c00368{left:325.378518px;}
.x14_c00368{left:326.595106px;}
.x15_c00368{left:328.015253px;}
.x16_c00368{left:331.410444px;}
.x17_c00368{left:334.633053px;}
.x18_c00368{left:340.511825px;}
.x19_c00368{left:346.695139px;}
.x1a_c00368{left:352.384720px;}
.x1b_c00368{left:355.792694px;}
.x1c_c00368{left:363.695116px;}
.x1d_c00368{left:371.679253px;}
.x1e_c00368{left:378.434940px;}
.x1f_c00368{left:381.453328px;}
.x20_c00368{left:384.455783px;}
.x21_c00368{left:387.851715px;}
.x22_c00368{left:390.467224px;}
.x23_c00368{left:393.779799px;}
.x24_c00368{left:398.952070px;}
.x25_c00368{left:401.755082px;}
.x41_c00368{left:451.985828px;}
.x1_c00368{left:465.097640px;}
.x40_c00368{left:676.474352px;}
.x3f_c00368{left:696.904800px;}
.x39_c00368{left:733.103068px;}
.x38_c00368{left:756.637341px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls1_c00368{letter-spacing:0.000000pt;}
.ls0_c00368{letter-spacing:4.185001pt;}
.ws1_c00368{word-spacing:-16.615081pt;}
.ws5_c00368{word-spacing:-16.604696pt;}
.ws0_c00368{word-spacing:-13.477521pt;}
.ws2_c00368{word-spacing:-0.069279pt;}
.ws4_c00368{word-spacing:-0.049530pt;}
.ws6_c00368{word-spacing:0.000000pt;}
.ws3_c00368{word-spacing:250.196272pt;}
._0_c00368{margin-left:-11.791683pt;}
._4_c00368{width:1.463357pt;}
._1_c00368{width:4.185001pt;}
._2_c00368{width:18.629502pt;}
._3_c00368{width:21.095316pt;}
.fs8_c00368{font-size:37.310908pt;}
.fsc_c00368{font-size:37.311173pt;}
.fs2_c00368{font-size:42.079973pt;}
.fs5_c00368{font-size:42.079974pt;}
.fs1_c00368{font-size:42.079975pt;}
.fs4_c00368{font-size:42.079976pt;}
.fs3_c00368{font-size:42.079977pt;}
.fs6_c00368{font-size:42.079978pt;}
.fse_c00368{font-size:45.894021pt;}
.fsf_c00368{font-size:49.530431pt;}
.fsb_c00368{font-size:53.288186pt;}
.fs10_c00368{font-size:63.921837pt;}
.fs0_c00368{font-size:63.961814pt;}
.fs9_c00368{font-size:66.115417pt;}
.fs7_c00368{font-size:68.413814pt;}
.fsa_c00368{font-size:69.278640pt;}
.fsd_c00368{font-size:85.269094pt;}
.y0_c00368{bottom:0.000000pt;}
.y1_c00368{bottom:0.000007pt;}
.y54_c00368{bottom:26.805533pt;}
.y4a_c00368{bottom:143.930400pt;}
.y49_c00368{bottom:170.914290pt;}
.y48_c00368{bottom:197.898181pt;}
.y47_c00368{bottom:224.882071pt;}
.y46_c00368{bottom:251.865961pt;}
.y45_c00368{bottom:278.849852pt;}
.y4b_c00368{bottom:305.348479pt;}
.y52_c00368{bottom:357.390356pt;}
.y42_c00368{bottom:434.117182pt;}
.y10_c00368{bottom:439.838159pt;}
.y38_c00368{bottom:439.851551pt;}
.yf_c00368{bottom:440.304808pt;}
.y39_c00368{bottom:440.322248pt;}
.y22_c00368{bottom:440.627492pt;}
.y37_c00368{bottom:440.957296pt;}
.ye_c00368{bottom:441.251888pt;}
.y23_c00368{bottom:441.367849pt;}
.y21_c00368{bottom:441.385648pt;}
.y36_c00368{bottom:442.068954pt;}
.yd_c00368{bottom:442.205329pt;}
.y20_c00368{bottom:442.305016pt;}
.y3a_c00368{bottom:442.469006pt;}
.y11_c00368{bottom:442.525497pt;}
.y24_c00368{bottom:443.305589pt;}
.y35_c00368{bottom:443.530155pt;}
.yc_c00368{bottom:443.672475pt;}
.y1f_c00368{bottom:444.261835pt;}
.y25_c00368{bottom:444.541174pt;}
.y34_c00368{bottom:445.029936pt;}
.yb_c00368{bottom:445.176950pt;}
.y26_c00368{bottom:446.049923pt;}
.y12_c00368{bottom:446.325249pt;}
.y33_c00368{bottom:446.686924pt;}
.ya_c00368{bottom:446.838227pt;}
.y3b_c00368{bottom:447.000287pt;}
.y1e_c00368{bottom:447.630224pt;}
.y27_c00368{bottom:448.219575pt;}
.y13_c00368{bottom:448.562798pt;}
.y3c_c00368{bottom:450.223459pt;}
.y28_c00368{bottom:450.226338pt;}
.y32_c00368{bottom:450.821654pt;}
.y9_c00368{bottom:450.981339pt;}
.y1d_c00368{bottom:452.488360pt;}
.y29_c00368{bottom:453.130239pt;}
.y14_c00368{bottom:453.850750pt;}
.y3d_c00368{bottom:455.228361pt;}
.y1c_c00368{bottom:456.456342pt;}
.y31_c00368{bottom:456.508413pt;}
.y8_c00368{bottom:456.675496pt;}
.y15_c00368{bottom:458.069313pt;}
.y2a_c00368{bottom:460.590136pt;}
.y3e_c00368{bottom:461.142726pt;}
.y1b_c00368{bottom:462.163777pt;}
.y30_c00368{bottom:462.999672pt;}
.y7_c00368{bottom:463.079752pt;}
.y6_c00368{bottom:466.152407pt;}
.y1a_c00368{bottom:466.223588pt;}
.y2b_c00368{bottom:467.740512pt;}
.y16_c00368{bottom:468.537708pt;}
.y2f_c00368{bottom:469.361779pt;}
.y5_c00368{bottom:471.491718pt;}
.y3f_c00368{bottom:471.770264pt;}
.y19_c00368{bottom:473.128022pt;}
.y2e_c00368{bottom:473.598579pt;}
.y41_c00368{bottom:475.318894pt;}
.y51_c00368{bottom:475.935214pt;}
.y18_c00368{bottom:476.586971pt;}
.y4_c00368{bottom:477.940799pt;}
.y2d_c00368{bottom:479.081842pt;}
.y17_c00368{bottom:479.411726pt;}
.y40_c00368{bottom:479.734832pt;}
.y43_c00368{bottom:481.276860pt;}
.y2c_c00368{bottom:485.356672pt;}
.y3_c00368{bottom:486.411045pt;}
.y44_c00368{bottom:514.556827pt;}
.y2_c00368{bottom:531.164232pt;}
.y53_c00368{bottom:568.435476pt;}
.y4f_c00368{bottom:1002.298488pt;}
.y4d_c00368{bottom:1007.298766pt;}
.y50_c00368{bottom:1022.237576pt;}
.y4c_c00368{bottom:1023.289220pt;}
.y4e_c00368{bottom:1040.585280pt;}
.hb_c00368{height:28.584382pt;}
.h8_c00368{height:31.970917pt;}
.h7_c00368{height:31.970918pt;}
.h9_c00368{height:31.970920pt;}
.h5_c00368{height:32.238026pt;}
.h4_c00368{height:32.238028pt;}
.h6_c00368{height:32.238029pt;}
.h12_c00368{height:33.277647pt;}
.hf_c00368{height:34.742386pt;}
.h13_c00368{height:46.120377pt;}
.h14_c00368{height:48.971369pt;}
.h3_c00368{height:49.001996pt;}
.he_c00368{height:49.619420pt;}
.ha_c00368{height:50.010498pt;}
.hc_c00368{height:50.651899pt;}
.hd_c00368{height:52.635529pt;}
.h10_c00368{height:59.558193pt;}
.h11_c00368{height:79.398517pt;}
.h2_c00368{height:1159.999952pt;}
.h0_c00368{height:1159.999959pt;}
.h1_c00368{height:1160.000000pt;}
.w2_c00368{width:830.999965pt;}
.w0_c00368{width:831.000000pt;}
.w1_c00368{width:831.333333pt;}
.x0_c00368{left:0.000000pt;}
.x3a_c00368{left:79.294918pt;}
.x3b_c00368{left:96.055698pt;}
.x3c_c00368{left:97.474332pt;}
.x27_c00368{left:119.906064pt;}
.x26_c00368{left:121.392652pt;}
.x28_c00368{left:124.389083pt;}
.x29_c00368{left:128.698021pt;}
.x2a_c00368{left:133.464791pt;}
.x2b_c00368{left:135.910272pt;}
.x2c_c00368{left:138.584129pt;}
.x2d_c00368{left:142.002076pt;}
.x37_c00368{left:143.420132pt;}
.x2e_c00368{left:145.070170pt;}
.x2f_c00368{left:152.430191pt;}
.x30_c00368{left:159.776608pt;}
.x31_c00368{left:167.266795pt;}
.x32_c00368{left:174.717010pt;}
.x33_c00368{left:178.419115pt;}
.x34_c00368{left:182.468375pt;}
.x35_c00368{left:185.852506pt;}
.x36_c00368{left:188.150503pt;}
.x3_c00368{left:204.676373pt;}
.x2_c00368{left:206.574107pt;}
.x4_c00368{left:209.317987pt;}
.x5_c00368{left:213.616993pt;}
.x6_c00368{left:218.376513pt;}
.x7_c00368{left:220.819105pt;}
.x8_c00368{left:223.490334pt;}
.x9_c00368{left:226.905704pt;}
.x3e_c00368{left:227.972394pt;}
.xa_c00368{left:229.825509pt;}
.xb_c00368{left:233.767373pt;}
.xc_c00368{left:241.423300pt;}
.xd_c00368{left:251.942027pt;}
.xe_c00368{left:258.549026pt;}
.xf_c00368{left:261.564741pt;}
.x3d_c00368{left:262.612255pt;}
.x10_c00368{left:266.308178pt;}
.x11_c00368{left:269.319244pt;}
.x12_c00368{left:272.883167pt;}
.x13_c00368{left:289.225349pt;}
.x14_c00368{left:290.306761pt;}
.x15_c00368{left:291.569114pt;}
.x16_c00368{left:294.587062pt;}
.x17_c00368{left:297.451603pt;}
.x18_c00368{left:302.677178pt;}
.x19_c00368{left:308.173457pt;}
.x1a_c00368{left:313.230862pt;}
.x1b_c00368{left:316.260173pt;}
.x1c_c00368{left:323.284548pt;}
.x1d_c00368{left:330.381558pt;}
.x1e_c00368{left:336.386614pt;}
.x1f_c00368{left:339.069625pt;}
.x20_c00368{left:341.738474pt;}
.x21_c00368{left:344.757080pt;}
.x22_c00368{left:347.081977pt;}
.x23_c00368{left:350.026488pt;}
.x24_c00368{left:354.624063pt;}
.x25_c00368{left:357.115628pt;}
.x41_c00368{left:401.765180pt;}
.x1_c00368{left:413.420124pt;}
.x40_c00368{left:601.310535pt;}
.x3f_c00368{left:619.470933pt;}
.x39_c00368{left:651.647171pt;}
.x38_c00368{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1015ba3ff97f1207d840c483.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.006348;font-style:normal;font-weight:normal;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_4aa538457cdb63b1f99d4ce2.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.000000;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:1.006348;font-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_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);}
.v0_c00369{vertical-align:0.000000px;}
.ls0_c00369{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00369{word-spacing:-18.680283px;}
.ws1_c00369{word-spacing:0.000000px;}
._1_c00369{width:1.355039px;}
._2_c00369{width:2.397985px;}
._6_c00369{width:3.832900px;}
._8_c00369{width:5.217319px;}
._5_c00369{width:6.271644px;}
._7_c00369{width:8.110336px;}
._0_c00369{width:9.123438px;}
._3_c00369{width:13.043285px;}
._a_c00369{width:14.575236px;}
._9_c00369{width:17.593165px;}
._b_c00369{width:31.804422px;}
._4_c00369{width:33.021256px;}
.fc1_c00369{color:rgb(137,99,42);}
.fc0_c00369{color:rgb(0,0,0);}
.fs3_c00369{font-size:71.912067px;}
.fs0_c00369{font-size:71.957041px;}
.fs1_c00369{font-size:74.340621px;}
.fs2_c00369{font-size:74.379845px;}
.y0_c00369{bottom:0.000000px;}
.y1_c00369{bottom:0.000008px;}
.y20_c00369{bottom:30.156225px;}
.y17_c00369{bottom:115.790244px;}
.y16_c00369{bottom:146.147120px;}
.y15_c00369{bottom:176.503997px;}
.y14_c00369{bottom:206.860874px;}
.y13_c00369{bottom:237.217751px;}
.y12_c00369{bottom:277.453954px;}
.y1f_c00369{bottom:345.302864px;}
.y1e_c00369{bottom:375.659741px;}
.y11_c00369{bottom:412.275352px;}
.yf_c00369{bottom:480.124191px;}
.ye_c00369{bottom:510.481068px;}
.yd_c00369{bottom:540.837945px;}
.yc_c00369{bottom:571.194821px;}
.yb_c00369{bottom:601.551698px;}
.ya_c00369{bottom:631.908575px;}
.y9_c00369{bottom:662.265452px;}
.y8_c00369{bottom:692.622328px;}
.y7_c00369{bottom:722.979205px;}
.y10_c00369{bottom:755.628538px;}
.y6_c00369{bottom:823.477472px;}
.y5_c00369{bottom:853.834349px;}
.y4_c00369{bottom:884.191226px;}
.y3_c00369{bottom:914.548103px;}
.y2_c00369{bottom:944.904980px;}
.y1d_c00369{bottom:977.460413px;}
.y1c_c00369{bottom:1045.269172px;}
.y1b_c00369{bottom:1075.626049px;}
.y1a_c00369{bottom:1105.982926px;}
.y19_c00369{bottom:1136.339802px;}
.y18_c00369{bottom:1166.696679px;}
.h6_c00369{height:55.092790px;}
.h3_c00369{height:55.127245px;}
.h4_c00369{height:56.953337px;}
.h5_c00369{height:56.983387px;}
.h2_c00369{height:1304.999946px;}
.h0_c00369{height:1304.999953px;}
.h1_c00369{height:1305.000000px;}
.w2_c00369{width:934.874961px;}
.w0_c00369{width:934.875000px;}
.w1_c00369{width:935.250000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:87.850202px;}
.x2_c00369{left:451.985828px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws0_c00369{word-spacing:-16.604696pt;}
.ws1_c00369{word-spacing:0.000000pt;}
._1_c00369{width:1.204479pt;}
._2_c00369{width:2.131542pt;}
._6_c00369{width:3.407022pt;}
._8_c00369{width:4.637617pt;}
._5_c00369{width:5.574795pt;}
._7_c00369{width:7.209188pt;}
._0_c00369{width:8.109723pt;}
._3_c00369{width:11.594031pt;}
._a_c00369{width:12.955765pt;}
._9_c00369{width:15.638369pt;}
._b_c00369{width:28.270597pt;}
._4_c00369{width:29.352228pt;}
.fs3_c00369{font-size:63.921837pt;}
.fs0_c00369{font-size:63.961814pt;}
.fs1_c00369{font-size:66.080552pt;}
.fs2_c00369{font-size:66.115417pt;}
.y0_c00369{bottom:0.000000pt;}
.y1_c00369{bottom:0.000007pt;}
.y20_c00369{bottom:26.805533pt;}
.y17_c00369{bottom:102.924661pt;}
.y16_c00369{bottom:129.908551pt;}
.y15_c00369{bottom:156.892442pt;}
.y14_c00369{bottom:183.876332pt;}
.y13_c00369{bottom:210.860223pt;}
.y12_c00369{bottom:246.625737pt;}
.y1f_c00369{bottom:306.935879pt;}
.y1e_c00369{bottom:333.919770pt;}
.y11_c00369{bottom:366.466980pt;}
.yf_c00369{bottom:426.777059pt;}
.ye_c00369{bottom:453.760949pt;}
.yd_c00369{bottom:480.744840pt;}
.yc_c00369{bottom:507.728730pt;}
.yb_c00369{bottom:534.712621pt;}
.ya_c00369{bottom:561.696511pt;}
.y9_c00369{bottom:588.680401pt;}
.y8_c00369{bottom:615.664292pt;}
.y7_c00369{bottom:642.648182pt;}
.y10_c00369{bottom:671.669812pt;}
.y6_c00369{bottom:731.979976pt;}
.y5_c00369{bottom:758.963866pt;}
.y4_c00369{bottom:785.947756pt;}
.y3_c00369{bottom:812.931647pt;}
.y2_c00369{bottom:839.915537pt;}
.y1d_c00369{bottom:868.853700pt;}
.y1c_c00369{bottom:929.128153pt;}
.y1b_c00369{bottom:956.112043pt;}
.y1a_c00369{bottom:983.095934pt;}
.y19_c00369{bottom:1010.079824pt;}
.y18_c00369{bottom:1037.063715pt;}
.h6_c00369{height:48.971369pt;}
.h3_c00369{height:49.001996pt;}
.h4_c00369{height:50.625189pt;}
.h5_c00369{height:50.651899pt;}
.h2_c00369{height:1159.999952pt;}
.h0_c00369{height:1159.999959pt;}
.h1_c00369{height:1160.000000pt;}
.w2_c00369{width:830.999965pt;}
.w0_c00369{width:831.000000pt;}
.w1_c00369{width:831.333333pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:78.089069pt;}
.x2_c00369{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ea50b720b6085568db1cf79.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:0.743000;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.006348;font-style:normal;font-weight: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_6c9aaca1eb49ffb36694e0ce.woff2')format("woff");}.ff5_c00370{font-family:ff5_c00370;line-height:1.000000;font-style:normal;font-weight: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_5f041f0901af0983a5e1737f.woff2')format("woff");}.ff6_c00370{font-family:ff6_c00370;line-height:1.171387;font-style:normal;font-weight: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_4d4ff7ce19912a5424047d59.woff2')format("woff");}.ff7_c00370{font-family:ff7_c00370;line-height:1.000000;font-style:normal;font-weight: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_c00370;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00370{font-family:ff8_c00370;line-height:0.734863;font-style:normal;font-weight: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_c00370;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00370{font-family:ff9_c00370;line-height:0.940000;font-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_c00370{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00370{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00370{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00370{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00370{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00370{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00370{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00370{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00370{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00370{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00370{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00370{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00370{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00370{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00370{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00370{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00370{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00370{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00370{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00370{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00370{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00370{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00370{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00370{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00370{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00370{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00370{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00370{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00370{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00370{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00370{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00370{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00370{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00370{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00370{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00370{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00370{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00370{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00370{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00370{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00370{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00370{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00370{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00370{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00370{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00370{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00370{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00370{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00370{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00370{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00370{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00370{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00370{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00370{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00370{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00370{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00370{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00370{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00370{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00370{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00370{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00370{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00370{vertical-align:0.000000px;}
.ls0_c00370{letter-spacing:0.000000px;}
.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;}
}
.ws5_c00370{word-spacing:-41.664701px;}
.ws4_c00370{word-spacing:-18.680283px;}
.ws0_c00370{word-spacing:-15.162211px;}
.ws1_c00370{word-spacing:-0.077938px;}
.ws3_c00370{word-spacing:-0.055722px;}
.ws6_c00370{word-spacing:0.000000px;}
.ws2_c00370{word-spacing:281.470806px;}
._2_c00370{width:1.011785px;}
._3_c00370{width:2.263685px;}
._4_c00370{width:3.492389px;}
._1_c00370{width:9.718799px;}
._0_c00370{width:10.718936px;}
._5_c00370{width:13.754226px;}
.fc3_c00370{color:rgb(9,71,81);}
.fc2_c00370{color:rgb(137,99,42);}
.fc1_c00370{color:rgb(255,255,255);}
.fc0_c00370{color:rgb(0,0,0);}
.fs8_c00370{font-size:41.974772px;}
.fsc_c00370{font-size:41.975069px;}
.fs2_c00370{font-size:47.339969px;}
.fs5_c00370{font-size:47.339970px;}
.fs1_c00370{font-size:47.339972px;}
.fs4_c00370{font-size:47.339973px;}
.fs3_c00370{font-size:47.339974px;}
.fs6_c00370{font-size:47.339975px;}
.fse_c00370{font-size:51.630774px;}
.fsf_c00370{font-size:55.721735px;}
.fsb_c00370{font-size:59.949210px;}
.fs10_c00370{font-size:71.912067px;}
.fs0_c00370{font-size:71.957041px;}
.fs9_c00370{font-size:74.379845px;}
.fs7_c00370{font-size:76.965540px;}
.fsa_c00370{font-size:77.938470px;}
.fsd_c00370{font-size:95.927731px;}
.y0_c00370{bottom:0.000000px;}
.y1_c00370{bottom:0.000008px;}
.y56_c00370{bottom:30.156225px;}
.y9_c00370{bottom:91.723998px;}
.y8_c00370{bottom:122.080875px;}
.y7_c00370{bottom:152.437752px;}
.y6_c00370{bottom:182.794629px;}
.y5_c00370{bottom:213.151506px;}
.y4_c00370{bottom:243.508382px;}
.y3_c00370{bottom:273.865259px;}
.y2_c00370{bottom:304.222136px;}
.y4c_c00370{bottom:334.033199px;}
.y54_c00370{bottom:402.064151px;}
.y49_c00370{bottom:487.376458px;}
.y17_c00370{bottom:493.812629px;}
.y3f_c00370{bottom:493.827623px;}
.y16_c00370{bottom:494.337609px;}
.y40_c00370{bottom:494.357158px;}
.y29_c00370{bottom:494.700737px;}
.y3e_c00370{bottom:495.071586px;}
.y15_c00370{bottom:495.403002px;}
.y2a_c00370{bottom:495.533530px;}
.y28_c00370{bottom:495.553663px;}
.y3d_c00370{bottom:496.322201px;}
.y14_c00370{bottom:496.475623px;}
.y27_c00370{bottom:496.587915px;}
.y41_c00370{bottom:496.772260px;}
.y18_c00370{bottom:496.835884px;}
.y2b_c00370{bottom:497.713596px;}
.y3c_c00370{bottom:497.966053px;}
.y13_c00370{bottom:498.126234px;}
.y26_c00370{bottom:498.789265px;}
.y2c_c00370{bottom:499.103521px;}
.y3b_c00370{bottom:499.653306px;}
.y12_c00370{bottom:499.818769px;}
.y2d_c00370{bottom:500.800864px;}
.y19_c00370{bottom:501.110605px;}
.y3a_c00370{bottom:501.517382px;}
.y11_c00370{bottom:501.687706px;}
.y42_c00370{bottom:501.869915px;}
.y25_c00370{bottom:502.578702px;}
.y2e_c00370{bottom:503.241722px;}
.y1a_c00370{bottom:503.627848px;}
.y43_c00370{bottom:505.496019px;}
.y2f_c00370{bottom:505.499367px;}
.y39_c00370{bottom:506.168989px;}
.y10_c00370{bottom:506.348634px;}
.y24_c00370{bottom:508.044213px;}
.y30_c00370{bottom:508.766327px;}
.y1b_c00370{bottom:509.576794px;}
.y44_c00370{bottom:511.126534px;}
.y23_c00370{bottom:512.508085px;}
.y38_c00370{bottom:512.566592px;}
.yf_c00370{bottom:512.754669px;}
.y1c_c00370{bottom:514.322677px;}
.y31_c00370{bottom:517.158603px;}
.y45_c00370{bottom:517.780195px;}
.y22_c00370{bottom:518.929057px;}
.y37_c00370{bottom:519.869222px;}
.ye_c00370{bottom:519.959421px;}
.yd_c00370{bottom:523.416158px;}
.y21_c00370{bottom:523.496236px;}
.y32_c00370{bottom:525.202812px;}
.y1d_c00370{bottom:526.099549px;}
.y36_c00370{bottom:527.026630px;}
.yc_c00370{bottom:529.422883px;}
.y46_c00370{bottom:529.736175px;}
.y20_c00370{bottom:531.263725px;}
.y35_c00370{bottom:531.792993px;}
.y48_c00370{bottom:533.728456px;}
.y53_c00370{bottom:534.421816px;}
.y1f_c00370{bottom:535.155114px;}
.yb_c00370{bottom:536.678099px;}
.y34_c00370{bottom:537.961701px;}
.y1e_c00370{bottom:538.332892px;}
.y47_c00370{bottom:538.696314px;}
.y4a_c00370{bottom:540.431168px;}
.y33_c00370{bottom:545.020884px;}
.ya_c00370{bottom:546.207017px;}
.y4b_c00370{bottom:577.871130px;}
.y52_c00370{bottom:597.559761px;}
.y55_c00370{bottom:639.489911px;}
.y57_c00370{bottom:1021.609033px;}
.y50_c00370{bottom:1127.585799px;}
.y4e_c00370{bottom:1133.211112px;}
.y51_c00370{bottom:1150.017273px;}
.y4d_c00370{bottom:1151.200373px;}
.y4f_c00370{bottom:1170.658440px;}
.hb_c00370{height:32.157430px;}
.h8_c00370{height:35.967282px;}
.h7_c00370{height:35.967283px;}
.h9_c00370{height:35.967285px;}
.h5_c00370{height:36.267779px;}
.h4_c00370{height:36.267781px;}
.h6_c00370{height:36.267783px;}
.h12_c00370{height:37.437353px;}
.hf_c00370{height:39.085184px;}
.h15_c00370{height:45.561399px;}
.h13_c00370{height:51.885424px;}
.h14_c00370{height:55.092790px;}
.h3_c00370{height:55.127245px;}
.he_c00370{height:55.821847px;}
.ha_c00370{height:56.261810px;}
.hc_c00370{height:56.983387px;}
.hd_c00370{height:59.214971px;}
.h10_c00370{height:67.002968px;}
.h11_c00370{height:89.323331px;}
.h2_c00370{height:1304.999946px;}
.h0_c00370{height:1304.999953px;}
.h1_c00370{height:1305.000000px;}
.w2_c00370{width:934.874961px;}
.w0_c00370{width:934.875000px;}
.w1_c00370{width:935.250000px;}
.x0_c00370{left:0.000000px;}
.x1_c00370{left:89.206783px;}
.x3b_c00370{left:108.062661px;}
.x3c_c00370{left:109.658623px;}
.x42_c00370{left:130.612669px;}
.x27_c00370{left:134.894322px;}
.x26_c00370{left:136.566734px;}
.x28_c00370{left:139.937719px;}
.x29_c00370{left:144.785273px;}
.x2a_c00370{left:150.147890px;}
.x2b_c00370{left:152.899057px;}
.x2c_c00370{left:155.907145px;}
.x2d_c00370{left:159.752336px;}
.x37_c00370{left:161.347648px;}
.x2e_c00370{left:163.203941px;}
.x2f_c00370{left:171.483965px;}
.x30_c00370{left:179.748684px;}
.x31_c00370{left:188.175145px;}
.x32_c00370{left:196.556636px;}
.x33_c00370{left:200.721504px;}
.x34_c00370{left:205.276922px;}
.x35_c00370{left:209.084069px;}
.x36_c00370{left:211.669316px;}
.x3_c00370{left:230.260919px;}
.x2_c00370{left:232.395871px;}
.x4_c00370{left:235.482735px;}
.x5_c00370{left:240.319117px;}
.x6_c00370{left:245.673577px;}
.x7_c00370{left:248.421493px;}
.x8_c00370{left:251.426626px;}
.x9_c00370{left:255.268917px;}
.x3e_c00370{left:256.468943px;}
.xa_c00370{left:258.553698px;}
.xb_c00370{left:262.988294px;}
.xc_c00370{left:271.601212px;}
.xd_c00370{left:283.434780px;}
.xe_c00370{left:290.867654px;}
.xf_c00370{left:294.260334px;}
.x3d_c00370{left:295.438786px;}
.x10_c00370{left:299.596701px;}
.x11_c00370{left:302.984150px;}
.x12_c00370{left:306.993562px;}
.x13_c00370{left:325.378518px;}
.x14_c00370{left:326.595106px;}
.x15_c00370{left:328.015253px;}
.x16_c00370{left:331.410444px;}
.x17_c00370{left:334.633053px;}
.x18_c00370{left:340.511825px;}
.x19_c00370{left:346.695139px;}
.x1a_c00370{left:352.384720px;}
.x1b_c00370{left:355.792694px;}
.x1c_c00370{left:363.695116px;}
.x1d_c00370{left:371.679253px;}
.x1e_c00370{left:378.434940px;}
.x1f_c00370{left:381.453328px;}
.x20_c00370{left:384.455783px;}
.x21_c00370{left:387.851715px;}
.x22_c00370{left:390.467224px;}
.x23_c00370{left:393.779799px;}
.x24_c00370{left:398.952070px;}
.x25_c00370{left:401.755082px;}
.x41_c00370{left:451.985828px;}
.x39_c00370{left:464.618828px;}
.x40_c00370{left:676.474352px;}
.x3f_c00370{left:696.904800px;}
.x3a_c00370{left:733.103068px;}
.x38_c00370{left:756.637341px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ws5_c00370{word-spacing:-37.035289pt;}
.ws4_c00370{word-spacing:-16.604696pt;}
.ws0_c00370{word-spacing:-13.477521pt;}
.ws1_c00370{word-spacing:-0.069279pt;}
.ws3_c00370{word-spacing:-0.049530pt;}
.ws6_c00370{word-spacing:0.000000pt;}
.ws2_c00370{word-spacing:250.196272pt;}
._2_c00370{width:0.899364pt;}
._3_c00370{width:2.012164pt;}
._4_c00370{width:3.104346pt;}
._1_c00370{width:8.638932pt;}
._0_c00370{width:9.527943pt;}
._5_c00370{width:12.225979pt;}
.fs8_c00370{font-size:37.310908pt;}
.fsc_c00370{font-size:37.311173pt;}
.fs2_c00370{font-size:42.079973pt;}
.fs5_c00370{font-size:42.079974pt;}
.fs1_c00370{font-size:42.079975pt;}
.fs4_c00370{font-size:42.079976pt;}
.fs3_c00370{font-size:42.079977pt;}
.fs6_c00370{font-size:42.079978pt;}
.fse_c00370{font-size:45.894021pt;}
.fsf_c00370{font-size:49.530431pt;}
.fsb_c00370{font-size:53.288186pt;}
.fs10_c00370{font-size:63.921837pt;}
.fs0_c00370{font-size:63.961814pt;}
.fs9_c00370{font-size:66.115417pt;}
.fs7_c00370{font-size:68.413814pt;}
.fsa_c00370{font-size:69.278640pt;}
.fsd_c00370{font-size:85.269094pt;}
.y0_c00370{bottom:0.000000pt;}
.y1_c00370{bottom:0.000007pt;}
.y56_c00370{bottom:26.805533pt;}
.y9_c00370{bottom:81.532443pt;}
.y8_c00370{bottom:108.516334pt;}
.y7_c00370{bottom:135.500224pt;}
.y6_c00370{bottom:162.484114pt;}
.y5_c00370{bottom:189.468005pt;}
.y4_c00370{bottom:216.451895pt;}
.y3_c00370{bottom:243.435786pt;}
.y2_c00370{bottom:270.419676pt;}
.y4c_c00370{bottom:296.918399pt;}
.y54_c00370{bottom:357.390356pt;}
.y49_c00370{bottom:433.223518pt;}
.y17_c00370{bottom:438.944560pt;}
.y3f_c00370{bottom:438.957887pt;}
.y16_c00370{bottom:439.411208pt;}
.y40_c00370{bottom:439.428585pt;}
.y29_c00370{bottom:439.733989pt;}
.y3e_c00370{bottom:440.063632pt;}
.y15_c00370{bottom:440.358224pt;}
.y2a_c00370{bottom:440.474249pt;}
.y28_c00370{bottom:440.492144pt;}
.y3d_c00370{bottom:441.175290pt;}
.y14_c00370{bottom:441.311665pt;}
.y27_c00370{bottom:441.411480pt;}
.y41_c00370{bottom:441.575343pt;}
.y18_c00370{bottom:441.631897pt;}
.y2b_c00370{bottom:442.412085pt;}
.y3c_c00370{bottom:442.636491pt;}
.y13_c00370{bottom:442.778875pt;}
.y26_c00370{bottom:443.368235pt;}
.y2c_c00370{bottom:443.647574pt;}
.y3b_c00370{bottom:444.136272pt;}
.y12_c00370{bottom:444.283350pt;}
.y2d_c00370{bottom:445.156323pt;}
.y19_c00370{bottom:445.431649pt;}
.y3a_c00370{bottom:445.793228pt;}
.y11_c00370{bottom:445.944627pt;}
.y42_c00370{bottom:446.106592pt;}
.y25_c00370{bottom:446.736624pt;}
.y2e_c00370{bottom:447.325975pt;}
.y1a_c00370{bottom:447.669198pt;}
.y43_c00370{bottom:449.329795pt;}
.y2f_c00370{bottom:449.332771pt;}
.y39_c00370{bottom:449.927990pt;}
.y10_c00370{bottom:450.087675pt;}
.y24_c00370{bottom:451.594856pt;}
.y30_c00370{bottom:452.236735pt;}
.y1b_c00370{bottom:452.957150pt;}
.y44_c00370{bottom:454.334697pt;}
.y23_c00370{bottom:455.562742pt;}
.y38_c00370{bottom:455.614749pt;}
.yf_c00370{bottom:455.781928pt;}
.y1c_c00370{bottom:457.175713pt;}
.y31_c00370{bottom:459.696536pt;}
.y45_c00370{bottom:460.249062pt;}
.y22_c00370{bottom:461.270273pt;}
.y37_c00370{bottom:462.105976pt;}
.ye_c00370{bottom:462.186152pt;}
.yd_c00370{bottom:465.258807pt;}
.y21_c00370{bottom:465.329988pt;}
.y32_c00370{bottom:466.846944pt;}
.y1d_c00370{bottom:467.644044pt;}
.y36_c00370{bottom:468.468115pt;}
.yc_c00370{bottom:470.598118pt;}
.y46_c00370{bottom:470.876600pt;}
.y20_c00370{bottom:472.234422pt;}
.y35_c00370{bottom:472.704883pt;}
.y48_c00370{bottom:474.425294pt;}
.y53_c00370{bottom:475.041614pt;}
.y1f_c00370{bottom:475.693435pt;}
.yb_c00370{bottom:477.047199pt;}
.y34_c00370{bottom:478.188178pt;}
.y1e_c00370{bottom:478.518126pt;}
.y47_c00370{bottom:478.841168pt;}
.y4a_c00370{bottom:480.383260pt;}
.y33_c00370{bottom:484.463008pt;}
.ya_c00370{bottom:485.517349pt;}
.y4b_c00370{bottom:513.663227pt;}
.y52_c00370{bottom:531.164232pt;}
.y55_c00370{bottom:568.435476pt;}
.y57_c00370{bottom:908.096918pt;}
.y50_c00370{bottom:1002.298488pt;}
.y4e_c00370{bottom:1007.298766pt;}
.y51_c00370{bottom:1022.237576pt;}
.y4d_c00370{bottom:1023.289220pt;}
.y4f_c00370{bottom:1040.585280pt;}
.hb_c00370{height:28.584382pt;}
.h8_c00370{height:31.970917pt;}
.h7_c00370{height:31.970918pt;}
.h9_c00370{height:31.970920pt;}
.h5_c00370{height:32.238026pt;}
.h4_c00370{height:32.238028pt;}
.h6_c00370{height:32.238029pt;}
.h12_c00370{height:33.277647pt;}
.hf_c00370{height:34.742386pt;}
.h15_c00370{height:40.499022pt;}
.h13_c00370{height:46.120377pt;}
.h14_c00370{height:48.971369pt;}
.h3_c00370{height:49.001996pt;}
.he_c00370{height:49.619420pt;}
.ha_c00370{height:50.010498pt;}
.hc_c00370{height:50.651899pt;}
.hd_c00370{height:52.635529pt;}
.h10_c00370{height:59.558193pt;}
.h11_c00370{height:79.398517pt;}
.h2_c00370{height:1159.999952pt;}
.h0_c00370{height:1159.999959pt;}
.h1_c00370{height:1160.000000pt;}
.w2_c00370{width:830.999965pt;}
.w0_c00370{width:831.000000pt;}
.w1_c00370{width:831.333333pt;}
.x0_c00370{left:0.000000pt;}
.x1_c00370{left:79.294918pt;}
.x3b_c00370{left:96.055698pt;}
.x3c_c00370{left:97.474332pt;}
.x42_c00370{left:116.100150pt;}
.x27_c00370{left:119.906064pt;}
.x26_c00370{left:121.392652pt;}
.x28_c00370{left:124.389083pt;}
.x29_c00370{left:128.698021pt;}
.x2a_c00370{left:133.464791pt;}
.x2b_c00370{left:135.910272pt;}
.x2c_c00370{left:138.584129pt;}
.x2d_c00370{left:142.002076pt;}
.x37_c00370{left:143.420132pt;}
.x2e_c00370{left:145.070170pt;}
.x2f_c00370{left:152.430191pt;}
.x30_c00370{left:159.776608pt;}
.x31_c00370{left:167.266795pt;}
.x32_c00370{left:174.717010pt;}
.x33_c00370{left:178.419115pt;}
.x34_c00370{left:182.468375pt;}
.x35_c00370{left:185.852506pt;}
.x36_c00370{left:188.150503pt;}
.x3_c00370{left:204.676373pt;}
.x2_c00370{left:206.574107pt;}
.x4_c00370{left:209.317987pt;}
.x5_c00370{left:213.616993pt;}
.x6_c00370{left:218.376513pt;}
.x7_c00370{left:220.819105pt;}
.x8_c00370{left:223.490334pt;}
.x9_c00370{left:226.905704pt;}
.x3e_c00370{left:227.972394pt;}
.xa_c00370{left:229.825509pt;}
.xb_c00370{left:233.767373pt;}
.xc_c00370{left:241.423300pt;}
.xd_c00370{left:251.942027pt;}
.xe_c00370{left:258.549026pt;}
.xf_c00370{left:261.564741pt;}
.x3d_c00370{left:262.612255pt;}
.x10_c00370{left:266.308178pt;}
.x11_c00370{left:269.319244pt;}
.x12_c00370{left:272.883167pt;}
.x13_c00370{left:289.225349pt;}
.x14_c00370{left:290.306761pt;}
.x15_c00370{left:291.569114pt;}
.x16_c00370{left:294.587062pt;}
.x17_c00370{left:297.451603pt;}
.x18_c00370{left:302.677178pt;}
.x19_c00370{left:308.173457pt;}
.x1a_c00370{left:313.230862pt;}
.x1b_c00370{left:316.260173pt;}
.x1c_c00370{left:323.284548pt;}
.x1d_c00370{left:330.381558pt;}
.x1e_c00370{left:336.386614pt;}
.x1f_c00370{left:339.069625pt;}
.x20_c00370{left:341.738474pt;}
.x21_c00370{left:344.757080pt;}
.x22_c00370{left:347.081977pt;}
.x23_c00370{left:350.026488pt;}
.x24_c00370{left:354.624063pt;}
.x25_c00370{left:357.115628pt;}
.x41_c00370{left:401.765180pt;}
.x39_c00370{left:412.994514pt;}
.x40_c00370{left:601.310535pt;}
.x3f_c00370{left:619.470933pt;}
.x3a_c00370{left:651.647171pt;}
.x38_c00370{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_183710248adfa0b81f549e1a.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.006348;font-style:normal;font-weight:normal;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_676e41abe64bb2f5a928b83a.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.000000;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.006348;font-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_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;}
.ls0_c00371{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00371{word-spacing:-18.691966px;}
.ws1_c00371{word-spacing:-18.680283px;}
.ws2_c00371{word-spacing:0.000000px;}
._d_c00371{width:1.129198px;}
._0_c00371{width:2.134466px;}
._2_c00371{width:3.346636px;}
._8_c00371{width:4.383805px;}
._3_c00371{width:6.208854px;}
._1_c00371{width:7.475647px;}
._9_c00371{width:9.600716px;}
._6_c00371{width:11.183791px;}
._b_c00371{width:15.677743px;}
._4_c00371{width:17.056527px;}
._c_c00371{width:21.509787px;}
._a_c00371{width:23.055737px;}
._5_c00371{width:32.646500px;}
._7_c00371{width:33.782662px;}
.fc1_c00371{color:rgb(137,99,42);}
.fc0_c00371{color:rgb(0,0,0);}
.fs3_c00371{font-size:71.912067px;}
.fs0_c00371{font-size:71.957041px;}
.fs1_c00371{font-size:74.340621px;}
.fs2_c00371{font-size:74.379845px;}
.y0_c00371{bottom:0.000000px;}
.y1_c00371{bottom:0.000008px;}
.y23_c00371{bottom:30.156225px;}
.y21_c00371{bottom:127.649759px;}
.y20_c00371{bottom:158.006636px;}
.y1f_c00371{bottom:188.363513px;}
.y1e_c00371{bottom:218.720389px;}
.y1d_c00371{bottom:249.077266px;}
.y22_c00371{bottom:282.366154px;}
.y1c_c00371{bottom:335.604196px;}
.y1b_c00371{bottom:365.961073px;}
.y1a_c00371{bottom:396.317950px;}
.y19_c00371{bottom:426.674827px;}
.y18_c00371{bottom:457.031703px;}
.y17_c00371{bottom:487.388580px;}
.y16_c00371{bottom:523.811699px;}
.ye_c00371{bottom:586.038917px;}
.yd_c00371{bottom:616.395794px;}
.yc_c00371{bottom:646.752671px;}
.yb_c00371{bottom:677.109548px;}
.ya_c00371{bottom:707.466424px;}
.y9_c00371{bottom:737.823301px;}
.y8_c00371{bottom:768.180178px;}
.y7_c00371{bottom:798.537055px;}
.y6_c00371{bottom:828.893931px;}
.y5_c00371{bottom:859.250808px;}
.y4_c00371{bottom:889.607685px;}
.y3_c00371{bottom:919.964562px;}
.y2_c00371{bottom:950.321438px;}
.yf_c00371{bottom:982.970793px;}
.y15_c00371{bottom:1045.636642px;}
.y14_c00371{bottom:1075.993519px;}
.y13_c00371{bottom:1106.350396px;}
.y12_c00371{bottom:1136.707272px;}
.y11_c00371{bottom:1167.064149px;}
.y10_c00371{bottom:1199.252094px;}
.h6_c00371{height:55.092790px;}
.h3_c00371{height:55.127245px;}
.h4_c00371{height:56.953337px;}
.h5_c00371{height:56.983387px;}
.h2_c00371{height:1304.999946px;}
.h0_c00371{height:1304.999953px;}
.h1_c00371{height:1305.000000px;}
.w2_c00371{width:934.874961px;}
.w0_c00371{width:934.875000px;}
.w1_c00371{width:935.250000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:87.850202px;}
.x2_c00371{left:451.985828px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ws0_c00371{word-spacing:-16.615081pt;}
.ws1_c00371{word-spacing:-16.604696pt;}
.ws2_c00371{word-spacing:0.000000pt;}
._d_c00371{width:1.003732pt;}
._0_c00371{width:1.897303pt;}
._2_c00371{width:2.974788pt;}
._8_c00371{width:3.896716pt;}
._3_c00371{width:5.518981pt;}
._1_c00371{width:6.645020pt;}
._9_c00371{width:8.533970pt;}
._6_c00371{width:9.941147pt;}
._b_c00371{width:13.935772pt;}
._4_c00371{width:15.161357pt;}
._c_c00371{width:19.119811pt;}
._a_c00371{width:20.493989pt;}
._5_c00371{width:29.019111pt;}
._7_c00371{width:30.029033pt;}
.fs3_c00371{font-size:63.921837pt;}
.fs0_c00371{font-size:63.961814pt;}
.fs1_c00371{font-size:66.080552pt;}
.fs2_c00371{font-size:66.115417pt;}
.y0_c00371{bottom:0.000000pt;}
.y1_c00371{bottom:0.000007pt;}
.y23_c00371{bottom:26.805533pt;}
.y21_c00371{bottom:113.466452pt;}
.y20_c00371{bottom:140.450343pt;}
.y1f_c00371{bottom:167.434233pt;}
.y1e_c00371{bottom:194.418124pt;}
.y1d_c00371{bottom:221.402014pt;}
.y22_c00371{bottom:250.992136pt;}
.y1c_c00371{bottom:298.314841pt;}
.y1b_c00371{bottom:325.298732pt;}
.y1a_c00371{bottom:352.282622pt;}
.y19_c00371{bottom:379.266513pt;}
.y18_c00371{bottom:406.250403pt;}
.y17_c00371{bottom:433.234294pt;}
.y16_c00371{bottom:465.610400pt;}
.ye_c00371{bottom:520.923482pt;}
.yd_c00371{bottom:547.907372pt;}
.yc_c00371{bottom:574.891263pt;}
.yb_c00371{bottom:601.875153pt;}
.ya_c00371{bottom:628.859044pt;}
.y9_c00371{bottom:655.842934pt;}
.y8_c00371{bottom:682.826825pt;}
.y7_c00371{bottom:709.810715pt;}
.y6_c00371{bottom:736.794606pt;}
.y5_c00371{bottom:763.778496pt;}
.y4_c00371{bottom:790.762387pt;}
.y3_c00371{bottom:817.746277pt;}
.y2_c00371{bottom:844.730168pt;}
.yf_c00371{bottom:873.751816pt;}
.y15_c00371{bottom:929.454793pt;}
.y14_c00371{bottom:956.438683pt;}
.y13_c00371{bottom:983.422574pt;}
.y12_c00371{bottom:1010.406464pt;}
.y11_c00371{bottom:1037.390355pt;}
.y10_c00371{bottom:1066.001862pt;}
.h6_c00371{height:48.971369pt;}
.h3_c00371{height:49.001996pt;}
.h4_c00371{height:50.625189pt;}
.h5_c00371{height:50.651899pt;}
.h2_c00371{height:1159.999952pt;}
.h0_c00371{height:1159.999959pt;}
.h1_c00371{height:1160.000000pt;}
.w2_c00371{width:830.999965pt;}
.w0_c00371{width:831.000000pt;}
.w1_c00371{width:831.333333pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:78.089069pt;}
.x2_c00371{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1dcf8e153c96388fe67d29a5.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00372;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.006348;font-style:normal;font-weight: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_c00372;src:url('chunks/assets/font_6c9aaca1eb49ffb36694e0ce.woff2')format("woff");}.ff5_c00372{font-family:ff5_c00372;line-height:1.000000;font-style:normal;font-weight: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_c00372;src:url('chunks/assets/font_34b77e5f2bb53b758884ce8e.woff2')format("woff");}.ff6_c00372{font-family:ff6_c00372;line-height:1.171387;font-style:normal;font-weight: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_c00372;src:url('chunks/assets/font_4b0e43959cca77ca48736a89.woff2')format("woff");}.ff7_c00372{font-family:ff7_c00372;line-height:1.000000;font-style:normal;font-weight: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_c00372;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00372{font-family:ff8_c00372;line-height:0.734863;font-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_c00372{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00372{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00372{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00372{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00372{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00372{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00372{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00372{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00372{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00372{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00372{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00372{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00372{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00372{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00372{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00372{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00372{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00372{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00372{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00372{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00372{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00372{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00372{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00372{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00372{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00372{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00372{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00372{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00372{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00372{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00372{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00372{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00372{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00372{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00372{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00372{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00372{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00372{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00372{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00372{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00372{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00372{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00372{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00372{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00372{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00372{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00372{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00372{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00372{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00372{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00372{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00372{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00372{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00372{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00372{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00372{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00372{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00372{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00372{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00372{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00372{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00372{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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;}
.ls0_c00372{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00372{word-spacing:-18.680283px;}
.ws0_c00372{word-spacing:-15.162211px;}
.ws1_c00372{word-spacing:-0.077938px;}
.ws3_c00372{word-spacing:-0.055722px;}
.ws5_c00372{word-spacing:0.000000px;}
.ws2_c00372{word-spacing:281.470806px;}
._0_c00372{width:1.183754px;}
._3_c00372{width:3.539053px;}
._2_c00372{width:8.909261px;}
._1_c00372{width:9.915144px;}
._5_c00372{width:14.657239px;}
._4_c00372{width:15.772512px;}
._6_c00372{width:17.038824px;}
.fc3_c00372{color:rgb(9,71,81);}
.fc2_c00372{color:rgb(137,99,42);}
.fc1_c00372{color:rgb(255,255,255);}
.fc0_c00372{color:rgb(0,0,0);}
.fs8_c00372{font-size:41.974772px;}
.fsc_c00372{font-size:41.975069px;}
.fs2_c00372{font-size:47.339969px;}
.fs5_c00372{font-size:47.339970px;}
.fs1_c00372{font-size:47.339972px;}
.fs4_c00372{font-size:47.339973px;}
.fs3_c00372{font-size:47.339974px;}
.fs6_c00372{font-size:47.339975px;}
.fse_c00372{font-size:51.630774px;}
.fsf_c00372{font-size:55.721735px;}
.fsb_c00372{font-size:59.949210px;}
.fs10_c00372{font-size:71.912067px;}
.fs0_c00372{font-size:71.957041px;}
.fs9_c00372{font-size:74.379845px;}
.fs7_c00372{font-size:76.965540px;}
.fsa_c00372{font-size:77.938470px;}
.fsd_c00372{font-size:95.927731px;}
.y0_c00372{bottom:0.000000px;}
.y1_c00372{bottom:0.000008px;}
.y56_c00372{bottom:30.156225px;}
.y9_c00372{bottom:91.688682px;}
.y8_c00372{bottom:122.045559px;}
.y7_c00372{bottom:152.402436px;}
.y6_c00372{bottom:182.759313px;}
.y5_c00372{bottom:213.116190px;}
.y4_c00372{bottom:243.473066px;}
.y3_c00372{bottom:273.829943px;}
.y2_c00372{bottom:304.186820px;}
.y4d_c00372{bottom:340.743743px;}
.y54_c00372{bottom:402.064151px;}
.y4a_c00372{bottom:487.376458px;}
.y18_c00372{bottom:493.812629px;}
.y40_c00372{bottom:493.827623px;}
.y17_c00372{bottom:494.337609px;}
.y41_c00372{bottom:494.357158px;}
.y2a_c00372{bottom:494.700737px;}
.y3f_c00372{bottom:495.071586px;}
.y16_c00372{bottom:495.403002px;}
.y2b_c00372{bottom:495.533530px;}
.y29_c00372{bottom:495.553663px;}
.y3e_c00372{bottom:496.322201px;}
.y15_c00372{bottom:496.475623px;}
.y28_c00372{bottom:496.587915px;}
.y42_c00372{bottom:496.772260px;}
.y19_c00372{bottom:496.835884px;}
.y2c_c00372{bottom:497.713596px;}
.y3d_c00372{bottom:497.966053px;}
.y14_c00372{bottom:498.126234px;}
.y27_c00372{bottom:498.789265px;}
.y2d_c00372{bottom:499.103521px;}
.y3c_c00372{bottom:499.653306px;}
.y13_c00372{bottom:499.818769px;}
.y2e_c00372{bottom:500.800864px;}
.y1a_c00372{bottom:501.110605px;}
.y3b_c00372{bottom:501.517382px;}
.y12_c00372{bottom:501.687706px;}
.y43_c00372{bottom:501.869915px;}
.y26_c00372{bottom:502.578702px;}
.y2f_c00372{bottom:503.241722px;}
.y1b_c00372{bottom:503.627848px;}
.y44_c00372{bottom:505.496019px;}
.y30_c00372{bottom:505.499367px;}
.y3a_c00372{bottom:506.168989px;}
.y11_c00372{bottom:506.348634px;}
.y25_c00372{bottom:508.044213px;}
.y31_c00372{bottom:508.766327px;}
.y1c_c00372{bottom:509.576794px;}
.y45_c00372{bottom:511.126534px;}
.y24_c00372{bottom:512.508085px;}
.y39_c00372{bottom:512.566592px;}
.y10_c00372{bottom:512.754669px;}
.y1d_c00372{bottom:514.322677px;}
.y32_c00372{bottom:517.158603px;}
.y46_c00372{bottom:517.780195px;}
.y23_c00372{bottom:518.929057px;}
.y38_c00372{bottom:519.869222px;}
.yf_c00372{bottom:519.959421px;}
.ye_c00372{bottom:523.416158px;}
.y22_c00372{bottom:523.496236px;}
.y33_c00372{bottom:525.202812px;}
.y1e_c00372{bottom:526.099549px;}
.y37_c00372{bottom:527.026630px;}
.yd_c00372{bottom:529.422883px;}
.y47_c00372{bottom:529.736175px;}
.y21_c00372{bottom:531.263725px;}
.y36_c00372{bottom:531.792993px;}
.y49_c00372{bottom:533.728456px;}
.y53_c00372{bottom:534.421816px;}
.y20_c00372{bottom:535.155114px;}
.yc_c00372{bottom:536.678099px;}
.y35_c00372{bottom:537.961701px;}
.y1f_c00372{bottom:538.332892px;}
.y48_c00372{bottom:538.696314px;}
.y4b_c00372{bottom:540.431168px;}
.y34_c00372{bottom:545.020884px;}
.yb_c00372{bottom:546.207017px;}
.y4c_c00372{bottom:577.871130px;}
.ya_c00372{bottom:597.559761px;}
.y55_c00372{bottom:639.489911px;}
.y51_c00372{bottom:1127.585799px;}
.y4f_c00372{bottom:1133.211112px;}
.y52_c00372{bottom:1150.017273px;}
.y4e_c00372{bottom:1151.200373px;}
.y50_c00372{bottom:1170.658440px;}
.hb_c00372{height:32.157430px;}
.h8_c00372{height:35.967282px;}
.h7_c00372{height:35.967283px;}
.h9_c00372{height:35.967285px;}
.h5_c00372{height:36.267779px;}
.h4_c00372{height:36.267781px;}
.h6_c00372{height:36.267783px;}
.h12_c00372{height:37.437353px;}
.hf_c00372{height:39.085184px;}
.h13_c00372{height:51.885424px;}
.h14_c00372{height:55.092790px;}
.h3_c00372{height:55.127245px;}
.he_c00372{height:55.821847px;}
.ha_c00372{height:56.261810px;}
.hc_c00372{height:56.983387px;}
.hd_c00372{height:59.214971px;}
.h10_c00372{height:67.002968px;}
.h11_c00372{height:89.323331px;}
.h2_c00372{height:1304.999946px;}
.h0_c00372{height:1304.999953px;}
.h1_c00372{height:1305.000000px;}
.w2_c00372{width:934.874961px;}
.w0_c00372{width:934.875000px;}
.w1_c00372{width:935.250000px;}
.x0_c00372{left:0.000000px;}
.x1_c00372{left:87.850202px;}
.x3b_c00372{left:108.062661px;}
.x3c_c00372{left:109.658623px;}
.x28_c00372{left:134.894322px;}
.x27_c00372{left:136.566734px;}
.x29_c00372{left:139.937719px;}
.x2a_c00372{left:144.785273px;}
.x2b_c00372{left:150.147890px;}
.x2c_c00372{left:152.899057px;}
.x2d_c00372{left:155.907145px;}
.x2e_c00372{left:159.752336px;}
.x38_c00372{left:161.347648px;}
.x2f_c00372{left:163.203941px;}
.x30_c00372{left:171.483965px;}
.x31_c00372{left:179.748684px;}
.x32_c00372{left:188.175145px;}
.x33_c00372{left:196.556636px;}
.x34_c00372{left:200.721504px;}
.x35_c00372{left:205.276922px;}
.x36_c00372{left:209.084069px;}
.x37_c00372{left:211.669316px;}
.x4_c00372{left:230.260919px;}
.x3_c00372{left:232.395871px;}
.x5_c00372{left:235.482735px;}
.x6_c00372{left:240.319117px;}
.x7_c00372{left:245.673577px;}
.x8_c00372{left:248.421493px;}
.x9_c00372{left:251.426626px;}
.xa_c00372{left:255.268917px;}
.x3e_c00372{left:256.468943px;}
.xb_c00372{left:258.553698px;}
.xc_c00372{left:262.988294px;}
.xd_c00372{left:271.601212px;}
.xe_c00372{left:283.434780px;}
.xf_c00372{left:290.867654px;}
.x10_c00372{left:294.260334px;}
.x3d_c00372{left:295.438786px;}
.x11_c00372{left:299.596701px;}
.x12_c00372{left:302.984150px;}
.x13_c00372{left:306.993562px;}
.x14_c00372{left:325.378518px;}
.x15_c00372{left:326.595106px;}
.x16_c00372{left:328.015253px;}
.x17_c00372{left:331.410444px;}
.x18_c00372{left:334.633053px;}
.x19_c00372{left:340.511825px;}
.x1a_c00372{left:346.695139px;}
.x1b_c00372{left:352.384720px;}
.x1c_c00372{left:355.792694px;}
.x1d_c00372{left:363.695116px;}
.x1e_c00372{left:371.679253px;}
.x1f_c00372{left:378.434940px;}
.x20_c00372{left:381.453328px;}
.x21_c00372{left:384.455783px;}
.x22_c00372{left:387.851715px;}
.x23_c00372{left:390.467224px;}
.x24_c00372{left:393.779799px;}
.x25_c00372{left:398.952070px;}
.x26_c00372{left:401.755082px;}
.x41_c00372{left:451.985828px;}
.x2_c00372{left:465.097640px;}
.x40_c00372{left:676.474352px;}
.x3f_c00372{left:696.904800px;}
.x3a_c00372{left:733.103068px;}
.x39_c00372{left:756.637341px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls0_c00372{letter-spacing:0.000000pt;}
.ws4_c00372{word-spacing:-16.604696pt;}
.ws0_c00372{word-spacing:-13.477521pt;}
.ws1_c00372{word-spacing:-0.069279pt;}
.ws3_c00372{word-spacing:-0.049530pt;}
.ws5_c00372{word-spacing:0.000000pt;}
.ws2_c00372{word-spacing:250.196272pt;}
._0_c00372{width:1.052225pt;}
._3_c00372{width:3.145824pt;}
._2_c00372{width:7.919343pt;}
._1_c00372{width:8.813461pt;}
._5_c00372{width:13.028657pt;}
._4_c00372{width:14.020011pt;}
._6_c00372{width:15.145622pt;}
.fs8_c00372{font-size:37.310908pt;}
.fsc_c00372{font-size:37.311173pt;}
.fs2_c00372{font-size:42.079973pt;}
.fs5_c00372{font-size:42.079974pt;}
.fs1_c00372{font-size:42.079975pt;}
.fs4_c00372{font-size:42.079976pt;}
.fs3_c00372{font-size:42.079977pt;}
.fs6_c00372{font-size:42.079978pt;}
.fse_c00372{font-size:45.894021pt;}
.fsf_c00372{font-size:49.530431pt;}
.fsb_c00372{font-size:53.288186pt;}
.fs10_c00372{font-size:63.921837pt;}
.fs0_c00372{font-size:63.961814pt;}
.fs9_c00372{font-size:66.115417pt;}
.fs7_c00372{font-size:68.413814pt;}
.fsa_c00372{font-size:69.278640pt;}
.fsd_c00372{font-size:85.269094pt;}
.y0_c00372{bottom:0.000000pt;}
.y1_c00372{bottom:0.000007pt;}
.y56_c00372{bottom:26.805533pt;}
.y9_c00372{bottom:81.501051pt;}
.y8_c00372{bottom:108.484942pt;}
.y7_c00372{bottom:135.468832pt;}
.y6_c00372{bottom:162.452722pt;}
.y5_c00372{bottom:189.436613pt;}
.y4_c00372{bottom:216.420503pt;}
.y3_c00372{bottom:243.404394pt;}
.y2_c00372{bottom:270.388284pt;}
.y4d_c00372{bottom:302.883327pt;}
.y54_c00372{bottom:357.390356pt;}
.y4a_c00372{bottom:433.223518pt;}
.y18_c00372{bottom:438.944560pt;}
.y40_c00372{bottom:438.957887pt;}
.y17_c00372{bottom:439.411208pt;}
.y41_c00372{bottom:439.428585pt;}
.y2a_c00372{bottom:439.733989pt;}
.y3f_c00372{bottom:440.063632pt;}
.y16_c00372{bottom:440.358224pt;}
.y2b_c00372{bottom:440.474249pt;}
.y29_c00372{bottom:440.492144pt;}
.y3e_c00372{bottom:441.175290pt;}
.y15_c00372{bottom:441.311665pt;}
.y28_c00372{bottom:441.411480pt;}
.y42_c00372{bottom:441.575343pt;}
.y19_c00372{bottom:441.631897pt;}
.y2c_c00372{bottom:442.412085pt;}
.y3d_c00372{bottom:442.636491pt;}
.y14_c00372{bottom:442.778875pt;}
.y27_c00372{bottom:443.368235pt;}
.y2d_c00372{bottom:443.647574pt;}
.y3c_c00372{bottom:444.136272pt;}
.y13_c00372{bottom:444.283350pt;}
.y2e_c00372{bottom:445.156323pt;}
.y1a_c00372{bottom:445.431649pt;}
.y3b_c00372{bottom:445.793228pt;}
.y12_c00372{bottom:445.944627pt;}
.y43_c00372{bottom:446.106592pt;}
.y26_c00372{bottom:446.736624pt;}
.y2f_c00372{bottom:447.325975pt;}
.y1b_c00372{bottom:447.669198pt;}
.y44_c00372{bottom:449.329795pt;}
.y30_c00372{bottom:449.332771pt;}
.y3a_c00372{bottom:449.927990pt;}
.y11_c00372{bottom:450.087675pt;}
.y25_c00372{bottom:451.594856pt;}
.y31_c00372{bottom:452.236735pt;}
.y1c_c00372{bottom:452.957150pt;}
.y45_c00372{bottom:454.334697pt;}
.y24_c00372{bottom:455.562742pt;}
.y39_c00372{bottom:455.614749pt;}
.y10_c00372{bottom:455.781928pt;}
.y1d_c00372{bottom:457.175713pt;}
.y32_c00372{bottom:459.696536pt;}
.y46_c00372{bottom:460.249062pt;}
.y23_c00372{bottom:461.270273pt;}
.y38_c00372{bottom:462.105976pt;}
.yf_c00372{bottom:462.186152pt;}
.ye_c00372{bottom:465.258807pt;}
.y22_c00372{bottom:465.329988pt;}
.y33_c00372{bottom:466.846944pt;}
.y1e_c00372{bottom:467.644044pt;}
.y37_c00372{bottom:468.468115pt;}
.yd_c00372{bottom:470.598118pt;}
.y47_c00372{bottom:470.876600pt;}
.y21_c00372{bottom:472.234422pt;}
.y36_c00372{bottom:472.704883pt;}
.y49_c00372{bottom:474.425294pt;}
.y53_c00372{bottom:475.041614pt;}
.y20_c00372{bottom:475.693435pt;}
.yc_c00372{bottom:477.047199pt;}
.y35_c00372{bottom:478.188178pt;}
.y1f_c00372{bottom:478.518126pt;}
.y48_c00372{bottom:478.841168pt;}
.y4b_c00372{bottom:480.383260pt;}
.y34_c00372{bottom:484.463008pt;}
.yb_c00372{bottom:485.517349pt;}
.y4c_c00372{bottom:513.663227pt;}
.ya_c00372{bottom:531.164232pt;}
.y55_c00372{bottom:568.435476pt;}
.y51_c00372{bottom:1002.298488pt;}
.y4f_c00372{bottom:1007.298766pt;}
.y52_c00372{bottom:1022.237576pt;}
.y4e_c00372{bottom:1023.289220pt;}
.y50_c00372{bottom:1040.585280pt;}
.hb_c00372{height:28.584382pt;}
.h8_c00372{height:31.970917pt;}
.h7_c00372{height:31.970918pt;}
.h9_c00372{height:31.970920pt;}
.h5_c00372{height:32.238026pt;}
.h4_c00372{height:32.238028pt;}
.h6_c00372{height:32.238029pt;}
.h12_c00372{height:33.277647pt;}
.hf_c00372{height:34.742386pt;}
.h13_c00372{height:46.120377pt;}
.h14_c00372{height:48.971369pt;}
.h3_c00372{height:49.001996pt;}
.he_c00372{height:49.619420pt;}
.ha_c00372{height:50.010498pt;}
.hc_c00372{height:50.651899pt;}
.hd_c00372{height:52.635529pt;}
.h10_c00372{height:59.558193pt;}
.h11_c00372{height:79.398517pt;}
.h2_c00372{height:1159.999952pt;}
.h0_c00372{height:1159.999959pt;}
.h1_c00372{height:1160.000000pt;}
.w2_c00372{width:830.999965pt;}
.w0_c00372{width:831.000000pt;}
.w1_c00372{width:831.333333pt;}
.x0_c00372{left:0.000000pt;}
.x1_c00372{left:78.089069pt;}
.x3b_c00372{left:96.055698pt;}
.x3c_c00372{left:97.474332pt;}
.x28_c00372{left:119.906064pt;}
.x27_c00372{left:121.392652pt;}
.x29_c00372{left:124.389083pt;}
.x2a_c00372{left:128.698021pt;}
.x2b_c00372{left:133.464791pt;}
.x2c_c00372{left:135.910272pt;}
.x2d_c00372{left:138.584129pt;}
.x2e_c00372{left:142.002076pt;}
.x38_c00372{left:143.420132pt;}
.x2f_c00372{left:145.070170pt;}
.x30_c00372{left:152.430191pt;}
.x31_c00372{left:159.776608pt;}
.x32_c00372{left:167.266795pt;}
.x33_c00372{left:174.717010pt;}
.x34_c00372{left:178.419115pt;}
.x35_c00372{left:182.468375pt;}
.x36_c00372{left:185.852506pt;}
.x37_c00372{left:188.150503pt;}
.x4_c00372{left:204.676373pt;}
.x3_c00372{left:206.574107pt;}
.x5_c00372{left:209.317987pt;}
.x6_c00372{left:213.616993pt;}
.x7_c00372{left:218.376513pt;}
.x8_c00372{left:220.819105pt;}
.x9_c00372{left:223.490334pt;}
.xa_c00372{left:226.905704pt;}
.x3e_c00372{left:227.972394pt;}
.xb_c00372{left:229.825509pt;}
.xc_c00372{left:233.767373pt;}
.xd_c00372{left:241.423300pt;}
.xe_c00372{left:251.942027pt;}
.xf_c00372{left:258.549026pt;}
.x10_c00372{left:261.564741pt;}
.x3d_c00372{left:262.612255pt;}
.x11_c00372{left:266.308178pt;}
.x12_c00372{left:269.319244pt;}
.x13_c00372{left:272.883167pt;}
.x14_c00372{left:289.225349pt;}
.x15_c00372{left:290.306761pt;}
.x16_c00372{left:291.569114pt;}
.x17_c00372{left:294.587062pt;}
.x18_c00372{left:297.451603pt;}
.x19_c00372{left:302.677178pt;}
.x1a_c00372{left:308.173457pt;}
.x1b_c00372{left:313.230862pt;}
.x1c_c00372{left:316.260173pt;}
.x1d_c00372{left:323.284548pt;}
.x1e_c00372{left:330.381558pt;}
.x1f_c00372{left:336.386614pt;}
.x20_c00372{left:339.069625pt;}
.x21_c00372{left:341.738474pt;}
.x22_c00372{left:344.757080pt;}
.x23_c00372{left:347.081977pt;}
.x24_c00372{left:350.026488pt;}
.x25_c00372{left:354.624063pt;}
.x26_c00372{left:357.115628pt;}
.x41_c00372{left:401.765180pt;}
.x2_c00372{left:413.420124pt;}
.x40_c00372{left:601.310535pt;}
.x3f_c00372{left:619.470933pt;}
.x3a_c00372{left:651.647171pt;}
.x39_c00372{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0002078d31aee118db043d7.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.006348;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.006348;font-style:normal;font-weight:normal;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_609ff9d1a3353dfd2c6a73e8.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.005371;font-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_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);}
.v0_c00373{vertical-align:0.000000px;}
.ls0_c00373{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00373{word-spacing:-18.680283px;}
.ws1_c00373{word-spacing:0.000000px;}
._9_c00373{width:1.090985px;}
._3_c00373{width:2.098027px;}
._c_c00373{width:3.127392px;}
._5_c00373{width:4.163317px;}
._1_c00373{width:5.240988px;}
._6_c00373{width:6.400450px;}
._2_c00373{width:8.562163px;}
._0_c00373{width:9.605380px;}
._7_c00373{width:11.702654px;}
._4_c00373{width:13.000051px;}
._a_c00373{width:14.124383px;}
._b_c00373{width:16.583848px;}
._8_c00373{width:19.728318px;}
.fc1_c00373{color:rgb(137,99,42);}
.fc0_c00373{color:rgb(0,0,0);}
.fs3_c00373{font-size:71.912067px;}
.fs0_c00373{font-size:71.957041px;}
.fs1_c00373{font-size:74.340621px;}
.fs2_c00373{font-size:74.379845px;}
.y0_c00373{bottom:0.000000px;}
.y1_c00373{bottom:0.000008px;}
.y1b_c00373{bottom:30.156225px;}
.ye_c00373{bottom:312.809531px;}
.yd_c00373{bottom:343.166408px;}
.yc_c00373{bottom:373.523285px;}
.y14_c00373{bottom:406.812136px;}
.y13_c00373{bottom:489.277290px;}
.y12_c00373{bottom:519.634167px;}
.y11_c00373{bottom:549.991044px;}
.y10_c00373{bottom:580.347920px;}
.yf_c00373{bottom:612.521672px;}
.ya_c00373{bottom:694.730456px;}
.y9_c00373{bottom:725.087333px;}
.y8_c00373{bottom:755.444210px;}
.y7_c00373{bottom:785.801087px;}
.y6_c00373{bottom:816.157964px;}
.y5_c00373{bottom:846.514840px;}
.y4_c00373{bottom:876.871717px;}
.y3_c00373{bottom:907.228594px;}
.y2_c00373{bottom:937.585471px;}
.yb_c00373{bottom:970.234825px;}
.y1a_c00373{bottom:1043.898803px;}
.y19_c00373{bottom:1074.255680px;}
.y18_c00373{bottom:1104.612557px;}
.y17_c00373{bottom:1134.969434px;}
.y16_c00373{bottom:1165.326310px;}
.y15_c00373{bottom:1199.252094px;}
.h6_c00373{height:55.092790px;}
.h3_c00373{height:55.127245px;}
.h4_c00373{height:56.953337px;}
.h5_c00373{height:56.983387px;}
.h2_c00373{height:1304.999946px;}
.h0_c00373{height:1304.999953px;}
.h1_c00373{height:1305.000000px;}
.w2_c00373{width:934.874961px;}
.w0_c00373{width:934.875000px;}
.w1_c00373{width:935.250000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:89.434062px;}
.x2_c00373{left:451.985828px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls0_c00373{letter-spacing:0.000000pt;}
.ws0_c00373{word-spacing:-16.604696pt;}
.ws1_c00373{word-spacing:0.000000pt;}
._9_c00373{width:0.969764pt;}
._3_c00373{width:1.864913pt;}
._c_c00373{width:2.779904pt;}
._5_c00373{width:3.700726pt;}
._1_c00373{width:4.658656pt;}
._6_c00373{width:5.689289pt;}
._2_c00373{width:7.610812pt;}
._0_c00373{width:8.538115pt;}
._7_c00373{width:10.402359pt;}
._4_c00373{width:11.555601pt;}
._a_c00373{width:12.555007pt;}
._b_c00373{width:14.741198pt;}
._8_c00373{width:17.536282pt;}
.fs3_c00373{font-size:63.921837pt;}
.fs0_c00373{font-size:63.961814pt;}
.fs1_c00373{font-size:66.080552pt;}
.fs2_c00373{font-size:66.115417pt;}
.y0_c00373{bottom:0.000000pt;}
.y1_c00373{bottom:0.000007pt;}
.y1b_c00373{bottom:26.805533pt;}
.ye_c00373{bottom:278.052917pt;}
.yd_c00373{bottom:305.036807pt;}
.yc_c00373{bottom:332.020698pt;}
.y14_c00373{bottom:361.610788pt;}
.y13_c00373{bottom:434.913147pt;}
.y12_c00373{bottom:461.897037pt;}
.y11_c00373{bottom:488.880928pt;}
.y10_c00373{bottom:515.864818pt;}
.yf_c00373{bottom:544.463708pt;}
.ya_c00373{bottom:617.538184pt;}
.y9_c00373{bottom:644.522074pt;}
.y8_c00373{bottom:671.505964pt;}
.y7_c00373{bottom:698.489855pt;}
.y6_c00373{bottom:725.473745pt;}
.y5_c00373{bottom:752.457636pt;}
.y4_c00373{bottom:779.441526pt;}
.y3_c00373{bottom:806.425417pt;}
.y2_c00373{bottom:833.409307pt;}
.yb_c00373{bottom:862.430956pt;}
.y1a_c00373{bottom:927.910047pt;}
.y19_c00373{bottom:954.893938pt;}
.y18_c00373{bottom:981.877828pt;}
.y17_c00373{bottom:1008.861719pt;}
.y16_c00373{bottom:1035.845609pt;}
.y15_c00373{bottom:1066.001862pt;}
.h6_c00373{height:48.971369pt;}
.h3_c00373{height:49.001996pt;}
.h4_c00373{height:50.625189pt;}
.h5_c00373{height:50.651899pt;}
.h2_c00373{height:1159.999952pt;}
.h0_c00373{height:1159.999959pt;}
.h1_c00373{height:1160.000000pt;}
.w2_c00373{width:830.999965pt;}
.w0_c00373{width:831.000000pt;}
.w1_c00373{width:831.333333pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:79.496944pt;}
.x2_c00373{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44cab8874ba3e717472a70fd.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:0.775879;font-style:normal;font-weight:normal;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_b48fef5ce5944707c503ad53.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.006348;font-style:normal;font-weight:normal;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_c09df13aa7854b6da7d83294.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:0.929688;font-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_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);}
.v0_c00374{vertical-align:0.000000px;}
.ls0_c00374{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00374{word-spacing:0.000000px;}
._0_c00374{width:4.764327px;}
.fc1_c00374{color:rgb(0,0,0);}
.fc0_c00374{color:rgb(137,99,42);}
.fs1_c00374{font-size:71.912067px;}
.fs0_c00374{font-size:71.957041px;}
.y0_c00374{bottom:0.000000px;}
.y1_c00374{bottom:0.000008px;}
.y3_c00374{bottom:30.156225px;}
.y5_c00374{bottom:1113.346162px;}
.y4_c00374{bottom:1142.578710px;}
.y2_c00374{bottom:1199.835078px;}
.h4_c00374{height:55.092790px;}
.h3_c00374{height:55.127245px;}
.h2_c00374{height:1304.999946px;}
.h0_c00374{height:1304.999953px;}
.h1_c00374{height:1305.000000px;}
.w2_c00374{width:934.874961px;}
.w0_c00374{width:934.875000px;}
.w1_c00374{width:935.250000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:128.097383px;}
.x2_c00374{left:451.985828px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls0_c00374{letter-spacing:0.000000pt;}
.ws0_c00374{word-spacing:-16.604696pt;}
.ws1_c00374{word-spacing:0.000000pt;}
._0_c00374{width:4.234958pt;}
.fs1_c00374{font-size:63.921837pt;}
.fs0_c00374{font-size:63.961814pt;}
.y0_c00374{bottom:0.000000pt;}
.y1_c00374{bottom:0.000007pt;}
.y3_c00374{bottom:26.805533pt;}
.y5_c00374{bottom:989.641033pt;}
.y4_c00374{bottom:1015.625520pt;}
.y2_c00374{bottom:1066.520069pt;}
.h4_c00374{height:48.971369pt;}
.h3_c00374{height:49.001996pt;}
.h2_c00374{height:1159.999952pt;}
.h0_c00374{height:1159.999959pt;}
.h1_c00374{height:1160.000000pt;}
.w2_c00374{width:830.999965pt;}
.w0_c00374{width:831.000000pt;}
.w1_c00374{width:831.333333pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:113.864341pt;}
.x2_c00374{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00375{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
}
.y0_c00375{bottom:0.000000px;}
.h0_c00375{height:1304.999953px;}
.h1_c00375{height:1305.000000px;}
.w0_c00375{width:934.875000px;}
.w1_c00375{width:935.250000px;}
.x0_c00375{left:0.000000px;}
@media print{
.y0_c00375{bottom:0.000000pt;}
.h0_c00375{height:1159.999959pt;}
.h1_c00375{height:1160.000000pt;}
.w0_c00375{width:831.000000pt;}
.w1_c00375{width:831.333333pt;}
.x0_c00375{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_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_4766f56d43c9837c4270fb6d.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:0.708008;font-style:normal;font-weight:normal;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_efd2eba46ef3a4a06ee1d786.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.151475;font-style:normal;font-weight:normal;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_a95cecec526fd82df36a158d.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.000000;font-style:normal;font-weight:normal;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_c3105ecc0900abb342eb2328.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:0.917969;font-style:normal;font-weight: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_c00376;src:url('chunks/assets/font_af24c93efcc5d6409d693242.woff2')format("woff");}.ff5_c00376{font-family:ff5_c00376;line-height:0.727051;font-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_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);}
.v0_c00376{vertical-align:0.000000px;}
.ls0_c00376{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00376{word-spacing:-0.384790px;}
.ws1_c00376{word-spacing:-0.059949px;}
.ws2_c00376{word-spacing:0.000000px;}
._0_c00376{margin-left:-6.189640px;}
.fc0_c00376{color:rgb(255,255,255);}
.fs1_c00376{font-size:59.949210px;}
.fs0_c00376{font-size:384.790269px;}
.y0_c00376{bottom:0.000000px;}
.y1_c00376{bottom:0.000008px;}
.y13_c00376{bottom:71.634602px;}
.y12_c00376{bottom:92.996849px;}
.y11_c00376{bottom:114.359096px;}
.y10_c00376{bottom:135.721342px;}
.yf_c00376{bottom:157.083589px;}
.ye_c00376{bottom:178.445835px;}
.yd_c00376{bottom:199.808082px;}
.yc_c00376{bottom:221.170329px;}
.yb_c00376{bottom:242.532575px;}
.ya_c00376{bottom:263.894822px;}
.y9_c00376{bottom:285.257068px;}
.y8_c00376{bottom:306.619315px;}
.y7_c00376{bottom:327.981562px;}
.y6_c00376{bottom:349.343808px;}
.y5_c00376{bottom:370.706055px;}
.y4_c00376{bottom:392.068302px;}
.y3_c00376{bottom:413.430548px;}
.y2_c00376{bottom:519.924756px;}
.y15_c00376{bottom:1201.409144px;}
.y14_c00376{bottom:1221.647062px;}
.h5_c00376{height:45.547349px;}
.h4_c00376{height:57.003372px;}
.h3_c00376{height:269.428343px;}
.h2_c00376{height:1304.999946px;}
.h0_c00376{height:1304.999953px;}
.h1_c00376{height:1305.000000px;}
.w2_c00376{width:934.874961px;}
.w0_c00376{width:934.875000px;}
.w1_c00376{width:935.250000px;}
.x0_c00376{left:0.000000px;}
.x3_c00376{left:55.726972px;}
.x2_c00376{left:87.850202px;}
.x1_c00376{left:216.271072px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls0_c00376{letter-spacing:0.000000pt;}
.ws0_c00376{word-spacing:-0.342036pt;}
.ws1_c00376{word-spacing:-0.053288pt;}
.ws2_c00376{word-spacing:0.000000pt;}
._0_c00376{margin-left:-5.501902pt;}
.fs1_c00376{font-size:53.288186pt;}
.fs0_c00376{font-size:342.035795pt;}
.y0_c00376{bottom:0.000000pt;}
.y1_c00376{bottom:0.000007pt;}
.y13_c00376{bottom:63.675202pt;}
.y12_c00376{bottom:82.663866pt;}
.y11_c00376{bottom:101.652529pt;}
.y10_c00376{bottom:120.641193pt;}
.yf_c00376{bottom:139.629857pt;}
.ye_c00376{bottom:158.618520pt;}
.yd_c00376{bottom:177.607184pt;}
.yc_c00376{bottom:196.595848pt;}
.yb_c00376{bottom:215.584511pt;}
.ya_c00376{bottom:234.573175pt;}
.y9_c00376{bottom:253.561839pt;}
.y8_c00376{bottom:272.550502pt;}
.y7_c00376{bottom:291.539166pt;}
.y6_c00376{bottom:310.527830pt;}
.y5_c00376{bottom:329.516493pt;}
.y4_c00376{bottom:348.505157pt;}
.y3_c00376{bottom:367.493821pt;}
.y2_c00376{bottom:462.155338pt;}
.y15_c00376{bottom:1067.919239pt;}
.y14_c00376{bottom:1085.908499pt;}
.h5_c00376{height:40.486532pt;}
.h4_c00376{height:50.669664pt;}
.h3_c00376{height:239.491860pt;}
.h2_c00376{height:1159.999952pt;}
.h0_c00376{height:1159.999959pt;}
.h1_c00376{height:1160.000000pt;}
.w2_c00376{width:830.999965pt;}
.w0_c00376{width:831.000000pt;}
.w1_c00376{width:831.333333pt;}
.x0_c00376{left:0.000000pt;}
.x3_c00376{left:49.535086pt;}
.x2_c00376{left:78.089069pt;}
.x1_c00376{left:192.240953pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00377{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
}
.y0_c00377{bottom:0.000000px;}
.h0_c00377{height:1304.999953px;}
.h1_c00377{height:1305.000000px;}
.w0_c00377{width:934.875000px;}
.w1_c00377{width:935.250000px;}
.x0_c00377{left:0.000000px;}
@media print{
.y0_c00377{bottom:0.000000pt;}
.h0_c00377{height:1159.999959pt;}
.h1_c00377{height:1160.000000pt;}
.w0_c00377{width:831.000000pt;}
.w1_c00377{width:831.333333pt;}
.x0_c00377{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_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_4b935d9cf1dc263181c91233.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.006348;font-style:normal;font-weight:normal;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_3c6a35f3098c4a6f889603a2.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:0.964355;font-style:normal;font-weight:normal;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_f7859dab0eebe01696db1d22.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:0.769531;font-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_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);}
.v0_c00378{vertical-align:0.000000px;}
.ls0_c00378{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00378{word-spacing:-18.680283px;}
.ws1_c00378{word-spacing:-0.119898px;}
.ws0_c00378{word-spacing:-0.059949px;}
.ws3_c00378{word-spacing:0.000000px;}
._3_c00378{width:1.763073px;}
._0_c00378{width:3.639998px;}
._b_c00378{width:4.738674px;}
._4_c00378{width:6.086499px;}
._1_c00378{width:8.163049px;}
._a_c00378{width:10.042236px;}
._5_c00378{width:11.097326px;}
._9_c00378{width:16.973015px;}
._8_c00378{width:20.187550px;}
._6_c00378{width:21.650328px;}
._2_c00378{width:23.178437px;}
._c_c00378{width:27.714660px;}
._d_c00378{width:34.580107px;}
._7_c00378{width:86.882462px;}
.fc2_c00378{color:rgb(194,158,103);}
.fc1_c00378{color:rgb(159,130,85);}
.fc0_c00378{color:rgb(0,0,0);}
.fs1_c00378{font-size:59.949210px;}
.fs3_c00378{font-size:71.912067px;}
.fs0_c00378{font-size:71.957041px;}
.fs2_c00378{font-size:119.898420px;}
.y0_c00378{bottom:0.000000px;}
.y1_c00378{bottom:0.000008px;}
.y22_c00378{bottom:30.156225px;}
.y21_c00378{bottom:110.038896px;}
.y20_c00378{bottom:140.395772px;}
.y1f_c00378{bottom:170.752649px;}
.y1e_c00378{bottom:201.109526px;}
.y1d_c00378{bottom:231.466403px;}
.y1c_c00378{bottom:261.823279px;}
.y1b_c00378{bottom:292.180156px;}
.y1a_c00378{bottom:322.537033px;}
.y19_c00378{bottom:352.893910px;}
.y18_c00378{bottom:383.250786px;}
.y17_c00378{bottom:413.607663px;}
.y16_c00378{bottom:488.937586px;}
.y15_c00378{bottom:519.294463px;}
.y14_c00378{bottom:549.651339px;}
.y13_c00378{bottom:580.008216px;}
.y12_c00378{bottom:610.365093px;}
.y11_c00378{bottom:640.721970px;}
.ye_c00378{bottom:699.512324px;}
.yd_c00378{bottom:729.869201px;}
.yc_c00378{bottom:760.226077px;}
.yb_c00378{bottom:790.582954px;}
.ya_c00378{bottom:820.939831px;}
.y9_c00378{bottom:851.296708px;}
.y8_c00378{bottom:881.653584px;}
.y7_c00378{bottom:912.010461px;}
.y6_c00378{bottom:942.367338px;}
.y5_c00378{bottom:972.724215px;}
.y4_c00378{bottom:1003.081091px;}
.y3_c00378{bottom:1033.437968px;}
.y2_c00378{bottom:1063.794845px;}
.y10_c00378{bottom:1116.465281px;}
.yf_c00378{bottom:1200.662313px;}
.h4_c00378{height:43.410487px;}
.h6_c00378{height:55.092790px;}
.h3_c00378{height:55.127245px;}
.h5_c00378{height:91.094698px;}
.h2_c00378{height:1304.999946px;}
.h0_c00378{height:1304.999953px;}
.h1_c00378{height:1305.000000px;}
.w2_c00378{width:934.874961px;}
.w0_c00378{width:934.875000px;}
.w1_c00378{width:935.250000px;}
.x0_c00378{left:0.000000px;}
.x3_c00378{left:87.850202px;}
.x1_c00378{left:92.618831px;}
.x4_c00378{left:451.985828px;}
.x2_c00378{left:778.584252px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.ws2_c00378{word-spacing:-16.604696pt;}
.ws1_c00378{word-spacing:-0.106576pt;}
.ws0_c00378{word-spacing:-0.053288pt;}
.ws3_c00378{word-spacing:0.000000pt;}
._3_c00378{width:1.567176pt;}
._0_c00378{width:3.235554pt;}
._b_c00378{width:4.212155pt;}
._4_c00378{width:5.410222pt;}
._1_c00378{width:7.256044pt;}
._a_c00378{width:8.926432pt;}
._5_c00378{width:9.864290pt;}
._9_c00378{width:15.087125pt;}
._8_c00378{width:17.944488pt;}
._6_c00378{width:19.244736pt;}
._2_c00378{width:20.603055pt;}
._c_c00378{width:24.635253pt;}
._d_c00378{width:30.737873pt;}
._7_c00378{width:77.228855pt;}
.fs1_c00378{font-size:53.288186pt;}
.fs3_c00378{font-size:63.921837pt;}
.fs0_c00378{font-size:63.961814pt;}
.fs2_c00378{font-size:106.576373pt;}
.y0_c00378{bottom:0.000000pt;}
.y1_c00378{bottom:0.000007pt;}
.y22_c00378{bottom:26.805533pt;}
.y21_c00378{bottom:97.812352pt;}
.y20_c00378{bottom:124.796242pt;}
.y1f_c00378{bottom:151.780133pt;}
.y1e_c00378{bottom:178.764023pt;}
.y1d_c00378{bottom:205.747913pt;}
.y1c_c00378{bottom:232.731804pt;}
.y1b_c00378{bottom:259.715694pt;}
.y1a_c00378{bottom:286.699585pt;}
.y19_c00378{bottom:313.683475pt;}
.y18_c00378{bottom:340.667366pt;}
.y17_c00378{bottom:367.651256pt;}
.y16_c00378{bottom:434.611188pt;}
.y15_c00378{bottom:461.595078pt;}
.y14_c00378{bottom:488.578968pt;}
.y13_c00378{bottom:515.562859pt;}
.y12_c00378{bottom:542.546749pt;}
.y11_c00378{bottom:569.530640pt;}
.ye_c00378{bottom:621.788732pt;}
.yd_c00378{bottom:648.772623pt;}
.yc_c00378{bottom:675.756513pt;}
.yb_c00378{bottom:702.740404pt;}
.ya_c00378{bottom:729.724294pt;}
.y9_c00378{bottom:756.708185pt;}
.y8_c00378{bottom:783.692075pt;}
.y7_c00378{bottom:810.675965pt;}
.y6_c00378{bottom:837.659856pt;}
.y5_c00378{bottom:864.643746pt;}
.y4_c00378{bottom:891.627637pt;}
.y3_c00378{bottom:918.611527pt;}
.y2_c00378{bottom:945.595418pt;}
.y10_c00378{bottom:992.413583pt;}
.yf_c00378{bottom:1067.255390pt;}
.h4_c00378{height:38.587100pt;}
.h6_c00378{height:48.971369pt;}
.h3_c00378{height:49.001996pt;}
.h5_c00378{height:80.973065pt;}
.h2_c00378{height:1159.999952pt;}
.h0_c00378{height:1159.999959pt;}
.h1_c00378{height:1160.000000pt;}
.w2_c00378{width:830.999965pt;}
.w0_c00378{width:831.000000pt;}
.w1_c00378{width:831.333333pt;}
.x0_c00378{left:0.000000pt;}
.x3_c00378{left:78.089069pt;}
.x1_c00378{left:82.327849pt;}
.x4_c00378{left:401.765180pt;}
.x2_c00378{left:692.074890pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c6a35f3098c4a6f889603a2.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:0.964355;font-style:normal;font-weight:normal;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_abe30996c05950591356563f.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_fe30b705ee23e08883b552d0.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_3f9725e8c41cee9563c81ba0.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.005371;font-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_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);}
.v0_c00379{vertical-align:0.000000px;}
.ls0_c00379{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws2_c00379{word-spacing:-18.680283px;}
.ws0_c00379{word-spacing:-0.059949px;}
.ws3_c00379{word-spacing:0.000000px;}
._0_c00379{width:1.411795px;}
._7_c00379{width:2.881093px;}
._5_c00379{width:4.769340px;}
._1_c00379{width:6.722502px;}
._c_c00379{width:7.790778px;}
._3_c00379{width:9.121101px;}
._9_c00379{width:11.336957px;}
._b_c00379{width:12.414417px;}
._8_c00379{width:15.870298px;}
._a_c00379{width:17.538129px;}
._f_c00379{width:20.519000px;}
._4_c00379{width:22.444370px;}
._d_c00379{width:26.996654px;}
._6_c00379{width:33.989810px;}
._10_c00379{width:40.110412px;}
._2_c00379{width:49.765546px;}
._e_c00379{width:57.804523px;}
.fc2_c00379{color:rgb(194,158,103);}
.fc1_c00379{color:rgb(0,0,0);}
.fc0_c00379{color:rgb(159,130,85);}
.fs0_c00379{font-size:59.949210px;}
.fs3_c00379{font-size:71.912067px;}
.fs1_c00379{font-size:71.957041px;}
.fs2_c00379{font-size:119.898420px;}
.y0_c00379{bottom:0.000000px;}
.y1_c00379{bottom:0.000008px;}
.y22_c00379{bottom:30.156225px;}
.y21_c00379{bottom:149.847178px;}
.y20_c00379{bottom:180.204055px;}
.y1f_c00379{bottom:210.560932px;}
.y1e_c00379{bottom:240.917808px;}
.y1d_c00379{bottom:271.274685px;}
.y1c_c00379{bottom:320.471827px;}
.y1b_c00379{bottom:350.828704px;}
.y1a_c00379{bottom:381.185580px;}
.y19_c00379{bottom:411.542457px;}
.y18_c00379{bottom:441.899334px;}
.y17_c00379{bottom:472.256211px;}
.y16_c00379{bottom:502.613088px;}
.y14_c00379{bottom:551.867763px;}
.y13_c00379{bottom:582.224640px;}
.y12_c00379{bottom:612.581517px;}
.y11_c00379{bottom:642.938394px;}
.y10_c00379{bottom:673.295270px;}
.yf_c00379{bottom:703.652147px;}
.ye_c00379{bottom:734.009024px;}
.yd_c00379{bottom:764.365901px;}
.yc_c00379{bottom:794.722777px;}
.yb_c00379{bottom:825.079654px;}
.ya_c00379{bottom:855.436531px;}
.y9_c00379{bottom:885.793408px;}
.y8_c00379{bottom:916.150285px;}
.y7_c00379{bottom:946.507161px;}
.y6_c00379{bottom:976.864038px;}
.y5_c00379{bottom:1007.220915px;}
.y4_c00379{bottom:1037.577792px;}
.y3_c00379{bottom:1067.934668px;}
.y15_c00379{bottom:1116.465281px;}
.y2_c00379{bottom:1200.662313px;}
.h3_c00379{height:43.410487px;}
.h6_c00379{height:55.092790px;}
.h4_c00379{height:55.127245px;}
.h5_c00379{height:91.738684px;}
.h2_c00379{height:1304.999946px;}
.h0_c00379{height:1304.999953px;}
.h1_c00379{height:1305.000000px;}
.w2_c00379{width:934.874961px;}
.w0_c00379{width:934.875000px;}
.w1_c00379{width:935.250000px;}
.x0_c00379{left:0.000000px;}
.x3_c00379{left:87.850202px;}
.x2_c00379{left:89.434062px;}
.x4_c00379{left:451.985828px;}
.x1_c00379{left:778.584252px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls0_c00379{letter-spacing:0.000000pt;}
.ws1_c00379{word-spacing:-16.615081pt;}
.ws2_c00379{word-spacing:-16.604696pt;}
.ws0_c00379{word-spacing:-0.053288pt;}
.ws3_c00379{word-spacing:0.000000pt;}
._0_c00379{width:1.254929pt;}
._7_c00379{width:2.560972pt;}
._5_c00379{width:4.239413pt;}
._1_c00379{width:5.975558pt;}
._c_c00379{width:6.925136pt;}
._3_c00379{width:8.107645pt;}
._9_c00379{width:10.077295pt;}
._b_c00379{width:11.035037pt;}
._8_c00379{width:14.106931pt;}
._a_c00379{width:15.589448pt;}
._f_c00379{width:18.239111pt;}
._4_c00379{width:19.950551pt;}
._d_c00379{width:23.997026pt;}
._6_c00379{width:30.213165pt;}
._10_c00379{width:35.653700pt;}
._2_c00379{width:44.236041pt;}
._e_c00379{width:51.381798pt;}
.fs0_c00379{font-size:53.288186pt;}
.fs3_c00379{font-size:63.921837pt;}
.fs1_c00379{font-size:63.961814pt;}
.fs2_c00379{font-size:106.576373pt;}
.y0_c00379{bottom:0.000000pt;}
.y1_c00379{bottom:0.000007pt;}
.y22_c00379{bottom:26.805533pt;}
.y21_c00379{bottom:133.197492pt;}
.y20_c00379{bottom:160.181382pt;}
.y1f_c00379{bottom:187.165273pt;}
.y1e_c00379{bottom:214.149163pt;}
.y1d_c00379{bottom:241.133054pt;}
.y1c_c00379{bottom:284.863846pt;}
.y1b_c00379{bottom:311.847737pt;}
.y1a_c00379{bottom:338.831627pt;}
.y19_c00379{bottom:365.815518pt;}
.y18_c00379{bottom:392.799408pt;}
.y17_c00379{bottom:419.783298pt;}
.y16_c00379{bottom:446.767189pt;}
.y14_c00379{bottom:490.549123pt;}
.y13_c00379{bottom:517.533013pt;}
.y12_c00379{bottom:544.516904pt;}
.y11_c00379{bottom:571.500794pt;}
.y10_c00379{bottom:598.484685pt;}
.yf_c00379{bottom:625.468575pt;}
.ye_c00379{bottom:652.452466pt;}
.yd_c00379{bottom:679.436356pt;}
.yc_c00379{bottom:706.420247pt;}
.yb_c00379{bottom:733.404137pt;}
.ya_c00379{bottom:760.388028pt;}
.y9_c00379{bottom:787.371918pt;}
.y8_c00379{bottom:814.355809pt;}
.y7_c00379{bottom:841.339699pt;}
.y6_c00379{bottom:868.323589pt;}
.y5_c00379{bottom:895.307480pt;}
.y4_c00379{bottom:922.291370pt;}
.y3_c00379{bottom:949.275261pt;}
.y15_c00379{bottom:992.413583pt;}
.y2_c00379{bottom:1067.255390pt;}
.h3_c00379{height:38.587100pt;}
.h6_c00379{height:48.971369pt;}
.h4_c00379{height:49.001996pt;}
.h5_c00379{height:81.545497pt;}
.h2_c00379{height:1159.999952pt;}
.h0_c00379{height:1159.999959pt;}
.h1_c00379{height:1160.000000pt;}
.w2_c00379{width:830.999965pt;}
.w0_c00379{width:831.000000pt;}
.w1_c00379{width:831.333333pt;}
.x0_c00379{left:0.000000pt;}
.x3_c00379{left:78.089069pt;}
.x2_c00379{left:79.496944pt;}
.x4_c00379{left:401.765180pt;}
.x1_c00379{left:692.074890pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_17e435c9f6c016b7718d038b.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.006348;font-style:normal;font-weight:normal;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_3c6a35f3098c4a6f889603a2.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:0.964355;font-style:normal;font-weight:normal;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_fa1b079a0ad4e38501a095dc.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:0.775879;font-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_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);}
.v0_c00380{vertical-align:0.000000px;}
.ls0_c00380{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00380{word-spacing:-18.680283px;}
.ws0_c00380{word-spacing:-0.059949px;}
.ws2_c00380{word-spacing:0.000000px;}
._8_c00380{width:1.054058px;}
._9_c00380{width:2.219427px;}
._0_c00380{width:3.753572px;}
._7_c00380{width:5.291358px;}
._b_c00380{width:6.490897px;}
._f_c00380{width:7.734491px;}
._5_c00380{width:8.862874px;}
._6_c00380{width:10.531800px;}
._a_c00380{width:11.625311px;}
._3_c00380{width:12.924360px;}
._e_c00380{width:14.574756px;}
._4_c00380{width:16.437407px;}
._c_c00380{width:23.438385px;}
._2_c00380{width:24.454152px;}
._1_c00380{width:26.021167px;}
._d_c00380{width:30.976479px;}
.fc2_c00380{color:rgb(194,158,103);}
.fc1_c00380{color:rgb(159,130,85);}
.fc0_c00380{color:rgb(0,0,0);}
.fs1_c00380{font-size:59.949210px;}
.fs3_c00380{font-size:71.912067px;}
.fs0_c00380{font-size:71.957041px;}
.fs2_c00380{font-size:119.898420px;}
.y0_c00380{bottom:0.000000px;}
.y1_c00380{bottom:0.000008px;}
.y22_c00380{bottom:30.156225px;}
.y1b_c00380{bottom:91.112839px;}
.y1a_c00380{bottom:121.469716px;}
.y19_c00380{bottom:151.826593px;}
.y18_c00380{bottom:182.183470px;}
.y17_c00380{bottom:212.540347px;}
.y16_c00380{bottom:242.897223px;}
.y15_c00380{bottom:303.610977px;}
.y14_c00380{bottom:333.967854px;}
.y13_c00380{bottom:364.324730px;}
.y12_c00380{bottom:394.681607px;}
.y11_c00380{bottom:425.038484px;}
.y10_c00380{bottom:455.395361px;}
.yf_c00380{bottom:485.752237px;}
.ye_c00380{bottom:516.109114px;}
.yd_c00380{bottom:576.822868px;}
.yc_c00380{bottom:607.179744px;}
.yb_c00380{bottom:637.536621px;}
.ya_c00380{bottom:667.893498px;}
.y9_c00380{bottom:698.250375px;}
.y8_c00380{bottom:728.607252px;}
.y7_c00380{bottom:758.964128px;}
.y6_c00380{bottom:789.321005px;}
.y5_c00380{bottom:819.677882px;}
.y4_c00380{bottom:850.034759px;}
.y3_c00380{bottom:880.391635px;}
.y2_c00380{bottom:910.748512px;}
.y1d_c00380{bottom:969.008430px;}
.y21_c00380{bottom:1042.102598px;}
.y20_c00380{bottom:1072.459475px;}
.y1f_c00380{bottom:1102.816352px;}
.y1e_c00380{bottom:1133.173228px;}
.y1c_c00380{bottom:1200.662313px;}
.h4_c00380{height:43.410487px;}
.h6_c00380{height:55.092790px;}
.h3_c00380{height:55.127245px;}
.h5_c00380{height:91.855772px;}
.h2_c00380{height:1304.999946px;}
.h0_c00380{height:1304.999953px;}
.h1_c00380{height:1305.000000px;}
.w2_c00380{width:934.874961px;}
.w0_c00380{width:934.875000px;}
.w1_c00380{width:935.250000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:87.850202px;}
.x3_c00380{left:451.985828px;}
.x2_c00380{left:778.584252px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.000000pt;}
.ws1_c00380{word-spacing:-16.604696pt;}
.ws0_c00380{word-spacing:-0.053288pt;}
.ws2_c00380{word-spacing:0.000000pt;}
._8_c00380{width:0.936940pt;}
._9_c00380{width:1.972824pt;}
._0_c00380{width:3.336509pt;}
._7_c00380{width:4.703429pt;}
._b_c00380{width:5.769687pt;}
._f_c00380{width:6.875103pt;}
._5_c00380{width:7.878110pt;}
._6_c00380{width:9.361600pt;}
._a_c00380{width:10.333609pt;}
._3_c00380{width:11.488320pt;}
._e_c00380{width:12.955338pt;}
._4_c00380{width:14.611028pt;}
._c_c00380{width:20.834120pt;}
._2_c00380{width:21.737024pt;}
._1_c00380{width:23.129926pt;}
._d_c00380{width:27.534648pt;}
.fs1_c00380{font-size:53.288186pt;}
.fs3_c00380{font-size:63.921837pt;}
.fs0_c00380{font-size:63.961814pt;}
.fs2_c00380{font-size:106.576373pt;}
.y0_c00380{bottom:0.000000pt;}
.y1_c00380{bottom:0.000007pt;}
.y22_c00380{bottom:26.805533pt;}
.y1b_c00380{bottom:80.989191pt;}
.y1a_c00380{bottom:107.973081pt;}
.y19_c00380{bottom:134.956972pt;}
.y18_c00380{bottom:161.940862pt;}
.y17_c00380{bottom:188.924752pt;}
.y16_c00380{bottom:215.908643pt;}
.y15_c00380{bottom:269.876424pt;}
.y14_c00380{bottom:296.860314pt;}
.y13_c00380{bottom:323.844205pt;}
.y12_c00380{bottom:350.828095pt;}
.y11_c00380{bottom:377.811986pt;}
.y10_c00380{bottom:404.795876pt;}
.yf_c00380{bottom:431.779767pt;}
.ye_c00380{bottom:458.763657pt;}
.yd_c00380{bottom:512.731438pt;}
.yc_c00380{bottom:539.715328pt;}
.yb_c00380{bottom:566.699219pt;}
.ya_c00380{bottom:593.683109pt;}
.y9_c00380{bottom:620.667000pt;}
.y8_c00380{bottom:647.650890pt;}
.y7_c00380{bottom:674.634781pt;}
.y6_c00380{bottom:701.618671pt;}
.y5_c00380{bottom:728.602562pt;}
.y4_c00380{bottom:755.586452pt;}
.y3_c00380{bottom:782.570343pt;}
.y2_c00380{bottom:809.554233pt;}
.y1d_c00380{bottom:861.340827pt;}
.y21_c00380{bottom:926.313421pt;}
.y20_c00380{bottom:953.297311pt;}
.y1f_c00380{bottom:980.281202pt;}
.y1e_c00380{bottom:1007.265092pt;}
.y1c_c00380{bottom:1067.255390pt;}
.h4_c00380{height:38.587100pt;}
.h6_c00380{height:48.971369pt;}
.h3_c00380{height:49.001996pt;}
.h5_c00380{height:81.649575pt;}
.h2_c00380{height:1159.999952pt;}
.h0_c00380{height:1159.999959pt;}
.h1_c00380{height:1160.000000pt;}
.w2_c00380{width:830.999965pt;}
.w0_c00380{width:831.000000pt;}
.w1_c00380{width:831.333333pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:78.089069pt;}
.x3_c00380{left:401.765180pt;}
.x2_c00380{left:692.074890pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea9697ca88f0d32f016039a4.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.006348;font-style:normal;font-weight:normal;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_3747787242848289ec5b0de6.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:0.997070;font-style:normal;font-weight:normal;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_af24c93efcc5d6409d693242.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:0.727051;font-style:normal;font-weight:normal;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_d5ecc0fe1895419a95fcdcb6.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.000000;font-style:normal;font-weight: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_7de0a8315b99a322a8e14573.woff2')format("woff");}.ff5_c00381{font-family:ff5_c00381;line-height:1.000000;font-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_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);}
.v0_c00381{vertical-align:0.000000px;}
.ls0_c00381{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00381{word-spacing:-18.680283px;}
.ws0_c00381{word-spacing:-0.119898px;}
.ws2_c00381{word-spacing:-0.059949px;}
.ws3_c00381{word-spacing:0.000000px;}
._5_c00381{width:1.001356px;}
._6_c00381{width:2.852957px;}
._9_c00381{width:10.420078px;}
._8_c00381{width:11.694586px;}
._7_c00381{width:12.760689px;}
._4_c00381{width:13.822163px;}
._3_c00381{width:16.660501px;}
._0_c00381{width:19.724886px;}
._b_c00381{width:23.783355px;}
._1_c00381{width:27.433580px;}
._c_c00381{width:29.960850px;}
._2_c00381{width:31.033986px;}
._a_c00381{width:36.567036px;}
.fc1_c00381{color:rgb(194,158,103);}
.fc2_c00381{color:rgb(255,255,255);}
.fc0_c00381{color:rgb(0,0,0);}
.fs3_c00381{font-size:59.949210px;}
.fs2_c00381{font-size:71.912067px;}
.fs0_c00381{font-size:71.957041px;}
.fs1_c00381{font-size:119.898420px;}
.y0_c00381{bottom:0.000000px;}
.y1_c00381{bottom:0.000008px;}
.y11_c00381{bottom:30.156225px;}
.yf_c00381{bottom:125.879369px;}
.ye_c00381{bottom:156.236246px;}
.yd_c00381{bottom:186.593122px;}
.yc_c00381{bottom:216.949999px;}
.yb_c00381{bottom:247.306876px;}
.ya_c00381{bottom:277.663753px;}
.y9_c00381{bottom:308.020629px;}
.y8_c00381{bottom:338.377506px;}
.y7_c00381{bottom:368.734383px;}
.y6_c00381{bottom:399.091260px;}
.y5_c00381{bottom:429.448137px;}
.y4_c00381{bottom:459.805013px;}
.y3_c00381{bottom:490.161890px;}
.y2_c00381{bottom:520.518767px;}
.y10_c00381{bottom:569.519309px;}
.y12_c00381{bottom:655.710381px;}
.y13_c00381{bottom:676.107368px;}
.h6_c00381{height:45.547349px;}
.h5_c00381{height:55.092790px;}
.h3_c00381{height:55.127245px;}
.h4_c00381{height:90.743433px;}
.h2_c00381{height:1304.999946px;}
.h0_c00381{height:1304.999953px;}
.h1_c00381{height:1305.000000px;}
.w2_c00381{width:934.874961px;}
.w0_c00381{width:934.875000px;}
.w1_c00381{width:935.250000px;}
.x0_c00381{left:0.000000px;}
.x1_c00381{left:87.850202px;}
.x2_c00381{left:451.985828px;}
.x4_c00381{left:524.656735px;}
.x3_c00381{left:525.886470px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws1_c00381{word-spacing:-16.604696pt;}
.ws0_c00381{word-spacing:-0.106576pt;}
.ws2_c00381{word-spacing:-0.053288pt;}
.ws3_c00381{word-spacing:0.000000pt;}
._5_c00381{width:0.890095pt;}
._6_c00381{width:2.535961pt;}
._9_c00381{width:9.262292pt;}
._8_c00381{width:10.395187pt;}
._7_c00381{width:11.342834pt;}
._4_c00381{width:12.286367pt;}
._3_c00381{width:14.809334pt;}
._0_c00381{width:17.533232pt;}
._b_c00381{width:21.140760pt;}
._1_c00381{width:24.385405pt;}
._c_c00381{width:26.631867pt;}
._2_c00381{width:27.585766pt;}
._a_c00381{width:32.504032pt;}
.fs3_c00381{font-size:53.288186pt;}
.fs2_c00381{font-size:63.921837pt;}
.fs0_c00381{font-size:63.961814pt;}
.fs1_c00381{font-size:106.576373pt;}
.y0_c00381{bottom:0.000000pt;}
.y1_c00381{bottom:0.000007pt;}
.y11_c00381{bottom:26.805533pt;}
.yf_c00381{bottom:111.892772pt;}
.ye_c00381{bottom:138.876663pt;}
.yd_c00381{bottom:165.860553pt;}
.yc_c00381{bottom:192.844444pt;}
.yb_c00381{bottom:219.828334pt;}
.ya_c00381{bottom:246.812225pt;}
.y9_c00381{bottom:273.796115pt;}
.y8_c00381{bottom:300.780006pt;}
.y7_c00381{bottom:327.763896pt;}
.y6_c00381{bottom:354.747786pt;}
.y5_c00381{bottom:381.731677pt;}
.y4_c00381{bottom:408.715567pt;}
.y3_c00381{bottom:435.699458pt;}
.y2_c00381{bottom:462.683348pt;}
.y10_c00381{bottom:506.239385pt;}
.y12_c00381{bottom:582.853672pt;}
.y13_c00381{bottom:600.984327pt;}
.h6_c00381{height:40.486532pt;}
.h5_c00381{height:48.971369pt;}
.h3_c00381{height:49.001996pt;}
.h4_c00381{height:80.660829pt;}
.h2_c00381{height:1159.999952pt;}
.h0_c00381{height:1159.999959pt;}
.h1_c00381{height:1160.000000pt;}
.w2_c00381{width:830.999965pt;}
.w0_c00381{width:831.000000pt;}
.w1_c00381{width:831.333333pt;}
.x0_c00381{left:0.000000pt;}
.x1_c00381{left:78.089069pt;}
.x2_c00381{left:401.765180pt;}
.x4_c00381{left:466.361542pt;}
.x3_c00381{left:467.454640pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_052222408330a8257ac1aa0f.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.000000;font-style:normal;font-weight:normal;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_a2d5e93c65fa7d62ce2adc8c.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:0.727051;font-style:normal;font-weight:normal;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_21eab032e1fee07878405879.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.171387;font-style:normal;font-weight:normal;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_1242e992bb309b679c012683.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.171387;font-style:normal;font-weight: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_2d7deaa08558454454a2b37f.woff2')format("woff");}.ff5_c00382{font-family:ff5_c00382;line-height:0.713867;font-style:normal;font-weight: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_c00382;src:url('chunks/assets/font_3c6a35f3098c4a6f889603a2.woff2')format("woff");}.ff6_c00382{font-family:ff6_c00382;line-height:0.964355;font-style:normal;font-weight: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_c00382;src:url('chunks/assets/font_9e6475dbc48e0b1a586385ab.woff2')format("woff");}.ff7_c00382{font-family:ff7_c00382;line-height:1.005371;font-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_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);}
.v0_c00382{vertical-align:0.000000px;}
.v1_c00382{vertical-align:2.199312px;}
.ls4_c00382{letter-spacing:0.000000px;}
.ls1_c00382{letter-spacing:0.051122px;}
.ls2_c00382{letter-spacing:3.119222px;}
.ls3_c00382{letter-spacing:8.432465px;}
.ls0_c00382{letter-spacing:712.304083px;}
.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;}
}
.ws2_c00382{word-spacing:-18.691966px;}
.ws3_c00382{word-spacing:-18.680283px;}
.ws0_c00382{word-spacing:-15.572744px;}
.ws1_c00382{word-spacing:-0.059949px;}
.ws4_c00382{word-spacing:0.000000px;}
._f_c00382{width:1.323404px;}
._1_c00382{width:3.069573px;}
._3_c00382{width:4.145962px;}
._5_c00382{width:5.354561px;}
._c_c00382{width:6.640566px;}
._e_c00382{width:8.334059px;}
._6_c00382{width:10.528846px;}
._10_c00382{width:12.168541px;}
._12_c00382{width:14.089247px;}
._7_c00382{width:15.670334px;}
._14_c00382{width:20.139509px;}
._2_c00382{width:21.924410px;}
._b_c00382{width:23.083873px;}
._19_c00382{width:24.717666px;}
._1a_c00382{width:26.404159px;}
._16_c00382{width:29.390655px;}
._d_c00382{width:31.006878px;}
._17_c00382{width:32.060935px;}
._0_c00382{width:35.785994px;}
._11_c00382{width:39.720425px;}
._1f_c00382{width:41.688005px;}
._1b_c00382{width:44.077202px;}
._1d_c00382{width:50.647498px;}
._4_c00382{width:56.515086px;}
._8_c00382{width:64.385389px;}
._18_c00382{width:68.302975px;}
._15_c00382{width:80.600320px;}
._13_c00382{width:82.567893px;}
._1e_c00382{width:89.805762px;}
._1c_c00382{width:107.654479px;}
._9_c00382{width:109.586919px;}
._a_c00382{width:146.689770px;}
.fc3_c00382{color:rgb(194,158,103);}
.fc2_c00382{color:rgb(0,0,0);}
.fc1_c00382{color:rgb(67,91,56);}
.fc0_c00382{color:rgb(159,130,85);}
.fs0_c00382{font-size:52.347328px;}
.fs1_c00382{font-size:59.949210px;}
.fs4_c00382{font-size:71.912067px;}
.fs3_c00382{font-size:71.957041px;}
.fs2_c00382{font-size:119.898420px;}
.y0_c00382{bottom:0.000000px;}
.y1_c00382{bottom:0.000008px;}
.y35_c00382{bottom:30.156225px;}
.y7_c00382{bottom:91.422703px;}
.y6_c00382{bottom:116.157936px;}
.y5_c00382{bottom:140.893169px;}
.y34_c00382{bottom:174.020669px;}
.y4_c00382{bottom:179.487255px;}
.y2_c00382{bottom:179.936283px;}
.y33_c00382{bottom:203.253217px;}
.y32_c00382{bottom:232.485765px;}
.y31_c00382{bottom:261.718313px;}
.y30_c00382{bottom:290.950861px;}
.y3_c00382{bottom:307.273822px;}
.y2f_c00382{bottom:320.183409px;}
.y2e_c00382{bottom:349.415957px;}
.y2d_c00382{bottom:378.648505px;}
.y2c_c00382{bottom:407.881053px;}
.y29_c00382{bottom:421.997029px;}
.y2b_c00382{bottom:437.113601px;}
.y28_c00382{bottom:451.229577px;}
.y2a_c00382{bottom:466.346149px;}
.y27_c00382{bottom:480.462125px;}
.y26_c00382{bottom:509.694673px;}
.y13_c00382{bottom:531.172689px;}
.y25_c00382{bottom:538.927221px;}
.y12_c00382{bottom:560.405237px;}
.y24_c00382{bottom:568.159769px;}
.y11_c00382{bottom:589.637785px;}
.y23_c00382{bottom:597.392317px;}
.y10_c00382{bottom:618.870333px;}
.y22_c00382{bottom:626.624865px;}
.yf_c00382{bottom:648.102881px;}
.y21_c00382{bottom:655.857413px;}
.ye_c00382{bottom:677.335429px;}
.y20_c00382{bottom:685.089961px;}
.yd_c00382{bottom:706.567977px;}
.y1f_c00382{bottom:714.322509px;}
.yc_c00382{bottom:735.800525px;}
.yb_c00382{bottom:765.033073px;}
.y1e_c00382{bottom:771.394525px;}
.ya_c00382{bottom:794.265621px;}
.y1d_c00382{bottom:800.627073px;}
.y1c_c00382{bottom:829.859621px;}
.y1b_c00382{bottom:859.092169px;}
.y1a_c00382{bottom:888.324717px;}
.y19_c00382{bottom:917.557265px;}
.y18_c00382{bottom:946.789813px;}
.y17_c00382{bottom:976.022361px;}
.y16_c00382{bottom:1005.254909px;}
.y15_c00382{bottom:1034.487457px;}
.y14_c00382{bottom:1063.720005px;}
.y8_c00382{bottom:1118.624820px;}
.y9_c00382{bottom:1200.662313px;}
.h3_c00382{height:39.771701px;}
.h4_c00382{height:41.971012px;}
.h7_c00382{height:43.410487px;}
.h5_c00382{height:55.821847px;}
.h9_c00382{height:66.961090px;}
.h8_c00382{height:67.002968px;}
.h6_c00382{height:111.643695px;}
.h2_c00382{height:1304.999946px;}
.h0_c00382{height:1304.999953px;}
.h1_c00382{height:1305.000000px;}
.w2_c00382{width:934.874961px;}
.w0_c00382{width:934.875000px;}
.w1_c00382{width:935.250000px;}
.x0_c00382{left:0.000000px;}
.x5_c00382{left:87.850202px;}
.x7_c00382{left:451.985828px;}
.x4_c00382{left:469.021315px;}
.x2_c00382{left:625.216798px;}
.x1_c00382{left:627.825034px;}
.x6_c00382{left:778.584252px;}
.x3_c00382{left:812.321966px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.v1_c00382{vertical-align:1.954944pt;}
.ls4_c00382{letter-spacing:0.000000pt;}
.ls1_c00382{letter-spacing:0.045442pt;}
.ls2_c00382{letter-spacing:2.772641pt;}
.ls3_c00382{letter-spacing:7.495525pt;}
.ls0_c00382{letter-spacing:633.159185pt;}
.ws2_c00382{word-spacing:-16.615081pt;}
.ws3_c00382{word-spacing:-16.604696pt;}
.ws0_c00382{word-spacing:-13.842439pt;}
.ws1_c00382{word-spacing:-0.053288pt;}
.ws4_c00382{word-spacing:0.000000pt;}
._f_c00382{width:1.176359pt;}
._1_c00382{width:2.728509pt;}
._3_c00382{width:3.685299pt;}
._5_c00382{width:4.759609pt;}
._c_c00382{width:5.902725pt;}
._e_c00382{width:7.408053pt;}
._6_c00382{width:9.358974pt;}
._10_c00382{width:10.816481pt;}
._12_c00382{width:12.523775pt;}
._7_c00382{width:13.929186pt;}
._14_c00382{width:17.901786pt;}
._2_c00382{width:19.488364pt;}
._b_c00382{width:20.518998pt;}
._19_c00382{width:21.971258pt;}
._1a_c00382{width:23.470364pt;}
._16_c00382{width:26.125027pt;}
._d_c00382{width:27.561669pt;}
._17_c00382{width:28.498609pt;}
._0_c00382{width:31.809773pt;}
._11_c00382{width:35.307045pt;}
._1f_c00382{width:37.056004pt;}
._1b_c00382{width:39.179735pt;}
._1d_c00382{width:45.019998pt;}
._4_c00382{width:50.235632pt;}
._8_c00382{width:57.231457pt;}
._18_c00382{width:60.713755pt;}
._15_c00382{width:71.644729pt;}
._13_c00382{width:73.393683pt;}
._1e_c00382{width:79.827344pt;}
._1c_c00382{width:95.692871pt;}
._9_c00382{width:97.410594pt;}
._a_c00382{width:130.390907pt;}
.fs0_c00382{font-size:46.530958pt;}
.fs1_c00382{font-size:53.288186pt;}
.fs4_c00382{font-size:63.921837pt;}
.fs3_c00382{font-size:63.961814pt;}
.fs2_c00382{font-size:106.576373pt;}
.y0_c00382{bottom:0.000000pt;}
.y1_c00382{bottom:0.000007pt;}
.y35_c00382{bottom:26.805533pt;}
.y7_c00382{bottom:81.264625pt;}
.y6_c00382{bottom:103.251499pt;}
.y5_c00382{bottom:125.238373pt;}
.y34_c00382{bottom:154.685039pt;}
.y4_c00382{bottom:159.544227pt;}
.y2_c00382{bottom:159.943363pt;}
.y33_c00382{bottom:180.669526pt;}
.y32_c00382{bottom:206.654013pt;}
.y31_c00382{bottom:232.638501pt;}
.y30_c00382{bottom:258.622988pt;}
.y3_c00382{bottom:273.132286pt;}
.y2f_c00382{bottom:284.607475pt;}
.y2e_c00382{bottom:310.591962pt;}
.y2d_c00382{bottom:336.576449pt;}
.y2c_c00382{bottom:362.560936pt;}
.y29_c00382{bottom:375.108470pt;}
.y2b_c00382{bottom:388.545423pt;}
.y28_c00382{bottom:401.092957pt;}
.y2a_c00382{bottom:414.529910pt;}
.y27_c00382{bottom:427.077444pt;}
.y26_c00382{bottom:453.061931pt;}
.y13_c00382{bottom:472.153501pt;}
.y25_c00382{bottom:479.046418pt;}
.y12_c00382{bottom:498.137988pt;}
.y24_c00382{bottom:505.030906pt;}
.y11_c00382{bottom:524.122476pt;}
.y23_c00382{bottom:531.015393pt;}
.y10_c00382{bottom:550.106963pt;}
.y22_c00382{bottom:556.999880pt;}
.yf_c00382{bottom:576.091450pt;}
.y21_c00382{bottom:582.984367pt;}
.ye_c00382{bottom:602.075937pt;}
.y20_c00382{bottom:608.968854pt;}
.yd_c00382{bottom:628.060424pt;}
.y1f_c00382{bottom:634.953341pt;}
.yc_c00382{bottom:654.044911pt;}
.yb_c00382{bottom:680.029398pt;}
.y1e_c00382{bottom:685.684022pt;}
.ya_c00382{bottom:706.013885pt;}
.y1d_c00382{bottom:711.668509pt;}
.y1c_c00382{bottom:737.652996pt;}
.y1b_c00382{bottom:763.637483pt;}
.y1a_c00382{bottom:789.621970pt;}
.y19_c00382{bottom:815.606457pt;}
.y18_c00382{bottom:841.590945pt;}
.y17_c00382{bottom:867.575432pt;}
.y16_c00382{bottom:893.559919pt;}
.y15_c00382{bottom:919.544406pt;}
.y14_c00382{bottom:945.528893pt;}
.y8_c00382{bottom:994.333173pt;}
.y9_c00382{bottom:1067.255390pt;}
.h3_c00382{height:35.352623pt;}
.h4_c00382{height:37.307567pt;}
.h7_c00382{height:38.587100pt;}
.h5_c00382{height:49.619420pt;}
.h9_c00382{height:59.520969pt;}
.h8_c00382{height:59.558193pt;}
.h6_c00382{height:99.238840pt;}
.h2_c00382{height:1159.999952pt;}
.h0_c00382{height:1159.999959pt;}
.h1_c00382{height:1160.000000pt;}
.w2_c00382{width:830.999965pt;}
.w0_c00382{width:831.000000pt;}
.w1_c00382{width:831.333333pt;}
.x0_c00382{left:0.000000pt;}
.x5_c00382{left:78.089069pt;}
.x7_c00382{left:401.765180pt;}
.x4_c00382{left:416.907835pt;}
.x2_c00382{left:555.748265pt;}
.x1_c00382{left:558.066697pt;}
.x6_c00382{left:692.074890pt;}
.x3_c00382{left:722.063970pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96f15b23bc5741bfb82eb73d.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.006348;font-style:normal;font-weight:normal;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_9215444c481820ca0b361d53.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.006348;font-style:normal;font-weight:normal;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_3c6a35f3098c4a6f889603a2.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:0.964355;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00383;src:url('chunks/assets/font_7bdc7527136e78160b8febc1.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.006348;font-style:normal;font-weight: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_c00383;src:url('chunks/assets/font_389197e7b87f6857d12f05de.woff2')format("woff");}.ff5_c00383{font-family:ff5_c00383;line-height:1.000000;font-style:normal;font-weight: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_c00383;src:url('chunks/assets/font_8d55f554782dd356d0218e22.woff2')format("woff");}.ff6_c00383{font-family:ff6_c00383;line-height:1.000000;font-style:normal;font-weight: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_c00383;src:url('chunks/assets/font_9674c0b862173ef9221a895d.woff2')format("woff");}.ff7_c00383{font-family:ff7_c00383;line-height:1.006348;font-style:normal;font-weight: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_c00383;src:url('chunks/assets/font_ef75ac09ec0bee8008350615.woff2')format("woff");}.ff8_c00383{font-family:ff8_c00383;line-height:0.713867;font-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_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;}
.ls6_c00383{letter-spacing:0.000000px;}
.ls4_c00383{letter-spacing:0.052703px;}
.ls1_c00383{letter-spacing:3.197310px;}
.ls5_c00383{letter-spacing:25.754156px;}
.ls3_c00383{letter-spacing:27.510897px;}
.ls2_c00383{letter-spacing:27.510919px;}
.ls0_c00383{letter-spacing:28.916330px;}
.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:-18.691966px;}
.ws3_c00383{word-spacing:-18.680283px;}
.ws2_c00383{word-spacing:-14.018975px;}
.ws0_c00383{word-spacing:-0.059949px;}
.ws4_c00383{word-spacing:0.000000px;}
._1b_c00383{width:2.280397px;}
._6_c00383{width:4.114223px;}
._c_c00383{width:5.888656px;}
._7_c00383{width:7.603554px;}
._5_c00383{width:8.887942px;}
._9_c00383{width:11.115333px;}
._d_c00383{width:14.492080px;}
._2_c00383{width:16.239482px;}
._14_c00383{width:17.258417px;}
._b_c00383{width:18.729943px;}
._8_c00383{width:22.287037px;}
._1_c00383{width:23.634198px;}
._4_c00383{width:25.604369px;}
._1c_c00383{width:27.503852px;}
._1a_c00383{width:28.898763px;}
._18_c00383{width:31.446071px;}
._3_c00383{width:34.322876px;}
._13_c00383{width:36.018663px;}
._19_c00383{width:39.808260px;}
._16_c00383{width:41.073140px;}
._e_c00383{width:42.338004px;}
._0_c00383{width:45.080769px;}
._a_c00383{width:47.698867px;}
._f_c00383{width:52.492098px;}
._17_c00383{width:53.883441px;}
._10_c00383{width:68.759730px;}
._12_c00383{width:82.673296px;}
._11_c00383{width:84.008442px;}
._15_c00383{width:147.661821px;}
.fc4_c00383{color:rgb(194,158,103);}
.fc3_c00383{color:rgb(137,99,42);}
.fc1_c00383{color:rgb(159,130,85);}
.fc2_c00383{color:rgb(0,0,0);}
.fc0_c00383{color:rgb(255,255,255);}
.fs1_c00383{font-size:50.705825px;}
.fs5_c00383{font-size:53.967781px;}
.fs2_c00383{font-size:59.949210px;}
.fs0_c00383{font-size:68.598383px;}
.fs8_c00383{font-size:71.912067px;}
.fs3_c00383{font-size:71.957041px;}
.fs4_c00383{font-size:119.898420px;}
.fs6_c00383{font-size:139.971596px;}
.fs7_c00383{font-size:140.264930px;}
.y0_c00383{bottom:0.000000px;}
.y1_c00383{bottom:0.000008px;}
.y31_c00383{bottom:30.156225px;}
.y2c_c00383{bottom:76.234722px;}
.y2b_c00383{bottom:94.223982px;}
.y2a_c00383{bottom:112.213242px;}
.y29_c00383{bottom:130.202503px;}
.y11_c00383{bottom:135.139669px;}
.y28_c00383{bottom:148.191763px;}
.y10_c00383{bottom:151.306193px;}
.y27_c00383{bottom:166.181023px;}
.yf_c00383{bottom:167.472716px;}
.ye_c00383{bottom:183.639240px;}
.yd_c00383{bottom:199.805763px;}
.yc_c00383{bottom:215.972286px;}
.yb_c00383{bottom:232.138810px;}
.ya_c00383{bottom:248.305333px;}
.y9_c00383{bottom:264.471857px;}
.y8_c00383{bottom:280.638380px;}
.y7_c00383{bottom:296.804903px;}
.y6_c00383{bottom:312.971427px;}
.y5_c00383{bottom:329.137950px;}
.y4_c00383{bottom:345.304473px;}
.y3_c00383{bottom:361.470997px;}
.y30_c00383{bottom:364.549180px;}
.y2_c00383{bottom:394.267935px;}
.y25_c00383{bottom:471.572513px;}
.y24_c00383{bottom:501.929390px;}
.y23_c00383{bottom:532.286267px;}
.y22_c00383{bottom:562.643143px;}
.y21_c00383{bottom:593.000020px;}
.y2f_c00383{bottom:598.841166px;}
.y20_c00383{bottom:623.356897px;}
.y1f_c00383{bottom:653.713774px;}
.y1e_c00383{bottom:684.070650px;}
.y1d_c00383{bottom:714.427527px;}
.y1c_c00383{bottom:744.784404px;}
.y1b_c00383{bottom:775.141281px;}
.y1a_c00383{bottom:805.498158px;}
.y2e_c00383{bottom:833.188668px;}
.y19_c00383{bottom:835.855034px;}
.y18_c00383{bottom:866.211911px;}
.y17_c00383{bottom:896.568788px;}
.y16_c00383{bottom:926.925665px;}
.y15_c00383{bottom:957.282541px;}
.y14_c00383{bottom:987.639418px;}
.y13_c00383{bottom:1017.996295px;}
.y2d_c00383{bottom:1062.443427px;}
.y26_c00383{bottom:1078.376310px;}
.y12_c00383{bottom:1200.662313px;}
.h4_c00383{height:38.846406px;}
.h8_c00383{height:41.345434px;}
.h5_c00383{height:43.410487px;}
.h3_c00383{height:52.554132px;}
.hb_c00383{height:55.092790px;}
.h6_c00383{height:55.127245px;}
.h7_c00383{height:91.855772px;}
.h9_c00383{height:107.234099px;}
.ha_c00383{height:107.458825px;}
.h2_c00383{height:1304.999946px;}
.h0_c00383{height:1304.999953px;}
.h1_c00383{height:1305.000000px;}
.w2_c00383{width:934.874961px;}
.w0_c00383{width:934.875000px;}
.w1_c00383{width:935.250000px;}
.x0_c00383{left:0.000000px;}
.x4_c00383{left:88.607617px;}
.x2_c00383{left:132.383072px;}
.x1_c00383{left:158.113544px;}
.x7_c00383{left:451.985828px;}
.x5_c00383{left:577.856752px;}
.x6_c00383{left:598.179305px;}
.x3_c00383{left:778.584252px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls6_c00383{letter-spacing:0.000000pt;}
.ls4_c00383{letter-spacing:0.046847pt;}
.ls1_c00383{letter-spacing:2.842053pt;}
.ls5_c00383{letter-spacing:22.892583pt;}
.ls3_c00383{letter-spacing:24.454131pt;}
.ls2_c00383{letter-spacing:24.454150pt;}
.ls0_c00383{letter-spacing:25.703405pt;}
.ws1_c00383{word-spacing:-16.615081pt;}
.ws3_c00383{word-spacing:-16.604696pt;}
.ws2_c00383{word-spacing:-12.461311pt;}
.ws0_c00383{word-spacing:-0.053288pt;}
.ws4_c00383{word-spacing:0.000000pt;}
._1b_c00383{width:2.027020pt;}
._6_c00383{width:3.657087pt;}
._c_c00383{width:5.234361pt;}
._7_c00383{width:6.758714pt;}
._5_c00383{width:7.900393pt;}
._9_c00383{width:9.880296pt;}
._d_c00383{width:12.881849pt;}
._2_c00383{width:14.435095pt;}
._14_c00383{width:15.340815pt;}
._b_c00383{width:16.648839pt;}
._8_c00383{width:19.810699pt;}
._1_c00383{width:21.008176pt;}
._4_c00383{width:22.759439pt;}
._1c_c00383{width:24.447869pt;}
._1a_c00383{width:25.687789pt;}
._18_c00383{width:27.952063pt;}
._3_c00383{width:30.509223pt;}
._13_c00383{width:32.016589pt;}
._19_c00383{width:35.385120pt;}
._16_c00383{width:36.509458pt;}
._e_c00383{width:37.633781pt;}
._0_c00383{width:40.071795pt;}
._a_c00383{width:42.398993pt;}
._f_c00383{width:46.659642pt;}
._17_c00383{width:47.896392pt;}
._10_c00383{width:61.119760pt;}
._12_c00383{width:73.487375pt;}
._11_c00383{width:74.674171pt;}
._15_c00383{width:131.254952pt;}
.fs1_c00383{font-size:45.071844pt;}
.fs5_c00383{font-size:47.971361pt;}
.fs2_c00383{font-size:53.288186pt;}
.fs0_c00383{font-size:60.976340pt;}
.fs8_c00383{font-size:63.921837pt;}
.fs3_c00383{font-size:63.961814pt;}
.fs4_c00383{font-size:106.576373pt;}
.fs6_c00383{font-size:124.419197pt;}
.fs7_c00383{font-size:124.679937pt;}
.y0_c00383{bottom:0.000000pt;}
.y1_c00383{bottom:0.000007pt;}
.y31_c00383{bottom:26.805533pt;}
.y2c_c00383{bottom:67.764197pt;}
.y2b_c00383{bottom:83.754651pt;}
.y2a_c00383{bottom:99.745104pt;}
.y29_c00383{bottom:115.735558pt;}
.y11_c00383{bottom:120.124151pt;}
.y28_c00383{bottom:131.726012pt;}
.y10_c00383{bottom:134.494394pt;}
.y27_c00383{bottom:147.716465pt;}
.yf_c00383{bottom:148.864637pt;}
.ye_c00383{bottom:163.234880pt;}
.yd_c00383{bottom:177.605123pt;}
.yc_c00383{bottom:191.975366pt;}
.yb_c00383{bottom:206.345609pt;}
.ya_c00383{bottom:220.715852pt;}
.y9_c00383{bottom:235.086095pt;}
.y8_c00383{bottom:249.456338pt;}
.y7_c00383{bottom:263.826581pt;}
.y6_c00383{bottom:278.196824pt;}
.y5_c00383{bottom:292.567067pt;}
.y4_c00383{bottom:306.937310pt;}
.y3_c00383{bottom:321.307553pt;}
.y30_c00383{bottom:324.043716pt;}
.y2_c00383{bottom:350.460386pt;}
.y25_c00383{bottom:419.175567pt;}
.y24_c00383{bottom:446.159458pt;}
.y23_c00383{bottom:473.143348pt;}
.y22_c00383{bottom:500.127239pt;}
.y21_c00383{bottom:527.111129pt;}
.y2f_c00383{bottom:532.303259pt;}
.y20_c00383{bottom:554.095019pt;}
.y1f_c00383{bottom:581.078910pt;}
.y1e_c00383{bottom:608.062800pt;}
.y1d_c00383{bottom:635.046691pt;}
.y1c_c00383{bottom:662.030581pt;}
.y1b_c00383{bottom:689.014472pt;}
.y1a_c00383{bottom:715.998362pt;}
.y2e_c00383{bottom:740.612149pt;}
.y19_c00383{bottom:742.982253pt;}
.y18_c00383{bottom:769.966143pt;}
.y17_c00383{bottom:796.950034pt;}
.y16_c00383{bottom:823.933924pt;}
.y15_c00383{bottom:850.917815pt;}
.y14_c00383{bottom:877.901705pt;}
.y13_c00383{bottom:904.885595pt;}
.y2d_c00383{bottom:944.394158pt;}
.y26_c00383{bottom:958.556720pt;}
.y12_c00383{bottom:1067.255390pt;}
.h4_c00383{height:34.530138pt;}
.h8_c00383{height:36.751497pt;}
.h5_c00383{height:38.587100pt;}
.h3_c00383{height:46.714784pt;}
.hb_c00383{height:48.971369pt;}
.h6_c00383{height:49.001996pt;}
.h7_c00383{height:81.649575pt;}
.h9_c00383{height:95.319199pt;}
.ha_c00383{height:95.518956pt;}
.h2_c00383{height:1159.999952pt;}
.h0_c00383{height:1159.999959pt;}
.h1_c00383{height:1160.000000pt;}
.w2_c00383{width:830.999965pt;}
.w0_c00383{width:831.000000pt;}
.w1_c00383{width:831.333333pt;}
.x0_c00383{left:0.000000pt;}
.x4_c00383{left:78.762326pt;}
.x2_c00383{left:117.673841pt;}
.x1_c00383{left:140.545372pt;}
.x7_c00383{left:401.765180pt;}
.x5_c00383{left:513.650446pt;}
.x6_c00383{left:531.714938pt;}
.x3_c00383{left:692.074890pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_78f43b1b203c672a709ed290.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:0.734863;font-style:normal;font-weight: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_c00384;src:url('chunks/assets/font_d00a28104a0389e742b2dca9.woff2')format("woff");}.ff5_c00384{font-family:ff5_c00384;line-height:0.769531;font-style:normal;font-weight: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_c00384;src:url('chunks/assets/font_c10cf339684ec2d4f2fb9c45.woff2')format("woff");}.ff6_c00384{font-family:ff6_c00384;line-height:1.171387;font-style:normal;font-weight: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_c00384;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00384{font-family:ff7_c00384;line-height:1.006348;font-style:normal;font-weight: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_c00384;src:url('chunks/assets/font_e2deaf96f4cc135076a93639.woff2')format("woff");}.ff8_c00384{font-family:ff8_c00384;line-height:0.769531;font-style:normal;font-weight: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_c00384;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00384{font-family:ff9_c00384;line-height:0.940000;font-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_c00384{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3d_c00384{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m29_c00384{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00384{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2a_c00384{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3c_c00384{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00384{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m15_c00384{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00384{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2b_c00384{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m28_c00384{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m16_c00384{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00384{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2c_c00384{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3b_c00384{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00384{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m17_c00384{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m27_c00384{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00384{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00384{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2d_c00384{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m18_c00384{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3a_c00384{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m26_c00384{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00384{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00384{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m19_c00384{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2e_c00384{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m39_c00384{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00384{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m25_c00384{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1a_c00384{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00384{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m2f_c00384{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m38_c00384{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m24_c00384{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00384{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m23_c00384{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00384{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m30_c00384{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1b_c00384{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m37_c00384{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m22_c00384{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00384{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m31_c00384{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00384{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m21_c00384{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00384{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m32_c00384{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1c_c00384{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00384{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m33_c00384{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m20_c00384{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m36_c00384{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1d_c00384{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00384{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00384{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m34_c00384{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1e_c00384{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m1f_c00384{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m35_c00384{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00384{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m3e_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);}
.v0_c00384{vertical-align:0.000000px;}
.ls0_c00384{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00384{word-spacing:-41.664701px;}
.ws3_c00384{word-spacing:-18.680283px;}
.ws0_c00384{word-spacing:-15.162211px;}
.ws1_c00384{word-spacing:-0.055722px;}
.ws5_c00384{word-spacing:0.000000px;}
.ws2_c00384{word-spacing:281.470806px;}
._0_c00384{width:2.876014px;}
._2_c00384{width:6.216197px;}
._3_c00384{width:8.209918px;}
._1_c00384{width:10.745974px;}
._4_c00384{width:13.044725px;}
.fc3_c00384{color:rgb(194,158,103);}
.fc2_c00384{color:rgb(9,71,81);}
.fc1_c00384{color:rgb(255,255,255);}
.fc0_c00384{color:rgb(0,0,0);}
.fs7_c00384{font-size:41.974772px;}
.fse_c00384{font-size:41.975069px;}
.fs1_c00384{font-size:47.339969px;}
.fs4_c00384{font-size:47.339970px;}
.fs0_c00384{font-size:47.339972px;}
.fs3_c00384{font-size:47.339973px;}
.fs2_c00384{font-size:47.339974px;}
.fs5_c00384{font-size:47.339975px;}
.fs8_c00384{font-size:51.630774px;}
.fs9_c00384{font-size:55.721735px;}
.fsd_c00384{font-size:59.949210px;}
.fs10_c00384{font-size:71.912067px;}
.fsa_c00384{font-size:71.957041px;}
.fsb_c00384{font-size:74.379845px;}
.fs6_c00384{font-size:76.965540px;}
.fsc_c00384{font-size:89.946302px;}
.fsf_c00384{font-size:95.927731px;}
.y0_c00384{bottom:0.000000px;}
.y1_c00384{bottom:0.000008px;}
.y55_c00384{bottom:30.156225px;}
.y4c_c00384{bottom:120.327711px;}
.y4b_c00384{bottom:150.684588px;}
.y4a_c00384{bottom:181.041465px;}
.y49_c00384{bottom:211.398342px;}
.y48_c00384{bottom:241.755218px;}
.y47_c00384{bottom:272.112095px;}
.y46_c00384{bottom:302.468972px;}
.y4d_c00384{bottom:339.025895px;}
.y44_c00384{bottom:425.679214px;}
.y41_c00384{bottom:487.376458px;}
.yf_c00384{bottom:493.812629px;}
.y37_c00384{bottom:493.827623px;}
.ye_c00384{bottom:494.337609px;}
.y38_c00384{bottom:494.357158px;}
.y21_c00384{bottom:494.700737px;}
.y36_c00384{bottom:495.071586px;}
.yd_c00384{bottom:495.403002px;}
.y22_c00384{bottom:495.533530px;}
.y20_c00384{bottom:495.553663px;}
.y35_c00384{bottom:496.322201px;}
.yc_c00384{bottom:496.475623px;}
.y1f_c00384{bottom:496.587915px;}
.y39_c00384{bottom:496.772260px;}
.y10_c00384{bottom:496.835884px;}
.y23_c00384{bottom:497.713596px;}
.y34_c00384{bottom:497.966053px;}
.yb_c00384{bottom:498.126234px;}
.y1e_c00384{bottom:498.789265px;}
.y24_c00384{bottom:499.103521px;}
.y33_c00384{bottom:499.653306px;}
.ya_c00384{bottom:499.818769px;}
.y25_c00384{bottom:500.800864px;}
.y11_c00384{bottom:501.110605px;}
.y32_c00384{bottom:501.517382px;}
.y9_c00384{bottom:501.687706px;}
.y3a_c00384{bottom:501.869915px;}
.y1d_c00384{bottom:502.578702px;}
.y26_c00384{bottom:503.241722px;}
.y12_c00384{bottom:503.627848px;}
.y3b_c00384{bottom:505.496019px;}
.y27_c00384{bottom:505.499367px;}
.y31_c00384{bottom:506.168989px;}
.y8_c00384{bottom:506.348634px;}
.y1c_c00384{bottom:508.044213px;}
.y28_c00384{bottom:508.766327px;}
.y13_c00384{bottom:509.576794px;}
.y3c_c00384{bottom:511.126534px;}
.y1b_c00384{bottom:512.508085px;}
.y30_c00384{bottom:512.566592px;}
.y7_c00384{bottom:512.754669px;}
.y14_c00384{bottom:514.322677px;}
.y29_c00384{bottom:517.158603px;}
.y3d_c00384{bottom:517.780195px;}
.y1a_c00384{bottom:518.929057px;}
.y2f_c00384{bottom:519.869222px;}
.y6_c00384{bottom:519.959421px;}
.y5_c00384{bottom:523.416158px;}
.y19_c00384{bottom:523.496236px;}
.y2a_c00384{bottom:525.202812px;}
.y15_c00384{bottom:526.099549px;}
.y2e_c00384{bottom:527.026630px;}
.y4_c00384{bottom:529.422883px;}
.y3e_c00384{bottom:529.736175px;}
.y18_c00384{bottom:531.263725px;}
.y2d_c00384{bottom:531.792993px;}
.y40_c00384{bottom:533.728456px;}
.y54_c00384{bottom:534.421816px;}
.y17_c00384{bottom:535.155114px;}
.y3_c00384{bottom:536.678099px;}
.y2c_c00384{bottom:537.961701px;}
.y16_c00384{bottom:538.332892px;}
.y3f_c00384{bottom:538.696314px;}
.y42_c00384{bottom:540.431168px;}
.y2b_c00384{bottom:545.020884px;}
.y2_c00384{bottom:546.207017px;}
.y43_c00384{bottom:577.871130px;}
.y53_c00384{bottom:597.559761px;}
.y45_c00384{bottom:639.489911px;}
.y56_c00384{bottom:1021.609033px;}
.y51_c00384{bottom:1127.585799px;}
.y4f_c00384{bottom:1129.718199px;}
.y4e_c00384{bottom:1147.707459px;}
.y52_c00384{bottom:1150.017273px;}
.y50_c00384{bottom:1170.658440px;}
.ha_c00384{height:32.157430px;}
.h7_c00384{height:35.967282px;}
.h6_c00384{height:35.967283px;}
.h8_c00384{height:35.967285px;}
.h4_c00384{height:36.267779px;}
.h3_c00384{height:36.267781px;}
.h5_c00384{height:36.267783px;}
.hb_c00384{height:37.437353px;}
.h11_c00384{height:39.085184px;}
.h15_c00384{height:45.561399px;}
.hc_c00384{height:51.885424px;}
.h14_c00384{height:55.092790px;}
.hd_c00384{height:55.127245px;}
.h10_c00384{height:55.821847px;}
.h9_c00384{height:56.261810px;}
.he_c00384{height:56.983387px;}
.h12_c00384{height:67.002968px;}
.hf_c00384{height:68.338108px;}
.h13_c00384{height:89.323331px;}
.h2_c00384{height:1304.999946px;}
.h0_c00384{height:1304.999953px;}
.h1_c00384{height:1305.000000px;}
.w2_c00384{width:934.874961px;}
.w0_c00384{width:934.875000px;}
.w1_c00384{width:935.250000px;}
.x0_c00384{left:0.000000px;}
.x3c_c00384{left:87.850202px;}
.x3d_c00384{left:108.062661px;}
.x3e_c00384{left:109.658623px;}
.x42_c00384{left:130.612669px;}
.x26_c00384{left:134.894322px;}
.x25_c00384{left:136.566734px;}
.x27_c00384{left:139.937719px;}
.x28_c00384{left:144.785273px;}
.x29_c00384{left:150.147890px;}
.x2a_c00384{left:152.899057px;}
.x2b_c00384{left:155.907145px;}
.x2c_c00384{left:159.752336px;}
.x36_c00384{left:161.347648px;}
.x2d_c00384{left:163.203941px;}
.x2e_c00384{left:171.483965px;}
.x2f_c00384{left:179.748684px;}
.x30_c00384{left:188.175145px;}
.x31_c00384{left:196.556636px;}
.x32_c00384{left:200.721504px;}
.x33_c00384{left:205.276922px;}
.x34_c00384{left:209.084069px;}
.x35_c00384{left:211.669316px;}
.x2_c00384{left:230.260919px;}
.x1_c00384{left:232.395871px;}
.x3_c00384{left:235.482735px;}
.x4_c00384{left:240.319117px;}
.x5_c00384{left:245.673577px;}
.x6_c00384{left:248.421493px;}
.x7_c00384{left:251.426626px;}
.x8_c00384{left:255.268917px;}
.x40_c00384{left:256.468943px;}
.x9_c00384{left:258.553698px;}
.xa_c00384{left:262.988294px;}
.xb_c00384{left:271.601212px;}
.xc_c00384{left:283.434780px;}
.xd_c00384{left:290.867654px;}
.xe_c00384{left:294.260334px;}
.x3f_c00384{left:295.438786px;}
.xf_c00384{left:299.596701px;}
.x10_c00384{left:302.984150px;}
.x11_c00384{left:306.993562px;}
.x12_c00384{left:325.378518px;}
.x13_c00384{left:326.595106px;}
.x14_c00384{left:328.015253px;}
.x15_c00384{left:331.410444px;}
.x16_c00384{left:334.633053px;}
.x17_c00384{left:340.511825px;}
.x18_c00384{left:346.695139px;}
.x19_c00384{left:352.384720px;}
.x1a_c00384{left:355.792694px;}
.x1b_c00384{left:363.695116px;}
.x1c_c00384{left:371.679253px;}
.x1d_c00384{left:378.434940px;}
.x1e_c00384{left:381.453328px;}
.x1f_c00384{left:384.455783px;}
.x20_c00384{left:387.851715px;}
.x21_c00384{left:390.467224px;}
.x22_c00384{left:393.779799px;}
.x23_c00384{left:398.952070px;}
.x24_c00384{left:401.755082px;}
.x41_c00384{left:451.985828px;}
.x38_c00384{left:464.618828px;}
.x3b_c00384{left:676.474352px;}
.x3a_c00384{left:696.904800px;}
.x39_c00384{left:733.103068px;}
.x37_c00384{left:756.637341px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws4_c00384{word-spacing:-37.035289pt;}
.ws3_c00384{word-spacing:-16.604696pt;}
.ws0_c00384{word-spacing:-13.477521pt;}
.ws1_c00384{word-spacing:-0.049530pt;}
.ws5_c00384{word-spacing:0.000000pt;}
.ws2_c00384{word-spacing:250.196272pt;}
._0_c00384{width:2.556457pt;}
._2_c00384{width:5.525508pt;}
._3_c00384{width:7.297705pt;}
._1_c00384{width:9.551977pt;}
._4_c00384{width:11.595311pt;}
.fs7_c00384{font-size:37.310908pt;}
.fse_c00384{font-size:37.311173pt;}
.fs1_c00384{font-size:42.079973pt;}
.fs4_c00384{font-size:42.079974pt;}
.fs0_c00384{font-size:42.079975pt;}
.fs3_c00384{font-size:42.079976pt;}
.fs2_c00384{font-size:42.079977pt;}
.fs5_c00384{font-size:42.079978pt;}
.fs8_c00384{font-size:45.894021pt;}
.fs9_c00384{font-size:49.530431pt;}
.fsd_c00384{font-size:53.288186pt;}
.fs10_c00384{font-size:63.921837pt;}
.fsa_c00384{font-size:63.961814pt;}
.fsb_c00384{font-size:66.115417pt;}
.fs6_c00384{font-size:68.413814pt;}
.fsc_c00384{font-size:79.952268pt;}
.fsf_c00384{font-size:85.269094pt;}
.y0_c00384{bottom:0.000000pt;}
.y1_c00384{bottom:0.000007pt;}
.y55_c00384{bottom:26.805533pt;}
.y4c_c00384{bottom:106.957966pt;}
.y4b_c00384{bottom:133.941856pt;}
.y4a_c00384{bottom:160.925747pt;}
.y49_c00384{bottom:187.909637pt;}
.y48_c00384{bottom:214.893527pt;}
.y47_c00384{bottom:241.877418pt;}
.y46_c00384{bottom:268.861308pt;}
.y4d_c00384{bottom:301.356351pt;}
.y44_c00384{bottom:378.381524pt;}
.y41_c00384{bottom:433.223518pt;}
.yf_c00384{bottom:438.944560pt;}
.y37_c00384{bottom:438.957887pt;}
.ye_c00384{bottom:439.411208pt;}
.y38_c00384{bottom:439.428585pt;}
.y21_c00384{bottom:439.733989pt;}
.y36_c00384{bottom:440.063632pt;}
.yd_c00384{bottom:440.358224pt;}
.y22_c00384{bottom:440.474249pt;}
.y20_c00384{bottom:440.492144pt;}
.y35_c00384{bottom:441.175290pt;}
.yc_c00384{bottom:441.311665pt;}
.y1f_c00384{bottom:441.411480pt;}
.y39_c00384{bottom:441.575343pt;}
.y10_c00384{bottom:441.631897pt;}
.y23_c00384{bottom:442.412085pt;}
.y34_c00384{bottom:442.636491pt;}
.yb_c00384{bottom:442.778875pt;}
.y1e_c00384{bottom:443.368235pt;}
.y24_c00384{bottom:443.647574pt;}
.y33_c00384{bottom:444.136272pt;}
.ya_c00384{bottom:444.283350pt;}
.y25_c00384{bottom:445.156323pt;}
.y11_c00384{bottom:445.431649pt;}
.y32_c00384{bottom:445.793228pt;}
.y9_c00384{bottom:445.944627pt;}
.y3a_c00384{bottom:446.106592pt;}
.y1d_c00384{bottom:446.736624pt;}
.y26_c00384{bottom:447.325975pt;}
.y12_c00384{bottom:447.669198pt;}
.y3b_c00384{bottom:449.329795pt;}
.y27_c00384{bottom:449.332771pt;}
.y31_c00384{bottom:449.927990pt;}
.y8_c00384{bottom:450.087675pt;}
.y1c_c00384{bottom:451.594856pt;}
.y28_c00384{bottom:452.236735pt;}
.y13_c00384{bottom:452.957150pt;}
.y3c_c00384{bottom:454.334697pt;}
.y1b_c00384{bottom:455.562742pt;}
.y30_c00384{bottom:455.614749pt;}
.y7_c00384{bottom:455.781928pt;}
.y14_c00384{bottom:457.175713pt;}
.y29_c00384{bottom:459.696536pt;}
.y3d_c00384{bottom:460.249062pt;}
.y1a_c00384{bottom:461.270273pt;}
.y2f_c00384{bottom:462.105976pt;}
.y6_c00384{bottom:462.186152pt;}
.y5_c00384{bottom:465.258807pt;}
.y19_c00384{bottom:465.329988pt;}
.y2a_c00384{bottom:466.846944pt;}
.y15_c00384{bottom:467.644044pt;}
.y2e_c00384{bottom:468.468115pt;}
.y4_c00384{bottom:470.598118pt;}
.y3e_c00384{bottom:470.876600pt;}
.y18_c00384{bottom:472.234422pt;}
.y2d_c00384{bottom:472.704883pt;}
.y40_c00384{bottom:474.425294pt;}
.y54_c00384{bottom:475.041614pt;}
.y17_c00384{bottom:475.693435pt;}
.y3_c00384{bottom:477.047199pt;}
.y2c_c00384{bottom:478.188178pt;}
.y16_c00384{bottom:478.518126pt;}
.y3f_c00384{bottom:478.841168pt;}
.y42_c00384{bottom:480.383260pt;}
.y2b_c00384{bottom:484.463008pt;}
.y2_c00384{bottom:485.517349pt;}
.y43_c00384{bottom:513.663227pt;}
.y53_c00384{bottom:531.164232pt;}
.y45_c00384{bottom:568.435476pt;}
.y56_c00384{bottom:908.096918pt;}
.y51_c00384{bottom:1002.298488pt;}
.y4f_c00384{bottom:1004.193955pt;}
.y4e_c00384{bottom:1020.184408pt;}
.y52_c00384{bottom:1022.237576pt;}
.y50_c00384{bottom:1040.585280pt;}
.ha_c00384{height:28.584382pt;}
.h7_c00384{height:31.970917pt;}
.h6_c00384{height:31.970918pt;}
.h8_c00384{height:31.970920pt;}
.h4_c00384{height:32.238026pt;}
.h3_c00384{height:32.238028pt;}
.h5_c00384{height:32.238029pt;}
.hb_c00384{height:33.277647pt;}
.h11_c00384{height:34.742386pt;}
.h15_c00384{height:40.499022pt;}
.hc_c00384{height:46.120377pt;}
.h14_c00384{height:48.971369pt;}
.hd_c00384{height:49.001996pt;}
.h10_c00384{height:49.619420pt;}
.h9_c00384{height:50.010498pt;}
.he_c00384{height:50.651899pt;}
.h12_c00384{height:59.558193pt;}
.hf_c00384{height:60.744985pt;}
.h13_c00384{height:79.398517pt;}
.h2_c00384{height:1159.999952pt;}
.h0_c00384{height:1159.999959pt;}
.h1_c00384{height:1160.000000pt;}
.w2_c00384{width:830.999965pt;}
.w0_c00384{width:831.000000pt;}
.w1_c00384{width:831.333333pt;}
.x0_c00384{left:0.000000pt;}
.x3c_c00384{left:78.089069pt;}
.x3d_c00384{left:96.055698pt;}
.x3e_c00384{left:97.474332pt;}
.x42_c00384{left:116.100150pt;}
.x26_c00384{left:119.906064pt;}
.x25_c00384{left:121.392652pt;}
.x27_c00384{left:124.389083pt;}
.x28_c00384{left:128.698021pt;}
.x29_c00384{left:133.464791pt;}
.x2a_c00384{left:135.910272pt;}
.x2b_c00384{left:138.584129pt;}
.x2c_c00384{left:142.002076pt;}
.x36_c00384{left:143.420132pt;}
.x2d_c00384{left:145.070170pt;}
.x2e_c00384{left:152.430191pt;}
.x2f_c00384{left:159.776608pt;}
.x30_c00384{left:167.266795pt;}
.x31_c00384{left:174.717010pt;}
.x32_c00384{left:178.419115pt;}
.x33_c00384{left:182.468375pt;}
.x34_c00384{left:185.852506pt;}
.x35_c00384{left:188.150503pt;}
.x2_c00384{left:204.676373pt;}
.x1_c00384{left:206.574107pt;}
.x3_c00384{left:209.317987pt;}
.x4_c00384{left:213.616993pt;}
.x5_c00384{left:218.376513pt;}
.x6_c00384{left:220.819105pt;}
.x7_c00384{left:223.490334pt;}
.x8_c00384{left:226.905704pt;}
.x40_c00384{left:227.972394pt;}
.x9_c00384{left:229.825509pt;}
.xa_c00384{left:233.767373pt;}
.xb_c00384{left:241.423300pt;}
.xc_c00384{left:251.942027pt;}
.xd_c00384{left:258.549026pt;}
.xe_c00384{left:261.564741pt;}
.x3f_c00384{left:262.612255pt;}
.xf_c00384{left:266.308178pt;}
.x10_c00384{left:269.319244pt;}
.x11_c00384{left:272.883167pt;}
.x12_c00384{left:289.225349pt;}
.x13_c00384{left:290.306761pt;}
.x14_c00384{left:291.569114pt;}
.x15_c00384{left:294.587062pt;}
.x16_c00384{left:297.451603pt;}
.x17_c00384{left:302.677178pt;}
.x18_c00384{left:308.173457pt;}
.x19_c00384{left:313.230862pt;}
.x1a_c00384{left:316.260173pt;}
.x1b_c00384{left:323.284548pt;}
.x1c_c00384{left:330.381558pt;}
.x1d_c00384{left:336.386614pt;}
.x1e_c00384{left:339.069625pt;}
.x1f_c00384{left:341.738474pt;}
.x20_c00384{left:344.757080pt;}
.x21_c00384{left:347.081977pt;}
.x22_c00384{left:350.026488pt;}
.x23_c00384{left:354.624063pt;}
.x24_c00384{left:357.115628pt;}
.x41_c00384{left:401.765180pt;}
.x38_c00384{left:412.994514pt;}
.x3b_c00384{left:601.310535pt;}
.x3a_c00384{left:619.470933pt;}
.x39_c00384{left:651.647171pt;}
.x37_c00384{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd1c833145ba252ebe0b0dca.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.171387;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.006348;font-style:normal;font-weight:normal;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_a09980f9a29f738d11d8af4c.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.000000;font-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_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);}
.v0_c00385{vertical-align:0.000000px;}
.ls1_c00385{letter-spacing:0.000000px;}
.ls0_c00385{letter-spacing:15.037897px;}
.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;}
}
.ws0_c00385{word-spacing:-18.691966px;}
.ws1_c00385{word-spacing:-18.680283px;}
.ws2_c00385{word-spacing:0.000000px;}
._3_c00385{width:2.081766px;}
._c_c00385{width:3.437626px;}
._d_c00385{width:4.497195px;}
._6_c00385{width:5.808986px;}
._4_c00385{width:7.615570px;}
._9_c00385{width:8.748682px;}
._1_c00385{width:10.080598px;}
._0_c00385{width:11.126147px;}
._8_c00385{width:12.364116px;}
._f_c00385{width:13.844063px;}
._a_c00385{width:14.903736px;}
._b_c00385{width:16.871314px;}
._7_c00385{width:20.539034px;}
._2_c00385{width:22.448213px;}
._e_c00385{width:23.498428px;}
._5_c00385{width:31.006880px;}
.fc1_c00385{color:rgb(194,158,103);}
.fc0_c00385{color:rgb(0,0,0);}
.fs3_c00385{font-size:71.912067px;}
.fs0_c00385{font-size:71.957041px;}
.fs2_c00385{font-size:74.340621px;}
.fs1_c00385{font-size:74.379845px;}
.y0_c00385{bottom:0.000000px;}
.y1_c00385{bottom:0.000008px;}
.y1b_c00385{bottom:30.156225px;}
.y24_c00385{bottom:69.503877px;}
.y23_c00385{bottom:99.860754px;}
.y22_c00385{bottom:130.217631px;}
.y21_c00385{bottom:160.574508px;}
.y20_c00385{bottom:190.931384px;}
.y1f_c00385{bottom:221.288261px;}
.y1e_c00385{bottom:251.645138px;}
.y1d_c00385{bottom:282.002015px;}
.y1c_c00385{bottom:312.358891px;}
.y25_c00385{bottom:348.869815px;}
.y1a_c00385{bottom:398.729474px;}
.y19_c00385{bottom:429.086350px;}
.y18_c00385{bottom:459.443227px;}
.y17_c00385{bottom:489.800104px;}
.y16_c00385{bottom:520.156981px;}
.y15_c00385{bottom:550.513858px;}
.y14_c00385{bottom:588.521985px;}
.y12_c00385{bottom:638.381599px;}
.y11_c00385{bottom:668.738476px;}
.y10_c00385{bottom:699.095352px;}
.yf_c00385{bottom:729.452229px;}
.ye_c00385{bottom:759.809106px;}
.yd_c00385{bottom:790.165983px;}
.yc_c00385{bottom:820.522859px;}
.yb_c00385{bottom:850.879736px;}
.ya_c00385{bottom:881.236613px;}
.y9_c00385{bottom:911.593490px;}
.y13_c00385{bottom:945.643252px;}
.y8_c00385{bottom:995.502854px;}
.y7_c00385{bottom:1025.859731px;}
.y6_c00385{bottom:1056.216608px;}
.y5_c00385{bottom:1092.508139px;}
.y4_c00385{bottom:1141.906658px;}
.y3_c00385{bottom:1172.263535px;}
.y2_c00385{bottom:1202.620412px;}
.h5_c00385{height:56.953337px;}
.h4_c00385{height:56.983387px;}
.h6_c00385{height:66.961090px;}
.h3_c00385{height:67.002968px;}
.h2_c00385{height:1304.999946px;}
.h0_c00385{height:1304.999953px;}
.h1_c00385{height:1305.000000px;}
.w2_c00385{width:934.874961px;}
.w0_c00385{width:934.875000px;}
.w1_c00385{width:935.250000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:87.850202px;}
.x2_c00385{left:451.985828px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls1_c00385{letter-spacing:0.000000pt;}
.ls0_c00385{letter-spacing:13.367019pt;}
.ws0_c00385{word-spacing:-16.615081pt;}
.ws1_c00385{word-spacing:-16.604696pt;}
.ws2_c00385{word-spacing:0.000000pt;}
._3_c00385{width:1.850458pt;}
._c_c00385{width:3.055667pt;}
._d_c00385{width:3.997507pt;}
._6_c00385{width:5.163543pt;}
._4_c00385{width:6.769396pt;}
._9_c00385{width:7.776607pt;}
._1_c00385{width:8.960532pt;}
._0_c00385{width:9.889908pt;}
._8_c00385{width:10.990326pt;}
._f_c00385{width:12.305833pt;}
._a_c00385{width:13.247766pt;}
._b_c00385{width:14.996724pt;}
._7_c00385{width:18.256919pt;}
._2_c00385{width:19.953967pt;}
._e_c00385{width:20.887492pt;}
._5_c00385{width:27.561671pt;}
.fs3_c00385{font-size:63.921837pt;}
.fs0_c00385{font-size:63.961814pt;}
.fs2_c00385{font-size:66.080552pt;}
.fs1_c00385{font-size:66.115417pt;}
.y0_c00385{bottom:0.000000pt;}
.y1_c00385{bottom:0.000007pt;}
.y1b_c00385{bottom:26.805533pt;}
.y24_c00385{bottom:61.781224pt;}
.y23_c00385{bottom:88.765115pt;}
.y22_c00385{bottom:115.749005pt;}
.y21_c00385{bottom:142.732896pt;}
.y20_c00385{bottom:169.716786pt;}
.y1f_c00385{bottom:196.700677pt;}
.y1e_c00385{bottom:223.684567pt;}
.y1d_c00385{bottom:250.668458pt;}
.y1c_c00385{bottom:277.652348pt;}
.y25_c00385{bottom:310.106502pt;}
.y1a_c00385{bottom:354.426199pt;}
.y19_c00385{bottom:381.410089pt;}
.y18_c00385{bottom:408.393980pt;}
.y17_c00385{bottom:435.377870pt;}
.y16_c00385{bottom:462.361761pt;}
.y15_c00385{bottom:489.345651pt;}
.y14_c00385{bottom:523.130653pt;}
.y12_c00385{bottom:567.450310pt;}
.y11_c00385{bottom:594.434201pt;}
.y10_c00385{bottom:621.418091pt;}
.yf_c00385{bottom:648.401981pt;}
.ye_c00385{bottom:675.385872pt;}
.yd_c00385{bottom:702.369762pt;}
.yc_c00385{bottom:729.353653pt;}
.yb_c00385{bottom:756.337543pt;}
.ya_c00385{bottom:783.321434pt;}
.y9_c00385{bottom:810.305324pt;}
.y13_c00385{bottom:840.571779pt;}
.y8_c00385{bottom:884.891426pt;}
.y7_c00385{bottom:911.875316pt;}
.y6_c00385{bottom:938.859207pt;}
.y5_c00385{bottom:971.118345pt;}
.y4_c00385{bottom:1015.028140pt;}
.y3_c00385{bottom:1042.012031pt;}
.y2_c00385{bottom:1068.995921pt;}
.h5_c00385{height:50.625189pt;}
.h4_c00385{height:50.651899pt;}
.h6_c00385{height:59.520969pt;}
.h3_c00385{height:59.558193pt;}
.h2_c00385{height:1159.999952pt;}
.h0_c00385{height:1159.999959pt;}
.h1_c00385{height:1160.000000pt;}
.w2_c00385{width:830.999965pt;}
.w0_c00385{width:831.000000pt;}
.w1_c00385{width:831.333333pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:78.089069pt;}
.x2_c00385{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_322327f56e2964e7b0def40c.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:0.734863;font-style:normal;font-weight: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_d00a28104a0389e742b2dca9.woff2')format("woff");}.ff5_c00386{font-family:ff5_c00386;line-height:0.769531;font-style:normal;font-weight: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_c00386;src:url('chunks/assets/font_0697e9fbb27cedb8b7a086a2.woff2')format("woff");}.ff6_c00386{font-family:ff6_c00386;line-height:1.171387;font-style:normal;font-weight: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_c00386;src:url('chunks/assets/font_74d01ef8cba7725b69ba200b.woff2')format("woff");}.ff7_c00386{font-family:ff7_c00386;line-height:0.769531;font-style:normal;font-weight: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_c00386;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00386{font-family:ff8_c00386;line-height:1.006348;font-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_c00386{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3d_c00386{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m29_c00386{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00386{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2a_c00386{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3c_c00386{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00386{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m15_c00386{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00386{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2b_c00386{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m28_c00386{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m16_c00386{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00386{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2c_c00386{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3b_c00386{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00386{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m17_c00386{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m27_c00386{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00386{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00386{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2d_c00386{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m18_c00386{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3a_c00386{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m26_c00386{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00386{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00386{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m19_c00386{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2e_c00386{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m39_c00386{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00386{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m25_c00386{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1a_c00386{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00386{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m2f_c00386{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m38_c00386{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m24_c00386{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00386{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m23_c00386{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00386{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m30_c00386{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1b_c00386{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m37_c00386{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m22_c00386{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00386{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m31_c00386{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00386{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m21_c00386{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00386{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m32_c00386{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1c_c00386{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00386{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m33_c00386{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m20_c00386{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m36_c00386{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1d_c00386{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00386{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00386{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m34_c00386{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1e_c00386{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m1f_c00386{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m35_c00386{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00386{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m3e_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);}
.v0_c00386{vertical-align:0.000000px;}
.v1_c00386{vertical-align:26.810849px;}
.ls0_c00386{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00386{word-spacing:-18.680283px;}
.ws2_c00386{word-spacing:-0.055722px;}
.ws4_c00386{word-spacing:0.000000px;}
.ws1_c00386{word-spacing:281.470806px;}
.ws0_c00386{word-spacing:1114.343689px;}
._0_c00386{width:1.217999px;}
._3_c00386{width:8.818142px;}
._2_c00386{width:10.025217px;}
._1_c00386{width:14.323455px;}
._4_c00386{width:17.157679px;}
.fc3_c00386{color:rgb(194,158,103);}
.fc2_c00386{color:rgb(9,71,81);}
.fc1_c00386{color:rgb(255,255,255);}
.fc0_c00386{color:rgb(0,0,0);}
.fs7_c00386{font-size:41.974772px;}
.fsc_c00386{font-size:41.975069px;}
.fs1_c00386{font-size:47.339969px;}
.fs4_c00386{font-size:47.339970px;}
.fs0_c00386{font-size:47.339972px;}
.fs3_c00386{font-size:47.339973px;}
.fs2_c00386{font-size:47.339974px;}
.fs5_c00386{font-size:47.339975px;}
.fs8_c00386{font-size:51.630774px;}
.fsf_c00386{font-size:55.721735px;}
.fsb_c00386{font-size:59.949210px;}
.fs10_c00386{font-size:71.912067px;}
.fs9_c00386{font-size:71.957041px;}
.fse_c00386{font-size:74.379845px;}
.fs6_c00386{font-size:76.965540px;}
.fsa_c00386{font-size:89.946302px;}
.fsd_c00386{font-size:95.927731px;}
.y0_c00386{bottom:0.000000px;}
.y1_c00386{bottom:0.000008px;}
.y54_c00386{bottom:30.156225px;}
.y4a_c00386{bottom:98.479974px;}
.y49_c00386{bottom:128.836851px;}
.y48_c00386{bottom:159.193728px;}
.y47_c00386{bottom:189.550604px;}
.y46_c00386{bottom:219.907481px;}
.y45_c00386{bottom:250.264358px;}
.y44_c00386{bottom:280.621235px;}
.y43_c00386{bottom:310.978112px;}
.y52_c00386{bottom:346.542839px;}
.y42_c00386{bottom:425.321662px;}
.yf_c00386{bottom:493.812629px;}
.y37_c00386{bottom:493.827623px;}
.ye_c00386{bottom:494.337609px;}
.y38_c00386{bottom:494.357158px;}
.y21_c00386{bottom:494.700737px;}
.y36_c00386{bottom:495.071586px;}
.yd_c00386{bottom:495.403002px;}
.y22_c00386{bottom:495.533530px;}
.y20_c00386{bottom:495.553663px;}
.y35_c00386{bottom:496.322201px;}
.yc_c00386{bottom:496.475623px;}
.y1f_c00386{bottom:496.587915px;}
.y39_c00386{bottom:496.772260px;}
.y10_c00386{bottom:496.835884px;}
.y23_c00386{bottom:497.713596px;}
.y34_c00386{bottom:497.966053px;}
.yb_c00386{bottom:498.126234px;}
.y1e_c00386{bottom:498.789265px;}
.y24_c00386{bottom:499.103521px;}
.y33_c00386{bottom:499.653306px;}
.ya_c00386{bottom:499.818769px;}
.y25_c00386{bottom:500.800864px;}
.y11_c00386{bottom:501.110605px;}
.y32_c00386{bottom:501.517382px;}
.y9_c00386{bottom:501.687706px;}
.y3a_c00386{bottom:501.869915px;}
.y1d_c00386{bottom:502.578702px;}
.y26_c00386{bottom:503.241722px;}
.y12_c00386{bottom:503.627848px;}
.y3b_c00386{bottom:505.496019px;}
.y27_c00386{bottom:505.499367px;}
.y31_c00386{bottom:506.168989px;}
.y8_c00386{bottom:506.348634px;}
.y1c_c00386{bottom:508.044213px;}
.y28_c00386{bottom:508.766327px;}
.y13_c00386{bottom:509.576794px;}
.y3c_c00386{bottom:511.126534px;}
.y1b_c00386{bottom:512.508085px;}
.y30_c00386{bottom:512.566592px;}
.y7_c00386{bottom:512.754669px;}
.y14_c00386{bottom:514.322677px;}
.y29_c00386{bottom:517.158603px;}
.y3d_c00386{bottom:517.780195px;}
.y1a_c00386{bottom:518.929057px;}
.y2f_c00386{bottom:519.869222px;}
.y6_c00386{bottom:519.959421px;}
.y5_c00386{bottom:523.416158px;}
.y19_c00386{bottom:523.496236px;}
.y2a_c00386{bottom:525.202812px;}
.y15_c00386{bottom:526.099549px;}
.y2e_c00386{bottom:527.026630px;}
.y4_c00386{bottom:529.422883px;}
.y3e_c00386{bottom:529.736175px;}
.y18_c00386{bottom:531.263725px;}
.y2d_c00386{bottom:531.792993px;}
.y40_c00386{bottom:533.728456px;}
.y51_c00386{bottom:534.421816px;}
.y17_c00386{bottom:535.155114px;}
.y3_c00386{bottom:536.678099px;}
.y2c_c00386{bottom:537.961701px;}
.y16_c00386{bottom:538.332892px;}
.y3f_c00386{bottom:538.696314px;}
.y2b_c00386{bottom:545.020884px;}
.y2_c00386{bottom:546.207017px;}
.y41_c00386{bottom:577.871130px;}
.y50_c00386{bottom:597.559761px;}
.y53_c00386{bottom:639.489911px;}
.y4e_c00386{bottom:1127.585799px;}
.y4c_c00386{bottom:1129.718199px;}
.y4b_c00386{bottom:1147.707459px;}
.y4f_c00386{bottom:1150.017273px;}
.y4d_c00386{bottom:1170.658440px;}
.ha_c00386{height:32.157430px;}
.h7_c00386{height:35.967282px;}
.h6_c00386{height:35.967283px;}
.h8_c00386{height:35.967285px;}
.h4_c00386{height:36.267779px;}
.h3_c00386{height:36.267781px;}
.h5_c00386{height:36.267783px;}
.hb_c00386{height:37.437353px;}
.hf_c00386{height:39.085184px;}
.h14_c00386{height:51.885424px;}
.h15_c00386{height:55.092790px;}
.hc_c00386{height:55.127245px;}
.he_c00386{height:55.821847px;}
.h12_c00386{height:56.261810px;}
.h13_c00386{height:56.983387px;}
.h9_c00386{height:58.968279px;}
.h10_c00386{height:67.002968px;}
.hd_c00386{height:68.338108px;}
.h11_c00386{height:89.323331px;}
.h2_c00386{height:1304.999946px;}
.h0_c00386{height:1304.999953px;}
.h1_c00386{height:1305.000000px;}
.w2_c00386{width:934.874961px;}
.w0_c00386{width:934.875000px;}
.w1_c00386{width:935.250000px;}
.x0_c00386{left:0.000000px;}
.x39_c00386{left:87.850202px;}
.x3f_c00386{left:89.206783px;}
.x3a_c00386{left:108.062661px;}
.x3b_c00386{left:109.658623px;}
.x26_c00386{left:134.894322px;}
.x25_c00386{left:136.566734px;}
.x27_c00386{left:139.937719px;}
.x28_c00386{left:144.785273px;}
.x29_c00386{left:150.147890px;}
.x2a_c00386{left:152.899057px;}
.x2b_c00386{left:155.907145px;}
.x2c_c00386{left:159.752336px;}
.x36_c00386{left:161.347648px;}
.x2d_c00386{left:163.203941px;}
.x2e_c00386{left:171.483965px;}
.x2f_c00386{left:179.748684px;}
.x30_c00386{left:188.175145px;}
.x31_c00386{left:196.556636px;}
.x32_c00386{left:200.721504px;}
.x33_c00386{left:205.276922px;}
.x34_c00386{left:209.084069px;}
.x35_c00386{left:211.669316px;}
.x2_c00386{left:230.260919px;}
.x1_c00386{left:232.395871px;}
.x3_c00386{left:235.482735px;}
.x4_c00386{left:240.319117px;}
.x5_c00386{left:245.673577px;}
.x6_c00386{left:248.421493px;}
.x7_c00386{left:251.426626px;}
.x8_c00386{left:255.268917px;}
.x3e_c00386{left:256.468943px;}
.x9_c00386{left:258.553698px;}
.xa_c00386{left:262.988294px;}
.xb_c00386{left:271.601212px;}
.xc_c00386{left:283.434780px;}
.xd_c00386{left:290.867654px;}
.xe_c00386{left:294.260334px;}
.x3c_c00386{left:295.438786px;}
.xf_c00386{left:299.596701px;}
.x10_c00386{left:302.984150px;}
.x11_c00386{left:306.993562px;}
.x12_c00386{left:325.378518px;}
.x13_c00386{left:326.595106px;}
.x14_c00386{left:328.015253px;}
.x15_c00386{left:331.410444px;}
.x16_c00386{left:334.633053px;}
.x17_c00386{left:340.511825px;}
.x18_c00386{left:346.695139px;}
.x19_c00386{left:352.384720px;}
.x1a_c00386{left:355.792694px;}
.x1b_c00386{left:363.695116px;}
.x1c_c00386{left:371.679253px;}
.x1d_c00386{left:378.434940px;}
.x1e_c00386{left:381.453328px;}
.x1f_c00386{left:384.455783px;}
.x20_c00386{left:387.851715px;}
.x21_c00386{left:390.467224px;}
.x22_c00386{left:393.779799px;}
.x23_c00386{left:398.952070px;}
.x24_c00386{left:401.755082px;}
.x41_c00386{left:451.985828px;}
.x3d_c00386{left:465.097640px;}
.x40_c00386{left:676.474352px;}
.x38_c00386{left:696.904800px;}
.x37_c00386{left:733.103068px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.v1_c00386{vertical-align:23.831865pt;}
.ls0_c00386{letter-spacing:0.000000pt;}
.ws3_c00386{word-spacing:-16.604696pt;}
.ws2_c00386{word-spacing:-0.049530pt;}
.ws4_c00386{word-spacing:0.000000pt;}
.ws1_c00386{word-spacing:250.196272pt;}
.ws0_c00386{word-spacing:990.527723pt;}
._0_c00386{width:1.082666pt;}
._3_c00386{width:7.838349pt;}
._2_c00386{width:8.911304pt;}
._1_c00386{width:12.731960pt;}
._4_c00386{width:15.251271pt;}
.fs7_c00386{font-size:37.310908pt;}
.fsc_c00386{font-size:37.311173pt;}
.fs1_c00386{font-size:42.079973pt;}
.fs4_c00386{font-size:42.079974pt;}
.fs0_c00386{font-size:42.079975pt;}
.fs3_c00386{font-size:42.079976pt;}
.fs2_c00386{font-size:42.079977pt;}
.fs5_c00386{font-size:42.079978pt;}
.fs8_c00386{font-size:45.894021pt;}
.fsf_c00386{font-size:49.530431pt;}
.fsb_c00386{font-size:53.288186pt;}
.fs10_c00386{font-size:63.921837pt;}
.fs9_c00386{font-size:63.961814pt;}
.fse_c00386{font-size:66.115417pt;}
.fs6_c00386{font-size:68.413814pt;}
.fsa_c00386{font-size:79.952268pt;}
.fsd_c00386{font-size:85.269094pt;}
.y0_c00386{bottom:0.000000pt;}
.y1_c00386{bottom:0.000007pt;}
.y54_c00386{bottom:26.805533pt;}
.y4a_c00386{bottom:87.537755pt;}
.y49_c00386{bottom:114.521645pt;}
.y48_c00386{bottom:141.505536pt;}
.y47_c00386{bottom:168.489426pt;}
.y46_c00386{bottom:195.473317pt;}
.y45_c00386{bottom:222.457207pt;}
.y44_c00386{bottom:249.441098pt;}
.y43_c00386{bottom:276.424988pt;}
.y52_c00386{bottom:308.038079pt;}
.y42_c00386{bottom:378.063700pt;}
.yf_c00386{bottom:438.944560pt;}
.y37_c00386{bottom:438.957887pt;}
.ye_c00386{bottom:439.411208pt;}
.y38_c00386{bottom:439.428585pt;}
.y21_c00386{bottom:439.733989pt;}
.y36_c00386{bottom:440.063632pt;}
.yd_c00386{bottom:440.358224pt;}
.y22_c00386{bottom:440.474249pt;}
.y20_c00386{bottom:440.492144pt;}
.y35_c00386{bottom:441.175290pt;}
.yc_c00386{bottom:441.311665pt;}
.y1f_c00386{bottom:441.411480pt;}
.y39_c00386{bottom:441.575343pt;}
.y10_c00386{bottom:441.631897pt;}
.y23_c00386{bottom:442.412085pt;}
.y34_c00386{bottom:442.636491pt;}
.yb_c00386{bottom:442.778875pt;}
.y1e_c00386{bottom:443.368235pt;}
.y24_c00386{bottom:443.647574pt;}
.y33_c00386{bottom:444.136272pt;}
.ya_c00386{bottom:444.283350pt;}
.y25_c00386{bottom:445.156323pt;}
.y11_c00386{bottom:445.431649pt;}
.y32_c00386{bottom:445.793228pt;}
.y9_c00386{bottom:445.944627pt;}
.y3a_c00386{bottom:446.106592pt;}
.y1d_c00386{bottom:446.736624pt;}
.y26_c00386{bottom:447.325975pt;}
.y12_c00386{bottom:447.669198pt;}
.y3b_c00386{bottom:449.329795pt;}
.y27_c00386{bottom:449.332771pt;}
.y31_c00386{bottom:449.927990pt;}
.y8_c00386{bottom:450.087675pt;}
.y1c_c00386{bottom:451.594856pt;}
.y28_c00386{bottom:452.236735pt;}
.y13_c00386{bottom:452.957150pt;}
.y3c_c00386{bottom:454.334697pt;}
.y1b_c00386{bottom:455.562742pt;}
.y30_c00386{bottom:455.614749pt;}
.y7_c00386{bottom:455.781928pt;}
.y14_c00386{bottom:457.175713pt;}
.y29_c00386{bottom:459.696536pt;}
.y3d_c00386{bottom:460.249062pt;}
.y1a_c00386{bottom:461.270273pt;}
.y2f_c00386{bottom:462.105976pt;}
.y6_c00386{bottom:462.186152pt;}
.y5_c00386{bottom:465.258807pt;}
.y19_c00386{bottom:465.329988pt;}
.y2a_c00386{bottom:466.846944pt;}
.y15_c00386{bottom:467.644044pt;}
.y2e_c00386{bottom:468.468115pt;}
.y4_c00386{bottom:470.598118pt;}
.y3e_c00386{bottom:470.876600pt;}
.y18_c00386{bottom:472.234422pt;}
.y2d_c00386{bottom:472.704883pt;}
.y40_c00386{bottom:474.425294pt;}
.y51_c00386{bottom:475.041614pt;}
.y17_c00386{bottom:475.693435pt;}
.y3_c00386{bottom:477.047199pt;}
.y2c_c00386{bottom:478.188178pt;}
.y16_c00386{bottom:478.518126pt;}
.y3f_c00386{bottom:478.841168pt;}
.y2b_c00386{bottom:484.463008pt;}
.y2_c00386{bottom:485.517349pt;}
.y41_c00386{bottom:513.663227pt;}
.y50_c00386{bottom:531.164232pt;}
.y53_c00386{bottom:568.435476pt;}
.y4e_c00386{bottom:1002.298488pt;}
.y4c_c00386{bottom:1004.193955pt;}
.y4b_c00386{bottom:1020.184408pt;}
.y4f_c00386{bottom:1022.237576pt;}
.y4d_c00386{bottom:1040.585280pt;}
.ha_c00386{height:28.584382pt;}
.h7_c00386{height:31.970917pt;}
.h6_c00386{height:31.970918pt;}
.h8_c00386{height:31.970920pt;}
.h4_c00386{height:32.238026pt;}
.h3_c00386{height:32.238028pt;}
.h5_c00386{height:32.238029pt;}
.hb_c00386{height:33.277647pt;}
.hf_c00386{height:34.742386pt;}
.h14_c00386{height:46.120377pt;}
.h15_c00386{height:48.971369pt;}
.hc_c00386{height:49.001996pt;}
.he_c00386{height:49.619420pt;}
.h12_c00386{height:50.010498pt;}
.h13_c00386{height:50.651899pt;}
.h9_c00386{height:52.416248pt;}
.h10_c00386{height:59.558193pt;}
.hd_c00386{height:60.744985pt;}
.h11_c00386{height:79.398517pt;}
.h2_c00386{height:1159.999952pt;}
.h0_c00386{height:1159.999959pt;}
.h1_c00386{height:1160.000000pt;}
.w2_c00386{width:830.999965pt;}
.w0_c00386{width:831.000000pt;}
.w1_c00386{width:831.333333pt;}
.x0_c00386{left:0.000000pt;}
.x39_c00386{left:78.089069pt;}
.x3f_c00386{left:79.294918pt;}
.x3a_c00386{left:96.055698pt;}
.x3b_c00386{left:97.474332pt;}
.x26_c00386{left:119.906064pt;}
.x25_c00386{left:121.392652pt;}
.x27_c00386{left:124.389083pt;}
.x28_c00386{left:128.698021pt;}
.x29_c00386{left:133.464791pt;}
.x2a_c00386{left:135.910272pt;}
.x2b_c00386{left:138.584129pt;}
.x2c_c00386{left:142.002076pt;}
.x36_c00386{left:143.420132pt;}
.x2d_c00386{left:145.070170pt;}
.x2e_c00386{left:152.430191pt;}
.x2f_c00386{left:159.776608pt;}
.x30_c00386{left:167.266795pt;}
.x31_c00386{left:174.717010pt;}
.x32_c00386{left:178.419115pt;}
.x33_c00386{left:182.468375pt;}
.x34_c00386{left:185.852506pt;}
.x35_c00386{left:188.150503pt;}
.x2_c00386{left:204.676373pt;}
.x1_c00386{left:206.574107pt;}
.x3_c00386{left:209.317987pt;}
.x4_c00386{left:213.616993pt;}
.x5_c00386{left:218.376513pt;}
.x6_c00386{left:220.819105pt;}
.x7_c00386{left:223.490334pt;}
.x8_c00386{left:226.905704pt;}
.x3e_c00386{left:227.972394pt;}
.x9_c00386{left:229.825509pt;}
.xa_c00386{left:233.767373pt;}
.xb_c00386{left:241.423300pt;}
.xc_c00386{left:251.942027pt;}
.xd_c00386{left:258.549026pt;}
.xe_c00386{left:261.564741pt;}
.x3c_c00386{left:262.612255pt;}
.xf_c00386{left:266.308178pt;}
.x10_c00386{left:269.319244pt;}
.x11_c00386{left:272.883167pt;}
.x12_c00386{left:289.225349pt;}
.x13_c00386{left:290.306761pt;}
.x14_c00386{left:291.569114pt;}
.x15_c00386{left:294.587062pt;}
.x16_c00386{left:297.451603pt;}
.x17_c00386{left:302.677178pt;}
.x18_c00386{left:308.173457pt;}
.x19_c00386{left:313.230862pt;}
.x1a_c00386{left:316.260173pt;}
.x1b_c00386{left:323.284548pt;}
.x1c_c00386{left:330.381558pt;}
.x1d_c00386{left:336.386614pt;}
.x1e_c00386{left:339.069625pt;}
.x1f_c00386{left:341.738474pt;}
.x20_c00386{left:344.757080pt;}
.x21_c00386{left:347.081977pt;}
.x22_c00386{left:350.026488pt;}
.x23_c00386{left:354.624063pt;}
.x24_c00386{left:357.115628pt;}
.x41_c00386{left:401.765180pt;}
.x3d_c00386{left:413.420124pt;}
.x40_c00386{left:601.310535pt;}
.x38_c00386{left:619.470933pt;}
.x37_c00386{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.006348;font-style:normal;font-weight:normal;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_518cd6ce5f5da476f8ceb39a.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.171387;font-style:normal;font-weight:normal;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_685f2e41cd0581ff77013cb9.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:0.954102;font-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_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);}
.v0_c00387{vertical-align:0.000000px;}
.ls0_c00387{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00387{word-spacing:-18.680283px;}
.ws0_c00387{word-spacing:-0.071957px;}
.ws2_c00387{word-spacing:0.000000px;}
._b_c00387{width:1.037793px;}
._a_c00387{width:2.529739px;}
._2_c00387{width:4.198665px;}
._7_c00387{width:5.650875px;}
._3_c00387{width:11.681105px;}
._d_c00387{width:12.756782px;}
._5_c00387{width:13.901832px;}
._1_c00387{width:15.846008px;}
._4_c00387{width:16.982002px;}
._6_c00387{width:19.746023px;}
._0_c00387{width:21.256843px;}
._c_c00387{width:23.141244px;}
._9_c00387{width:25.063115px;}
._8_c00387{width:43.585305px;}
.fc1_c00387{color:rgb(0,0,0);}
.fc0_c00387{color:rgb(194,158,103);}
.fs3_c00387{font-size:71.912067px;}
.fs1_c00387{font-size:71.957041px;}
.fs2_c00387{font-size:74.340621px;}
.fs0_c00387{font-size:74.379845px;}
.y0_c00387{bottom:0.000000px;}
.y1_c00387{bottom:0.000008px;}
.y1f_c00387{bottom:30.156225px;}
.y1d_c00387{bottom:172.620971px;}
.y1c_c00387{bottom:202.977848px;}
.y1b_c00387{bottom:233.334725px;}
.y1a_c00387{bottom:263.691601px;}
.y19_c00387{bottom:294.048478px;}
.y18_c00387{bottom:324.405355px;}
.y1e_c00387{bottom:357.694206px;}
.y17_c00387{bottom:441.283662px;}
.y16_c00387{bottom:471.640539px;}
.y15_c00387{bottom:501.997416px;}
.y14_c00387{bottom:534.988943px;}
.y12_c00387{bottom:623.101256px;}
.y11_c00387{bottom:653.458133px;}
.y10_c00387{bottom:683.815010px;}
.yf_c00387{bottom:714.171887px;}
.ye_c00387{bottom:744.528763px;}
.yd_c00387{bottom:774.885640px;}
.yc_c00387{bottom:805.242517px;}
.yb_c00387{bottom:835.599394px;}
.y13_c00387{bottom:864.445654px;}
.ya_c00387{bottom:952.828173px;}
.y9_c00387{bottom:983.185050px;}
.y8_c00387{bottom:1013.541927px;}
.y7_c00387{bottom:1043.898803px;}
.y6_c00387{bottom:1074.255680px;}
.y5_c00387{bottom:1104.612557px;}
.y4_c00387{bottom:1134.969434px;}
.y3_c00387{bottom:1165.326310px;}
.y2_c00387{bottom:1199.252094px;}
.h5_c00387{height:56.953337px;}
.h3_c00387{height:56.983387px;}
.h6_c00387{height:66.961090px;}
.h4_c00387{height:67.002968px;}
.h2_c00387{height:1304.999946px;}
.h0_c00387{height:1304.999953px;}
.h1_c00387{height:1305.000000px;}
.w2_c00387{width:934.874961px;}
.w0_c00387{width:934.875000px;}
.w1_c00387{width:935.250000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:87.850202px;}
.x2_c00387{left:451.985828px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws1_c00387{word-spacing:-16.604696pt;}
.ws0_c00387{word-spacing:-0.063962pt;}
.ws2_c00387{word-spacing:0.000000pt;}
._b_c00387{width:0.922483pt;}
._a_c00387{width:2.248657pt;}
._2_c00387{width:3.732147pt;}
._7_c00387{width:5.023000pt;}
._3_c00387{width:10.383205pt;}
._d_c00387{width:11.339362pt;}
._5_c00387{width:12.357184pt;}
._1_c00387{width:14.085341pt;}
._4_c00387{width:15.095113pt;}
._6_c00387{width:17.552021pt;}
._0_c00387{width:18.894971pt;}
._c_c00387{width:20.569994pt;}
._9_c00387{width:22.278325pt;}
._8_c00387{width:38.742494pt;}
.fs3_c00387{font-size:63.921837pt;}
.fs1_c00387{font-size:63.961814pt;}
.fs2_c00387{font-size:66.080552pt;}
.fs0_c00387{font-size:66.115417pt;}
.y0_c00387{bottom:0.000000pt;}
.y1_c00387{bottom:0.000007pt;}
.y1f_c00387{bottom:26.805533pt;}
.y1d_c00387{bottom:153.440863pt;}
.y1c_c00387{bottom:180.424754pt;}
.y1b_c00387{bottom:207.408644pt;}
.y1a_c00387{bottom:234.392535pt;}
.y19_c00387{bottom:261.376425pt;}
.y18_c00387{bottom:288.360316pt;}
.y1e_c00387{bottom:317.950406pt;}
.y17_c00387{bottom:392.252144pt;}
.y16_c00387{bottom:419.236034pt;}
.y15_c00387{bottom:446.219925pt;}
.y14_c00387{bottom:475.545727pt;}
.y12_c00387{bottom:553.867783pt;}
.y11_c00387{bottom:580.851674pt;}
.y10_c00387{bottom:607.835564pt;}
.yf_c00387{bottom:634.819455pt;}
.ye_c00387{bottom:661.803345pt;}
.yd_c00387{bottom:688.787236pt;}
.yc_c00387{bottom:715.771126pt;}
.yb_c00387{bottom:742.755017pt;}
.y13_c00387{bottom:768.396137pt;}
.ya_c00387{bottom:846.958376pt;}
.y9_c00387{bottom:873.942266pt;}
.y8_c00387{bottom:900.926157pt;}
.y7_c00387{bottom:927.910047pt;}
.y6_c00387{bottom:954.893938pt;}
.y5_c00387{bottom:981.877828pt;}
.y4_c00387{bottom:1008.861719pt;}
.y3_c00387{bottom:1035.845609pt;}
.y2_c00387{bottom:1066.001862pt;}
.h5_c00387{height:50.625189pt;}
.h3_c00387{height:50.651899pt;}
.h6_c00387{height:59.520969pt;}
.h4_c00387{height:59.558193pt;}
.h2_c00387{height:1159.999952pt;}
.h0_c00387{height:1159.999959pt;}
.h1_c00387{height:1160.000000pt;}
.w2_c00387{width:830.999965pt;}
.w0_c00387{width:831.000000pt;}
.w1_c00387{width:831.333333pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:78.089069pt;}
.x2_c00387{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2d6443e3629aa59c8be5e53.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:0.734863;font-style:normal;font-weight: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_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;line-height:0.940000;font-style:normal;font-weight: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_c00388;src:url('chunks/assets/font_d00a28104a0389e742b2dca9.woff2')format("woff");}.ff6_c00388{font-family:ff6_c00388;line-height:0.769531;font-style:normal;font-weight: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_c00388;src:url('chunks/assets/font_cdb390b2052d17687ae3076d.woff2')format("woff");}.ff7_c00388{font-family:ff7_c00388;line-height:1.171387;font-style:normal;font-weight: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_c00388;src:url('chunks/assets/font_b9b8ec674385ebc1164e2d91.woff2')format("woff");}.ff8_c00388{font-family:ff8_c00388;line-height:1.000000;font-style:normal;font-weight: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_c00388;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff9_c00388{font-family:ff9_c00388;line-height:1.006348;font-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_c00388{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00388{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00388{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00388{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00388{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00388{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00388{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00388{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00388{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00388{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00388{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00388{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00388{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00388{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00388{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00388{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00388{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00388{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00388{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00388{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00388{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00388{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00388{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00388{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00388{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00388{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00388{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00388{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00388{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00388{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00388{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00388{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00388{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00388{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00388{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00388{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00388{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00388{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00388{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00388{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00388{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00388{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00388{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00388{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00388{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00388{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00388{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00388{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00388{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00388{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00388{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00388{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00388{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00388{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00388{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00388{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00388{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00388{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00388{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00388{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00388{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00388{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.ls0_c00388{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00388{word-spacing:-41.664701px;}
.ws3_c00388{word-spacing:-18.680283px;}
.ws0_c00388{word-spacing:-15.162211px;}
.ws4_c00388{word-spacing:-0.055722px;}
.ws5_c00388{word-spacing:0.000000px;}
.ws2_c00388{word-spacing:281.470806px;}
._6_c00388{width:1.239754px;}
._3_c00388{width:6.126303px;}
._4_c00388{width:7.847038px;}
._0_c00388{width:9.817768px;}
._5_c00388{width:11.632453px;}
._2_c00388{width:20.614799px;}
._1_c00388{width:22.219492px;}
.fc3_c00388{color:rgb(194,158,103);}
.fc2_c00388{color:rgb(9,71,81);}
.fc1_c00388{color:rgb(255,255,255);}
.fc0_c00388{color:rgb(0,0,0);}
.fs8_c00388{font-size:41.974772px;}
.fsc_c00388{font-size:41.975069px;}
.fs2_c00388{font-size:47.339969px;}
.fs5_c00388{font-size:47.339970px;}
.fs1_c00388{font-size:47.339972px;}
.fs4_c00388{font-size:47.339973px;}
.fs3_c00388{font-size:47.339974px;}
.fs6_c00388{font-size:47.339975px;}
.fs9_c00388{font-size:51.630774px;}
.fs10_c00388{font-size:55.721735px;}
.fsa_c00388{font-size:59.949210px;}
.fsf_c00388{font-size:71.912067px;}
.fs0_c00388{font-size:71.957041px;}
.fse_c00388{font-size:74.379845px;}
.fs7_c00388{font-size:76.965540px;}
.fsb_c00388{font-size:89.946302px;}
.fsd_c00388{font-size:95.927731px;}
.y0_c00388{bottom:0.000000px;}
.y1_c00388{bottom:0.000008px;}
.y57_c00388{bottom:30.156225px;}
.y4f_c00388{bottom:67.121325px;}
.y4e_c00388{bottom:97.478202px;}
.y4d_c00388{bottom:127.835079px;}
.y4c_c00388{bottom:158.191956px;}
.y4b_c00388{bottom:188.548833px;}
.y4a_c00388{bottom:218.905709px;}
.y49_c00388{bottom:249.262586px;}
.y48_c00388{bottom:279.619463px;}
.y47_c00388{bottom:309.976340px;}
.y56_c00388{bottom:346.533263px;}
.y45_c00388{bottom:402.064151px;}
.y42_c00388{bottom:487.376458px;}
.y10_c00388{bottom:493.812629px;}
.y38_c00388{bottom:493.827623px;}
.yf_c00388{bottom:494.337609px;}
.y39_c00388{bottom:494.357158px;}
.y22_c00388{bottom:494.700737px;}
.y37_c00388{bottom:495.071586px;}
.ye_c00388{bottom:495.403002px;}
.y23_c00388{bottom:495.533530px;}
.y21_c00388{bottom:495.553663px;}
.y36_c00388{bottom:496.322201px;}
.yd_c00388{bottom:496.475623px;}
.y20_c00388{bottom:496.587915px;}
.y3a_c00388{bottom:496.772260px;}
.y11_c00388{bottom:496.835884px;}
.y24_c00388{bottom:497.713596px;}
.y35_c00388{bottom:497.966053px;}
.yc_c00388{bottom:498.126234px;}
.y1f_c00388{bottom:498.789265px;}
.y25_c00388{bottom:499.103521px;}
.y34_c00388{bottom:499.653306px;}
.yb_c00388{bottom:499.818769px;}
.y26_c00388{bottom:500.800864px;}
.y12_c00388{bottom:501.110605px;}
.y33_c00388{bottom:501.517382px;}
.ya_c00388{bottom:501.687706px;}
.y3b_c00388{bottom:501.869915px;}
.y1e_c00388{bottom:502.578702px;}
.y27_c00388{bottom:503.241722px;}
.y13_c00388{bottom:503.627848px;}
.y3c_c00388{bottom:505.496019px;}
.y28_c00388{bottom:505.499367px;}
.y32_c00388{bottom:506.168989px;}
.y9_c00388{bottom:506.348634px;}
.y1d_c00388{bottom:508.044213px;}
.y29_c00388{bottom:508.766327px;}
.y14_c00388{bottom:509.576794px;}
.y3d_c00388{bottom:511.126534px;}
.y1c_c00388{bottom:512.508085px;}
.y31_c00388{bottom:512.566592px;}
.y8_c00388{bottom:512.754669px;}
.y15_c00388{bottom:514.322677px;}
.y2a_c00388{bottom:517.158603px;}
.y3e_c00388{bottom:517.780195px;}
.y1b_c00388{bottom:518.929057px;}
.y30_c00388{bottom:519.869222px;}
.y7_c00388{bottom:519.959421px;}
.y6_c00388{bottom:523.416158px;}
.y1a_c00388{bottom:523.496236px;}
.y2b_c00388{bottom:525.202812px;}
.y16_c00388{bottom:526.099549px;}
.y2f_c00388{bottom:527.026630px;}
.y5_c00388{bottom:529.422883px;}
.y3f_c00388{bottom:529.736175px;}
.y19_c00388{bottom:531.263725px;}
.y2e_c00388{bottom:531.792993px;}
.y41_c00388{bottom:533.728456px;}
.y55_c00388{bottom:534.421816px;}
.y18_c00388{bottom:535.155114px;}
.y4_c00388{bottom:536.678099px;}
.y2d_c00388{bottom:537.961701px;}
.y17_c00388{bottom:538.332892px;}
.y40_c00388{bottom:538.696314px;}
.y43_c00388{bottom:540.431168px;}
.y2c_c00388{bottom:545.020884px;}
.y3_c00388{bottom:546.207017px;}
.y44_c00388{bottom:577.871130px;}
.y2_c00388{bottom:597.559761px;}
.y58_c00388{bottom:647.654314px;}
.y46_c00388{bottom:1021.609033px;}
.y53_c00388{bottom:1127.585799px;}
.y51_c00388{bottom:1129.718199px;}
.y50_c00388{bottom:1147.707459px;}
.y54_c00388{bottom:1150.017273px;}
.y52_c00388{bottom:1170.658440px;}
.hb_c00388{height:32.157430px;}
.h8_c00388{height:35.967282px;}
.h7_c00388{height:35.967283px;}
.h9_c00388{height:35.967285px;}
.h5_c00388{height:36.267779px;}
.h4_c00388{height:36.267781px;}
.h6_c00388{height:36.267783px;}
.hc_c00388{height:37.437353px;}
.h10_c00388{height:39.085184px;}
.hd_c00388{height:45.561399px;}
.h15_c00388{height:51.885424px;}
.h14_c00388{height:55.092790px;}
.h3_c00388{height:55.127245px;}
.hf_c00388{height:55.821847px;}
.ha_c00388{height:56.261810px;}
.h13_c00388{height:56.983387px;}
.h11_c00388{height:67.002968px;}
.he_c00388{height:68.338108px;}
.h12_c00388{height:89.323331px;}
.h2_c00388{height:1304.999946px;}
.h0_c00388{height:1304.999953px;}
.h1_c00388{height:1305.000000px;}
.w2_c00388{width:934.874961px;}
.w0_c00388{width:934.875000px;}
.w1_c00388{width:935.250000px;}
.x0_c00388{left:0.000000px;}
.x3c_c00388{left:87.850202px;}
.x42_c00388{left:89.206783px;}
.x44_c00388{left:105.018231px;}
.x3d_c00388{left:108.062661px;}
.x3e_c00388{left:109.658623px;}
.x3b_c00388{left:130.612669px;}
.x27_c00388{left:134.894322px;}
.x26_c00388{left:136.566734px;}
.x28_c00388{left:139.937719px;}
.x29_c00388{left:144.785273px;}
.x2a_c00388{left:150.147890px;}
.x2b_c00388{left:152.899057px;}
.x2c_c00388{left:155.907145px;}
.x2d_c00388{left:159.752336px;}
.x37_c00388{left:161.347648px;}
.x2e_c00388{left:163.203941px;}
.x2f_c00388{left:171.483965px;}
.x30_c00388{left:179.748684px;}
.x31_c00388{left:188.175145px;}
.x32_c00388{left:196.556636px;}
.x33_c00388{left:200.721504px;}
.x34_c00388{left:205.276922px;}
.x35_c00388{left:209.084069px;}
.x36_c00388{left:211.669316px;}
.x3_c00388{left:230.260919px;}
.x2_c00388{left:232.395871px;}
.x4_c00388{left:235.482735px;}
.x5_c00388{left:240.319117px;}
.x6_c00388{left:245.673577px;}
.x7_c00388{left:248.421493px;}
.x8_c00388{left:251.426626px;}
.x9_c00388{left:255.268917px;}
.x41_c00388{left:256.468943px;}
.xa_c00388{left:258.553698px;}
.xb_c00388{left:262.988294px;}
.xc_c00388{left:271.601212px;}
.xd_c00388{left:283.434780px;}
.xe_c00388{left:290.867654px;}
.xf_c00388{left:294.260334px;}
.x3f_c00388{left:295.438786px;}
.x10_c00388{left:299.596701px;}
.x11_c00388{left:302.984150px;}
.x12_c00388{left:306.993562px;}
.x13_c00388{left:325.378518px;}
.x14_c00388{left:326.595106px;}
.x15_c00388{left:328.015253px;}
.x16_c00388{left:331.410444px;}
.x17_c00388{left:334.633053px;}
.x18_c00388{left:340.511825px;}
.x19_c00388{left:346.695139px;}
.x1a_c00388{left:352.384720px;}
.x1b_c00388{left:355.792694px;}
.x1c_c00388{left:363.695116px;}
.x1d_c00388{left:371.679253px;}
.x1e_c00388{left:378.434940px;}
.x1f_c00388{left:381.453328px;}
.x20_c00388{left:384.455783px;}
.x21_c00388{left:387.851715px;}
.x22_c00388{left:390.467224px;}
.x23_c00388{left:393.779799px;}
.x24_c00388{left:398.952070px;}
.x25_c00388{left:401.755082px;}
.x43_c00388{left:451.985828px;}
.x40_c00388{left:459.898145px;}
.x1_c00388{left:465.097640px;}
.x3a_c00388{left:696.904800px;}
.x39_c00388{left:733.103068px;}
.x38_c00388{left:756.637341px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls0_c00388{letter-spacing:0.000000pt;}
.ws1_c00388{word-spacing:-37.035289pt;}
.ws3_c00388{word-spacing:-16.604696pt;}
.ws0_c00388{word-spacing:-13.477521pt;}
.ws4_c00388{word-spacing:-0.049530pt;}
.ws5_c00388{word-spacing:0.000000pt;}
.ws2_c00388{word-spacing:250.196272pt;}
._6_c00388{width:1.102004pt;}
._3_c00388{width:5.445603pt;}
._4_c00388{width:6.975145pt;}
._0_c00388{width:8.726905pt;}
._5_c00388{width:10.339958pt;}
._2_c00388{width:18.324265pt;}
._1_c00388{width:19.750660pt;}
.fs8_c00388{font-size:37.310908pt;}
.fsc_c00388{font-size:37.311173pt;}
.fs2_c00388{font-size:42.079973pt;}
.fs5_c00388{font-size:42.079974pt;}
.fs1_c00388{font-size:42.079975pt;}
.fs4_c00388{font-size:42.079976pt;}
.fs3_c00388{font-size:42.079977pt;}
.fs6_c00388{font-size:42.079978pt;}
.fs9_c00388{font-size:45.894021pt;}
.fs10_c00388{font-size:49.530431pt;}
.fsa_c00388{font-size:53.288186pt;}
.fsf_c00388{font-size:63.921837pt;}
.fs0_c00388{font-size:63.961814pt;}
.fse_c00388{font-size:66.115417pt;}
.fs7_c00388{font-size:68.413814pt;}
.fsb_c00388{font-size:79.952268pt;}
.fsd_c00388{font-size:85.269094pt;}
.y0_c00388{bottom:0.000000pt;}
.y1_c00388{bottom:0.000007pt;}
.y57_c00388{bottom:26.805533pt;}
.y4f_c00388{bottom:59.663400pt;}
.y4e_c00388{bottom:86.647291pt;}
.y4d_c00388{bottom:113.631181pt;}
.y4c_c00388{bottom:140.615072pt;}
.y4b_c00388{bottom:167.598962pt;}
.y4a_c00388{bottom:194.582853pt;}
.y49_c00388{bottom:221.566743pt;}
.y48_c00388{bottom:248.550634pt;}
.y47_c00388{bottom:275.534524pt;}
.y56_c00388{bottom:308.029567pt;}
.y45_c00388{bottom:357.390356pt;}
.y42_c00388{bottom:433.223518pt;}
.y10_c00388{bottom:438.944560pt;}
.y38_c00388{bottom:438.957887pt;}
.yf_c00388{bottom:439.411208pt;}
.y39_c00388{bottom:439.428585pt;}
.y22_c00388{bottom:439.733989pt;}
.y37_c00388{bottom:440.063632pt;}
.ye_c00388{bottom:440.358224pt;}
.y23_c00388{bottom:440.474249pt;}
.y21_c00388{bottom:440.492144pt;}
.y36_c00388{bottom:441.175290pt;}
.yd_c00388{bottom:441.311665pt;}
.y20_c00388{bottom:441.411480pt;}
.y3a_c00388{bottom:441.575343pt;}
.y11_c00388{bottom:441.631897pt;}
.y24_c00388{bottom:442.412085pt;}
.y35_c00388{bottom:442.636491pt;}
.yc_c00388{bottom:442.778875pt;}
.y1f_c00388{bottom:443.368235pt;}
.y25_c00388{bottom:443.647574pt;}
.y34_c00388{bottom:444.136272pt;}
.yb_c00388{bottom:444.283350pt;}
.y26_c00388{bottom:445.156323pt;}
.y12_c00388{bottom:445.431649pt;}
.y33_c00388{bottom:445.793228pt;}
.ya_c00388{bottom:445.944627pt;}
.y3b_c00388{bottom:446.106592pt;}
.y1e_c00388{bottom:446.736624pt;}
.y27_c00388{bottom:447.325975pt;}
.y13_c00388{bottom:447.669198pt;}
.y3c_c00388{bottom:449.329795pt;}
.y28_c00388{bottom:449.332771pt;}
.y32_c00388{bottom:449.927990pt;}
.y9_c00388{bottom:450.087675pt;}
.y1d_c00388{bottom:451.594856pt;}
.y29_c00388{bottom:452.236735pt;}
.y14_c00388{bottom:452.957150pt;}
.y3d_c00388{bottom:454.334697pt;}
.y1c_c00388{bottom:455.562742pt;}
.y31_c00388{bottom:455.614749pt;}
.y8_c00388{bottom:455.781928pt;}
.y15_c00388{bottom:457.175713pt;}
.y2a_c00388{bottom:459.696536pt;}
.y3e_c00388{bottom:460.249062pt;}
.y1b_c00388{bottom:461.270273pt;}
.y30_c00388{bottom:462.105976pt;}
.y7_c00388{bottom:462.186152pt;}
.y6_c00388{bottom:465.258807pt;}
.y1a_c00388{bottom:465.329988pt;}
.y2b_c00388{bottom:466.846944pt;}
.y16_c00388{bottom:467.644044pt;}
.y2f_c00388{bottom:468.468115pt;}
.y5_c00388{bottom:470.598118pt;}
.y3f_c00388{bottom:470.876600pt;}
.y19_c00388{bottom:472.234422pt;}
.y2e_c00388{bottom:472.704883pt;}
.y41_c00388{bottom:474.425294pt;}
.y55_c00388{bottom:475.041614pt;}
.y18_c00388{bottom:475.693435pt;}
.y4_c00388{bottom:477.047199pt;}
.y2d_c00388{bottom:478.188178pt;}
.y17_c00388{bottom:478.518126pt;}
.y40_c00388{bottom:478.841168pt;}
.y43_c00388{bottom:480.383260pt;}
.y2c_c00388{bottom:484.463008pt;}
.y3_c00388{bottom:485.517349pt;}
.y44_c00388{bottom:513.663227pt;}
.y2_c00388{bottom:531.164232pt;}
.y58_c00388{bottom:575.692724pt;}
.y46_c00388{bottom:908.096918pt;}
.y53_c00388{bottom:1002.298488pt;}
.y51_c00388{bottom:1004.193955pt;}
.y50_c00388{bottom:1020.184408pt;}
.y54_c00388{bottom:1022.237576pt;}
.y52_c00388{bottom:1040.585280pt;}
.hb_c00388{height:28.584382pt;}
.h8_c00388{height:31.970917pt;}
.h7_c00388{height:31.970918pt;}
.h9_c00388{height:31.970920pt;}
.h5_c00388{height:32.238026pt;}
.h4_c00388{height:32.238028pt;}
.h6_c00388{height:32.238029pt;}
.hc_c00388{height:33.277647pt;}
.h10_c00388{height:34.742386pt;}
.hd_c00388{height:40.499022pt;}
.h15_c00388{height:46.120377pt;}
.h14_c00388{height:48.971369pt;}
.h3_c00388{height:49.001996pt;}
.hf_c00388{height:49.619420pt;}
.ha_c00388{height:50.010498pt;}
.h13_c00388{height:50.651899pt;}
.h11_c00388{height:59.558193pt;}
.he_c00388{height:60.744985pt;}
.h12_c00388{height:79.398517pt;}
.h2_c00388{height:1159.999952pt;}
.h0_c00388{height:1159.999959pt;}
.h1_c00388{height:1160.000000pt;}
.w2_c00388{width:830.999965pt;}
.w0_c00388{width:831.000000pt;}
.w1_c00388{width:831.333333pt;}
.x0_c00388{left:0.000000pt;}
.x3c_c00388{left:78.089069pt;}
.x42_c00388{left:79.294918pt;}
.x44_c00388{left:93.349539pt;}
.x3d_c00388{left:96.055698pt;}
.x3e_c00388{left:97.474332pt;}
.x3b_c00388{left:116.100150pt;}
.x27_c00388{left:119.906064pt;}
.x26_c00388{left:121.392652pt;}
.x28_c00388{left:124.389083pt;}
.x29_c00388{left:128.698021pt;}
.x2a_c00388{left:133.464791pt;}
.x2b_c00388{left:135.910272pt;}
.x2c_c00388{left:138.584129pt;}
.x2d_c00388{left:142.002076pt;}
.x37_c00388{left:143.420132pt;}
.x2e_c00388{left:145.070170pt;}
.x2f_c00388{left:152.430191pt;}
.x30_c00388{left:159.776608pt;}
.x31_c00388{left:167.266795pt;}
.x32_c00388{left:174.717010pt;}
.x33_c00388{left:178.419115pt;}
.x34_c00388{left:182.468375pt;}
.x35_c00388{left:185.852506pt;}
.x36_c00388{left:188.150503pt;}
.x3_c00388{left:204.676373pt;}
.x2_c00388{left:206.574107pt;}
.x4_c00388{left:209.317987pt;}
.x5_c00388{left:213.616993pt;}
.x6_c00388{left:218.376513pt;}
.x7_c00388{left:220.819105pt;}
.x8_c00388{left:223.490334pt;}
.x9_c00388{left:226.905704pt;}
.x41_c00388{left:227.972394pt;}
.xa_c00388{left:229.825509pt;}
.xb_c00388{left:233.767373pt;}
.xc_c00388{left:241.423300pt;}
.xd_c00388{left:251.942027pt;}
.xe_c00388{left:258.549026pt;}
.xf_c00388{left:261.564741pt;}
.x3f_c00388{left:262.612255pt;}
.x10_c00388{left:266.308178pt;}
.x11_c00388{left:269.319244pt;}
.x12_c00388{left:272.883167pt;}
.x13_c00388{left:289.225349pt;}
.x14_c00388{left:290.306761pt;}
.x15_c00388{left:291.569114pt;}
.x16_c00388{left:294.587062pt;}
.x17_c00388{left:297.451603pt;}
.x18_c00388{left:302.677178pt;}
.x19_c00388{left:308.173457pt;}
.x1a_c00388{left:313.230862pt;}
.x1b_c00388{left:316.260173pt;}
.x1c_c00388{left:323.284548pt;}
.x1d_c00388{left:330.381558pt;}
.x1e_c00388{left:336.386614pt;}
.x1f_c00388{left:339.069625pt;}
.x20_c00388{left:341.738474pt;}
.x21_c00388{left:344.757080pt;}
.x22_c00388{left:347.081977pt;}
.x23_c00388{left:350.026488pt;}
.x24_c00388{left:354.624063pt;}
.x25_c00388{left:357.115628pt;}
.x43_c00388{left:401.765180pt;}
.x40_c00388{left:408.798352pt;}
.x1_c00388{left:413.420124pt;}
.x3a_c00388{left:619.470933pt;}
.x39_c00388{left:651.647171pt;}
.x38_c00388{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.006348;font-style:normal;font-weight:normal;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_2d5dbc1b4fd07051bd9ccb7b.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.006348;font-style:normal;font-weight:normal;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_c9bd573e748ead6e1a6e8a30.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.000000;font-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_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;}
.ls0_c00389{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00389{word-spacing:-18.691966px;}
.ws1_c00389{word-spacing:-18.680283px;}
.ws2_c00389{word-spacing:0.000000px;}
._0_c00389{width:1.997633px;}
._3_c00389{width:3.942149px;}
._b_c00389{width:5.645043px;}
._1_c00389{width:7.621610px;}
._4_c00389{width:8.653772px;}
._6_c00389{width:10.124993px;}
._5_c00389{width:11.272521px;}
._7_c00389{width:12.662697px;}
._c_c00389{width:13.835957px;}
._9_c00389{width:14.962204px;}
._a_c00389{width:16.806324px;}
._d_c00389{width:22.199043px;}
._2_c00389{width:28.635249px;}
._8_c00389{width:38.773696px;}
.fc1_c00389{color:rgb(0,0,0);}
.fc0_c00389{color:rgb(194,158,103);}
.fs3_c00389{font-size:71.912067px;}
.fs1_c00389{font-size:71.957041px;}
.fs2_c00389{font-size:74.340621px;}
.fs0_c00389{font-size:74.379845px;}
.y0_c00389{bottom:0.000000px;}
.y1_c00389{bottom:0.000008px;}
.y24_c00389{bottom:30.156225px;}
.y22_c00389{bottom:98.162750px;}
.y21_c00389{bottom:128.519627px;}
.y20_c00389{bottom:158.876504px;}
.y1f_c00389{bottom:189.233381px;}
.y1e_c00389{bottom:219.590257px;}
.y1d_c00389{bottom:249.947134px;}
.y23_c00389{bottom:283.236022px;}
.y1c_c00389{bottom:340.718062px;}
.y1b_c00389{bottom:371.074939px;}
.y1a_c00389{bottom:401.431816px;}
.y19_c00389{bottom:437.851767px;}
.y17_c00389{bottom:494.209504px;}
.y16_c00389{bottom:524.566381px;}
.y15_c00389{bottom:554.923258px;}
.y14_c00389{bottom:585.280135px;}
.y13_c00389{bottom:615.637011px;}
.y12_c00389{bottom:645.993888px;}
.y11_c00389{bottom:676.350765px;}
.y10_c00389{bottom:706.707642px;}
.yf_c00389{bottom:737.064518px;}
.ye_c00389{bottom:767.421395px;}
.yd_c00389{bottom:797.778272px;}
.yc_c00389{bottom:828.135149px;}
.yb_c00389{bottom:858.492025px;}
.ya_c00389{bottom:888.848902px;}
.y9_c00389{bottom:919.205779px;}
.y8_c00389{bottom:949.562656px;}
.y18_c00389{bottom:982.212010px;}
.y7_c00389{bottom:1034.012084px;}
.y6_c00389{bottom:1064.368961px;}
.y5_c00389{bottom:1094.725838px;}
.y4_c00389{bottom:1125.082714px;}
.y3_c00389{bottom:1155.439591px;}
.y2_c00389{bottom:1189.365371px;}
.h6_c00389{height:55.092790px;}
.h4_c00389{height:55.127245px;}
.h5_c00389{height:56.953337px;}
.h3_c00389{height:56.983387px;}
.h2_c00389{height:1304.999946px;}
.h0_c00389{height:1304.999953px;}
.h1_c00389{height:1305.000000px;}
.w2_c00389{width:934.874961px;}
.w0_c00389{width:934.875000px;}
.w1_c00389{width:935.250000px;}
.x0_c00389{left:0.000000px;}
.x2_c00389{left:87.850202px;}
.x1_c00389{left:90.668851px;}
.x3_c00389{left:451.985828px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ws0_c00389{word-spacing:-16.615081pt;}
.ws1_c00389{word-spacing:-16.604696pt;}
.ws2_c00389{word-spacing:0.000000pt;}
._0_c00389{width:1.775673pt;}
._3_c00389{width:3.504133pt;}
._b_c00389{width:5.017816pt;}
._1_c00389{width:6.774764pt;}
._4_c00389{width:7.692242pt;}
._6_c00389{width:8.999994pt;}
._5_c00389{width:10.020018pt;}
._7_c00389{width:11.255731pt;}
._c_c00389{width:12.298628pt;}
._9_c00389{width:13.299737pt;}
._a_c00389{width:14.938955pt;}
._d_c00389{width:19.732483pt;}
._2_c00389{width:25.453555pt;}
._8_c00389{width:34.465508pt;}
.fs3_c00389{font-size:63.921837pt;}
.fs1_c00389{font-size:63.961814pt;}
.fs2_c00389{font-size:66.080552pt;}
.fs0_c00389{font-size:66.115417pt;}
.y0_c00389{bottom:0.000000pt;}
.y1_c00389{bottom:0.000007pt;}
.y24_c00389{bottom:26.805533pt;}
.y22_c00389{bottom:87.255778pt;}
.y21_c00389{bottom:114.239668pt;}
.y20_c00389{bottom:141.223559pt;}
.y1f_c00389{bottom:168.207449pt;}
.y1e_c00389{bottom:195.191340pt;}
.y1d_c00389{bottom:222.175230pt;}
.y23_c00389{bottom:251.765352pt;}
.y1c_c00389{bottom:302.860500pt;}
.y1b_c00389{bottom:329.844390pt;}
.y1a_c00389{bottom:356.828281pt;}
.y19_c00389{bottom:389.201571pt;}
.y17_c00389{bottom:439.297337pt;}
.y16_c00389{bottom:466.281228pt;}
.y15_c00389{bottom:493.265118pt;}
.y14_c00389{bottom:520.249008pt;}
.y13_c00389{bottom:547.232899pt;}
.y12_c00389{bottom:574.216789pt;}
.y11_c00389{bottom:601.200680pt;}
.y10_c00389{bottom:628.184570pt;}
.yf_c00389{bottom:655.168461pt;}
.ye_c00389{bottom:682.152351pt;}
.yd_c00389{bottom:709.136242pt;}
.yc_c00389{bottom:736.120132pt;}
.yb_c00389{bottom:763.104023pt;}
.ya_c00389{bottom:790.087913pt;}
.y9_c00389{bottom:817.071804pt;}
.y8_c00389{bottom:844.055694pt;}
.y18_c00389{bottom:873.077343pt;}
.y7_c00389{bottom:919.121853pt;}
.y6_c00389{bottom:946.105743pt;}
.y5_c00389{bottom:973.089633pt;}
.y4_c00389{bottom:1000.073524pt;}
.y3_c00389{bottom:1027.057414pt;}
.y2_c00389{bottom:1057.213663pt;}
.h6_c00389{height:48.971369pt;}
.h4_c00389{height:49.001996pt;}
.h5_c00389{height:50.625189pt;}
.h3_c00389{height:50.651899pt;}
.h2_c00389{height:1159.999952pt;}
.h0_c00389{height:1159.999959pt;}
.h1_c00389{height:1160.000000pt;}
.w2_c00389{width:830.999965pt;}
.w0_c00389{width:831.000000pt;}
.w1_c00389{width:831.333333pt;}
.x0_c00389{left:0.000000pt;}
.x2_c00389{left:78.089069pt;}
.x1_c00389{left:80.594534pt;}
.x3_c00389{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d34ba6d5f1aad1fe0b51d122.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.006348;font-style:normal;font-weight:normal;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_d00a28104a0389e742b2dca9.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:0.769531;font-style:normal;font-weight:normal;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_ef6a2492957adf0f22123349.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.171387;font-style:normal;font-weight:normal;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_d7a8aae394493e8899385e79.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.000000;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:0.769531;font-style:normal;font-weight: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_c00390;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff6_c00390{font-family:ff6_c00390;line-height:0.743000;font-style:normal;font-weight: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_c00390;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00390{font-family:ff7_c00390;line-height:1.006348;font-style:normal;font-weight: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_c00390;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00390{font-family:ff8_c00390;line-height:0.734863;font-style:normal;font-weight: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_c00390;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00390{font-family:ff9_c00390;line-height:0.940000;font-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_c00390{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00390{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00390{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00390{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00390{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00390{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00390{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00390{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00390{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00390{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00390{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00390{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00390{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00390{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00390{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00390{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00390{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00390{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00390{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00390{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00390{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00390{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00390{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00390{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00390{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00390{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00390{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00390{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00390{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00390{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00390{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00390{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00390{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00390{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00390{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00390{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00390{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00390{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00390{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00390{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00390{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00390{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00390{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00390{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00390{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00390{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00390{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00390{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00390{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00390{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00390{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00390{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00390{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00390{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00390{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00390{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00390{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00390{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00390{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00390{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00390{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00390{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.ls0_c00390{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00390{word-spacing:-41.664701px;}
.ws3_c00390{word-spacing:-18.680283px;}
.ws0_c00390{word-spacing:-15.162211px;}
.ws2_c00390{word-spacing:-0.055722px;}
.ws5_c00390{word-spacing:0.000000px;}
.ws1_c00390{word-spacing:281.470806px;}
._5_c00390{margin-left:-39.489943px;}
._0_c00390{width:1.370279px;}
._2_c00390{width:6.138584px;}
._4_c00390{width:7.368242px;}
._1_c00390{width:9.122337px;}
._3_c00390{width:12.729742px;}
.fc3_c00390{color:rgb(9,71,81);}
.fc2_c00390{color:rgb(194,158,103);}
.fc1_c00390{color:rgb(255,255,255);}
.fc0_c00390{color:rgb(0,0,0);}
.fsc_c00390{font-size:41.974772px;}
.fs3_c00390{font-size:41.975069px;}
.fs6_c00390{font-size:47.339969px;}
.fs9_c00390{font-size:47.339970px;}
.fs5_c00390{font-size:47.339972px;}
.fs8_c00390{font-size:47.339973px;}
.fs7_c00390{font-size:47.339974px;}
.fsa_c00390{font-size:47.339975px;}
.fse_c00390{font-size:51.630774px;}
.fsf_c00390{font-size:55.721735px;}
.fs2_c00390{font-size:59.949210px;}
.fs10_c00390{font-size:71.912067px;}
.fs0_c00390{font-size:71.957041px;}
.fsd_c00390{font-size:74.379845px;}
.fsb_c00390{font-size:76.965540px;}
.fs1_c00390{font-size:89.946302px;}
.fs4_c00390{font-size:95.927731px;}
.y0_c00390{bottom:0.000000px;}
.y1_c00390{bottom:0.000008px;}
.y54_c00390{bottom:30.156225px;}
.y7_c00390{bottom:145.310796px;}
.y6_c00390{bottom:175.667673px;}
.y5_c00390{bottom:206.024550px;}
.y4_c00390{bottom:236.381427px;}
.y3_c00390{bottom:266.738303px;}
.y2_c00390{bottom:297.095180px;}
.y51_c00390{bottom:333.652103px;}
.y52_c00390{bottom:402.064151px;}
.y4d_c00390{bottom:487.376458px;}
.y1b_c00390{bottom:493.812629px;}
.y43_c00390{bottom:493.827623px;}
.y1a_c00390{bottom:494.337609px;}
.y44_c00390{bottom:494.357158px;}
.y2d_c00390{bottom:494.700737px;}
.y42_c00390{bottom:495.071586px;}
.y19_c00390{bottom:495.403002px;}
.y2e_c00390{bottom:495.533530px;}
.y2c_c00390{bottom:495.553663px;}
.y41_c00390{bottom:496.322201px;}
.y18_c00390{bottom:496.475623px;}
.y2b_c00390{bottom:496.587915px;}
.y45_c00390{bottom:496.772260px;}
.y1c_c00390{bottom:496.835884px;}
.y2f_c00390{bottom:497.713596px;}
.y40_c00390{bottom:497.966053px;}
.y17_c00390{bottom:498.126234px;}
.y2a_c00390{bottom:498.789265px;}
.y30_c00390{bottom:499.103521px;}
.y3f_c00390{bottom:499.653306px;}
.y16_c00390{bottom:499.818769px;}
.y31_c00390{bottom:500.800864px;}
.y1d_c00390{bottom:501.110605px;}
.y3e_c00390{bottom:501.517382px;}
.y15_c00390{bottom:501.687706px;}
.y46_c00390{bottom:501.869915px;}
.y29_c00390{bottom:502.578702px;}
.y32_c00390{bottom:503.241722px;}
.y1e_c00390{bottom:503.627848px;}
.y47_c00390{bottom:505.496019px;}
.y33_c00390{bottom:505.499367px;}
.y3d_c00390{bottom:506.168989px;}
.y14_c00390{bottom:506.348634px;}
.y28_c00390{bottom:508.044213px;}
.y34_c00390{bottom:508.766327px;}
.y1f_c00390{bottom:509.576794px;}
.y48_c00390{bottom:511.126534px;}
.y27_c00390{bottom:512.508085px;}
.y3c_c00390{bottom:512.566592px;}
.y13_c00390{bottom:512.754669px;}
.y20_c00390{bottom:514.322677px;}
.y35_c00390{bottom:517.158603px;}
.y49_c00390{bottom:517.780195px;}
.y26_c00390{bottom:518.929057px;}
.y3b_c00390{bottom:519.869222px;}
.y12_c00390{bottom:519.959421px;}
.y11_c00390{bottom:523.416158px;}
.y25_c00390{bottom:523.496236px;}
.y36_c00390{bottom:525.202812px;}
.y21_c00390{bottom:526.099549px;}
.y3a_c00390{bottom:527.026630px;}
.y10_c00390{bottom:529.422883px;}
.y4a_c00390{bottom:529.736175px;}
.y24_c00390{bottom:531.263725px;}
.y39_c00390{bottom:531.792993px;}
.y4c_c00390{bottom:533.728456px;}
.y50_c00390{bottom:534.421816px;}
.y23_c00390{bottom:535.155114px;}
.yf_c00390{bottom:536.678099px;}
.y38_c00390{bottom:537.961701px;}
.y22_c00390{bottom:538.332892px;}
.y4b_c00390{bottom:538.696314px;}
.y4e_c00390{bottom:540.431168px;}
.y37_c00390{bottom:545.020884px;}
.ye_c00390{bottom:546.207017px;}
.y4f_c00390{bottom:577.871130px;}
.yd_c00390{bottom:597.559761px;}
.y53_c00390{bottom:639.489911px;}
.y55_c00390{bottom:1021.609033px;}
.yb_c00390{bottom:1127.585799px;}
.y9_c00390{bottom:1129.718199px;}
.y8_c00390{bottom:1147.707459px;}
.yc_c00390{bottom:1150.017273px;}
.ya_c00390{bottom:1170.658440px;}
.h10_c00390{height:32.157430px;}
.hd_c00390{height:35.967282px;}
.hc_c00390{height:35.967283px;}
.he_c00390{height:35.967285px;}
.ha_c00390{height:36.267779px;}
.h9_c00390{height:36.267781px;}
.hb_c00390{height:36.267783px;}
.h12_c00390{height:37.437353px;}
.h6_c00390{height:39.085184px;}
.h15_c00390{height:45.561399px;}
.h13_c00390{height:51.885424px;}
.h14_c00390{height:55.092790px;}
.h3_c00390{height:55.127245px;}
.h5_c00390{height:55.821847px;}
.hf_c00390{height:56.261810px;}
.h11_c00390{height:56.983387px;}
.h7_c00390{height:67.002968px;}
.h4_c00390{height:68.338108px;}
.h8_c00390{height:89.323331px;}
.h2_c00390{height:1304.999946px;}
.h0_c00390{height:1304.999953px;}
.h1_c00390{height:1305.000000px;}
.w2_c00390{width:934.874961px;}
.w0_c00390{width:934.875000px;}
.w1_c00390{width:935.250000px;}
.x0_c00390{left:0.000000px;}
.x1_c00390{left:87.850202px;}
.x3f_c00390{left:89.206783px;}
.x2_c00390{left:108.062661px;}
.x3_c00390{left:109.658623px;}
.x43_c00390{left:130.612669px;}
.x2b_c00390{left:134.894322px;}
.x2a_c00390{left:136.566734px;}
.x2c_c00390{left:139.937719px;}
.x2d_c00390{left:144.785273px;}
.x2e_c00390{left:150.147890px;}
.x2f_c00390{left:152.899057px;}
.x30_c00390{left:155.907145px;}
.x31_c00390{left:159.752336px;}
.x3b_c00390{left:161.347648px;}
.x32_c00390{left:163.203941px;}
.x33_c00390{left:171.483965px;}
.x34_c00390{left:179.748684px;}
.x35_c00390{left:188.175145px;}
.x36_c00390{left:196.556636px;}
.x37_c00390{left:200.721504px;}
.x38_c00390{left:205.276922px;}
.x39_c00390{left:209.084069px;}
.x3a_c00390{left:211.669316px;}
.x7_c00390{left:230.260919px;}
.x6_c00390{left:232.395871px;}
.x8_c00390{left:235.482735px;}
.x9_c00390{left:240.319117px;}
.xa_c00390{left:245.673577px;}
.xb_c00390{left:248.421493px;}
.xc_c00390{left:251.426626px;}
.xd_c00390{left:255.268917px;}
.x3e_c00390{left:256.468943px;}
.xe_c00390{left:258.553698px;}
.xf_c00390{left:262.988294px;}
.x10_c00390{left:271.601212px;}
.x11_c00390{left:283.434780px;}
.x12_c00390{left:290.867654px;}
.x13_c00390{left:294.260334px;}
.x4_c00390{left:295.438786px;}
.x14_c00390{left:299.596701px;}
.x15_c00390{left:302.984150px;}
.x16_c00390{left:306.993562px;}
.x17_c00390{left:325.378518px;}
.x18_c00390{left:326.595106px;}
.x19_c00390{left:328.015253px;}
.x1a_c00390{left:331.410444px;}
.x1b_c00390{left:334.633053px;}
.x1c_c00390{left:340.511825px;}
.x1d_c00390{left:346.695139px;}
.x1e_c00390{left:352.384720px;}
.x1f_c00390{left:355.792694px;}
.x20_c00390{left:363.695116px;}
.x21_c00390{left:371.679253px;}
.x22_c00390{left:378.434940px;}
.x23_c00390{left:381.453328px;}
.x24_c00390{left:384.455783px;}
.x25_c00390{left:387.851715px;}
.x26_c00390{left:390.467224px;}
.x27_c00390{left:393.779799px;}
.x28_c00390{left:398.952070px;}
.x29_c00390{left:401.755082px;}
.x42_c00390{left:451.985828px;}
.x5_c00390{left:465.097640px;}
.x40_c00390{left:696.904800px;}
.x41_c00390{left:699.823483px;}
.x3d_c00390{left:733.103068px;}
.x3c_c00390{left:756.637341px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws4_c00390{word-spacing:-37.035289pt;}
.ws3_c00390{word-spacing:-16.604696pt;}
.ws0_c00390{word-spacing:-13.477521pt;}
.ws2_c00390{word-spacing:-0.049530pt;}
.ws5_c00390{word-spacing:0.000000pt;}
.ws1_c00390{word-spacing:250.196272pt;}
._5_c00390{margin-left:-35.102171pt;}
._0_c00390{width:1.218026pt;}
._2_c00390{width:5.456520pt;}
._4_c00390{width:6.549548pt;}
._1_c00390{width:8.108744pt;}
._3_c00390{width:11.315326pt;}
.fsc_c00390{font-size:37.310908pt;}
.fs3_c00390{font-size:37.311173pt;}
.fs6_c00390{font-size:42.079973pt;}
.fs9_c00390{font-size:42.079974pt;}
.fs5_c00390{font-size:42.079975pt;}
.fs8_c00390{font-size:42.079976pt;}
.fs7_c00390{font-size:42.079977pt;}
.fsa_c00390{font-size:42.079978pt;}
.fse_c00390{font-size:45.894021pt;}
.fsf_c00390{font-size:49.530431pt;}
.fs2_c00390{font-size:53.288186pt;}
.fs10_c00390{font-size:63.921837pt;}
.fs0_c00390{font-size:63.961814pt;}
.fsd_c00390{font-size:66.115417pt;}
.fsb_c00390{font-size:68.413814pt;}
.fs1_c00390{font-size:79.952268pt;}
.fs4_c00390{font-size:85.269094pt;}
.y0_c00390{bottom:0.000000pt;}
.y1_c00390{bottom:0.000007pt;}
.y54_c00390{bottom:26.805533pt;}
.y7_c00390{bottom:129.165152pt;}
.y6_c00390{bottom:156.149043pt;}
.y5_c00390{bottom:183.132933pt;}
.y4_c00390{bottom:210.116824pt;}
.y3_c00390{bottom:237.100714pt;}
.y2_c00390{bottom:264.084605pt;}
.y51_c00390{bottom:296.579647pt;}
.y52_c00390{bottom:357.390356pt;}
.y4d_c00390{bottom:433.223518pt;}
.y1b_c00390{bottom:438.944560pt;}
.y43_c00390{bottom:438.957887pt;}
.y1a_c00390{bottom:439.411208pt;}
.y44_c00390{bottom:439.428585pt;}
.y2d_c00390{bottom:439.733989pt;}
.y42_c00390{bottom:440.063632pt;}
.y19_c00390{bottom:440.358224pt;}
.y2e_c00390{bottom:440.474249pt;}
.y2c_c00390{bottom:440.492144pt;}
.y41_c00390{bottom:441.175290pt;}
.y18_c00390{bottom:441.311665pt;}
.y2b_c00390{bottom:441.411480pt;}
.y45_c00390{bottom:441.575343pt;}
.y1c_c00390{bottom:441.631897pt;}
.y2f_c00390{bottom:442.412085pt;}
.y40_c00390{bottom:442.636491pt;}
.y17_c00390{bottom:442.778875pt;}
.y2a_c00390{bottom:443.368235pt;}
.y30_c00390{bottom:443.647574pt;}
.y3f_c00390{bottom:444.136272pt;}
.y16_c00390{bottom:444.283350pt;}
.y31_c00390{bottom:445.156323pt;}
.y1d_c00390{bottom:445.431649pt;}
.y3e_c00390{bottom:445.793228pt;}
.y15_c00390{bottom:445.944627pt;}
.y46_c00390{bottom:446.106592pt;}
.y29_c00390{bottom:446.736624pt;}
.y32_c00390{bottom:447.325975pt;}
.y1e_c00390{bottom:447.669198pt;}
.y47_c00390{bottom:449.329795pt;}
.y33_c00390{bottom:449.332771pt;}
.y3d_c00390{bottom:449.927990pt;}
.y14_c00390{bottom:450.087675pt;}
.y28_c00390{bottom:451.594856pt;}
.y34_c00390{bottom:452.236735pt;}
.y1f_c00390{bottom:452.957150pt;}
.y48_c00390{bottom:454.334697pt;}
.y27_c00390{bottom:455.562742pt;}
.y3c_c00390{bottom:455.614749pt;}
.y13_c00390{bottom:455.781928pt;}
.y20_c00390{bottom:457.175713pt;}
.y35_c00390{bottom:459.696536pt;}
.y49_c00390{bottom:460.249062pt;}
.y26_c00390{bottom:461.270273pt;}
.y3b_c00390{bottom:462.105976pt;}
.y12_c00390{bottom:462.186152pt;}
.y11_c00390{bottom:465.258807pt;}
.y25_c00390{bottom:465.329988pt;}
.y36_c00390{bottom:466.846944pt;}
.y21_c00390{bottom:467.644044pt;}
.y3a_c00390{bottom:468.468115pt;}
.y10_c00390{bottom:470.598118pt;}
.y4a_c00390{bottom:470.876600pt;}
.y24_c00390{bottom:472.234422pt;}
.y39_c00390{bottom:472.704883pt;}
.y4c_c00390{bottom:474.425294pt;}
.y50_c00390{bottom:475.041614pt;}
.y23_c00390{bottom:475.693435pt;}
.yf_c00390{bottom:477.047199pt;}
.y38_c00390{bottom:478.188178pt;}
.y22_c00390{bottom:478.518126pt;}
.y4b_c00390{bottom:478.841168pt;}
.y4e_c00390{bottom:480.383260pt;}
.y37_c00390{bottom:484.463008pt;}
.ye_c00390{bottom:485.517349pt;}
.y4f_c00390{bottom:513.663227pt;}
.yd_c00390{bottom:531.164232pt;}
.y53_c00390{bottom:568.435476pt;}
.y55_c00390{bottom:908.096918pt;}
.yb_c00390{bottom:1002.298488pt;}
.y9_c00390{bottom:1004.193955pt;}
.y8_c00390{bottom:1020.184408pt;}
.yc_c00390{bottom:1022.237576pt;}
.ya_c00390{bottom:1040.585280pt;}
.h10_c00390{height:28.584382pt;}
.hd_c00390{height:31.970917pt;}
.hc_c00390{height:31.970918pt;}
.he_c00390{height:31.970920pt;}
.ha_c00390{height:32.238026pt;}
.h9_c00390{height:32.238028pt;}
.hb_c00390{height:32.238029pt;}
.h12_c00390{height:33.277647pt;}
.h6_c00390{height:34.742386pt;}
.h15_c00390{height:40.499022pt;}
.h13_c00390{height:46.120377pt;}
.h14_c00390{height:48.971369pt;}
.h3_c00390{height:49.001996pt;}
.h5_c00390{height:49.619420pt;}
.hf_c00390{height:50.010498pt;}
.h11_c00390{height:50.651899pt;}
.h7_c00390{height:59.558193pt;}
.h4_c00390{height:60.744985pt;}
.h8_c00390{height:79.398517pt;}
.h2_c00390{height:1159.999952pt;}
.h0_c00390{height:1159.999959pt;}
.h1_c00390{height:1160.000000pt;}
.w2_c00390{width:830.999965pt;}
.w0_c00390{width:831.000000pt;}
.w1_c00390{width:831.333333pt;}
.x0_c00390{left:0.000000pt;}
.x1_c00390{left:78.089069pt;}
.x3f_c00390{left:79.294918pt;}
.x2_c00390{left:96.055698pt;}
.x3_c00390{left:97.474332pt;}
.x43_c00390{left:116.100150pt;}
.x2b_c00390{left:119.906064pt;}
.x2a_c00390{left:121.392652pt;}
.x2c_c00390{left:124.389083pt;}
.x2d_c00390{left:128.698021pt;}
.x2e_c00390{left:133.464791pt;}
.x2f_c00390{left:135.910272pt;}
.x30_c00390{left:138.584129pt;}
.x31_c00390{left:142.002076pt;}
.x3b_c00390{left:143.420132pt;}
.x32_c00390{left:145.070170pt;}
.x33_c00390{left:152.430191pt;}
.x34_c00390{left:159.776608pt;}
.x35_c00390{left:167.266795pt;}
.x36_c00390{left:174.717010pt;}
.x37_c00390{left:178.419115pt;}
.x38_c00390{left:182.468375pt;}
.x39_c00390{left:185.852506pt;}
.x3a_c00390{left:188.150503pt;}
.x7_c00390{left:204.676373pt;}
.x6_c00390{left:206.574107pt;}
.x8_c00390{left:209.317987pt;}
.x9_c00390{left:213.616993pt;}
.xa_c00390{left:218.376513pt;}
.xb_c00390{left:220.819105pt;}
.xc_c00390{left:223.490334pt;}
.xd_c00390{left:226.905704pt;}
.x3e_c00390{left:227.972394pt;}
.xe_c00390{left:229.825509pt;}
.xf_c00390{left:233.767373pt;}
.x10_c00390{left:241.423300pt;}
.x11_c00390{left:251.942027pt;}
.x12_c00390{left:258.549026pt;}
.x13_c00390{left:261.564741pt;}
.x4_c00390{left:262.612255pt;}
.x14_c00390{left:266.308178pt;}
.x15_c00390{left:269.319244pt;}
.x16_c00390{left:272.883167pt;}
.x17_c00390{left:289.225349pt;}
.x18_c00390{left:290.306761pt;}
.x19_c00390{left:291.569114pt;}
.x1a_c00390{left:294.587062pt;}
.x1b_c00390{left:297.451603pt;}
.x1c_c00390{left:302.677178pt;}
.x1d_c00390{left:308.173457pt;}
.x1e_c00390{left:313.230862pt;}
.x1f_c00390{left:316.260173pt;}
.x20_c00390{left:323.284548pt;}
.x21_c00390{left:330.381558pt;}
.x22_c00390{left:336.386614pt;}
.x23_c00390{left:339.069625pt;}
.x24_c00390{left:341.738474pt;}
.x25_c00390{left:344.757080pt;}
.x26_c00390{left:347.081977pt;}
.x27_c00390{left:350.026488pt;}
.x28_c00390{left:354.624063pt;}
.x29_c00390{left:357.115628pt;}
.x42_c00390{left:401.765180pt;}
.x5_c00390{left:413.420124pt;}
.x40_c00390{left:619.470933pt;}
.x41_c00390{left:622.065318pt;}
.x3d_c00390{left:651.647171pt;}
.x3c_c00390{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.006348;font-style:normal;font-weight:normal;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_028c80435a6eccfc320ef1cd.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.006348;font-style:normal;font-weight:normal;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_c7c8f8ff3ac6143c74a3b0e6.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.000000;font-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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00391{vertical-align:0.000000px;}
.ls1_c00391{letter-spacing:0.000000px;}
.ls0_c00391{letter-spacing:1.054080px;}
.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:-18.691966px;}
.ws1_c00391{word-spacing:-18.680283px;}
.ws2_c00391{word-spacing:0.000000px;}
._b_c00391{width:1.032374px;}
._7_c00391{width:2.508055px;}
._3_c00391{width:3.508104px;}
._4_c00391{width:4.769687px;}
._9_c00391{width:6.353582px;}
._8_c00391{width:7.706288px;}
._2_c00391{width:11.690439px;}
._6_c00391{width:13.068329px;}
._c_c00391{width:14.102744px;}
._5_c00391{width:15.155975px;}
._1_c00391{width:16.183432px;}
._0_c00391{width:17.405891px;}
._d_c00391{width:22.199043px;}
._a_c00391{width:44.520232px;}
.fc1_c00391{color:rgb(0,0,0);}
.fc0_c00391{color:rgb(194,158,103);}
.fs3_c00391{font-size:71.912067px;}
.fs1_c00391{font-size:71.957041px;}
.fs2_c00391{font-size:74.340621px;}
.fs0_c00391{font-size:74.379845px;}
.y0_c00391{bottom:0.000000px;}
.y1_c00391{bottom:0.000008px;}
.y1f_c00391{bottom:30.156225px;}
.y1a_c00391{bottom:139.830193px;}
.y19_c00391{bottom:170.187069px;}
.y18_c00391{bottom:200.543946px;}
.y17_c00391{bottom:230.900823px;}
.y16_c00391{bottom:261.257700px;}
.y15_c00391{bottom:291.614576px;}
.y1b_c00391{bottom:324.903464px;}
.y14_c00391{bottom:405.120022px;}
.y13_c00391{bottom:435.476898px;}
.y12_c00391{bottom:465.833775px;}
.y11_c00391{bottom:496.190652px;}
.y10_c00391{bottom:532.610603px;}
.ye_c00391{bottom:612.827056px;}
.yd_c00391{bottom:643.183933px;}
.yc_c00391{bottom:673.540810px;}
.yb_c00391{bottom:703.897686px;}
.ya_c00391{bottom:734.254563px;}
.yf_c00391{bottom:766.903939px;}
.y9_c00391{bottom:846.695087px;}
.y8_c00391{bottom:877.051964px;}
.y7_c00391{bottom:907.408841px;}
.y6_c00391{bottom:937.765718px;}
.y5_c00391{bottom:968.122594px;}
.y4_c00391{bottom:998.479471px;}
.y3_c00391{bottom:1028.836348px;}
.y2_c00391{bottom:1062.762107px;}
.y1e_c00391{bottom:1139.571057px;}
.y1d_c00391{bottom:1169.927934px;}
.y1c_c00391{bottom:1200.284811px;}
.h6_c00391{height:55.092790px;}
.h4_c00391{height:55.127245px;}
.h5_c00391{height:56.953337px;}
.h3_c00391{height:56.983387px;}
.h2_c00391{height:1304.999946px;}
.h0_c00391{height:1304.999953px;}
.h1_c00391{height:1305.000000px;}
.w2_c00391{width:934.874961px;}
.w0_c00391{width:934.875000px;}
.w1_c00391{width:935.250000px;}
.x0_c00391{left:0.000000px;}
.x2_c00391{left:87.850202px;}
.x1_c00391{left:90.668851px;}
.x3_c00391{left:451.985828px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls1_c00391{letter-spacing:0.000000pt;}
.ls0_c00391{letter-spacing:0.936960pt;}
.ws0_c00391{word-spacing:-16.615081pt;}
.ws1_c00391{word-spacing:-16.604696pt;}
.ws2_c00391{word-spacing:0.000000pt;}
._b_c00391{width:0.917666pt;}
._7_c00391{width:2.229382pt;}
._3_c00391{width:3.118315pt;}
._4_c00391{width:4.239722pt;}
._9_c00391{width:5.647628pt;}
._8_c00391{width:6.850034pt;}
._2_c00391{width:10.391501pt;}
._6_c00391{width:11.616292pt;}
._c_c00391{width:12.535773pt;}
._5_c00391{width:13.471978pt;}
._1_c00391{width:14.385273pt;}
._0_c00391{width:15.471903pt;}
._d_c00391{width:19.732483pt;}
._a_c00391{width:39.573539pt;}
.fs3_c00391{font-size:63.921837pt;}
.fs1_c00391{font-size:63.961814pt;}
.fs2_c00391{font-size:66.080552pt;}
.fs0_c00391{font-size:66.115417pt;}
.y0_c00391{bottom:0.000000pt;}
.y1_c00391{bottom:0.000007pt;}
.y1f_c00391{bottom:26.805533pt;}
.y1a_c00391{bottom:124.293504pt;}
.y19_c00391{bottom:151.277395pt;}
.y18_c00391{bottom:178.261285pt;}
.y17_c00391{bottom:205.245176pt;}
.y16_c00391{bottom:232.229066pt;}
.y15_c00391{bottom:259.212957pt;}
.y1b_c00391{bottom:288.803079pt;}
.y14_c00391{bottom:360.106686pt;}
.y13_c00391{bottom:387.090576pt;}
.y12_c00391{bottom:414.074467pt;}
.y11_c00391{bottom:441.058357pt;}
.y10_c00391{bottom:473.431647pt;}
.ye_c00391{bottom:544.735161pt;}
.yd_c00391{bottom:571.719051pt;}
.yc_c00391{bottom:598.702942pt;}
.yb_c00391{bottom:625.686832pt;}
.ya_c00391{bottom:652.670723pt;}
.yf_c00391{bottom:681.692391pt;}
.y9_c00391{bottom:752.617855pt;}
.y8_c00391{bottom:779.601746pt;}
.y7_c00391{bottom:806.585636pt;}
.y6_c00391{bottom:833.569527pt;}
.y5_c00391{bottom:860.553417pt;}
.y4_c00391{bottom:887.537308pt;}
.y3_c00391{bottom:914.521198pt;}
.y2_c00391{bottom:944.677428pt;}
.y1e_c00391{bottom:1012.952051pt;}
.y1d_c00391{bottom:1039.935941pt;}
.y1c_c00391{bottom:1066.919832pt;}
.h6_c00391{height:48.971369pt;}
.h4_c00391{height:49.001996pt;}
.h5_c00391{height:50.625189pt;}
.h3_c00391{height:50.651899pt;}
.h2_c00391{height:1159.999952pt;}
.h0_c00391{height:1159.999959pt;}
.h1_c00391{height:1160.000000pt;}
.w2_c00391{width:830.999965pt;}
.w0_c00391{width:831.000000pt;}
.w1_c00391{width:831.333333pt;}
.x0_c00391{left:0.000000pt;}
.x2_c00391{left:78.089069pt;}
.x1_c00391{left:80.594534pt;}
.x3_c00391{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_116187f51397007bf7280072.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:0.769531;font-style:normal;font-weight:normal;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_6af50d622657189b80877400.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:0.734863;font-style:normal;font-weight: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_f5a82441450dd80f07b36903.woff2')format("woff");}.ff5_c00392{font-family:ff5_c00392;line-height:0.772949;font-style:normal;font-weight: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_0102cccd718cfc80c08b6747.woff2')format("woff");}.ff6_c00392{font-family:ff6_c00392;line-height:1.171387;font-style:normal;font-weight: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_b95cdcb095206ea356bd1e24.woff2')format("woff");}.ff7_c00392{font-family:ff7_c00392;line-height:1.000000;font-style:normal;font-weight: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_c00392;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00392{font-family:ff8_c00392;line-height:1.006348;font-style:normal;font-weight: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_c00392;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00392{font-family:ff9_c00392;line-height:0.940000;font-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_c00392{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00392{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00392{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00392{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00392{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00392{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00392{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00392{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00392{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00392{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00392{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00392{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00392{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00392{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00392{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00392{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00392{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00392{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00392{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00392{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00392{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00392{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00392{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00392{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00392{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00392{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00392{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00392{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00392{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00392{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00392{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00392{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00392{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00392{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00392{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00392{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00392{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00392{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00392{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00392{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00392{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00392{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00392{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00392{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00392{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00392{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00392{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00392{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00392{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00392{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00392{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00392{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00392{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00392{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00392{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00392{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00392{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00392{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00392{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00392{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00392{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00392{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00392{vertical-align:0.000000px;}
.ls0_c00392{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00392{word-spacing:-41.664701px;}
.ws2_c00392{word-spacing:-18.680283px;}
.ws0_c00392{word-spacing:-15.162211px;}
.ws4_c00392{word-spacing:0.000000px;}
.ws1_c00392{word-spacing:269.850737px;}
._1_c00392{width:4.637858px;}
._0_c00392{width:6.203849px;}
._2_c00392{width:10.157934px;}
._3_c00392{width:11.306491px;}
.fc3_c00392{color:rgb(194,158,103);}
.fc2_c00392{color:rgb(9,71,81);}
.fc1_c00392{color:rgb(255,255,255);}
.fc0_c00392{color:rgb(0,0,0);}
.fse_c00392{font-size:41.974772px;}
.fsc_c00392{font-size:41.975069px;}
.fs2_c00392{font-size:47.339969px;}
.fs5_c00392{font-size:47.339970px;}
.fs1_c00392{font-size:47.339972px;}
.fs4_c00392{font-size:47.339973px;}
.fs3_c00392{font-size:47.339974px;}
.fs6_c00392{font-size:47.339975px;}
.fs8_c00392{font-size:51.630774px;}
.fs9_c00392{font-size:55.721735px;}
.fsb_c00392{font-size:59.949210px;}
.fs10_c00392{font-size:71.912067px;}
.fs0_c00392{font-size:71.957041px;}
.fsf_c00392{font-size:74.379845px;}
.fs7_c00392{font-size:76.965540px;}
.fsa_c00392{font-size:89.946302px;}
.fsd_c00392{font-size:95.927731px;}
.y0_c00392{bottom:0.000000px;}
.y1_c00392{bottom:0.000008px;}
.y53_c00392{bottom:30.156225px;}
.y48_c00392{bottom:173.171145px;}
.y47_c00392{bottom:203.528022px;}
.y46_c00392{bottom:233.884899px;}
.y45_c00392{bottom:264.241775px;}
.y44_c00392{bottom:294.598652px;}
.y52_c00392{bottom:331.155647px;}
.y42_c00392{bottom:402.064151px;}
.y10_c00392{bottom:496.565621px;}
.y38_c00392{bottom:496.580615px;}
.yf_c00392{bottom:497.090601px;}
.y39_c00392{bottom:497.110149px;}
.y22_c00392{bottom:497.453729px;}
.y37_c00392{bottom:497.824650px;}
.ye_c00392{bottom:498.156066px;}
.y23_c00392{bottom:498.286630px;}
.y21_c00392{bottom:498.306654px;}
.y36_c00392{bottom:499.075193px;}
.yd_c00392{bottom:499.228723px;}
.y20_c00392{bottom:499.340943px;}
.y3a_c00392{bottom:499.525324px;}
.y11_c00392{bottom:499.588875px;}
.y24_c00392{bottom:500.466588px;}
.y35_c00392{bottom:500.719045px;}
.yc_c00392{bottom:500.879226px;}
.y1f_c00392{bottom:501.542365px;}
.y25_c00392{bottom:501.856620px;}
.y34_c00392{bottom:502.406298px;}
.yb_c00392{bottom:502.571797px;}
.y26_c00392{bottom:503.553855px;}
.y12_c00392{bottom:503.863669px;}
.y33_c00392{bottom:504.270482px;}
.ya_c00392{bottom:504.440698px;}
.y3b_c00392{bottom:504.623015px;}
.y1e_c00392{bottom:505.331694px;}
.y27_c00392{bottom:505.994822px;}
.y13_c00392{bottom:506.380876px;}
.y3c_c00392{bottom:508.249011px;}
.y28_c00392{bottom:508.252431px;}
.y32_c00392{bottom:508.922053px;}
.y9_c00392{bottom:509.101734px;}
.y1d_c00392{bottom:510.797204px;}
.y29_c00392{bottom:511.519319px;}
.y14_c00392{bottom:512.329786px;}
.y3d_c00392{bottom:513.879526px;}
.y1c_c00392{bottom:515.261185px;}
.y31_c00392{bottom:515.319584px;}
.y8_c00392{bottom:515.507661px;}
.y15_c00392{bottom:517.075777px;}
.y2a_c00392{bottom:519.911703px;}
.y3e_c00392{bottom:520.533259px;}
.y1b_c00392{bottom:521.682049px;}
.y30_c00392{bottom:522.622322px;}
.y7_c00392{bottom:522.712413px;}
.y6_c00392{bottom:526.169150px;}
.y1a_c00392{bottom:526.249336px;}
.y2b_c00392{bottom:527.955876px;}
.y16_c00392{bottom:528.852613px;}
.y2f_c00392{bottom:529.779729px;}
.y5_c00392{bottom:532.175875px;}
.y3f_c00392{bottom:532.489167px;}
.y19_c00392{bottom:534.016824px;}
.y2e_c00392{bottom:534.546093px;}
.y41_c00392{bottom:536.481448px;}
.y51_c00392{bottom:537.174916px;}
.y18_c00392{bottom:537.908142px;}
.y4_c00392{bottom:539.431091px;}
.y2d_c00392{bottom:540.714764px;}
.y17_c00392{bottom:541.085884px;}
.y40_c00392{bottom:541.449306px;}
.y4f_c00392{bottom:543.184160px;}
.y2c_c00392{bottom:547.773948px;}
.y3_c00392{bottom:548.960117px;}
.y50_c00392{bottom:580.624158px;}
.y2_c00392{bottom:597.559761px;}
.y4e_c00392{bottom:600.312789px;}
.y43_c00392{bottom:639.489911px;}
.y54_c00392{bottom:1021.609033px;}
.y4c_c00392{bottom:1127.585799px;}
.y4a_c00392{bottom:1129.718199px;}
.y49_c00392{bottom:1147.707459px;}
.y4d_c00392{bottom:1150.017273px;}
.y4b_c00392{bottom:1170.658440px;}
.h12_c00392{height:32.157430px;}
.h8_c00392{height:35.967282px;}
.h7_c00392{height:35.967283px;}
.h9_c00392{height:35.967285px;}
.h5_c00392{height:36.267779px;}
.h4_c00392{height:36.267781px;}
.h6_c00392{height:36.267783px;}
.hb_c00392{height:37.437353px;}
.hf_c00392{height:39.085184px;}
.h15_c00392{height:45.561399px;}
.hc_c00392{height:51.885424px;}
.h14_c00392{height:55.092790px;}
.h3_c00392{height:55.127245px;}
.he_c00392{height:55.821847px;}
.ha_c00392{height:56.261810px;}
.h13_c00392{height:56.983387px;}
.h10_c00392{height:67.002968px;}
.hd_c00392{height:68.338108px;}
.h11_c00392{height:89.323331px;}
.h2_c00392{height:1304.999946px;}
.h0_c00392{height:1304.999953px;}
.h1_c00392{height:1305.000000px;}
.w2_c00392{width:934.874961px;}
.w0_c00392{width:934.875000px;}
.w1_c00392{width:935.250000px;}
.x0_c00392{left:0.000000px;}
.x39_c00392{left:89.434062px;}
.x3a_c00392{left:108.062661px;}
.x3b_c00392{left:109.658623px;}
.x40_c00392{left:130.612669px;}
.x27_c00392{left:134.894322px;}
.x26_c00392{left:136.566734px;}
.x28_c00392{left:139.937719px;}
.x29_c00392{left:144.785273px;}
.x2a_c00392{left:150.147890px;}
.x2b_c00392{left:152.899057px;}
.x2c_c00392{left:155.907145px;}
.x2d_c00392{left:159.752336px;}
.x37_c00392{left:161.347648px;}
.x2e_c00392{left:163.203941px;}
.x2f_c00392{left:171.483965px;}
.x30_c00392{left:179.748684px;}
.x31_c00392{left:188.175145px;}
.x32_c00392{left:196.556636px;}
.x33_c00392{left:200.721504px;}
.x34_c00392{left:205.276922px;}
.x35_c00392{left:209.084069px;}
.x36_c00392{left:211.669316px;}
.x3_c00392{left:230.260919px;}
.x2_c00392{left:232.395871px;}
.x4_c00392{left:235.482735px;}
.x5_c00392{left:240.319117px;}
.x6_c00392{left:245.673577px;}
.x7_c00392{left:248.421493px;}
.x8_c00392{left:251.426626px;}
.x9_c00392{left:255.268917px;}
.x3e_c00392{left:256.468943px;}
.xa_c00392{left:258.553698px;}
.xb_c00392{left:262.988294px;}
.xc_c00392{left:271.601212px;}
.xd_c00392{left:283.434780px;}
.xe_c00392{left:290.867654px;}
.xf_c00392{left:294.260334px;}
.x3c_c00392{left:295.438786px;}
.x10_c00392{left:299.596701px;}
.x11_c00392{left:302.984150px;}
.x12_c00392{left:306.993562px;}
.x13_c00392{left:325.378518px;}
.x14_c00392{left:326.595106px;}
.x15_c00392{left:328.015253px;}
.x16_c00392{left:331.410444px;}
.x17_c00392{left:334.633053px;}
.x18_c00392{left:340.511825px;}
.x19_c00392{left:346.695139px;}
.x1a_c00392{left:352.384720px;}
.x1b_c00392{left:355.792694px;}
.x1c_c00392{left:363.695116px;}
.x1d_c00392{left:371.679253px;}
.x1e_c00392{left:378.434940px;}
.x1f_c00392{left:381.453328px;}
.x20_c00392{left:384.455783px;}
.x21_c00392{left:387.851715px;}
.x22_c00392{left:390.467224px;}
.x23_c00392{left:393.779799px;}
.x24_c00392{left:398.952070px;}
.x25_c00392{left:401.755082px;}
.x3f_c00392{left:451.985828px;}
.x1_c00392{left:465.097640px;}
.x38_c00392{left:696.904800px;}
.x3d_c00392{left:733.103068px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws3_c00392{word-spacing:-37.035289pt;}
.ws2_c00392{word-spacing:-16.604696pt;}
.ws0_c00392{word-spacing:-13.477521pt;}
.ws4_c00392{word-spacing:0.000000pt;}
.ws1_c00392{word-spacing:239.867322pt;}
._1_c00392{width:4.122540pt;}
._0_c00392{width:5.514532pt;}
._2_c00392{width:9.029275pt;}
._3_c00392{width:10.050214pt;}
.fse_c00392{font-size:37.310908pt;}
.fsc_c00392{font-size:37.311173pt;}
.fs2_c00392{font-size:42.079973pt;}
.fs5_c00392{font-size:42.079974pt;}
.fs1_c00392{font-size:42.079975pt;}
.fs4_c00392{font-size:42.079976pt;}
.fs3_c00392{font-size:42.079977pt;}
.fs6_c00392{font-size:42.079978pt;}
.fs8_c00392{font-size:45.894021pt;}
.fs9_c00392{font-size:49.530431pt;}
.fsb_c00392{font-size:53.288186pt;}
.fs10_c00392{font-size:63.921837pt;}
.fs0_c00392{font-size:63.961814pt;}
.fsf_c00392{font-size:66.115417pt;}
.fs7_c00392{font-size:68.413814pt;}
.fsa_c00392{font-size:79.952268pt;}
.fsd_c00392{font-size:85.269094pt;}
.y0_c00392{bottom:0.000000pt;}
.y1_c00392{bottom:0.000007pt;}
.y53_c00392{bottom:26.805533pt;}
.y48_c00392{bottom:153.929907pt;}
.y47_c00392{bottom:180.913797pt;}
.y46_c00392{bottom:207.897688pt;}
.y45_c00392{bottom:234.881578pt;}
.y44_c00392{bottom:261.865469pt;}
.y52_c00392{bottom:294.360575pt;}
.y42_c00392{bottom:357.390356pt;}
.y10_c00392{bottom:441.391663pt;}
.y38_c00392{bottom:441.404991pt;}
.yf_c00392{bottom:441.858312pt;}
.y39_c00392{bottom:441.875688pt;}
.y22_c00392{bottom:442.181092pt;}
.y37_c00392{bottom:442.510800pt;}
.ye_c00392{bottom:442.805392pt;}
.y23_c00392{bottom:442.921449pt;}
.y21_c00392{bottom:442.939248pt;}
.y36_c00392{bottom:443.622394pt;}
.yd_c00392{bottom:443.758865pt;}
.y20_c00392{bottom:443.858616pt;}
.y3a_c00392{bottom:444.022510pt;}
.y11_c00392{bottom:444.079000pt;}
.y24_c00392{bottom:444.859189pt;}
.y35_c00392{bottom:445.083595pt;}
.yc_c00392{bottom:445.225979pt;}
.y1f_c00392{bottom:445.815435pt;}
.y25_c00392{bottom:446.094774pt;}
.y34_c00392{bottom:446.583376pt;}
.yb_c00392{bottom:446.730486pt;}
.y26_c00392{bottom:447.603427pt;}
.y12_c00392{bottom:447.878817pt;}
.y33_c00392{bottom:448.240428pt;}
.ya_c00392{bottom:448.391731pt;}
.y3b_c00392{bottom:448.553791pt;}
.y1e_c00392{bottom:449.183728pt;}
.y27_c00392{bottom:449.773175pt;}
.y13_c00392{bottom:450.116334pt;}
.y3c_c00392{bottom:451.776899pt;}
.y28_c00392{bottom:451.779938pt;}
.y32_c00392{bottom:452.375158pt;}
.y9_c00392{bottom:452.534875pt;}
.y1d_c00392{bottom:454.041960pt;}
.y29_c00392{bottom:454.683839pt;}
.y14_c00392{bottom:455.404254pt;}
.y3d_c00392{bottom:456.781801pt;}
.y1c_c00392{bottom:458.009942pt;}
.y31_c00392{bottom:458.061853pt;}
.y8_c00392{bottom:458.229032pt;}
.y15_c00392{bottom:459.622913pt;}
.y2a_c00392{bottom:462.143736pt;}
.y3e_c00392{bottom:462.696230pt;}
.y1b_c00392{bottom:463.717377pt;}
.y30_c00392{bottom:464.553175pt;}
.y7_c00392{bottom:464.633256pt;}
.y6_c00392{bottom:467.705911pt;}
.y1a_c00392{bottom:467.777188pt;}
.y2b_c00392{bottom:469.294112pt;}
.y16_c00392{bottom:470.091212pt;}
.y2f_c00392{bottom:470.915315pt;}
.y5_c00392{bottom:473.045222pt;}
.y3f_c00392{bottom:473.323704pt;}
.y19_c00392{bottom:474.681622pt;}
.y2e_c00392{bottom:475.152083pt;}
.y41_c00392{bottom:476.872398pt;}
.y51_c00392{bottom:477.488814pt;}
.y18_c00392{bottom:478.140571pt;}
.y4_c00392{bottom:479.494303pt;}
.y2d_c00392{bottom:480.635346pt;}
.y17_c00392{bottom:480.965230pt;}
.y40_c00392{bottom:481.288272pt;}
.y4f_c00392{bottom:482.830364pt;}
.y2c_c00392{bottom:486.910176pt;}
.y3_c00392{bottom:487.964549pt;}
.y50_c00392{bottom:516.110363pt;}
.y2_c00392{bottom:531.164232pt;}
.y4e_c00392{bottom:533.611368pt;}
.y43_c00392{bottom:568.435476pt;}
.y54_c00392{bottom:908.096918pt;}
.y4c_c00392{bottom:1002.298488pt;}
.y4a_c00392{bottom:1004.193955pt;}
.y49_c00392{bottom:1020.184408pt;}
.y4d_c00392{bottom:1022.237576pt;}
.y4b_c00392{bottom:1040.585280pt;}
.h12_c00392{height:28.584382pt;}
.h8_c00392{height:31.970917pt;}
.h7_c00392{height:31.970918pt;}
.h9_c00392{height:31.970920pt;}
.h5_c00392{height:32.238026pt;}
.h4_c00392{height:32.238028pt;}
.h6_c00392{height:32.238029pt;}
.hb_c00392{height:33.277647pt;}
.hf_c00392{height:34.742386pt;}
.h15_c00392{height:40.499022pt;}
.hc_c00392{height:46.120377pt;}
.h14_c00392{height:48.971369pt;}
.h3_c00392{height:49.001996pt;}
.he_c00392{height:49.619420pt;}
.ha_c00392{height:50.010498pt;}
.h13_c00392{height:50.651899pt;}
.h10_c00392{height:59.558193pt;}
.hd_c00392{height:60.744985pt;}
.h11_c00392{height:79.398517pt;}
.h2_c00392{height:1159.999952pt;}
.h0_c00392{height:1159.999959pt;}
.h1_c00392{height:1160.000000pt;}
.w2_c00392{width:830.999965pt;}
.w0_c00392{width:831.000000pt;}
.w1_c00392{width:831.333333pt;}
.x0_c00392{left:0.000000pt;}
.x39_c00392{left:79.496944pt;}
.x3a_c00392{left:96.055698pt;}
.x3b_c00392{left:97.474332pt;}
.x40_c00392{left:116.100150pt;}
.x27_c00392{left:119.906064pt;}
.x26_c00392{left:121.392652pt;}
.x28_c00392{left:124.389083pt;}
.x29_c00392{left:128.698021pt;}
.x2a_c00392{left:133.464791pt;}
.x2b_c00392{left:135.910272pt;}
.x2c_c00392{left:138.584129pt;}
.x2d_c00392{left:142.002076pt;}
.x37_c00392{left:143.420132pt;}
.x2e_c00392{left:145.070170pt;}
.x2f_c00392{left:152.430191pt;}
.x30_c00392{left:159.776608pt;}
.x31_c00392{left:167.266795pt;}
.x32_c00392{left:174.717010pt;}
.x33_c00392{left:178.419115pt;}
.x34_c00392{left:182.468375pt;}
.x35_c00392{left:185.852506pt;}
.x36_c00392{left:188.150503pt;}
.x3_c00392{left:204.676373pt;}
.x2_c00392{left:206.574107pt;}
.x4_c00392{left:209.317987pt;}
.x5_c00392{left:213.616993pt;}
.x6_c00392{left:218.376513pt;}
.x7_c00392{left:220.819105pt;}
.x8_c00392{left:223.490334pt;}
.x9_c00392{left:226.905704pt;}
.x3e_c00392{left:227.972394pt;}
.xa_c00392{left:229.825509pt;}
.xb_c00392{left:233.767373pt;}
.xc_c00392{left:241.423300pt;}
.xd_c00392{left:251.942027pt;}
.xe_c00392{left:258.549026pt;}
.xf_c00392{left:261.564741pt;}
.x3c_c00392{left:262.612255pt;}
.x10_c00392{left:266.308178pt;}
.x11_c00392{left:269.319244pt;}
.x12_c00392{left:272.883167pt;}
.x13_c00392{left:289.225349pt;}
.x14_c00392{left:290.306761pt;}
.x15_c00392{left:291.569114pt;}
.x16_c00392{left:294.587062pt;}
.x17_c00392{left:297.451603pt;}
.x18_c00392{left:302.677178pt;}
.x19_c00392{left:308.173457pt;}
.x1a_c00392{left:313.230862pt;}
.x1b_c00392{left:316.260173pt;}
.x1c_c00392{left:323.284548pt;}
.x1d_c00392{left:330.381558pt;}
.x1e_c00392{left:336.386614pt;}
.x1f_c00392{left:339.069625pt;}
.x20_c00392{left:341.738474pt;}
.x21_c00392{left:344.757080pt;}
.x22_c00392{left:347.081977pt;}
.x23_c00392{left:350.026488pt;}
.x24_c00392{left:354.624063pt;}
.x25_c00392{left:357.115628pt;}
.x3f_c00392{left:401.765180pt;}
.x1_c00392{left:413.420124pt;}
.x38_c00392{left:619.470933pt;}
.x3d_c00392{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.006348;font-style:normal;font-weight:normal;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_03d4dbe493067b395f2d9142.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.006348;font-style:normal;font-weight:normal;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_7743e0e565cf389dcd914cb5.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.000000;font-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_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);}
.v0_c00393{vertical-align:0.000000px;}
.ls0_c00393{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00393{word-spacing:0.000000px;}
._4_c00393{width:1.097155px;}
._1_c00393{width:3.243219px;}
._0_c00393{width:9.969016px;}
._7_c00393{width:12.039663px;}
._5_c00393{width:14.651411px;}
._3_c00393{width:19.702654px;}
._6_c00393{width:22.199043px;}
._2_c00393{width:23.626482px;}
._8_c00393{width:25.055430px;}
.fc1_c00393{color:rgb(0,0,0);}
.fc0_c00393{color:rgb(194,158,103);}
.fs3_c00393{font-size:71.912067px;}
.fs1_c00393{font-size:71.957041px;}
.fs2_c00393{font-size:74.340621px;}
.fs0_c00393{font-size:74.379845px;}
.y0_c00393{bottom:0.000000px;}
.y1_c00393{bottom:0.000008px;}
.y15_c00393{bottom:30.156225px;}
.y10_c00393{bottom:471.864803px;}
.yf_c00393{bottom:502.221679px;}
.ye_c00393{bottom:532.578556px;}
.yd_c00393{bottom:562.935433px;}
.yc_c00393{bottom:593.292310px;}
.yb_c00393{bottom:623.649187px;}
.y14_c00393{bottom:664.424382px;}
.y13_c00393{bottom:750.510434px;}
.y12_c00393{bottom:780.867311px;}
.y11_c00393{bottom:814.986304px;}
.y9_c00393{bottom:899.013998px;}
.y8_c00393{bottom:929.370875px;}
.y7_c00393{bottom:959.727752px;}
.y6_c00393{bottom:990.084628px;}
.ya_c00393{bottom:1019.859585px;}
.y5_c00393{bottom:1109.791128px;}
.y4_c00393{bottom:1140.148005px;}
.y3_c00393{bottom:1170.504881px;}
.y2_c00393{bottom:1204.539346px;}
.h6_c00393{height:55.092790px;}
.h4_c00393{height:55.127245px;}
.h5_c00393{height:56.953337px;}
.h3_c00393{height:56.983387px;}
.h2_c00393{height:1304.999946px;}
.h0_c00393{height:1304.999953px;}
.h1_c00393{height:1305.000000px;}
.w2_c00393{width:934.874961px;}
.w0_c00393{width:934.875000px;}
.w1_c00393{width:935.250000px;}
.x0_c00393{left:0.000000px;}
.x1_c00393{left:87.850202px;}
.x2_c00393{left:451.985828px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws0_c00393{word-spacing:-16.604696pt;}
.ws1_c00393{word-spacing:0.000000pt;}
._4_c00393{width:0.975249pt;}
._1_c00393{width:2.882861pt;}
._0_c00393{width:8.861347pt;}
._7_c00393{width:10.701922pt;}
._5_c00393{width:13.023476pt;}
._3_c00393{width:17.513471pt;}
._6_c00393{width:19.732483pt;}
._2_c00393{width:21.001318pt;}
._8_c00393{width:22.271493pt;}
.fs3_c00393{font-size:63.921837pt;}
.fs1_c00393{font-size:63.961814pt;}
.fs2_c00393{font-size:66.080552pt;}
.fs0_c00393{font-size:66.115417pt;}
.y0_c00393{bottom:0.000000pt;}
.y1_c00393{bottom:0.000007pt;}
.y15_c00393{bottom:26.805533pt;}
.y10_c00393{bottom:419.435380pt;}
.yf_c00393{bottom:446.419271pt;}
.ye_c00393{bottom:473.403161pt;}
.yd_c00393{bottom:500.387052pt;}
.yc_c00393{bottom:527.370942pt;}
.yb_c00393{bottom:554.354832pt;}
.y14_c00393{bottom:590.599450pt;}
.y13_c00393{bottom:667.120386pt;}
.y12_c00393{bottom:694.104276pt;}
.y11_c00393{bottom:724.432270pt;}
.y9_c00393{bottom:799.123554pt;}
.y8_c00393{bottom:826.107444pt;}
.y7_c00393{bottom:853.091335pt;}
.y6_c00393{bottom:880.075225pt;}
.ya_c00393{bottom:906.541853pt;}
.y5_c00393{bottom:986.481002pt;}
.y4_c00393{bottom:1013.464893pt;}
.y3_c00393{bottom:1040.448783pt;}
.y2_c00393{bottom:1070.701641pt;}
.h6_c00393{height:48.971369pt;}
.h4_c00393{height:49.001996pt;}
.h5_c00393{height:50.625189pt;}
.h3_c00393{height:50.651899pt;}
.h2_c00393{height:1159.999952pt;}
.h0_c00393{height:1159.999959pt;}
.h1_c00393{height:1160.000000pt;}
.w2_c00393{width:830.999965pt;}
.w0_c00393{width:831.000000pt;}
.w1_c00393{width:831.333333pt;}
.x0_c00393{left:0.000000pt;}
.x1_c00393{left:78.089069pt;}
.x2_c00393{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3612bc71cd5c53b069c0d5b3.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:0.734863;font-style:normal;font-weight: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_65bcaf61a0150565767f7b57.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:0.917969;font-style:normal;font-weight: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_c00394;src:url('chunks/assets/font_5c510c2201b5afa5639cf176.woff2')format("woff");}.ff6_c00394{font-family:ff6_c00394;line-height:1.171387;font-style:normal;font-weight: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_c00394;src:url('chunks/assets/font_74f48b0d510a4cf1a2df6add.woff2')format("woff");}.ff7_c00394{font-family:ff7_c00394;line-height:1.000000;font-style:normal;font-weight: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_c00394;src:url('chunks/assets/font_3744dc423867b996574ca06f.woff2')format("woff");}.ff8_c00394{font-family:ff8_c00394;line-height:0.769531;font-style:normal;font-weight: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_c00394;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff9_c00394{font-family:ff9_c00394;line-height:1.006348;font-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_c00394{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00394{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00394{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00394{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00394{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00394{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00394{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00394{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00394{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00394{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00394{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00394{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00394{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00394{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00394{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00394{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00394{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00394{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00394{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00394{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00394{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00394{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00394{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00394{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00394{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00394{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00394{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00394{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00394{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00394{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00394{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00394{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00394{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00394{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00394{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00394{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00394{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00394{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00394{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00394{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00394{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00394{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00394{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00394{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00394{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00394{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00394{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00394{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00394{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00394{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00394{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00394{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00394{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00394{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00394{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00394{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00394{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00394{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00394{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00394{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00394{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00394{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00394{vertical-align:0.000000px;}
.ls0_c00394{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00394{word-spacing:-18.691966px;}
.ws4_c00394{word-spacing:-18.680283px;}
.ws0_c00394{word-spacing:-15.162211px;}
.ws1_c00394{word-spacing:-14.474592px;}
.ws5_c00394{word-spacing:0.000000px;}
.ws3_c00394{word-spacing:281.470806px;}
._2_c00394{width:5.544921px;}
._0_c00394{width:7.038720px;}
._4_c00394{width:8.854087px;}
._5_c00394{width:15.048888px;}
._3_c00394{width:16.264885px;}
._1_c00394{width:22.386180px;}
.fc3_c00394{color:rgb(194,158,103);}
.fc2_c00394{color:rgb(9,71,81);}
.fc1_c00394{color:rgb(255,255,255);}
.fc0_c00394{color:rgb(0,0,0);}
.fse_c00394{font-size:41.974772px;}
.fsc_c00394{font-size:41.975069px;}
.fs2_c00394{font-size:47.339969px;}
.fs5_c00394{font-size:47.339970px;}
.fs1_c00394{font-size:47.339972px;}
.fs4_c00394{font-size:47.339973px;}
.fs3_c00394{font-size:47.339974px;}
.fs6_c00394{font-size:47.339975px;}
.fs8_c00394{font-size:51.630774px;}
.fs9_c00394{font-size:55.721735px;}
.fsb_c00394{font-size:59.949210px;}
.fs10_c00394{font-size:71.912067px;}
.fs0_c00394{font-size:71.957041px;}
.fsf_c00394{font-size:74.379845px;}
.fs7_c00394{font-size:76.965540px;}
.fsa_c00394{font-size:89.946302px;}
.fsd_c00394{font-size:95.927731px;}
.y0_c00394{bottom:0.000000px;}
.y1_c00394{bottom:0.000008px;}
.y55_c00394{bottom:30.156225px;}
.y4a_c00394{bottom:123.128907px;}
.y49_c00394{bottom:153.485784px;}
.y48_c00394{bottom:183.842661px;}
.y47_c00394{bottom:214.199537px;}
.y46_c00394{bottom:244.556414px;}
.y45_c00394{bottom:274.913291px;}
.y44_c00394{bottom:305.270168px;}
.y54_c00394{bottom:337.329719px;}
.y42_c00394{bottom:402.064151px;}
.y10_c00394{bottom:496.565621px;}
.y38_c00394{bottom:496.580615px;}
.yf_c00394{bottom:497.090601px;}
.y39_c00394{bottom:497.110149px;}
.y22_c00394{bottom:497.453729px;}
.y37_c00394{bottom:497.824650px;}
.ye_c00394{bottom:498.156066px;}
.y23_c00394{bottom:498.286630px;}
.y21_c00394{bottom:498.306654px;}
.y36_c00394{bottom:499.075193px;}
.yd_c00394{bottom:499.228723px;}
.y20_c00394{bottom:499.340943px;}
.y3a_c00394{bottom:499.525324px;}
.y11_c00394{bottom:499.588875px;}
.y24_c00394{bottom:500.466588px;}
.y35_c00394{bottom:500.719045px;}
.yc_c00394{bottom:500.879226px;}
.y1f_c00394{bottom:501.542365px;}
.y25_c00394{bottom:501.856620px;}
.y34_c00394{bottom:502.406298px;}
.yb_c00394{bottom:502.571797px;}
.y26_c00394{bottom:503.553855px;}
.y12_c00394{bottom:503.863669px;}
.y33_c00394{bottom:504.270482px;}
.ya_c00394{bottom:504.440698px;}
.y3b_c00394{bottom:504.623015px;}
.y1e_c00394{bottom:505.331694px;}
.y27_c00394{bottom:505.994822px;}
.y13_c00394{bottom:506.380876px;}
.y3c_c00394{bottom:508.249011px;}
.y28_c00394{bottom:508.252431px;}
.y32_c00394{bottom:508.922053px;}
.y9_c00394{bottom:509.101734px;}
.y1d_c00394{bottom:510.797204px;}
.y29_c00394{bottom:511.519319px;}
.y14_c00394{bottom:512.329786px;}
.y3d_c00394{bottom:513.879526px;}
.y1c_c00394{bottom:515.261185px;}
.y31_c00394{bottom:515.319584px;}
.y8_c00394{bottom:515.507661px;}
.y15_c00394{bottom:517.075777px;}
.y2a_c00394{bottom:519.911703px;}
.y3e_c00394{bottom:520.533259px;}
.y1b_c00394{bottom:521.682049px;}
.y30_c00394{bottom:522.622322px;}
.y7_c00394{bottom:522.712413px;}
.y6_c00394{bottom:526.169150px;}
.y1a_c00394{bottom:526.249336px;}
.y2b_c00394{bottom:527.955876px;}
.y16_c00394{bottom:528.852613px;}
.y2f_c00394{bottom:529.779729px;}
.y5_c00394{bottom:532.175875px;}
.y3f_c00394{bottom:532.489167px;}
.y19_c00394{bottom:534.016824px;}
.y2e_c00394{bottom:534.546093px;}
.y41_c00394{bottom:536.481448px;}
.y53_c00394{bottom:537.174916px;}
.y18_c00394{bottom:537.908142px;}
.y4_c00394{bottom:539.431091px;}
.y2d_c00394{bottom:540.714764px;}
.y17_c00394{bottom:541.085884px;}
.y40_c00394{bottom:541.449306px;}
.y51_c00394{bottom:543.184160px;}
.y2c_c00394{bottom:547.773948px;}
.y3_c00394{bottom:548.960117px;}
.y52_c00394{bottom:580.624158px;}
.y2_c00394{bottom:597.559761px;}
.y50_c00394{bottom:600.312789px;}
.y43_c00394{bottom:639.489911px;}
.y4e_c00394{bottom:1127.585799px;}
.y4c_c00394{bottom:1129.718199px;}
.y4b_c00394{bottom:1147.707459px;}
.y4f_c00394{bottom:1150.017273px;}
.y4d_c00394{bottom:1170.658440px;}
.h12_c00394{height:32.157430px;}
.h8_c00394{height:35.967282px;}
.h7_c00394{height:35.967283px;}
.h9_c00394{height:35.967285px;}
.h5_c00394{height:36.267779px;}
.h4_c00394{height:36.267781px;}
.h6_c00394{height:36.267783px;}
.hb_c00394{height:37.437353px;}
.hf_c00394{height:39.085184px;}
.hc_c00394{height:51.885424px;}
.h14_c00394{height:55.092790px;}
.h3_c00394{height:55.127245px;}
.he_c00394{height:55.821847px;}
.ha_c00394{height:56.261810px;}
.h13_c00394{height:56.983387px;}
.h10_c00394{height:67.002968px;}
.hd_c00394{height:68.338108px;}
.h11_c00394{height:72.882592px;}
.h2_c00394{height:1304.999946px;}
.h0_c00394{height:1304.999953px;}
.h1_c00394{height:1305.000000px;}
.w2_c00394{width:934.874961px;}
.w0_c00394{width:934.875000px;}
.w1_c00394{width:935.250000px;}
.x0_c00394{left:0.000000px;}
.x3a_c00394{left:87.850202px;}
.x3b_c00394{left:108.062661px;}
.x3c_c00394{left:109.658623px;}
.x27_c00394{left:134.894322px;}
.x26_c00394{left:136.566734px;}
.x28_c00394{left:139.937719px;}
.x29_c00394{left:144.785273px;}
.x2a_c00394{left:150.147890px;}
.x2b_c00394{left:152.899057px;}
.x2c_c00394{left:155.907145px;}
.x2d_c00394{left:159.752336px;}
.x37_c00394{left:161.347648px;}
.x2e_c00394{left:163.203941px;}
.x2f_c00394{left:171.483965px;}
.x30_c00394{left:179.748684px;}
.x31_c00394{left:188.175145px;}
.x32_c00394{left:196.556636px;}
.x33_c00394{left:200.721504px;}
.x34_c00394{left:205.276922px;}
.x35_c00394{left:209.084069px;}
.x36_c00394{left:211.669316px;}
.x3_c00394{left:230.260919px;}
.x2_c00394{left:232.395871px;}
.x4_c00394{left:235.482735px;}
.x5_c00394{left:240.319117px;}
.x6_c00394{left:245.673577px;}
.x7_c00394{left:248.421493px;}
.x8_c00394{left:251.426626px;}
.x9_c00394{left:255.268917px;}
.x3f_c00394{left:256.468943px;}
.xa_c00394{left:258.553698px;}
.xb_c00394{left:262.988294px;}
.xc_c00394{left:271.601212px;}
.xd_c00394{left:283.434780px;}
.xe_c00394{left:290.867654px;}
.xf_c00394{left:294.260334px;}
.x3d_c00394{left:295.438786px;}
.x10_c00394{left:299.596701px;}
.x11_c00394{left:302.984150px;}
.x12_c00394{left:306.993562px;}
.x13_c00394{left:325.378518px;}
.x14_c00394{left:326.595106px;}
.x15_c00394{left:328.015253px;}
.x16_c00394{left:331.410444px;}
.x17_c00394{left:334.633053px;}
.x18_c00394{left:340.511825px;}
.x19_c00394{left:346.695139px;}
.x1a_c00394{left:352.384720px;}
.x1b_c00394{left:355.792694px;}
.x1c_c00394{left:363.695116px;}
.x1d_c00394{left:371.679253px;}
.x1e_c00394{left:378.434940px;}
.x1f_c00394{left:381.453328px;}
.x20_c00394{left:384.455783px;}
.x21_c00394{left:387.851715px;}
.x22_c00394{left:390.467224px;}
.x23_c00394{left:393.779799px;}
.x24_c00394{left:398.952070px;}
.x25_c00394{left:401.755082px;}
.x40_c00394{left:451.985828px;}
.x1_c00394{left:465.097640px;}
.x39_c00394{left:676.474352px;}
.x38_c00394{left:696.904800px;}
.x3e_c00394{left:733.103068px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.ws2_c00394{word-spacing:-16.615081pt;}
.ws4_c00394{word-spacing:-16.604696pt;}
.ws0_c00394{word-spacing:-13.477521pt;}
.ws1_c00394{word-spacing:-12.866304pt;}
.ws5_c00394{word-spacing:0.000000pt;}
.ws3_c00394{word-spacing:250.196272pt;}
._2_c00394{width:4.928818pt;}
._0_c00394{width:6.256640pt;}
._4_c00394{width:7.870300pt;}
._5_c00394{width:13.376789pt;}
._3_c00394{width:14.457676pt;}
._1_c00394{width:19.898827pt;}
.fse_c00394{font-size:37.310908pt;}
.fsc_c00394{font-size:37.311173pt;}
.fs2_c00394{font-size:42.079973pt;}
.fs5_c00394{font-size:42.079974pt;}
.fs1_c00394{font-size:42.079975pt;}
.fs4_c00394{font-size:42.079976pt;}
.fs3_c00394{font-size:42.079977pt;}
.fs6_c00394{font-size:42.079978pt;}
.fs8_c00394{font-size:45.894021pt;}
.fs9_c00394{font-size:49.530431pt;}
.fsb_c00394{font-size:53.288186pt;}
.fs10_c00394{font-size:63.921837pt;}
.fs0_c00394{font-size:63.961814pt;}
.fsf_c00394{font-size:66.115417pt;}
.fs7_c00394{font-size:68.413814pt;}
.fsa_c00394{font-size:79.952268pt;}
.fsd_c00394{font-size:85.269094pt;}
.y0_c00394{bottom:0.000000pt;}
.y1_c00394{bottom:0.000007pt;}
.y55_c00394{bottom:26.805533pt;}
.y4a_c00394{bottom:109.447917pt;}
.y49_c00394{bottom:136.431808pt;}
.y48_c00394{bottom:163.415698pt;}
.y47_c00394{bottom:190.399589pt;}
.y46_c00394{bottom:217.383479pt;}
.y45_c00394{bottom:244.367370pt;}
.y44_c00394{bottom:271.351260pt;}
.y54_c00394{bottom:299.848639pt;}
.y42_c00394{bottom:357.390356pt;}
.y10_c00394{bottom:441.391663pt;}
.y38_c00394{bottom:441.404991pt;}
.yf_c00394{bottom:441.858312pt;}
.y39_c00394{bottom:441.875688pt;}
.y22_c00394{bottom:442.181092pt;}
.y37_c00394{bottom:442.510800pt;}
.ye_c00394{bottom:442.805392pt;}
.y23_c00394{bottom:442.921449pt;}
.y21_c00394{bottom:442.939248pt;}
.y36_c00394{bottom:443.622394pt;}
.yd_c00394{bottom:443.758865pt;}
.y20_c00394{bottom:443.858616pt;}
.y3a_c00394{bottom:444.022510pt;}
.y11_c00394{bottom:444.079000pt;}
.y24_c00394{bottom:444.859189pt;}
.y35_c00394{bottom:445.083595pt;}
.yc_c00394{bottom:445.225979pt;}
.y1f_c00394{bottom:445.815435pt;}
.y25_c00394{bottom:446.094774pt;}
.y34_c00394{bottom:446.583376pt;}
.yb_c00394{bottom:446.730486pt;}
.y26_c00394{bottom:447.603427pt;}
.y12_c00394{bottom:447.878817pt;}
.y33_c00394{bottom:448.240428pt;}
.ya_c00394{bottom:448.391731pt;}
.y3b_c00394{bottom:448.553791pt;}
.y1e_c00394{bottom:449.183728pt;}
.y27_c00394{bottom:449.773175pt;}
.y13_c00394{bottom:450.116334pt;}
.y3c_c00394{bottom:451.776899pt;}
.y28_c00394{bottom:451.779938pt;}
.y32_c00394{bottom:452.375158pt;}
.y9_c00394{bottom:452.534875pt;}
.y1d_c00394{bottom:454.041960pt;}
.y29_c00394{bottom:454.683839pt;}
.y14_c00394{bottom:455.404254pt;}
.y3d_c00394{bottom:456.781801pt;}
.y1c_c00394{bottom:458.009942pt;}
.y31_c00394{bottom:458.061853pt;}
.y8_c00394{bottom:458.229032pt;}
.y15_c00394{bottom:459.622913pt;}
.y2a_c00394{bottom:462.143736pt;}
.y3e_c00394{bottom:462.696230pt;}
.y1b_c00394{bottom:463.717377pt;}
.y30_c00394{bottom:464.553175pt;}
.y7_c00394{bottom:464.633256pt;}
.y6_c00394{bottom:467.705911pt;}
.y1a_c00394{bottom:467.777188pt;}
.y2b_c00394{bottom:469.294112pt;}
.y16_c00394{bottom:470.091212pt;}
.y2f_c00394{bottom:470.915315pt;}
.y5_c00394{bottom:473.045222pt;}
.y3f_c00394{bottom:473.323704pt;}
.y19_c00394{bottom:474.681622pt;}
.y2e_c00394{bottom:475.152083pt;}
.y41_c00394{bottom:476.872398pt;}
.y53_c00394{bottom:477.488814pt;}
.y18_c00394{bottom:478.140571pt;}
.y4_c00394{bottom:479.494303pt;}
.y2d_c00394{bottom:480.635346pt;}
.y17_c00394{bottom:480.965230pt;}
.y40_c00394{bottom:481.288272pt;}
.y51_c00394{bottom:482.830364pt;}
.y2c_c00394{bottom:486.910176pt;}
.y3_c00394{bottom:487.964549pt;}
.y52_c00394{bottom:516.110363pt;}
.y2_c00394{bottom:531.164232pt;}
.y50_c00394{bottom:533.611368pt;}
.y43_c00394{bottom:568.435476pt;}
.y4e_c00394{bottom:1002.298488pt;}
.y4c_c00394{bottom:1004.193955pt;}
.y4b_c00394{bottom:1020.184408pt;}
.y4f_c00394{bottom:1022.237576pt;}
.y4d_c00394{bottom:1040.585280pt;}
.h12_c00394{height:28.584382pt;}
.h8_c00394{height:31.970917pt;}
.h7_c00394{height:31.970918pt;}
.h9_c00394{height:31.970920pt;}
.h5_c00394{height:32.238026pt;}
.h4_c00394{height:32.238028pt;}
.h6_c00394{height:32.238029pt;}
.hb_c00394{height:33.277647pt;}
.hf_c00394{height:34.742386pt;}
.hc_c00394{height:46.120377pt;}
.h14_c00394{height:48.971369pt;}
.h3_c00394{height:49.001996pt;}
.he_c00394{height:49.619420pt;}
.ha_c00394{height:50.010498pt;}
.h13_c00394{height:50.651899pt;}
.h10_c00394{height:59.558193pt;}
.hd_c00394{height:60.744985pt;}
.h11_c00394{height:64.784526pt;}
.h2_c00394{height:1159.999952pt;}
.h0_c00394{height:1159.999959pt;}
.h1_c00394{height:1160.000000pt;}
.w2_c00394{width:830.999965pt;}
.w0_c00394{width:831.000000pt;}
.w1_c00394{width:831.333333pt;}
.x0_c00394{left:0.000000pt;}
.x3a_c00394{left:78.089069pt;}
.x3b_c00394{left:96.055698pt;}
.x3c_c00394{left:97.474332pt;}
.x27_c00394{left:119.906064pt;}
.x26_c00394{left:121.392652pt;}
.x28_c00394{left:124.389083pt;}
.x29_c00394{left:128.698021pt;}
.x2a_c00394{left:133.464791pt;}
.x2b_c00394{left:135.910272pt;}
.x2c_c00394{left:138.584129pt;}
.x2d_c00394{left:142.002076pt;}
.x37_c00394{left:143.420132pt;}
.x2e_c00394{left:145.070170pt;}
.x2f_c00394{left:152.430191pt;}
.x30_c00394{left:159.776608pt;}
.x31_c00394{left:167.266795pt;}
.x32_c00394{left:174.717010pt;}
.x33_c00394{left:178.419115pt;}
.x34_c00394{left:182.468375pt;}
.x35_c00394{left:185.852506pt;}
.x36_c00394{left:188.150503pt;}
.x3_c00394{left:204.676373pt;}
.x2_c00394{left:206.574107pt;}
.x4_c00394{left:209.317987pt;}
.x5_c00394{left:213.616993pt;}
.x6_c00394{left:218.376513pt;}
.x7_c00394{left:220.819105pt;}
.x8_c00394{left:223.490334pt;}
.x9_c00394{left:226.905704pt;}
.x3f_c00394{left:227.972394pt;}
.xa_c00394{left:229.825509pt;}
.xb_c00394{left:233.767373pt;}
.xc_c00394{left:241.423300pt;}
.xd_c00394{left:251.942027pt;}
.xe_c00394{left:258.549026pt;}
.xf_c00394{left:261.564741pt;}
.x3d_c00394{left:262.612255pt;}
.x10_c00394{left:266.308178pt;}
.x11_c00394{left:269.319244pt;}
.x12_c00394{left:272.883167pt;}
.x13_c00394{left:289.225349pt;}
.x14_c00394{left:290.306761pt;}
.x15_c00394{left:291.569114pt;}
.x16_c00394{left:294.587062pt;}
.x17_c00394{left:297.451603pt;}
.x18_c00394{left:302.677178pt;}
.x19_c00394{left:308.173457pt;}
.x1a_c00394{left:313.230862pt;}
.x1b_c00394{left:316.260173pt;}
.x1c_c00394{left:323.284548pt;}
.x1d_c00394{left:330.381558pt;}
.x1e_c00394{left:336.386614pt;}
.x1f_c00394{left:339.069625pt;}
.x20_c00394{left:341.738474pt;}
.x21_c00394{left:344.757080pt;}
.x22_c00394{left:347.081977pt;}
.x23_c00394{left:350.026488pt;}
.x24_c00394{left:354.624063pt;}
.x25_c00394{left:357.115628pt;}
.x40_c00394{left:401.765180pt;}
.x1_c00394{left:413.420124pt;}
.x39_c00394{left:601.310535pt;}
.x38_c00394{left:619.470933pt;}
.x3e_c00394{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.006348;font-style:normal;font-weight:normal;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_fe3e31ee0e2db06e45ab34e4.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.006348;font-style:normal;font-weight:normal;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_ba33e7c83bc78f03d238748c.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.005371;font-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_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);}
.v0_c00395{vertical-align:0.000000px;}
.ls0_c00395{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00395{word-spacing:-18.680283px;}
.ws2_c00395{word-spacing:0.000000px;}
._1_c00395{width:1.024546px;}
._8_c00395{width:2.529739px;}
._0_c00395{width:5.041912px;}
._3_c00395{width:6.412191px;}
._6_c00395{width:8.168949px;}
._10_c00395{width:9.310871px;}
._b_c00395{width:12.039663px;}
._7_c00395{width:14.462899px;}
._9_c00395{width:15.593959px;}
._c_c00395{width:16.946864px;}
._2_c00395{width:21.010894px;}
._a_c00395{width:22.199043px;}
._4_c00395{width:24.513580px;}
._d_c00395{width:25.665081px;}
._5_c00395{width:26.995555px;}
._e_c00395{width:28.315119px;}
._f_c00395{width:51.473176px;}
.fc1_c00395{color:rgb(0,0,0);}
.fc0_c00395{color:rgb(194,158,103);}
.fs3_c00395{font-size:71.912067px;}
.fs1_c00395{font-size:71.957041px;}
.fs2_c00395{font-size:74.340621px;}
.fs0_c00395{font-size:74.379845px;}
.y0_c00395{bottom:0.000000px;}
.y1_c00395{bottom:0.000008px;}
.y1d_c00395{bottom:30.156225px;}
.y13_c00395{bottom:279.365251px;}
.y12_c00395{bottom:309.722127px;}
.y11_c00395{bottom:340.079004px;}
.y10_c00395{bottom:370.435881px;}
.yf_c00395{bottom:400.792758px;}
.ye_c00395{bottom:431.149635px;}
.y1c_c00395{bottom:461.987606px;}
.y1b_c00395{bottom:537.747186px;}
.y1a_c00395{bottom:568.104063px;}
.y19_c00395{bottom:598.460940px;}
.y18_c00395{bottom:628.817817px;}
.y17_c00395{bottom:659.174693px;}
.y16_c00395{bottom:689.531570px;}
.y15_c00395{bottom:719.888447px;}
.y14_c00395{bottom:754.007483px;}
.yc_c00395{bottom:824.941106px;}
.yb_c00395{bottom:855.297982px;}
.ya_c00395{bottom:885.654859px;}
.y9_c00395{bottom:916.011736px;}
.y8_c00395{bottom:946.368613px;}
.y7_c00395{bottom:976.725489px;}
.y6_c00395{bottom:1007.082366px;}
.yd_c00395{bottom:1036.857301px;}
.y5_c00395{bottom:1109.791128px;}
.y4_c00395{bottom:1140.148005px;}
.y3_c00395{bottom:1170.504881px;}
.y2_c00395{bottom:1204.539346px;}
.h6_c00395{height:55.092790px;}
.h4_c00395{height:55.127245px;}
.h5_c00395{height:56.953337px;}
.h3_c00395{height:56.983387px;}
.h2_c00395{height:1304.999946px;}
.h0_c00395{height:1304.999953px;}
.h1_c00395{height:1305.000000px;}
.w2_c00395{width:934.874961px;}
.w0_c00395{width:934.875000px;}
.w1_c00395{width:935.250000px;}
.x0_c00395{left:0.000000px;}
.x1_c00395{left:87.850202px;}
.x2_c00395{left:451.985828px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ws0_c00395{word-spacing:-16.615081pt;}
.ws1_c00395{word-spacing:-16.604696pt;}
.ws2_c00395{word-spacing:0.000000pt;}
._1_c00395{width:0.910707pt;}
._8_c00395{width:2.248657pt;}
._0_c00395{width:4.481699pt;}
._3_c00395{width:5.699725pt;}
._6_c00395{width:7.261288pt;}
._10_c00395{width:8.276330pt;}
._b_c00395{width:10.701922pt;}
._7_c00395{width:12.855911pt;}
._9_c00395{width:13.861297pt;}
._c_c00395{width:15.063879pt;}
._2_c00395{width:18.676350pt;}
._a_c00395{width:19.732483pt;}
._4_c00395{width:21.789849pt;}
._d_c00395{width:22.813406pt;}
._5_c00395{width:23.996048pt;}
._e_c00395{width:25.168994pt;}
._f_c00395{width:45.753934pt;}
.fs3_c00395{font-size:63.921837pt;}
.fs1_c00395{font-size:63.961814pt;}
.fs2_c00395{font-size:66.080552pt;}
.fs0_c00395{font-size:66.115417pt;}
.y0_c00395{bottom:0.000000pt;}
.y1_c00395{bottom:0.000007pt;}
.y1d_c00395{bottom:26.805533pt;}
.y13_c00395{bottom:248.324667pt;}
.y12_c00395{bottom:275.308558pt;}
.y11_c00395{bottom:302.292448pt;}
.y10_c00395{bottom:329.276339pt;}
.yf_c00395{bottom:356.260229pt;}
.ye_c00395{bottom:383.244120pt;}
.y1c_c00395{bottom:410.655650pt;}
.y1b_c00395{bottom:477.997499pt;}
.y1a_c00395{bottom:504.981389pt;}
.y19_c00395{bottom:531.965280pt;}
.y18_c00395{bottom:558.949170pt;}
.y17_c00395{bottom:585.933061pt;}
.y16_c00395{bottom:612.916951pt;}
.y15_c00395{bottom:639.900842pt;}
.y14_c00395{bottom:670.228874pt;}
.yc_c00395{bottom:733.280983pt;}
.yb_c00395{bottom:760.264873pt;}
.ya_c00395{bottom:787.248764pt;}
.y9_c00395{bottom:814.232654pt;}
.y8_c00395{bottom:841.216545pt;}
.y7_c00395{bottom:868.200435pt;}
.y6_c00395{bottom:895.184325pt;}
.yd_c00395{bottom:921.650934pt;}
.y5_c00395{bottom:986.481002pt;}
.y4_c00395{bottom:1013.464893pt;}
.y3_c00395{bottom:1040.448783pt;}
.y2_c00395{bottom:1070.701641pt;}
.h6_c00395{height:48.971369pt;}
.h4_c00395{height:49.001996pt;}
.h5_c00395{height:50.625189pt;}
.h3_c00395{height:50.651899pt;}
.h2_c00395{height:1159.999952pt;}
.h0_c00395{height:1159.999959pt;}
.h1_c00395{height:1160.000000pt;}
.w2_c00395{width:830.999965pt;}
.w0_c00395{width:831.000000pt;}
.w1_c00395{width:831.333333pt;}
.x0_c00395{left:0.000000pt;}
.x1_c00395{left:78.089069pt;}
.x2_c00395{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c82cf0d1f143bf927422704c.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:0.734863;font-style:normal;font-weight: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_56775323797f472183b2a5ca.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:0.769531;font-style:normal;font-weight: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_c00396;src:url('chunks/assets/font_4e9de70ffdbe7fc693f05c23.woff2')format("woff");}.ff6_c00396{font-family:ff6_c00396;line-height:1.171387;font-style:normal;font-weight: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_c00396;src:url('chunks/assets/font_38040110d886604a6fb8cdec.woff2')format("woff");}.ff7_c00396{font-family:ff7_c00396;line-height:0.769531;font-style:normal;font-weight: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_c00396;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00396{font-family:ff8_c00396;line-height:1.006348;font-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_c00396{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00396{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00396{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00396{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00396{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00396{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00396{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00396{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00396{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00396{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00396{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00396{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00396{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00396{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00396{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00396{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00396{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00396{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00396{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00396{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00396{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00396{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00396{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00396{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00396{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00396{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00396{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00396{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00396{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00396{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00396{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00396{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00396{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00396{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00396{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00396{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00396{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00396{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00396{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00396{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00396{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00396{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00396{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00396{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00396{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00396{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00396{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00396{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00396{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00396{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00396{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00396{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00396{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00396{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00396{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00396{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00396{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00396{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00396{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00396{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00396{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00396{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00396{vertical-align:0.000000px;}
.ls0_c00396{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00396{word-spacing:-18.680283px;}
.ws0_c00396{word-spacing:-15.162211px;}
.ws1_c00396{word-spacing:-0.055722px;}
.ws4_c00396{word-spacing:0.000000px;}
.ws2_c00396{word-spacing:281.470806px;}
._0_c00396{width:1.124332px;}
._1_c00396{width:6.005728px;}
._3_c00396{width:7.380808px;}
._2_c00396{width:15.088953px;}
.fc3_c00396{color:rgb(194,158,103);}
.fc2_c00396{color:rgb(9,71,81);}
.fc1_c00396{color:rgb(255,255,255);}
.fc0_c00396{color:rgb(0,0,0);}
.fse_c00396{font-size:41.974772px;}
.fsc_c00396{font-size:41.975069px;}
.fs2_c00396{font-size:47.339969px;}
.fs5_c00396{font-size:47.339970px;}
.fs1_c00396{font-size:47.339972px;}
.fs4_c00396{font-size:47.339973px;}
.fs3_c00396{font-size:47.339974px;}
.fs6_c00396{font-size:47.339975px;}
.fs8_c00396{font-size:51.630774px;}
.fs9_c00396{font-size:55.721735px;}
.fsb_c00396{font-size:59.949210px;}
.fs10_c00396{font-size:71.912067px;}
.fs0_c00396{font-size:71.957041px;}
.fsf_c00396{font-size:74.379845px;}
.fs7_c00396{font-size:76.965540px;}
.fsa_c00396{font-size:89.946302px;}
.fsd_c00396{font-size:95.927731px;}
.y0_c00396{bottom:0.000000px;}
.y1_c00396{bottom:0.000008px;}
.y53_c00396{bottom:30.156225px;}
.y52_c00396{bottom:186.481821px;}
.y51_c00396{bottom:216.838697px;}
.y50_c00396{bottom:247.195574px;}
.y4f_c00396{bottom:277.552451px;}
.y4e_c00396{bottom:307.909328px;}
.y4d_c00396{bottom:339.025895px;}
.y42_c00396{bottom:402.064151px;}
.y10_c00396{bottom:496.565621px;}
.y38_c00396{bottom:496.580615px;}
.yf_c00396{bottom:497.090601px;}
.y39_c00396{bottom:497.110149px;}
.y22_c00396{bottom:497.453729px;}
.y37_c00396{bottom:497.824650px;}
.ye_c00396{bottom:498.156066px;}
.y23_c00396{bottom:498.286630px;}
.y21_c00396{bottom:498.306654px;}
.y36_c00396{bottom:499.075193px;}
.yd_c00396{bottom:499.228723px;}
.y20_c00396{bottom:499.340943px;}
.y3a_c00396{bottom:499.525324px;}
.y11_c00396{bottom:499.588875px;}
.y24_c00396{bottom:500.466588px;}
.y35_c00396{bottom:500.719045px;}
.yc_c00396{bottom:500.879226px;}
.y1f_c00396{bottom:501.542365px;}
.y25_c00396{bottom:501.856620px;}
.y34_c00396{bottom:502.406298px;}
.yb_c00396{bottom:502.571797px;}
.y26_c00396{bottom:503.553855px;}
.y12_c00396{bottom:503.863669px;}
.y33_c00396{bottom:504.270482px;}
.ya_c00396{bottom:504.440698px;}
.y3b_c00396{bottom:504.623015px;}
.y1e_c00396{bottom:505.331694px;}
.y27_c00396{bottom:505.994822px;}
.y13_c00396{bottom:506.380876px;}
.y3c_c00396{bottom:508.249011px;}
.y28_c00396{bottom:508.252431px;}
.y32_c00396{bottom:508.922053px;}
.y9_c00396{bottom:509.101734px;}
.y1d_c00396{bottom:510.797204px;}
.y29_c00396{bottom:511.519319px;}
.y14_c00396{bottom:512.329786px;}
.y3d_c00396{bottom:513.879526px;}
.y1c_c00396{bottom:515.261185px;}
.y31_c00396{bottom:515.319584px;}
.y8_c00396{bottom:515.507661px;}
.y15_c00396{bottom:517.075777px;}
.y2a_c00396{bottom:519.911703px;}
.y3e_c00396{bottom:520.533259px;}
.y1b_c00396{bottom:521.682049px;}
.y30_c00396{bottom:522.622322px;}
.y7_c00396{bottom:522.712413px;}
.y6_c00396{bottom:526.169150px;}
.y1a_c00396{bottom:526.249336px;}
.y2b_c00396{bottom:527.955876px;}
.y16_c00396{bottom:528.852613px;}
.y2f_c00396{bottom:529.779729px;}
.y5_c00396{bottom:532.175875px;}
.y3f_c00396{bottom:532.489167px;}
.y19_c00396{bottom:534.016824px;}
.y2e_c00396{bottom:534.546093px;}
.y41_c00396{bottom:536.481448px;}
.y4c_c00396{bottom:537.174916px;}
.y18_c00396{bottom:537.908142px;}
.y4_c00396{bottom:539.431091px;}
.y2d_c00396{bottom:540.714764px;}
.y17_c00396{bottom:541.085884px;}
.y40_c00396{bottom:541.449306px;}
.y4a_c00396{bottom:543.184160px;}
.y2c_c00396{bottom:547.773948px;}
.y3_c00396{bottom:548.960117px;}
.y4b_c00396{bottom:580.624158px;}
.y2_c00396{bottom:597.559761px;}
.y49_c00396{bottom:600.312789px;}
.y43_c00396{bottom:639.489911px;}
.y47_c00396{bottom:1127.585799px;}
.y45_c00396{bottom:1129.718199px;}
.y44_c00396{bottom:1147.707459px;}
.y48_c00396{bottom:1150.017273px;}
.y46_c00396{bottom:1170.658440px;}
.h12_c00396{height:32.157430px;}
.h8_c00396{height:35.967282px;}
.h7_c00396{height:35.967283px;}
.h9_c00396{height:35.967285px;}
.h5_c00396{height:36.267779px;}
.h4_c00396{height:36.267781px;}
.h6_c00396{height:36.267783px;}
.hb_c00396{height:37.437353px;}
.hf_c00396{height:39.085184px;}
.hc_c00396{height:51.885424px;}
.h14_c00396{height:55.092790px;}
.h3_c00396{height:55.127245px;}
.he_c00396{height:55.821847px;}
.ha_c00396{height:56.261810px;}
.h13_c00396{height:56.983387px;}
.h10_c00396{height:67.002968px;}
.hd_c00396{height:68.338108px;}
.h11_c00396{height:89.323331px;}
.h2_c00396{height:1304.999946px;}
.h0_c00396{height:1304.999953px;}
.h1_c00396{height:1305.000000px;}
.w2_c00396{width:934.874961px;}
.w0_c00396{width:934.875000px;}
.w1_c00396{width:935.250000px;}
.x0_c00396{left:0.000000px;}
.x40_c00396{left:89.434062px;}
.x3f_c00396{left:90.790650px;}
.x3a_c00396{left:108.062661px;}
.x3b_c00396{left:109.658623px;}
.x27_c00396{left:134.894322px;}
.x26_c00396{left:136.566734px;}
.x28_c00396{left:139.937719px;}
.x29_c00396{left:144.785273px;}
.x2a_c00396{left:150.147890px;}
.x2b_c00396{left:152.899057px;}
.x2c_c00396{left:155.907145px;}
.x2d_c00396{left:159.752336px;}
.x37_c00396{left:161.347648px;}
.x2e_c00396{left:163.203941px;}
.x2f_c00396{left:171.483965px;}
.x30_c00396{left:179.748684px;}
.x31_c00396{left:188.175145px;}
.x32_c00396{left:196.556636px;}
.x33_c00396{left:200.721504px;}
.x34_c00396{left:205.276922px;}
.x35_c00396{left:209.084069px;}
.x36_c00396{left:211.669316px;}
.x3_c00396{left:230.260919px;}
.x2_c00396{left:232.395871px;}
.x4_c00396{left:235.482735px;}
.x5_c00396{left:240.319117px;}
.x6_c00396{left:245.673577px;}
.x7_c00396{left:248.421493px;}
.x8_c00396{left:251.426626px;}
.x9_c00396{left:255.268917px;}
.x3e_c00396{left:256.468943px;}
.xa_c00396{left:258.553698px;}
.xb_c00396{left:262.988294px;}
.xc_c00396{left:271.601212px;}
.xd_c00396{left:283.434780px;}
.xe_c00396{left:290.867654px;}
.xf_c00396{left:294.260334px;}
.x3c_c00396{left:295.438786px;}
.x10_c00396{left:299.596701px;}
.x11_c00396{left:302.984150px;}
.x12_c00396{left:306.993562px;}
.x13_c00396{left:325.378518px;}
.x14_c00396{left:326.595106px;}
.x15_c00396{left:328.015253px;}
.x16_c00396{left:331.410444px;}
.x17_c00396{left:334.633053px;}
.x18_c00396{left:340.511825px;}
.x19_c00396{left:346.695139px;}
.x1a_c00396{left:352.384720px;}
.x1b_c00396{left:355.792694px;}
.x1c_c00396{left:363.695116px;}
.x1d_c00396{left:371.679253px;}
.x1e_c00396{left:378.434940px;}
.x1f_c00396{left:381.453328px;}
.x20_c00396{left:384.455783px;}
.x21_c00396{left:387.851715px;}
.x22_c00396{left:390.467224px;}
.x23_c00396{left:393.779799px;}
.x24_c00396{left:398.952070px;}
.x25_c00396{left:401.755082px;}
.x41_c00396{left:451.985828px;}
.x1_c00396{left:465.097640px;}
.x39_c00396{left:676.474352px;}
.x38_c00396{left:696.904800px;}
.x3d_c00396{left:733.103068px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls0_c00396{letter-spacing:0.000000pt;}
.ws3_c00396{word-spacing:-16.604696pt;}
.ws0_c00396{word-spacing:-13.477521pt;}
.ws1_c00396{word-spacing:-0.049530pt;}
.ws4_c00396{word-spacing:0.000000pt;}
.ws2_c00396{word-spacing:250.196272pt;}
._0_c00396{width:0.999406pt;}
._1_c00396{width:5.338425pt;}
._3_c00396{width:6.560718pt;}
._2_c00396{width:13.412402pt;}
.fse_c00396{font-size:37.310908pt;}
.fsc_c00396{font-size:37.311173pt;}
.fs2_c00396{font-size:42.079973pt;}
.fs5_c00396{font-size:42.079974pt;}
.fs1_c00396{font-size:42.079975pt;}
.fs4_c00396{font-size:42.079976pt;}
.fs3_c00396{font-size:42.079977pt;}
.fs6_c00396{font-size:42.079978pt;}
.fs8_c00396{font-size:45.894021pt;}
.fs9_c00396{font-size:49.530431pt;}
.fsb_c00396{font-size:53.288186pt;}
.fs10_c00396{font-size:63.921837pt;}
.fs0_c00396{font-size:63.961814pt;}
.fsf_c00396{font-size:66.115417pt;}
.fs7_c00396{font-size:68.413814pt;}
.fsa_c00396{font-size:79.952268pt;}
.fsd_c00396{font-size:85.269094pt;}
.y0_c00396{bottom:0.000000pt;}
.y1_c00396{bottom:0.000007pt;}
.y53_c00396{bottom:26.805533pt;}
.y52_c00396{bottom:165.761618pt;}
.y51_c00396{bottom:192.745509pt;}
.y50_c00396{bottom:219.729399pt;}
.y4f_c00396{bottom:246.713290pt;}
.y4e_c00396{bottom:273.697180pt;}
.y4d_c00396{bottom:301.356351pt;}
.y42_c00396{bottom:357.390356pt;}
.y10_c00396{bottom:441.391663pt;}
.y38_c00396{bottom:441.404991pt;}
.yf_c00396{bottom:441.858312pt;}
.y39_c00396{bottom:441.875688pt;}
.y22_c00396{bottom:442.181092pt;}
.y37_c00396{bottom:442.510800pt;}
.ye_c00396{bottom:442.805392pt;}
.y23_c00396{bottom:442.921449pt;}
.y21_c00396{bottom:442.939248pt;}
.y36_c00396{bottom:443.622394pt;}
.yd_c00396{bottom:443.758865pt;}
.y20_c00396{bottom:443.858616pt;}
.y3a_c00396{bottom:444.022510pt;}
.y11_c00396{bottom:444.079000pt;}
.y24_c00396{bottom:444.859189pt;}
.y35_c00396{bottom:445.083595pt;}
.yc_c00396{bottom:445.225979pt;}
.y1f_c00396{bottom:445.815435pt;}
.y25_c00396{bottom:446.094774pt;}
.y34_c00396{bottom:446.583376pt;}
.yb_c00396{bottom:446.730486pt;}
.y26_c00396{bottom:447.603427pt;}
.y12_c00396{bottom:447.878817pt;}
.y33_c00396{bottom:448.240428pt;}
.ya_c00396{bottom:448.391731pt;}
.y3b_c00396{bottom:448.553791pt;}
.y1e_c00396{bottom:449.183728pt;}
.y27_c00396{bottom:449.773175pt;}
.y13_c00396{bottom:450.116334pt;}
.y3c_c00396{bottom:451.776899pt;}
.y28_c00396{bottom:451.779938pt;}
.y32_c00396{bottom:452.375158pt;}
.y9_c00396{bottom:452.534875pt;}
.y1d_c00396{bottom:454.041960pt;}
.y29_c00396{bottom:454.683839pt;}
.y14_c00396{bottom:455.404254pt;}
.y3d_c00396{bottom:456.781801pt;}
.y1c_c00396{bottom:458.009942pt;}
.y31_c00396{bottom:458.061853pt;}
.y8_c00396{bottom:458.229032pt;}
.y15_c00396{bottom:459.622913pt;}
.y2a_c00396{bottom:462.143736pt;}
.y3e_c00396{bottom:462.696230pt;}
.y1b_c00396{bottom:463.717377pt;}
.y30_c00396{bottom:464.553175pt;}
.y7_c00396{bottom:464.633256pt;}
.y6_c00396{bottom:467.705911pt;}
.y1a_c00396{bottom:467.777188pt;}
.y2b_c00396{bottom:469.294112pt;}
.y16_c00396{bottom:470.091212pt;}
.y2f_c00396{bottom:470.915315pt;}
.y5_c00396{bottom:473.045222pt;}
.y3f_c00396{bottom:473.323704pt;}
.y19_c00396{bottom:474.681622pt;}
.y2e_c00396{bottom:475.152083pt;}
.y41_c00396{bottom:476.872398pt;}
.y4c_c00396{bottom:477.488814pt;}
.y18_c00396{bottom:478.140571pt;}
.y4_c00396{bottom:479.494303pt;}
.y2d_c00396{bottom:480.635346pt;}
.y17_c00396{bottom:480.965230pt;}
.y40_c00396{bottom:481.288272pt;}
.y4a_c00396{bottom:482.830364pt;}
.y2c_c00396{bottom:486.910176pt;}
.y3_c00396{bottom:487.964549pt;}
.y4b_c00396{bottom:516.110363pt;}
.y2_c00396{bottom:531.164232pt;}
.y49_c00396{bottom:533.611368pt;}
.y43_c00396{bottom:568.435476pt;}
.y47_c00396{bottom:1002.298488pt;}
.y45_c00396{bottom:1004.193955pt;}
.y44_c00396{bottom:1020.184408pt;}
.y48_c00396{bottom:1022.237576pt;}
.y46_c00396{bottom:1040.585280pt;}
.h12_c00396{height:28.584382pt;}
.h8_c00396{height:31.970917pt;}
.h7_c00396{height:31.970918pt;}
.h9_c00396{height:31.970920pt;}
.h5_c00396{height:32.238026pt;}
.h4_c00396{height:32.238028pt;}
.h6_c00396{height:32.238029pt;}
.hb_c00396{height:33.277647pt;}
.hf_c00396{height:34.742386pt;}
.hc_c00396{height:46.120377pt;}
.h14_c00396{height:48.971369pt;}
.h3_c00396{height:49.001996pt;}
.he_c00396{height:49.619420pt;}
.ha_c00396{height:50.010498pt;}
.h13_c00396{height:50.651899pt;}
.h10_c00396{height:59.558193pt;}
.hd_c00396{height:60.744985pt;}
.h11_c00396{height:79.398517pt;}
.h2_c00396{height:1159.999952pt;}
.h0_c00396{height:1159.999959pt;}
.h1_c00396{height:1160.000000pt;}
.w2_c00396{width:830.999965pt;}
.w0_c00396{width:831.000000pt;}
.w1_c00396{width:831.333333pt;}
.x0_c00396{left:0.000000pt;}
.x40_c00396{left:79.496944pt;}
.x3f_c00396{left:80.702800pt;}
.x3a_c00396{left:96.055698pt;}
.x3b_c00396{left:97.474332pt;}
.x27_c00396{left:119.906064pt;}
.x26_c00396{left:121.392652pt;}
.x28_c00396{left:124.389083pt;}
.x29_c00396{left:128.698021pt;}
.x2a_c00396{left:133.464791pt;}
.x2b_c00396{left:135.910272pt;}
.x2c_c00396{left:138.584129pt;}
.x2d_c00396{left:142.002076pt;}
.x37_c00396{left:143.420132pt;}
.x2e_c00396{left:145.070170pt;}
.x2f_c00396{left:152.430191pt;}
.x30_c00396{left:159.776608pt;}
.x31_c00396{left:167.266795pt;}
.x32_c00396{left:174.717010pt;}
.x33_c00396{left:178.419115pt;}
.x34_c00396{left:182.468375pt;}
.x35_c00396{left:185.852506pt;}
.x36_c00396{left:188.150503pt;}
.x3_c00396{left:204.676373pt;}
.x2_c00396{left:206.574107pt;}
.x4_c00396{left:209.317987pt;}
.x5_c00396{left:213.616993pt;}
.x6_c00396{left:218.376513pt;}
.x7_c00396{left:220.819105pt;}
.x8_c00396{left:223.490334pt;}
.x9_c00396{left:226.905704pt;}
.x3e_c00396{left:227.972394pt;}
.xa_c00396{left:229.825509pt;}
.xb_c00396{left:233.767373pt;}
.xc_c00396{left:241.423300pt;}
.xd_c00396{left:251.942027pt;}
.xe_c00396{left:258.549026pt;}
.xf_c00396{left:261.564741pt;}
.x3c_c00396{left:262.612255pt;}
.x10_c00396{left:266.308178pt;}
.x11_c00396{left:269.319244pt;}
.x12_c00396{left:272.883167pt;}
.x13_c00396{left:289.225349pt;}
.x14_c00396{left:290.306761pt;}
.x15_c00396{left:291.569114pt;}
.x16_c00396{left:294.587062pt;}
.x17_c00396{left:297.451603pt;}
.x18_c00396{left:302.677178pt;}
.x19_c00396{left:308.173457pt;}
.x1a_c00396{left:313.230862pt;}
.x1b_c00396{left:316.260173pt;}
.x1c_c00396{left:323.284548pt;}
.x1d_c00396{left:330.381558pt;}
.x1e_c00396{left:336.386614pt;}
.x1f_c00396{left:339.069625pt;}
.x20_c00396{left:341.738474pt;}
.x21_c00396{left:344.757080pt;}
.x22_c00396{left:347.081977pt;}
.x23_c00396{left:350.026488pt;}
.x24_c00396{left:354.624063pt;}
.x25_c00396{left:357.115628pt;}
.x41_c00396{left:401.765180pt;}
.x1_c00396{left:413.420124pt;}
.x39_c00396{left:601.310535pt;}
.x38_c00396{left:619.470933pt;}
.x3d_c00396{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.006348;font-style:normal;font-weight:normal;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_69d58e820676aeb64c322d8e.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.171387;font-style:normal;font-weight:normal;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_0dd8a1b33495515d864709d5.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:0.773926;font-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_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);}
.v0_c00397{vertical-align:0.000000px;}
.ls0_c00397{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00397{word-spacing:-18.680283px;}
.ws2_c00397{word-spacing:0.000000px;}
._0_c00397{width:1.992623px;}
._1_c00397{width:3.924098px;}
._8_c00397{width:8.064847px;}
._6_c00397{width:9.614232px;}
._3_c00397{width:11.096293px;}
._9_c00397{width:12.182614px;}
._c_c00397{width:14.651411px;}
._5_c00397{width:17.637906px;}
._a_c00397{width:20.233252px;}
._2_c00397{width:21.273172px;}
._d_c00397{width:23.124914px;}
._7_c00397{width:24.716018px;}
._4_c00397{width:45.703922px;}
._b_c00397{width:47.334285px;}
.fc1_c00397{color:rgb(0,0,0);}
.fc0_c00397{color:rgb(194,158,103);}
.fs3_c00397{font-size:71.912067px;}
.fs1_c00397{font-size:71.957041px;}
.fs2_c00397{font-size:74.340621px;}
.fs0_c00397{font-size:74.379845px;}
.y0_c00397{bottom:0.000000px;}
.y1_c00397{bottom:0.000008px;}
.y25_c00397{bottom:30.156225px;}
.y24_c00397{bottom:76.717875px;}
.y23_c00397{bottom:107.074752px;}
.y22_c00397{bottom:137.431629px;}
.y21_c00397{bottom:167.788505px;}
.y20_c00397{bottom:198.145382px;}
.y1f_c00397{bottom:228.502259px;}
.ye_c00397{bottom:264.524014px;}
.y1e_c00397{bottom:316.242051px;}
.y1d_c00397{bottom:346.598928px;}
.y1c_c00397{bottom:376.955805px;}
.y1b_c00397{bottom:407.312681px;}
.y1a_c00397{bottom:437.669558px;}
.yd_c00397{bottom:476.285905px;}
.y19_c00397{bottom:536.218700px;}
.y18_c00397{bottom:566.575577px;}
.y17_c00397{bottom:596.932454px;}
.y16_c00397{bottom:627.289331px;}
.y15_c00397{bottom:657.646207px;}
.y14_c00397{bottom:688.003084px;}
.y13_c00397{bottom:718.359961px;}
.y12_c00397{bottom:748.716838px;}
.y11_c00397{bottom:779.073714px;}
.y10_c00397{bottom:809.430591px;}
.yf_c00397{bottom:839.787468px;}
.yc_c00397{bottom:871.800955px;}
.yb_c00397{bottom:931.733826px;}
.ya_c00397{bottom:962.090703px;}
.y9_c00397{bottom:992.447579px;}
.y8_c00397{bottom:1022.804456px;}
.y7_c00397{bottom:1053.161333px;}
.y6_c00397{bottom:1083.518210px;}
.y5_c00397{bottom:1113.875086px;}
.y4_c00397{bottom:1144.231963px;}
.y3_c00397{bottom:1174.588840px;}
.y2_c00397{bottom:1204.539346px;}
.h5_c00397{height:56.953337px;}
.h3_c00397{height:56.983387px;}
.h6_c00397{height:66.961090px;}
.h4_c00397{height:67.002968px;}
.h2_c00397{height:1304.999946px;}
.h0_c00397{height:1304.999953px;}
.h1_c00397{height:1305.000000px;}
.w2_c00397{width:934.874961px;}
.w0_c00397{width:934.875000px;}
.w1_c00397{width:935.250000px;}
.x0_c00397{left:0.000000px;}
.x1_c00397{left:87.850202px;}
.x2_c00397{left:89.434062px;}
.x3_c00397{left:451.985828px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls0_c00397{letter-spacing:0.000000pt;}
.ws0_c00397{word-spacing:-16.615081pt;}
.ws1_c00397{word-spacing:-16.604696pt;}
.ws2_c00397{word-spacing:0.000000pt;}
._0_c00397{width:1.771220pt;}
._1_c00397{width:3.488087pt;}
._8_c00397{width:7.168753pt;}
._6_c00397{width:8.545984pt;}
._3_c00397{width:9.863372pt;}
._9_c00397{width:10.828990pt;}
._c_c00397{width:13.023476pt;}
._5_c00397{width:15.678139pt;}
._a_c00397{width:17.985113pt;}
._2_c00397{width:18.909487pt;}
._d_c00397{width:20.555479pt;}
._7_c00397{width:21.969794pt;}
._4_c00397{width:40.625708pt;}
._b_c00397{width:42.074920pt;}
.fs3_c00397{font-size:63.921837pt;}
.fs1_c00397{font-size:63.961814pt;}
.fs2_c00397{font-size:66.080552pt;}
.fs0_c00397{font-size:66.115417pt;}
.y0_c00397{bottom:0.000000pt;}
.y1_c00397{bottom:0.000007pt;}
.y25_c00397{bottom:26.805533pt;}
.y24_c00397{bottom:68.193667pt;}
.y23_c00397{bottom:95.177557pt;}
.y22_c00397{bottom:122.161448pt;}
.y21_c00397{bottom:149.145338pt;}
.y20_c00397{bottom:176.129229pt;}
.y1f_c00397{bottom:203.113119pt;}
.ye_c00397{bottom:235.132457pt;}
.y1e_c00397{bottom:281.104046pt;}
.y1d_c00397{bottom:308.087936pt;}
.y1c_c00397{bottom:335.071826pt;}
.y1b_c00397{bottom:362.055717pt;}
.y1a_c00397{bottom:389.039607pt;}
.yd_c00397{bottom:423.365249pt;}
.y19_c00397{bottom:476.638845pt;}
.y18_c00397{bottom:503.622735pt;}
.y17_c00397{bottom:530.606626pt;}
.y16_c00397{bottom:557.590516pt;}
.y15_c00397{bottom:584.574406pt;}
.y14_c00397{bottom:611.558297pt;}
.y13_c00397{bottom:638.542187pt;}
.y12_c00397{bottom:665.526078pt;}
.y11_c00397{bottom:692.509968pt;}
.y10_c00397{bottom:719.493859pt;}
.yf_c00397{bottom:746.477749pt;}
.yc_c00397{bottom:774.934182pt;}
.yb_c00397{bottom:828.207845pt;}
.ya_c00397{bottom:855.191736pt;}
.y9_c00397{bottom:882.175626pt;}
.y8_c00397{bottom:909.159517pt;}
.y7_c00397{bottom:936.143407pt;}
.y6_c00397{bottom:963.127297pt;}
.y5_c00397{bottom:990.111188pt;}
.y4_c00397{bottom:1017.095078pt;}
.y3_c00397{bottom:1044.078969pt;}
.y2_c00397{bottom:1070.701641pt;}
.h5_c00397{height:50.625189pt;}
.h3_c00397{height:50.651899pt;}
.h6_c00397{height:59.520969pt;}
.h4_c00397{height:59.558193pt;}
.h2_c00397{height:1159.999952pt;}
.h0_c00397{height:1159.999959pt;}
.h1_c00397{height:1160.000000pt;}
.w2_c00397{width:830.999965pt;}
.w0_c00397{width:831.000000pt;}
.w1_c00397{width:831.333333pt;}
.x0_c00397{left:0.000000pt;}
.x1_c00397{left:78.089069pt;}
.x2_c00397{left:79.496944pt;}
.x3_c00397{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24bce6e89e9819aa57b98f4e.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:0.734863;font-style:normal;font-weight: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_c00398;src:url('chunks/assets/font_56775323797f472183b2a5ca.woff2')format("woff");}.ff5_c00398{font-family:ff5_c00398;line-height:0.769531;font-style:normal;font-weight: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_c00398;src:url('chunks/assets/font_22188a2cc1c629ec5c84dba0.woff2')format("woff");}.ff6_c00398{font-family:ff6_c00398;line-height:1.171387;font-style:normal;font-weight: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_c00398;src:url('chunks/assets/font_f4b7fe731c0f6900084e1f20.woff2')format("woff");}.ff7_c00398{font-family:ff7_c00398;line-height:1.005371;font-style:normal;font-weight: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_c00398;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00398{font-family:ff8_c00398;line-height:1.006348;font-style:normal;font-weight: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_c00398;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00398{font-family:ff9_c00398;line-height:0.940000;font-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_c00398{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00398{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00398{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00398{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00398{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00398{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00398{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00398{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00398{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00398{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00398{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00398{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00398{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00398{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00398{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00398{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00398{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00398{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00398{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00398{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00398{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00398{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00398{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00398{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00398{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00398{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00398{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00398{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00398{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00398{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00398{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00398{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00398{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00398{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00398{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00398{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00398{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00398{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00398{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00398{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00398{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00398{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00398{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00398{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00398{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00398{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00398{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00398{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00398{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00398{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00398{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00398{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00398{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00398{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00398{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00398{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00398{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00398{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00398{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00398{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00398{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00398{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.v1_c00398{vertical-align:26.810849px;}
.ls0_c00398{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00398{word-spacing:-41.664701px;}
.ws3_c00398{word-spacing:-18.680283px;}
.ws2_c00398{word-spacing:-0.055722px;}
.ws5_c00398{word-spacing:0.000000px;}
.ws1_c00398{word-spacing:281.470806px;}
.ws0_c00398{word-spacing:1114.343689px;}
._2_c00398{width:1.053632px;}
._1_c00398{width:7.742524px;}
._3_c00398{width:8.874126px;}
._5_c00398{width:10.097824px;}
._0_c00398{width:12.461287px;}
._4_c00398{width:38.246324px;}
.fc3_c00398{color:rgb(194,158,103);}
.fc2_c00398{color:rgb(9,71,81);}
.fc1_c00398{color:rgb(255,255,255);}
.fc0_c00398{color:rgb(0,0,0);}
.fs8_c00398{font-size:41.974772px;}
.fsc_c00398{font-size:41.975069px;}
.fs2_c00398{font-size:47.339969px;}
.fs5_c00398{font-size:47.339970px;}
.fs1_c00398{font-size:47.339972px;}
.fs4_c00398{font-size:47.339973px;}
.fs3_c00398{font-size:47.339974px;}
.fs6_c00398{font-size:47.339975px;}
.fs9_c00398{font-size:51.630774px;}
.fsf_c00398{font-size:55.721735px;}
.fsb_c00398{font-size:59.949210px;}
.fs10_c00398{font-size:71.912067px;}
.fs0_c00398{font-size:71.957041px;}
.fse_c00398{font-size:74.379845px;}
.fs7_c00398{font-size:76.965540px;}
.fsa_c00398{font-size:89.946302px;}
.fsd_c00398{font-size:95.927731px;}
.y0_c00398{bottom:0.000000px;}
.y1_c00398{bottom:0.000008px;}
.y53_c00398{bottom:30.156225px;}
.y4a_c00398{bottom:123.561411px;}
.y49_c00398{bottom:153.918288px;}
.y48_c00398{bottom:184.275165px;}
.y47_c00398{bottom:214.632041px;}
.y46_c00398{bottom:244.988918px;}
.y45_c00398{bottom:275.345795px;}
.y44_c00398{bottom:305.702672px;}
.y51_c00398{bottom:338.010227px;}
.y43_c00398{bottom:402.064151px;}
.y10_c00398{bottom:493.812629px;}
.y38_c00398{bottom:493.827623px;}
.yf_c00398{bottom:494.337609px;}
.y39_c00398{bottom:494.357158px;}
.y22_c00398{bottom:494.700737px;}
.y37_c00398{bottom:495.071586px;}
.ye_c00398{bottom:495.403002px;}
.y23_c00398{bottom:495.533530px;}
.y21_c00398{bottom:495.553663px;}
.y36_c00398{bottom:496.322201px;}
.yd_c00398{bottom:496.475623px;}
.y20_c00398{bottom:496.587915px;}
.y3a_c00398{bottom:496.772260px;}
.y11_c00398{bottom:496.835884px;}
.y24_c00398{bottom:497.713596px;}
.y35_c00398{bottom:497.966053px;}
.yc_c00398{bottom:498.126234px;}
.y1f_c00398{bottom:498.789265px;}
.y25_c00398{bottom:499.103521px;}
.y34_c00398{bottom:499.653306px;}
.yb_c00398{bottom:499.818769px;}
.y26_c00398{bottom:500.800864px;}
.y12_c00398{bottom:501.110605px;}
.y33_c00398{bottom:501.517382px;}
.ya_c00398{bottom:501.687706px;}
.y3b_c00398{bottom:501.869915px;}
.y1e_c00398{bottom:502.578702px;}
.y27_c00398{bottom:503.241722px;}
.y13_c00398{bottom:503.627848px;}
.y3c_c00398{bottom:505.496019px;}
.y28_c00398{bottom:505.499367px;}
.y32_c00398{bottom:506.168989px;}
.y9_c00398{bottom:506.348634px;}
.y1d_c00398{bottom:508.044213px;}
.y29_c00398{bottom:508.766327px;}
.y14_c00398{bottom:509.576794px;}
.y3d_c00398{bottom:511.126534px;}
.y1c_c00398{bottom:512.508085px;}
.y31_c00398{bottom:512.566592px;}
.y8_c00398{bottom:512.754669px;}
.y15_c00398{bottom:514.322677px;}
.y2a_c00398{bottom:517.158603px;}
.y3e_c00398{bottom:517.780195px;}
.y1b_c00398{bottom:518.929057px;}
.y30_c00398{bottom:519.869222px;}
.y7_c00398{bottom:519.959421px;}
.y6_c00398{bottom:523.416158px;}
.y1a_c00398{bottom:523.496236px;}
.y2b_c00398{bottom:525.202812px;}
.y16_c00398{bottom:526.099549px;}
.y2f_c00398{bottom:527.026630px;}
.y5_c00398{bottom:529.422883px;}
.y3f_c00398{bottom:529.736175px;}
.y19_c00398{bottom:531.263725px;}
.y2e_c00398{bottom:531.792993px;}
.y41_c00398{bottom:533.728456px;}
.y50_c00398{bottom:534.421816px;}
.y18_c00398{bottom:535.155114px;}
.y4_c00398{bottom:536.678099px;}
.y2d_c00398{bottom:537.961701px;}
.y17_c00398{bottom:538.332892px;}
.y40_c00398{bottom:538.696314px;}
.y2c_c00398{bottom:545.020884px;}
.y3_c00398{bottom:546.207017px;}
.y42_c00398{bottom:577.871130px;}
.y2_c00398{bottom:597.559761px;}
.y52_c00398{bottom:639.489911px;}
.y54_c00398{bottom:1021.609033px;}
.y4e_c00398{bottom:1127.585799px;}
.y4c_c00398{bottom:1129.718199px;}
.y4b_c00398{bottom:1147.707459px;}
.y4f_c00398{bottom:1150.017273px;}
.y4d_c00398{bottom:1170.658440px;}
.h8_c00398{height:35.967282px;}
.h7_c00398{height:35.967283px;}
.h9_c00398{height:35.967285px;}
.hc_c00398{height:37.437353px;}
.hb_c00398{height:39.084907px;}
.hf_c00398{height:39.085184px;}
.h5_c00398{height:44.080723px;}
.h4_c00398{height:44.080726px;}
.h6_c00398{height:44.080728px;}
.h15_c00398{height:45.561399px;}
.h13_c00398{height:51.885424px;}
.he_c00398{height:55.821847px;}
.h11_c00398{height:56.261810px;}
.h12_c00398{height:56.983387px;}
.ha_c00398{height:65.895756px;}
.h14_c00398{height:66.961090px;}
.h3_c00398{height:67.002968px;}
.hd_c00398{height:68.338108px;}
.h10_c00398{height:89.323331px;}
.h2_c00398{height:1304.999946px;}
.h0_c00398{height:1304.999953px;}
.h1_c00398{height:1305.000000px;}
.w2_c00398{width:934.874961px;}
.w0_c00398{width:934.875000px;}
.w1_c00398{width:935.250000px;}
.x0_c00398{left:0.000000px;}
.x3a_c00398{left:89.434062px;}
.x3b_c00398{left:108.062661px;}
.x3c_c00398{left:109.658623px;}
.x42_c00398{left:130.612669px;}
.x27_c00398{left:134.894322px;}
.x26_c00398{left:136.566734px;}
.x28_c00398{left:139.937719px;}
.x29_c00398{left:144.785273px;}
.x2a_c00398{left:150.147890px;}
.x2b_c00398{left:152.899057px;}
.x2c_c00398{left:155.907145px;}
.x2d_c00398{left:159.752336px;}
.x37_c00398{left:161.347648px;}
.x2e_c00398{left:163.203941px;}
.x2f_c00398{left:171.483965px;}
.x30_c00398{left:179.748684px;}
.x31_c00398{left:188.175145px;}
.x32_c00398{left:196.556636px;}
.x33_c00398{left:200.721504px;}
.x34_c00398{left:205.276922px;}
.x35_c00398{left:209.084069px;}
.x36_c00398{left:211.669316px;}
.x3_c00398{left:230.260919px;}
.x2_c00398{left:232.395871px;}
.x4_c00398{left:235.482735px;}
.x5_c00398{left:240.319117px;}
.x6_c00398{left:245.673577px;}
.x7_c00398{left:248.421493px;}
.x8_c00398{left:251.426626px;}
.x9_c00398{left:255.268917px;}
.x3f_c00398{left:256.468943px;}
.xa_c00398{left:258.553698px;}
.xb_c00398{left:262.988294px;}
.xc_c00398{left:271.601212px;}
.xd_c00398{left:283.434780px;}
.xe_c00398{left:290.867654px;}
.xf_c00398{left:294.260334px;}
.x3d_c00398{left:295.438786px;}
.x10_c00398{left:299.596701px;}
.x11_c00398{left:302.984150px;}
.x12_c00398{left:306.993562px;}
.x13_c00398{left:325.378518px;}
.x14_c00398{left:326.595106px;}
.x15_c00398{left:328.015253px;}
.x16_c00398{left:331.410444px;}
.x17_c00398{left:334.633053px;}
.x18_c00398{left:340.511825px;}
.x19_c00398{left:346.695139px;}
.x1a_c00398{left:352.384720px;}
.x1b_c00398{left:355.792694px;}
.x1c_c00398{left:363.695116px;}
.x1d_c00398{left:371.679253px;}
.x1e_c00398{left:378.434940px;}
.x1f_c00398{left:381.453328px;}
.x20_c00398{left:384.455783px;}
.x21_c00398{left:387.851715px;}
.x22_c00398{left:390.467224px;}
.x23_c00398{left:393.779799px;}
.x24_c00398{left:398.952070px;}
.x25_c00398{left:401.755082px;}
.x41_c00398{left:451.985828px;}
.x1_c00398{left:465.097640px;}
.x3e_c00398{left:470.734933px;}
.x40_c00398{left:676.474352px;}
.x39_c00398{left:696.904800px;}
.x38_c00398{left:733.103068px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.v1_c00398{vertical-align:23.831865pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ws4_c00398{word-spacing:-37.035289pt;}
.ws3_c00398{word-spacing:-16.604696pt;}
.ws2_c00398{word-spacing:-0.049530pt;}
.ws5_c00398{word-spacing:0.000000pt;}
.ws1_c00398{word-spacing:250.196272pt;}
.ws0_c00398{word-spacing:990.527723pt;}
._2_c00398{width:0.936562pt;}
._1_c00398{width:6.882243pt;}
._3_c00398{width:7.888112pt;}
._5_c00398{width:8.975843pt;}
._0_c00398{width:11.076700pt;}
._4_c00398{width:33.996733pt;}
.fs8_c00398{font-size:37.310908pt;}
.fsc_c00398{font-size:37.311173pt;}
.fs2_c00398{font-size:42.079973pt;}
.fs5_c00398{font-size:42.079974pt;}
.fs1_c00398{font-size:42.079975pt;}
.fs4_c00398{font-size:42.079976pt;}
.fs3_c00398{font-size:42.079977pt;}
.fs6_c00398{font-size:42.079978pt;}
.fs9_c00398{font-size:45.894021pt;}
.fsf_c00398{font-size:49.530431pt;}
.fsb_c00398{font-size:53.288186pt;}
.fs10_c00398{font-size:63.921837pt;}
.fs0_c00398{font-size:63.961814pt;}
.fse_c00398{font-size:66.115417pt;}
.fs7_c00398{font-size:68.413814pt;}
.fsa_c00398{font-size:79.952268pt;}
.fsd_c00398{font-size:85.269094pt;}
.y0_c00398{bottom:0.000000pt;}
.y1_c00398{bottom:0.000007pt;}
.y53_c00398{bottom:26.805533pt;}
.y4a_c00398{bottom:109.832365pt;}
.y49_c00398{bottom:136.816256pt;}
.y48_c00398{bottom:163.800146pt;}
.y47_c00398{bottom:190.784037pt;}
.y46_c00398{bottom:217.767927pt;}
.y45_c00398{bottom:244.751818pt;}
.y44_c00398{bottom:271.735708pt;}
.y51_c00398{bottom:300.453535pt;}
.y43_c00398{bottom:357.390356pt;}
.y10_c00398{bottom:438.944560pt;}
.y38_c00398{bottom:438.957887pt;}
.yf_c00398{bottom:439.411208pt;}
.y39_c00398{bottom:439.428585pt;}
.y22_c00398{bottom:439.733989pt;}
.y37_c00398{bottom:440.063632pt;}
.ye_c00398{bottom:440.358224pt;}
.y23_c00398{bottom:440.474249pt;}
.y21_c00398{bottom:440.492144pt;}
.y36_c00398{bottom:441.175290pt;}
.yd_c00398{bottom:441.311665pt;}
.y20_c00398{bottom:441.411480pt;}
.y3a_c00398{bottom:441.575343pt;}
.y11_c00398{bottom:441.631897pt;}
.y24_c00398{bottom:442.412085pt;}
.y35_c00398{bottom:442.636491pt;}
.yc_c00398{bottom:442.778875pt;}
.y1f_c00398{bottom:443.368235pt;}
.y25_c00398{bottom:443.647574pt;}
.y34_c00398{bottom:444.136272pt;}
.yb_c00398{bottom:444.283350pt;}
.y26_c00398{bottom:445.156323pt;}
.y12_c00398{bottom:445.431649pt;}
.y33_c00398{bottom:445.793228pt;}
.ya_c00398{bottom:445.944627pt;}
.y3b_c00398{bottom:446.106592pt;}
.y1e_c00398{bottom:446.736624pt;}
.y27_c00398{bottom:447.325975pt;}
.y13_c00398{bottom:447.669198pt;}
.y3c_c00398{bottom:449.329795pt;}
.y28_c00398{bottom:449.332771pt;}
.y32_c00398{bottom:449.927990pt;}
.y9_c00398{bottom:450.087675pt;}
.y1d_c00398{bottom:451.594856pt;}
.y29_c00398{bottom:452.236735pt;}
.y14_c00398{bottom:452.957150pt;}
.y3d_c00398{bottom:454.334697pt;}
.y1c_c00398{bottom:455.562742pt;}
.y31_c00398{bottom:455.614749pt;}
.y8_c00398{bottom:455.781928pt;}
.y15_c00398{bottom:457.175713pt;}
.y2a_c00398{bottom:459.696536pt;}
.y3e_c00398{bottom:460.249062pt;}
.y1b_c00398{bottom:461.270273pt;}
.y30_c00398{bottom:462.105976pt;}
.y7_c00398{bottom:462.186152pt;}
.y6_c00398{bottom:465.258807pt;}
.y1a_c00398{bottom:465.329988pt;}
.y2b_c00398{bottom:466.846944pt;}
.y16_c00398{bottom:467.644044pt;}
.y2f_c00398{bottom:468.468115pt;}
.y5_c00398{bottom:470.598118pt;}
.y3f_c00398{bottom:470.876600pt;}
.y19_c00398{bottom:472.234422pt;}
.y2e_c00398{bottom:472.704883pt;}
.y41_c00398{bottom:474.425294pt;}
.y50_c00398{bottom:475.041614pt;}
.y18_c00398{bottom:475.693435pt;}
.y4_c00398{bottom:477.047199pt;}
.y2d_c00398{bottom:478.188178pt;}
.y17_c00398{bottom:478.518126pt;}
.y40_c00398{bottom:478.841168pt;}
.y2c_c00398{bottom:484.463008pt;}
.y3_c00398{bottom:485.517349pt;}
.y42_c00398{bottom:513.663227pt;}
.y2_c00398{bottom:531.164232pt;}
.y52_c00398{bottom:568.435476pt;}
.y54_c00398{bottom:908.096918pt;}
.y4e_c00398{bottom:1002.298488pt;}
.y4c_c00398{bottom:1004.193955pt;}
.y4b_c00398{bottom:1020.184408pt;}
.y4f_c00398{bottom:1022.237576pt;}
.y4d_c00398{bottom:1040.585280pt;}
.h8_c00398{height:31.970917pt;}
.h7_c00398{height:31.970918pt;}
.h9_c00398{height:31.970920pt;}
.hc_c00398{height:33.277647pt;}
.hb_c00398{height:34.742140pt;}
.hf_c00398{height:34.742386pt;}
.h5_c00398{height:39.182865pt;}
.h4_c00398{height:39.182867pt;}
.h6_c00398{height:39.182869pt;}
.h15_c00398{height:40.499022pt;}
.h13_c00398{height:46.120377pt;}
.he_c00398{height:49.619420pt;}
.h11_c00398{height:50.010498pt;}
.h12_c00398{height:50.651899pt;}
.ha_c00398{height:58.574005pt;}
.h14_c00398{height:59.520969pt;}
.h3_c00398{height:59.558193pt;}
.hd_c00398{height:60.744985pt;}
.h10_c00398{height:79.398517pt;}
.h2_c00398{height:1159.999952pt;}
.h0_c00398{height:1159.999959pt;}
.h1_c00398{height:1160.000000pt;}
.w2_c00398{width:830.999965pt;}
.w0_c00398{width:831.000000pt;}
.w1_c00398{width:831.333333pt;}
.x0_c00398{left:0.000000pt;}
.x3a_c00398{left:79.496944pt;}
.x3b_c00398{left:96.055698pt;}
.x3c_c00398{left:97.474332pt;}
.x42_c00398{left:116.100150pt;}
.x27_c00398{left:119.906064pt;}
.x26_c00398{left:121.392652pt;}
.x28_c00398{left:124.389083pt;}
.x29_c00398{left:128.698021pt;}
.x2a_c00398{left:133.464791pt;}
.x2b_c00398{left:135.910272pt;}
.x2c_c00398{left:138.584129pt;}
.x2d_c00398{left:142.002076pt;}
.x37_c00398{left:143.420132pt;}
.x2e_c00398{left:145.070170pt;}
.x2f_c00398{left:152.430191pt;}
.x30_c00398{left:159.776608pt;}
.x31_c00398{left:167.266795pt;}
.x32_c00398{left:174.717010pt;}
.x33_c00398{left:178.419115pt;}
.x34_c00398{left:182.468375pt;}
.x35_c00398{left:185.852506pt;}
.x36_c00398{left:188.150503pt;}
.x3_c00398{left:204.676373pt;}
.x2_c00398{left:206.574107pt;}
.x4_c00398{left:209.317987pt;}
.x5_c00398{left:213.616993pt;}
.x6_c00398{left:218.376513pt;}
.x7_c00398{left:220.819105pt;}
.x8_c00398{left:223.490334pt;}
.x9_c00398{left:226.905704pt;}
.x3f_c00398{left:227.972394pt;}
.xa_c00398{left:229.825509pt;}
.xb_c00398{left:233.767373pt;}
.xc_c00398{left:241.423300pt;}
.xd_c00398{left:251.942027pt;}
.xe_c00398{left:258.549026pt;}
.xf_c00398{left:261.564741pt;}
.x3d_c00398{left:262.612255pt;}
.x10_c00398{left:266.308178pt;}
.x11_c00398{left:269.319244pt;}
.x12_c00398{left:272.883167pt;}
.x13_c00398{left:289.225349pt;}
.x14_c00398{left:290.306761pt;}
.x15_c00398{left:291.569114pt;}
.x16_c00398{left:294.587062pt;}
.x17_c00398{left:297.451603pt;}
.x18_c00398{left:302.677178pt;}
.x19_c00398{left:308.173457pt;}
.x1a_c00398{left:313.230862pt;}
.x1b_c00398{left:316.260173pt;}
.x1c_c00398{left:323.284548pt;}
.x1d_c00398{left:330.381558pt;}
.x1e_c00398{left:336.386614pt;}
.x1f_c00398{left:339.069625pt;}
.x20_c00398{left:341.738474pt;}
.x21_c00398{left:344.757080pt;}
.x22_c00398{left:347.081977pt;}
.x23_c00398{left:350.026488pt;}
.x24_c00398{left:354.624063pt;}
.x25_c00398{left:357.115628pt;}
.x41_c00398{left:401.765180pt;}
.x1_c00398{left:413.420124pt;}
.x3e_c00398{left:418.431052pt;}
.x40_c00398{left:601.310535pt;}
.x39_c00398{left:619.470933pt;}
.x38_c00398{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.006348;font-style:normal;font-weight:normal;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_d73cca728e34b1cbdf157777.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.171387;font-style:normal;font-weight:normal;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_ab96231dd67a565fd73db61a.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.005371;font-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_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);}
.v0_c00399{vertical-align:0.000000px;}
.ls0_c00399{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00399{word-spacing:-18.680283px;}
.ws2_c00399{word-spacing:0.000000px;}
._2_c00399{width:1.241264px;}
._7_c00399{width:2.294770px;}
._6_c00399{width:3.425690px;}
._1_c00399{width:5.048636px;}
._5_c00399{width:6.309526px;}
._0_c00399{width:8.126267px;}
._3_c00399{width:10.131312px;}
._c_c00399{width:12.039663px;}
._a_c00399{width:13.960507px;}
._8_c00399{width:14.996861px;}
._d_c00399{width:16.090719px;}
._b_c00399{width:22.199043px;}
._e_c00399{width:25.002245px;}
._9_c00399{width:30.012523px;}
._4_c00399{width:41.382901px;}
.fc1_c00399{color:rgb(0,0,0);}
.fc0_c00399{color:rgb(194,158,103);}
.fs3_c00399{font-size:71.912067px;}
.fs1_c00399{font-size:71.957041px;}
.fs2_c00399{font-size:74.340621px;}
.fs0_c00399{font-size:74.379845px;}
.y0_c00399{bottom:0.000000px;}
.y1_c00399{bottom:0.000008px;}
.y1e_c00399{bottom:30.156225px;}
.y18_c00399{bottom:244.063652px;}
.y17_c00399{bottom:274.420529px;}
.y16_c00399{bottom:304.777406px;}
.y15_c00399{bottom:335.134282px;}
.y14_c00399{bottom:365.491159px;}
.y13_c00399{bottom:395.848036px;}
.y1d_c00399{bottom:429.136995px;}
.y1c_c00399{bottom:503.608515px;}
.y1b_c00399{bottom:533.965392px;}
.y1a_c00399{bottom:564.322269px;}
.y19_c00399{bottom:600.745460px;}
.y11_c00399{bottom:673.010560px;}
.y10_c00399{bottom:703.367437px;}
.yf_c00399{bottom:733.724313px;}
.ye_c00399{bottom:764.081190px;}
.yd_c00399{bottom:794.438067px;}
.yc_c00399{bottom:824.794944px;}
.yb_c00399{bottom:855.151820px;}
.ya_c00399{bottom:885.508697px;}
.y12_c00399{bottom:918.158052px;}
.y9_c00399{bottom:988.472308px;}
.y8_c00399{bottom:1018.829185px;}
.y7_c00399{bottom:1049.186062px;}
.y6_c00399{bottom:1079.542939px;}
.y5_c00399{bottom:1109.899815px;}
.y4_c00399{bottom:1140.256692px;}
.y3_c00399{bottom:1170.613569px;}
.y2_c00399{bottom:1204.539346px;}
.h5_c00399{height:56.953337px;}
.h3_c00399{height:56.983387px;}
.h6_c00399{height:66.961090px;}
.h4_c00399{height:67.002968px;}
.h2_c00399{height:1304.999946px;}
.h0_c00399{height:1304.999953px;}
.h1_c00399{height:1305.000000px;}
.w2_c00399{width:934.874961px;}
.w0_c00399{width:934.875000px;}
.w1_c00399{width:935.250000px;}
.x0_c00399{left:0.000000px;}
.x1_c00399{left:87.850202px;}
.x2_c00399{left:451.985828px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws0_c00399{word-spacing:-16.615081pt;}
.ws1_c00399{word-spacing:-16.604696pt;}
.ws2_c00399{word-spacing:0.000000pt;}
._2_c00399{width:1.103345pt;}
._7_c00399{width:2.039796pt;}
._6_c00399{width:3.045058pt;}
._1_c00399{width:4.487676pt;}
._5_c00399{width:5.608467pt;}
._0_c00399{width:7.223348pt;}
._3_c00399{width:9.005611pt;}
._c_c00399{width:10.701922pt;}
._a_c00399{width:12.409339pt;}
._8_c00399{width:13.330543pt;}
._d_c00399{width:14.302861pt;}
._b_c00399{width:19.732483pt;}
._e_c00399{width:22.224218pt;}
._9_c00399{width:26.677798pt;}
._4_c00399{width:36.784801pt;}
.fs3_c00399{font-size:63.921837pt;}
.fs1_c00399{font-size:63.961814pt;}
.fs2_c00399{font-size:66.080552pt;}
.fs0_c00399{font-size:66.115417pt;}
.y0_c00399{bottom:0.000000pt;}
.y1_c00399{bottom:0.000007pt;}
.y1e_c00399{bottom:26.805533pt;}
.y18_c00399{bottom:216.945469pt;}
.y17_c00399{bottom:243.929359pt;}
.y16_c00399{bottom:270.913250pt;}
.y15_c00399{bottom:297.897140pt;}
.y14_c00399{bottom:324.881030pt;}
.y13_c00399{bottom:351.864921pt;}
.y1d_c00399{bottom:381.455107pt;}
.y1c_c00399{bottom:447.652014pt;}
.y1b_c00399{bottom:474.635904pt;}
.y1a_c00399{bottom:501.619795pt;}
.y19_c00399{bottom:533.995965pt;}
.y11_c00399{bottom:598.231609pt;}
.y10_c00399{bottom:625.215499pt;}
.yf_c00399{bottom:652.199390pt;}
.ye_c00399{bottom:679.183280pt;}
.yd_c00399{bottom:706.167171pt;}
.yc_c00399{bottom:733.151061pt;}
.yb_c00399{bottom:760.134951pt;}
.ya_c00399{bottom:787.118842pt;}
.y12_c00399{bottom:816.140491pt;}
.y9_c00399{bottom:878.642052pt;}
.y8_c00399{bottom:905.625942pt;}
.y7_c00399{bottom:932.609833pt;}
.y6_c00399{bottom:959.593723pt;}
.y5_c00399{bottom:986.577614pt;}
.y4_c00399{bottom:1013.561504pt;}
.y3_c00399{bottom:1040.545395pt;}
.y2_c00399{bottom:1070.701641pt;}
.h5_c00399{height:50.625189pt;}
.h3_c00399{height:50.651899pt;}
.h6_c00399{height:59.520969pt;}
.h4_c00399{height:59.558193pt;}
.h2_c00399{height:1159.999952pt;}
.h0_c00399{height:1159.999959pt;}
.h1_c00399{height:1160.000000pt;}
.w2_c00399{width:830.999965pt;}
.w0_c00399{width:831.000000pt;}
.w1_c00399{width:831.333333pt;}
.x0_c00399{left:0.000000pt;}
.x1_c00399{left:78.089069pt;}
.x2_c00399{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09ee0689fde87687a2c18131.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:0.734863;font-style:normal;font-weight: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_c00400;src:url('chunks/assets/font_8e19f82ec30a647c341f16cc.woff2')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:1.171387;font-style:normal;font-weight: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_c00400;src:url('chunks/assets/font_2b2a4b8c6cc1aaa1f97fe789.woff2')format("woff");}.ff6_c00400{font-family:ff6_c00400;line-height:1.000000;font-style:normal;font-weight: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_c00400;src:url('chunks/assets/font_56775323797f472183b2a5ca.woff2')format("woff");}.ff7_c00400{font-family:ff7_c00400;line-height:0.769531;font-style:normal;font-weight: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_c00400;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00400{font-family:ff8_c00400;line-height:1.006348;font-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_c00400{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00400{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00400{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00400{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00400{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00400{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00400{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00400{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00400{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00400{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00400{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00400{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00400{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00400{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00400{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00400{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00400{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00400{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00400{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00400{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00400{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00400{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00400{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00400{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00400{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00400{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00400{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00400{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00400{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00400{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00400{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00400{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00400{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00400{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00400{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00400{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00400{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00400{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00400{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00400{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00400{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00400{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00400{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00400{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00400{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00400{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00400{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00400{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00400{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00400{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00400{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00400{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00400{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00400{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00400{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00400{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00400{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00400{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00400{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00400{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00400{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00400{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.ls0_c00400{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00400{word-spacing:-18.680283px;}
.ws0_c00400{word-spacing:-15.162211px;}
.ws2_c00400{word-spacing:-0.055722px;}
.ws4_c00400{word-spacing:0.000000px;}
.ws1_c00400{word-spacing:281.470806px;}
._3_c00400{width:1.797731px;}
._6_c00400{width:3.415673px;}
._0_c00400{width:4.556742px;}
._5_c00400{width:6.283311px;}
._4_c00400{width:7.486971px;}
._2_c00400{width:10.897289px;}
._1_c00400{width:25.220056px;}
.fc3_c00400{color:rgb(194,158,103);}
.fc2_c00400{color:rgb(9,71,81);}
.fc1_c00400{color:rgb(255,255,255);}
.fc0_c00400{color:rgb(0,0,0);}
.fs8_c00400{font-size:41.974772px;}
.fsa_c00400{font-size:41.975069px;}
.fs2_c00400{font-size:47.339969px;}
.fs5_c00400{font-size:47.339970px;}
.fs1_c00400{font-size:47.339972px;}
.fs4_c00400{font-size:47.339973px;}
.fs3_c00400{font-size:47.339974px;}
.fs6_c00400{font-size:47.339975px;}
.fs9_c00400{font-size:51.630774px;}
.fsf_c00400{font-size:55.721735px;}
.fsd_c00400{font-size:59.949210px;}
.fs10_c00400{font-size:71.912067px;}
.fs0_c00400{font-size:71.957041px;}
.fse_c00400{font-size:74.379845px;}
.fs7_c00400{font-size:76.965540px;}
.fsc_c00400{font-size:89.946302px;}
.fsb_c00400{font-size:95.927731px;}
.y0_c00400{bottom:0.000000px;}
.y1_c00400{bottom:0.000008px;}
.y58_c00400{bottom:30.156225px;}
.y53_c00400{bottom:56.905894px;}
.y52_c00400{bottom:87.262771px;}
.y51_c00400{bottom:117.619647px;}
.y50_c00400{bottom:147.976524px;}
.y4f_c00400{bottom:178.333401px;}
.y4e_c00400{bottom:208.690278px;}
.y4d_c00400{bottom:239.047154px;}
.y4c_c00400{bottom:269.404031px;}
.y4b_c00400{bottom:299.760908px;}
.y55_c00400{bottom:335.193515px;}
.y45_c00400{bottom:421.842694px;}
.y42_c00400{bottom:487.376458px;}
.y10_c00400{bottom:493.812629px;}
.y38_c00400{bottom:493.827623px;}
.yf_c00400{bottom:494.337609px;}
.y39_c00400{bottom:494.357158px;}
.y22_c00400{bottom:494.700737px;}
.y37_c00400{bottom:495.071586px;}
.ye_c00400{bottom:495.403002px;}
.y23_c00400{bottom:495.533530px;}
.y21_c00400{bottom:495.553663px;}
.y36_c00400{bottom:496.322201px;}
.yd_c00400{bottom:496.475623px;}
.y20_c00400{bottom:496.587915px;}
.y3a_c00400{bottom:496.772260px;}
.y11_c00400{bottom:496.835884px;}
.y24_c00400{bottom:497.713596px;}
.y35_c00400{bottom:497.966053px;}
.yc_c00400{bottom:498.126234px;}
.y1f_c00400{bottom:498.789265px;}
.y25_c00400{bottom:499.103521px;}
.y34_c00400{bottom:499.653306px;}
.yb_c00400{bottom:499.818769px;}
.y26_c00400{bottom:500.800864px;}
.y12_c00400{bottom:501.110605px;}
.y33_c00400{bottom:501.517382px;}
.ya_c00400{bottom:501.687706px;}
.y3b_c00400{bottom:501.869915px;}
.y1e_c00400{bottom:502.578702px;}
.y27_c00400{bottom:503.241722px;}
.y13_c00400{bottom:503.627848px;}
.y3c_c00400{bottom:505.496019px;}
.y28_c00400{bottom:505.499367px;}
.y32_c00400{bottom:506.168989px;}
.y9_c00400{bottom:506.348634px;}
.y1d_c00400{bottom:508.044213px;}
.y29_c00400{bottom:508.766327px;}
.y14_c00400{bottom:509.576794px;}
.y3d_c00400{bottom:511.126534px;}
.y1c_c00400{bottom:512.508085px;}
.y31_c00400{bottom:512.566592px;}
.y8_c00400{bottom:512.754669px;}
.y15_c00400{bottom:514.322677px;}
.y2a_c00400{bottom:517.158603px;}
.y3e_c00400{bottom:517.780195px;}
.y1b_c00400{bottom:518.929057px;}
.y30_c00400{bottom:519.869222px;}
.y7_c00400{bottom:519.959421px;}
.y6_c00400{bottom:523.416158px;}
.y1a_c00400{bottom:523.496236px;}
.y2b_c00400{bottom:525.202812px;}
.y16_c00400{bottom:526.099549px;}
.y2f_c00400{bottom:527.026630px;}
.y5_c00400{bottom:529.422883px;}
.y3f_c00400{bottom:529.736175px;}
.y19_c00400{bottom:531.263725px;}
.y2e_c00400{bottom:531.792993px;}
.y41_c00400{bottom:533.728456px;}
.y54_c00400{bottom:534.421816px;}
.y18_c00400{bottom:535.155114px;}
.y4_c00400{bottom:536.678099px;}
.y2d_c00400{bottom:537.961701px;}
.y17_c00400{bottom:538.332892px;}
.y40_c00400{bottom:538.696314px;}
.y43_c00400{bottom:540.431168px;}
.y2c_c00400{bottom:545.020884px;}
.y3_c00400{bottom:546.207017px;}
.y44_c00400{bottom:577.871130px;}
.y2_c00400{bottom:597.559761px;}
.y56_c00400{bottom:639.489911px;}
.y47_c00400{bottom:1107.201977px;}
.y57_c00400{bottom:1128.636004px;}
.y4a_c00400{bottom:1129.718199px;}
.y49_c00400{bottom:1147.707459px;}
.y48_c00400{bottom:1150.017273px;}
.y46_c00400{bottom:1170.658440px;}
.hb_c00400{height:32.157430px;}
.h8_c00400{height:35.967282px;}
.h7_c00400{height:35.967283px;}
.h9_c00400{height:35.967285px;}
.h5_c00400{height:36.267779px;}
.h4_c00400{height:36.267781px;}
.h6_c00400{height:36.267783px;}
.hc_c00400{height:37.437353px;}
.hd_c00400{height:39.085184px;}
.h13_c00400{height:51.885424px;}
.h14_c00400{height:55.092790px;}
.h3_c00400{height:55.127245px;}
.h11_c00400{height:55.821847px;}
.ha_c00400{height:56.261810px;}
.h12_c00400{height:56.983387px;}
.he_c00400{height:67.002968px;}
.h10_c00400{height:68.338108px;}
.hf_c00400{height:72.882592px;}
.h2_c00400{height:1304.999946px;}
.h0_c00400{height:1304.999953px;}
.h1_c00400{height:1305.000000px;}
.w2_c00400{width:934.874961px;}
.w0_c00400{width:934.875000px;}
.w1_c00400{width:935.250000px;}
.x0_c00400{left:0.000000px;}
.x3e_c00400{left:87.850202px;}
.x3d_c00400{left:108.062661px;}
.x3b_c00400{left:109.658623px;}
.x27_c00400{left:134.894322px;}
.x26_c00400{left:136.566734px;}
.x28_c00400{left:139.937719px;}
.x29_c00400{left:144.785273px;}
.x2a_c00400{left:150.147890px;}
.x2b_c00400{left:152.899057px;}
.x2c_c00400{left:155.907145px;}
.x2d_c00400{left:159.752336px;}
.x37_c00400{left:161.347648px;}
.x2e_c00400{left:163.203941px;}
.x2f_c00400{left:171.483965px;}
.x30_c00400{left:179.748684px;}
.x31_c00400{left:188.175145px;}
.x32_c00400{left:196.556636px;}
.x33_c00400{left:200.721504px;}
.x34_c00400{left:205.276922px;}
.x35_c00400{left:209.084069px;}
.x36_c00400{left:211.669316px;}
.x3_c00400{left:230.260919px;}
.x2_c00400{left:232.395871px;}
.x4_c00400{left:235.482735px;}
.x5_c00400{left:240.319117px;}
.x6_c00400{left:245.673577px;}
.x7_c00400{left:248.421493px;}
.x8_c00400{left:251.426626px;}
.x9_c00400{left:255.268917px;}
.x3f_c00400{left:256.468943px;}
.xa_c00400{left:258.553698px;}
.xb_c00400{left:262.988294px;}
.xc_c00400{left:271.601212px;}
.xd_c00400{left:283.434780px;}
.xe_c00400{left:290.867654px;}
.xf_c00400{left:294.260334px;}
.x3c_c00400{left:295.438786px;}
.x10_c00400{left:299.596701px;}
.x11_c00400{left:302.984150px;}
.x12_c00400{left:306.993562px;}
.x13_c00400{left:325.378518px;}
.x14_c00400{left:326.595106px;}
.x15_c00400{left:328.015253px;}
.x16_c00400{left:331.410444px;}
.x17_c00400{left:334.633053px;}
.x18_c00400{left:340.511825px;}
.x19_c00400{left:346.695139px;}
.x1a_c00400{left:352.384720px;}
.x1b_c00400{left:355.792694px;}
.x1c_c00400{left:363.695116px;}
.x1d_c00400{left:371.679253px;}
.x1e_c00400{left:378.434940px;}
.x1f_c00400{left:381.453328px;}
.x20_c00400{left:384.455783px;}
.x21_c00400{left:387.851715px;}
.x22_c00400{left:390.467224px;}
.x23_c00400{left:393.779799px;}
.x24_c00400{left:398.952070px;}
.x25_c00400{left:401.755082px;}
.x41_c00400{left:451.985828px;}
.x1_c00400{left:465.097640px;}
.x40_c00400{left:661.177232px;}
.x3a_c00400{left:696.904800px;}
.x39_c00400{left:733.103068px;}
.x38_c00400{left:756.637341px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls0_c00400{letter-spacing:0.000000pt;}
.ws3_c00400{word-spacing:-16.604696pt;}
.ws0_c00400{word-spacing:-13.477521pt;}
.ws2_c00400{word-spacing:-0.049530pt;}
.ws4_c00400{word-spacing:0.000000pt;}
.ws1_c00400{word-spacing:250.196272pt;}
._3_c00400{width:1.597983pt;}
._6_c00400{width:3.036154pt;}
._0_c00400{width:4.050437pt;}
._5_c00400{width:5.585165pt;}
._4_c00400{width:6.655085pt;}
._2_c00400{width:9.686479pt;}
._1_c00400{width:22.417828pt;}
.fs8_c00400{font-size:37.310908pt;}
.fsa_c00400{font-size:37.311173pt;}
.fs2_c00400{font-size:42.079973pt;}
.fs5_c00400{font-size:42.079974pt;}
.fs1_c00400{font-size:42.079975pt;}
.fs4_c00400{font-size:42.079976pt;}
.fs3_c00400{font-size:42.079977pt;}
.fs6_c00400{font-size:42.079978pt;}
.fs9_c00400{font-size:45.894021pt;}
.fsf_c00400{font-size:49.530431pt;}
.fsd_c00400{font-size:53.288186pt;}
.fs10_c00400{font-size:63.921837pt;}
.fs0_c00400{font-size:63.961814pt;}
.fse_c00400{font-size:66.115417pt;}
.fs7_c00400{font-size:68.413814pt;}
.fsc_c00400{font-size:79.952268pt;}
.fsb_c00400{font-size:85.269094pt;}
.y0_c00400{bottom:0.000000pt;}
.y1_c00400{bottom:0.000007pt;}
.y58_c00400{bottom:26.805533pt;}
.y53_c00400{bottom:50.583017pt;}
.y52_c00400{bottom:77.566907pt;}
.y51_c00400{bottom:104.550798pt;}
.y50_c00400{bottom:131.534688pt;}
.y4f_c00400{bottom:158.518579pt;}
.y4e_c00400{bottom:185.502469pt;}
.y4d_c00400{bottom:212.486360pt;}
.y4c_c00400{bottom:239.470250pt;}
.y4b_c00400{bottom:266.454140pt;}
.y55_c00400{bottom:297.949791pt;}
.y45_c00400{bottom:374.971284pt;}
.y42_c00400{bottom:433.223518pt;}
.y10_c00400{bottom:438.944560pt;}
.y38_c00400{bottom:438.957887pt;}
.yf_c00400{bottom:439.411208pt;}
.y39_c00400{bottom:439.428585pt;}
.y22_c00400{bottom:439.733989pt;}
.y37_c00400{bottom:440.063632pt;}
.ye_c00400{bottom:440.358224pt;}
.y23_c00400{bottom:440.474249pt;}
.y21_c00400{bottom:440.492144pt;}
.y36_c00400{bottom:441.175290pt;}
.yd_c00400{bottom:441.311665pt;}
.y20_c00400{bottom:441.411480pt;}
.y3a_c00400{bottom:441.575343pt;}
.y11_c00400{bottom:441.631897pt;}
.y24_c00400{bottom:442.412085pt;}
.y35_c00400{bottom:442.636491pt;}
.yc_c00400{bottom:442.778875pt;}
.y1f_c00400{bottom:443.368235pt;}
.y25_c00400{bottom:443.647574pt;}
.y34_c00400{bottom:444.136272pt;}
.yb_c00400{bottom:444.283350pt;}
.y26_c00400{bottom:445.156323pt;}
.y12_c00400{bottom:445.431649pt;}
.y33_c00400{bottom:445.793228pt;}
.ya_c00400{bottom:445.944627pt;}
.y3b_c00400{bottom:446.106592pt;}
.y1e_c00400{bottom:446.736624pt;}
.y27_c00400{bottom:447.325975pt;}
.y13_c00400{bottom:447.669198pt;}
.y3c_c00400{bottom:449.329795pt;}
.y28_c00400{bottom:449.332771pt;}
.y32_c00400{bottom:449.927990pt;}
.y9_c00400{bottom:450.087675pt;}
.y1d_c00400{bottom:451.594856pt;}
.y29_c00400{bottom:452.236735pt;}
.y14_c00400{bottom:452.957150pt;}
.y3d_c00400{bottom:454.334697pt;}
.y1c_c00400{bottom:455.562742pt;}
.y31_c00400{bottom:455.614749pt;}
.y8_c00400{bottom:455.781928pt;}
.y15_c00400{bottom:457.175713pt;}
.y2a_c00400{bottom:459.696536pt;}
.y3e_c00400{bottom:460.249062pt;}
.y1b_c00400{bottom:461.270273pt;}
.y30_c00400{bottom:462.105976pt;}
.y7_c00400{bottom:462.186152pt;}
.y6_c00400{bottom:465.258807pt;}
.y1a_c00400{bottom:465.329988pt;}
.y2b_c00400{bottom:466.846944pt;}
.y16_c00400{bottom:467.644044pt;}
.y2f_c00400{bottom:468.468115pt;}
.y5_c00400{bottom:470.598118pt;}
.y3f_c00400{bottom:470.876600pt;}
.y19_c00400{bottom:472.234422pt;}
.y2e_c00400{bottom:472.704883pt;}
.y41_c00400{bottom:474.425294pt;}
.y54_c00400{bottom:475.041614pt;}
.y18_c00400{bottom:475.693435pt;}
.y4_c00400{bottom:477.047199pt;}
.y2d_c00400{bottom:478.188178pt;}
.y17_c00400{bottom:478.518126pt;}
.y40_c00400{bottom:478.841168pt;}
.y43_c00400{bottom:480.383260pt;}
.y2c_c00400{bottom:484.463008pt;}
.y3_c00400{bottom:485.517349pt;}
.y44_c00400{bottom:513.663227pt;}
.y2_c00400{bottom:531.164232pt;}
.y56_c00400{bottom:568.435476pt;}
.y47_c00400{bottom:984.179535pt;}
.y57_c00400{bottom:1003.232004pt;}
.y4a_c00400{bottom:1004.193955pt;}
.y49_c00400{bottom:1020.184408pt;}
.y48_c00400{bottom:1022.237576pt;}
.y46_c00400{bottom:1040.585280pt;}
.hb_c00400{height:28.584382pt;}
.h8_c00400{height:31.970917pt;}
.h7_c00400{height:31.970918pt;}
.h9_c00400{height:31.970920pt;}
.h5_c00400{height:32.238026pt;}
.h4_c00400{height:32.238028pt;}
.h6_c00400{height:32.238029pt;}
.hc_c00400{height:33.277647pt;}
.hd_c00400{height:34.742386pt;}
.h13_c00400{height:46.120377pt;}
.h14_c00400{height:48.971369pt;}
.h3_c00400{height:49.001996pt;}
.h11_c00400{height:49.619420pt;}
.ha_c00400{height:50.010498pt;}
.h12_c00400{height:50.651899pt;}
.he_c00400{height:59.558193pt;}
.h10_c00400{height:60.744985pt;}
.hf_c00400{height:64.784526pt;}
.h2_c00400{height:1159.999952pt;}
.h0_c00400{height:1159.999959pt;}
.h1_c00400{height:1160.000000pt;}
.w2_c00400{width:830.999965pt;}
.w0_c00400{width:831.000000pt;}
.w1_c00400{width:831.333333pt;}
.x0_c00400{left:0.000000pt;}
.x3e_c00400{left:78.089069pt;}
.x3d_c00400{left:96.055698pt;}
.x3b_c00400{left:97.474332pt;}
.x27_c00400{left:119.906064pt;}
.x26_c00400{left:121.392652pt;}
.x28_c00400{left:124.389083pt;}
.x29_c00400{left:128.698021pt;}
.x2a_c00400{left:133.464791pt;}
.x2b_c00400{left:135.910272pt;}
.x2c_c00400{left:138.584129pt;}
.x2d_c00400{left:142.002076pt;}
.x37_c00400{left:143.420132pt;}
.x2e_c00400{left:145.070170pt;}
.x2f_c00400{left:152.430191pt;}
.x30_c00400{left:159.776608pt;}
.x31_c00400{left:167.266795pt;}
.x32_c00400{left:174.717010pt;}
.x33_c00400{left:178.419115pt;}
.x34_c00400{left:182.468375pt;}
.x35_c00400{left:185.852506pt;}
.x36_c00400{left:188.150503pt;}
.x3_c00400{left:204.676373pt;}
.x2_c00400{left:206.574107pt;}
.x4_c00400{left:209.317987pt;}
.x5_c00400{left:213.616993pt;}
.x6_c00400{left:218.376513pt;}
.x7_c00400{left:220.819105pt;}
.x8_c00400{left:223.490334pt;}
.x9_c00400{left:226.905704pt;}
.x3f_c00400{left:227.972394pt;}
.xa_c00400{left:229.825509pt;}
.xb_c00400{left:233.767373pt;}
.xc_c00400{left:241.423300pt;}
.xd_c00400{left:251.942027pt;}
.xe_c00400{left:258.549026pt;}
.xf_c00400{left:261.564741pt;}
.x3c_c00400{left:262.612255pt;}
.x10_c00400{left:266.308178pt;}
.x11_c00400{left:269.319244pt;}
.x12_c00400{left:272.883167pt;}
.x13_c00400{left:289.225349pt;}
.x14_c00400{left:290.306761pt;}
.x15_c00400{left:291.569114pt;}
.x16_c00400{left:294.587062pt;}
.x17_c00400{left:297.451603pt;}
.x18_c00400{left:302.677178pt;}
.x19_c00400{left:308.173457pt;}
.x1a_c00400{left:313.230862pt;}
.x1b_c00400{left:316.260173pt;}
.x1c_c00400{left:323.284548pt;}
.x1d_c00400{left:330.381558pt;}
.x1e_c00400{left:336.386614pt;}
.x1f_c00400{left:339.069625pt;}
.x20_c00400{left:341.738474pt;}
.x21_c00400{left:344.757080pt;}
.x22_c00400{left:347.081977pt;}
.x23_c00400{left:350.026488pt;}
.x24_c00400{left:354.624063pt;}
.x25_c00400{left:357.115628pt;}
.x41_c00400{left:401.765180pt;}
.x1_c00400{left:413.420124pt;}
.x40_c00400{left:587.713096pt;}
.x3a_c00400{left:619.470933pt;}
.x39_c00400{left:651.647171pt;}
.x38_c00400{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.006348;font-style:normal;font-weight:normal;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_73cc6f555f85d2749ae47b5e.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_d48328826d7ad1a4c7632882.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.000000;font-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_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;}
.ls0_c00401{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00401{word-spacing:0.000000px;}
._1_c00401{width:1.098525px;}
._8_c00401{width:2.865997px;}
._7_c00401{width:5.831978px;}
._6_c00401{width:7.247883px;}
._b_c00401{width:8.761998px;}
._4_c00401{width:14.851171px;}
._0_c00401{width:16.503491px;}
._2_c00401{width:25.699808px;}
._9_c00401{width:27.616327px;}
._3_c00401{width:31.410937px;}
._a_c00401{width:32.560783px;}
._5_c00401{width:59.554289px;}
.fc1_c00401{color:rgb(0,0,0);}
.fc0_c00401{color:rgb(194,158,103);}
.fs3_c00401{font-size:71.912067px;}
.fs1_c00401{font-size:71.957041px;}
.fs2_c00401{font-size:74.340621px;}
.fs0_c00401{font-size:74.379845px;}
.y0_c00401{bottom:0.000000px;}
.y1_c00401{bottom:0.000008px;}
.y1c_c00401{bottom:30.156225px;}
.y1a_c00401{bottom:337.587464px;}
.y19_c00401{bottom:367.944341px;}
.y18_c00401{bottom:398.301218px;}
.y17_c00401{bottom:428.658095px;}
.y16_c00401{bottom:459.014971px;}
.y15_c00401{bottom:489.371848px;}
.y14_c00401{bottom:519.728725px;}
.y13_c00401{bottom:550.085602px;}
.y1b_c00401{bottom:587.509161px;}
.y12_c00401{bottom:647.124620px;}
.y11_c00401{bottom:677.481496px;}
.y10_c00401{bottom:709.652033px;}
.yf_c00401{bottom:771.879263px;}
.ye_c00401{bottom:802.236140px;}
.yd_c00401{bottom:832.593017px;}
.yc_c00401{bottom:862.949894px;}
.yb_c00401{bottom:893.306770px;}
.ya_c00401{bottom:923.663647px;}
.y9_c00401{bottom:954.020524px;}
.y8_c00401{bottom:984.377401px;}
.y7_c00401{bottom:1014.734277px;}
.y6_c00401{bottom:1047.383632px;}
.y5_c00401{bottom:1109.899815px;}
.y4_c00401{bottom:1140.256692px;}
.y3_c00401{bottom:1170.613569px;}
.y2_c00401{bottom:1204.539346px;}
.h6_c00401{height:55.092790px;}
.h4_c00401{height:55.127245px;}
.h5_c00401{height:56.953337px;}
.h3_c00401{height:56.983387px;}
.h2_c00401{height:1304.999946px;}
.h0_c00401{height:1304.999953px;}
.h1_c00401{height:1305.000000px;}
.w2_c00401{width:934.874961px;}
.w0_c00401{width:934.875000px;}
.w1_c00401{width:935.250000px;}
.x0_c00401{left:0.000000px;}
.x1_c00401{left:87.850202px;}
.x2_c00401{left:451.985828px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ws0_c00401{word-spacing:-16.604696pt;}
.ws1_c00401{word-spacing:0.000000pt;}
._1_c00401{width:0.976466pt;}
._8_c00401{width:2.547553pt;}
._7_c00401{width:5.183980pt;}
._6_c00401{width:6.442563pt;}
._b_c00401{width:7.788443pt;}
._4_c00401{width:13.201041pt;}
._0_c00401{width:14.669770pt;}
._2_c00401{width:22.844274pt;}
._9_c00401{width:24.547847pt;}
._3_c00401{width:27.920833pt;}
._a_c00401{width:28.942918pt;}
._5_c00401{width:52.937146pt;}
.fs3_c00401{font-size:63.921837pt;}
.fs1_c00401{font-size:63.961814pt;}
.fs2_c00401{font-size:66.080552pt;}
.fs0_c00401{font-size:66.115417pt;}
.y0_c00401{bottom:0.000000pt;}
.y1_c00401{bottom:0.000007pt;}
.y1c_c00401{bottom:26.805533pt;}
.y1a_c00401{bottom:300.077746pt;}
.y19_c00401{bottom:327.061636pt;}
.y18_c00401{bottom:354.045527pt;}
.y17_c00401{bottom:381.029417pt;}
.y16_c00401{bottom:408.013308pt;}
.y15_c00401{bottom:434.997198pt;}
.y14_c00401{bottom:461.981089pt;}
.y13_c00401{bottom:488.964979pt;}
.y1b_c00401{bottom:522.230365pt;}
.y12_c00401{bottom:575.221884pt;}
.y11_c00401{bottom:602.205774pt;}
.y10_c00401{bottom:630.801807pt;}
.yf_c00401{bottom:686.114901pt;}
.ye_c00401{bottom:713.098791pt;}
.yd_c00401{bottom:740.082682pt;}
.yc_c00401{bottom:767.066572pt;}
.yb_c00401{bottom:794.050463pt;}
.ya_c00401{bottom:821.034353pt;}
.y9_c00401{bottom:848.018243pt;}
.y8_c00401{bottom:875.002134pt;}
.y7_c00401{bottom:901.986024pt;}
.y6_c00401{bottom:931.007673pt;}
.y5_c00401{bottom:986.577614pt;}
.y4_c00401{bottom:1013.561504pt;}
.y3_c00401{bottom:1040.545395pt;}
.y2_c00401{bottom:1070.701641pt;}
.h6_c00401{height:48.971369pt;}
.h4_c00401{height:49.001996pt;}
.h5_c00401{height:50.625189pt;}
.h3_c00401{height:50.651899pt;}
.h2_c00401{height:1159.999952pt;}
.h0_c00401{height:1159.999959pt;}
.h1_c00401{height:1160.000000pt;}
.w2_c00401{width:830.999965pt;}
.w0_c00401{width:831.000000pt;}
.w1_c00401{width:831.333333pt;}
.x0_c00401{left:0.000000pt;}
.x1_c00401{left:78.089069pt;}
.x2_c00401{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6850cf9aac01e191595eb472.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:0.734863;font-style:normal;font-weight: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_c00402;src:url('chunks/assets/font_b13fa33b27b9fa6f083677d8.woff2')format("woff");}.ff5_c00402{font-family:ff5_c00402;line-height:1.171387;font-style:normal;font-weight: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_c00402;src:url('chunks/assets/font_57fa5c706b988c48a30f9d8f.woff2')format("woff");}.ff6_c00402{font-family:ff6_c00402;line-height:1.000000;font-style:normal;font-weight: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_c00402;src:url('chunks/assets/font_56775323797f472183b2a5ca.woff2')format("woff");}.ff7_c00402{font-family:ff7_c00402;line-height:0.769531;font-style:normal;font-weight: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_c00402;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00402{font-family:ff8_c00402;line-height:1.006348;font-style:normal;font-weight: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_c00402;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00402{font-family:ff9_c00402;line-height:0.940000;font-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_c00402{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00402{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00402{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00402{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00402{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00402{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00402{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00402{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00402{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00402{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00402{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00402{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00402{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00402{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00402{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00402{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00402{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00402{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00402{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00402{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00402{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00402{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00402{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00402{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00402{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00402{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00402{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00402{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00402{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00402{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00402{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00402{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00402{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00402{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00402{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00402{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00402{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00402{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00402{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00402{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00402{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00402{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00402{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00402{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00402{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00402{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00402{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00402{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00402{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00402{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00402{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00402{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00402{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00402{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00402{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00402{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00402{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00402{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00402{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00402{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00402{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00402{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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;}
.ls0_c00402{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00402{word-spacing:-41.664701px;}
.ws2_c00402{word-spacing:-18.680283px;}
.ws0_c00402{word-spacing:-15.162211px;}
.ws3_c00402{word-spacing:-0.055722px;}
.ws5_c00402{word-spacing:0.000000px;}
.ws1_c00402{word-spacing:281.470806px;}
._2_c00402{width:3.754394px;}
._3_c00402{width:5.752783px;}
._1_c00402{width:7.729762px;}
._4_c00402{width:15.605070px;}
._0_c00402{width:16.846129px;}
.fc3_c00402{color:rgb(194,158,103);}
.fc2_c00402{color:rgb(9,71,81);}
.fc1_c00402{color:rgb(255,255,255);}
.fc0_c00402{color:rgb(0,0,0);}
.fs8_c00402{font-size:41.974772px;}
.fsa_c00402{font-size:41.975069px;}
.fs2_c00402{font-size:47.339969px;}
.fs5_c00402{font-size:47.339970px;}
.fs1_c00402{font-size:47.339972px;}
.fs4_c00402{font-size:47.339973px;}
.fs3_c00402{font-size:47.339974px;}
.fs6_c00402{font-size:47.339975px;}
.fs9_c00402{font-size:51.630774px;}
.fs10_c00402{font-size:55.721735px;}
.fsd_c00402{font-size:59.949210px;}
.fsf_c00402{font-size:71.912067px;}
.fs0_c00402{font-size:71.957041px;}
.fse_c00402{font-size:74.379845px;}
.fs7_c00402{font-size:76.965540px;}
.fsc_c00402{font-size:89.946302px;}
.fsb_c00402{font-size:95.927731px;}
.y0_c00402{bottom:0.000000px;}
.y1_c00402{bottom:0.000008px;}
.y54_c00402{bottom:30.156225px;}
.y4c_c00402{bottom:111.333076px;}
.y4b_c00402{bottom:141.689952px;}
.y4a_c00402{bottom:172.046829px;}
.y49_c00402{bottom:202.403706px;}
.y48_c00402{bottom:232.760583px;}
.y47_c00402{bottom:263.117460px;}
.y46_c00402{bottom:293.474336px;}
.y53_c00402{bottom:330.031259px;}
.y45_c00402{bottom:402.064151px;}
.y42_c00402{bottom:487.376458px;}
.y10_c00402{bottom:493.812629px;}
.y38_c00402{bottom:493.827623px;}
.yf_c00402{bottom:494.337609px;}
.y39_c00402{bottom:494.357158px;}
.y22_c00402{bottom:494.700737px;}
.y37_c00402{bottom:495.071586px;}
.ye_c00402{bottom:495.403002px;}
.y23_c00402{bottom:495.533530px;}
.y21_c00402{bottom:495.553663px;}
.y36_c00402{bottom:496.322201px;}
.yd_c00402{bottom:496.475623px;}
.y20_c00402{bottom:496.587915px;}
.y3a_c00402{bottom:496.772260px;}
.y11_c00402{bottom:496.835884px;}
.y24_c00402{bottom:497.713596px;}
.y35_c00402{bottom:497.966053px;}
.yc_c00402{bottom:498.126234px;}
.y1f_c00402{bottom:498.789265px;}
.y25_c00402{bottom:499.103521px;}
.y34_c00402{bottom:499.653306px;}
.yb_c00402{bottom:499.818769px;}
.y26_c00402{bottom:500.800864px;}
.y12_c00402{bottom:501.110605px;}
.y33_c00402{bottom:501.517382px;}
.ya_c00402{bottom:501.687706px;}
.y3b_c00402{bottom:501.869915px;}
.y1e_c00402{bottom:502.578702px;}
.y27_c00402{bottom:503.241722px;}
.y13_c00402{bottom:503.627848px;}
.y3c_c00402{bottom:505.496019px;}
.y28_c00402{bottom:505.499367px;}
.y32_c00402{bottom:506.168989px;}
.y9_c00402{bottom:506.348634px;}
.y1d_c00402{bottom:508.044213px;}
.y29_c00402{bottom:508.766327px;}
.y14_c00402{bottom:509.576794px;}
.y3d_c00402{bottom:511.126534px;}
.y1c_c00402{bottom:512.508085px;}
.y31_c00402{bottom:512.566592px;}
.y8_c00402{bottom:512.754669px;}
.y15_c00402{bottom:514.322677px;}
.y2a_c00402{bottom:517.158603px;}
.y3e_c00402{bottom:517.780195px;}
.y1b_c00402{bottom:518.929057px;}
.y30_c00402{bottom:519.869222px;}
.y7_c00402{bottom:519.959421px;}
.y6_c00402{bottom:523.416158px;}
.y1a_c00402{bottom:523.496236px;}
.y2b_c00402{bottom:525.202812px;}
.y16_c00402{bottom:526.099549px;}
.y2f_c00402{bottom:527.026630px;}
.y5_c00402{bottom:529.422883px;}
.y3f_c00402{bottom:529.736175px;}
.y19_c00402{bottom:531.263725px;}
.y2e_c00402{bottom:531.792993px;}
.y41_c00402{bottom:533.728456px;}
.y52_c00402{bottom:534.421816px;}
.y18_c00402{bottom:535.155114px;}
.y4_c00402{bottom:536.678099px;}
.y2d_c00402{bottom:537.961701px;}
.y17_c00402{bottom:538.332892px;}
.y40_c00402{bottom:538.696314px;}
.y43_c00402{bottom:540.431168px;}
.y2c_c00402{bottom:545.020884px;}
.y3_c00402{bottom:546.207017px;}
.y44_c00402{bottom:577.871130px;}
.y2_c00402{bottom:597.559761px;}
.y55_c00402{bottom:639.489911px;}
.y56_c00402{bottom:1021.609033px;}
.y4e_c00402{bottom:1127.585799px;}
.y51_c00402{bottom:1129.718199px;}
.y50_c00402{bottom:1147.707459px;}
.y4f_c00402{bottom:1150.017273px;}
.y4d_c00402{bottom:1170.658440px;}
.hb_c00402{height:32.157430px;}
.h8_c00402{height:35.967282px;}
.h7_c00402{height:35.967283px;}
.h9_c00402{height:35.967285px;}
.h5_c00402{height:36.267779px;}
.h4_c00402{height:36.267781px;}
.h6_c00402{height:36.267783px;}
.hc_c00402{height:37.437353px;}
.hd_c00402{height:39.085184px;}
.h15_c00402{height:45.561399px;}
.h14_c00402{height:51.885424px;}
.h13_c00402{height:55.092790px;}
.h3_c00402{height:55.127245px;}
.h11_c00402{height:55.821847px;}
.ha_c00402{height:56.261810px;}
.h12_c00402{height:56.983387px;}
.he_c00402{height:67.002968px;}
.h10_c00402{height:68.338108px;}
.hf_c00402{height:89.323331px;}
.h2_c00402{height:1304.999946px;}
.h0_c00402{height:1304.999953px;}
.h1_c00402{height:1305.000000px;}
.w2_c00402{width:934.874961px;}
.w0_c00402{width:934.875000px;}
.w1_c00402{width:935.250000px;}
.x0_c00402{left:0.000000px;}
.x3b_c00402{left:87.850202px;}
.x3e_c00402{left:108.062661px;}
.x3c_c00402{left:109.658623px;}
.x42_c00402{left:130.612669px;}
.x27_c00402{left:134.894322px;}
.x26_c00402{left:136.566734px;}
.x28_c00402{left:139.937719px;}
.x29_c00402{left:144.785273px;}
.x2a_c00402{left:150.147890px;}
.x2b_c00402{left:152.899057px;}
.x2c_c00402{left:155.907145px;}
.x2d_c00402{left:159.752336px;}
.x37_c00402{left:161.347648px;}
.x2e_c00402{left:163.203941px;}
.x2f_c00402{left:171.483965px;}
.x30_c00402{left:179.748684px;}
.x31_c00402{left:188.175145px;}
.x32_c00402{left:196.556636px;}
.x33_c00402{left:200.721504px;}
.x34_c00402{left:205.276922px;}
.x35_c00402{left:209.084069px;}
.x36_c00402{left:211.669316px;}
.x3_c00402{left:230.260919px;}
.x2_c00402{left:232.395871px;}
.x4_c00402{left:235.482735px;}
.x5_c00402{left:240.319117px;}
.x6_c00402{left:245.673577px;}
.x7_c00402{left:248.421493px;}
.x8_c00402{left:251.426626px;}
.x9_c00402{left:255.268917px;}
.x3f_c00402{left:256.468943px;}
.xa_c00402{left:258.553698px;}
.xb_c00402{left:262.988294px;}
.xc_c00402{left:271.601212px;}
.xd_c00402{left:283.434780px;}
.xe_c00402{left:290.867654px;}
.xf_c00402{left:294.260334px;}
.x3d_c00402{left:295.438786px;}
.x10_c00402{left:299.596701px;}
.x11_c00402{left:302.984150px;}
.x12_c00402{left:306.993562px;}
.x13_c00402{left:325.378518px;}
.x14_c00402{left:326.595106px;}
.x15_c00402{left:328.015253px;}
.x16_c00402{left:331.410444px;}
.x17_c00402{left:334.633053px;}
.x18_c00402{left:340.511825px;}
.x19_c00402{left:346.695139px;}
.x1a_c00402{left:352.384720px;}
.x1b_c00402{left:355.792694px;}
.x1c_c00402{left:363.695116px;}
.x1d_c00402{left:371.679253px;}
.x1e_c00402{left:378.434940px;}
.x1f_c00402{left:381.453328px;}
.x20_c00402{left:384.455783px;}
.x21_c00402{left:387.851715px;}
.x22_c00402{left:390.467224px;}
.x23_c00402{left:393.779799px;}
.x24_c00402{left:398.952070px;}
.x25_c00402{left:401.755082px;}
.x40_c00402{left:451.985828px;}
.x1_c00402{left:465.097640px;}
.x41_c00402{left:661.177232px;}
.x3a_c00402{left:696.904800px;}
.x39_c00402{left:733.103068px;}
.x38_c00402{left:756.637341px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls0_c00402{letter-spacing:0.000000pt;}
.ws4_c00402{word-spacing:-37.035289pt;}
.ws2_c00402{word-spacing:-16.604696pt;}
.ws0_c00402{word-spacing:-13.477521pt;}
.ws3_c00402{word-spacing:-0.049530pt;}
.ws5_c00402{word-spacing:0.000000pt;}
.ws1_c00402{word-spacing:250.196272pt;}
._2_c00402{width:3.337239pt;}
._3_c00402{width:5.113585pt;}
._1_c00402{width:6.870899pt;}
._4_c00402{width:13.871174pt;}
._0_c00402{width:14.974337pt;}
.fs8_c00402{font-size:37.310908pt;}
.fsa_c00402{font-size:37.311173pt;}
.fs2_c00402{font-size:42.079973pt;}
.fs5_c00402{font-size:42.079974pt;}
.fs1_c00402{font-size:42.079975pt;}
.fs4_c00402{font-size:42.079976pt;}
.fs3_c00402{font-size:42.079977pt;}
.fs6_c00402{font-size:42.079978pt;}
.fs9_c00402{font-size:45.894021pt;}
.fs10_c00402{font-size:49.530431pt;}
.fsd_c00402{font-size:53.288186pt;}
.fsf_c00402{font-size:63.921837pt;}
.fs0_c00402{font-size:63.961814pt;}
.fse_c00402{font-size:66.115417pt;}
.fs7_c00402{font-size:68.413814pt;}
.fsc_c00402{font-size:79.952268pt;}
.fsb_c00402{font-size:85.269094pt;}
.y0_c00402{bottom:0.000000pt;}
.y1_c00402{bottom:0.000007pt;}
.y54_c00402{bottom:26.805533pt;}
.y4c_c00402{bottom:98.962734pt;}
.y4b_c00402{bottom:125.946624pt;}
.y4a_c00402{bottom:152.930515pt;}
.y49_c00402{bottom:179.914405pt;}
.y48_c00402{bottom:206.898296pt;}
.y47_c00402{bottom:233.882186pt;}
.y46_c00402{bottom:260.866077pt;}
.y53_c00402{bottom:293.361119pt;}
.y45_c00402{bottom:357.390356pt;}
.y42_c00402{bottom:433.223518pt;}
.y10_c00402{bottom:438.944560pt;}
.y38_c00402{bottom:438.957887pt;}
.yf_c00402{bottom:439.411208pt;}
.y39_c00402{bottom:439.428585pt;}
.y22_c00402{bottom:439.733989pt;}
.y37_c00402{bottom:440.063632pt;}
.ye_c00402{bottom:440.358224pt;}
.y23_c00402{bottom:440.474249pt;}
.y21_c00402{bottom:440.492144pt;}
.y36_c00402{bottom:441.175290pt;}
.yd_c00402{bottom:441.311665pt;}
.y20_c00402{bottom:441.411480pt;}
.y3a_c00402{bottom:441.575343pt;}
.y11_c00402{bottom:441.631897pt;}
.y24_c00402{bottom:442.412085pt;}
.y35_c00402{bottom:442.636491pt;}
.yc_c00402{bottom:442.778875pt;}
.y1f_c00402{bottom:443.368235pt;}
.y25_c00402{bottom:443.647574pt;}
.y34_c00402{bottom:444.136272pt;}
.yb_c00402{bottom:444.283350pt;}
.y26_c00402{bottom:445.156323pt;}
.y12_c00402{bottom:445.431649pt;}
.y33_c00402{bottom:445.793228pt;}
.ya_c00402{bottom:445.944627pt;}
.y3b_c00402{bottom:446.106592pt;}
.y1e_c00402{bottom:446.736624pt;}
.y27_c00402{bottom:447.325975pt;}
.y13_c00402{bottom:447.669198pt;}
.y3c_c00402{bottom:449.329795pt;}
.y28_c00402{bottom:449.332771pt;}
.y32_c00402{bottom:449.927990pt;}
.y9_c00402{bottom:450.087675pt;}
.y1d_c00402{bottom:451.594856pt;}
.y29_c00402{bottom:452.236735pt;}
.y14_c00402{bottom:452.957150pt;}
.y3d_c00402{bottom:454.334697pt;}
.y1c_c00402{bottom:455.562742pt;}
.y31_c00402{bottom:455.614749pt;}
.y8_c00402{bottom:455.781928pt;}
.y15_c00402{bottom:457.175713pt;}
.y2a_c00402{bottom:459.696536pt;}
.y3e_c00402{bottom:460.249062pt;}
.y1b_c00402{bottom:461.270273pt;}
.y30_c00402{bottom:462.105976pt;}
.y7_c00402{bottom:462.186152pt;}
.y6_c00402{bottom:465.258807pt;}
.y1a_c00402{bottom:465.329988pt;}
.y2b_c00402{bottom:466.846944pt;}
.y16_c00402{bottom:467.644044pt;}
.y2f_c00402{bottom:468.468115pt;}
.y5_c00402{bottom:470.598118pt;}
.y3f_c00402{bottom:470.876600pt;}
.y19_c00402{bottom:472.234422pt;}
.y2e_c00402{bottom:472.704883pt;}
.y41_c00402{bottom:474.425294pt;}
.y52_c00402{bottom:475.041614pt;}
.y18_c00402{bottom:475.693435pt;}
.y4_c00402{bottom:477.047199pt;}
.y2d_c00402{bottom:478.188178pt;}
.y17_c00402{bottom:478.518126pt;}
.y40_c00402{bottom:478.841168pt;}
.y43_c00402{bottom:480.383260pt;}
.y2c_c00402{bottom:484.463008pt;}
.y3_c00402{bottom:485.517349pt;}
.y44_c00402{bottom:513.663227pt;}
.y2_c00402{bottom:531.164232pt;}
.y55_c00402{bottom:568.435476pt;}
.y56_c00402{bottom:908.096918pt;}
.y4e_c00402{bottom:1002.298488pt;}
.y51_c00402{bottom:1004.193955pt;}
.y50_c00402{bottom:1020.184408pt;}
.y4f_c00402{bottom:1022.237576pt;}
.y4d_c00402{bottom:1040.585280pt;}
.hb_c00402{height:28.584382pt;}
.h8_c00402{height:31.970917pt;}
.h7_c00402{height:31.970918pt;}
.h9_c00402{height:31.970920pt;}
.h5_c00402{height:32.238026pt;}
.h4_c00402{height:32.238028pt;}
.h6_c00402{height:32.238029pt;}
.hc_c00402{height:33.277647pt;}
.hd_c00402{height:34.742386pt;}
.h15_c00402{height:40.499022pt;}
.h14_c00402{height:46.120377pt;}
.h13_c00402{height:48.971369pt;}
.h3_c00402{height:49.001996pt;}
.h11_c00402{height:49.619420pt;}
.ha_c00402{height:50.010498pt;}
.h12_c00402{height:50.651899pt;}
.he_c00402{height:59.558193pt;}
.h10_c00402{height:60.744985pt;}
.hf_c00402{height:79.398517pt;}
.h2_c00402{height:1159.999952pt;}
.h0_c00402{height:1159.999959pt;}
.h1_c00402{height:1160.000000pt;}
.w2_c00402{width:830.999965pt;}
.w0_c00402{width:831.000000pt;}
.w1_c00402{width:831.333333pt;}
.x0_c00402{left:0.000000pt;}
.x3b_c00402{left:78.089069pt;}
.x3e_c00402{left:96.055698pt;}
.x3c_c00402{left:97.474332pt;}
.x42_c00402{left:116.100150pt;}
.x27_c00402{left:119.906064pt;}
.x26_c00402{left:121.392652pt;}
.x28_c00402{left:124.389083pt;}
.x29_c00402{left:128.698021pt;}
.x2a_c00402{left:133.464791pt;}
.x2b_c00402{left:135.910272pt;}
.x2c_c00402{left:138.584129pt;}
.x2d_c00402{left:142.002076pt;}
.x37_c00402{left:143.420132pt;}
.x2e_c00402{left:145.070170pt;}
.x2f_c00402{left:152.430191pt;}
.x30_c00402{left:159.776608pt;}
.x31_c00402{left:167.266795pt;}
.x32_c00402{left:174.717010pt;}
.x33_c00402{left:178.419115pt;}
.x34_c00402{left:182.468375pt;}
.x35_c00402{left:185.852506pt;}
.x36_c00402{left:188.150503pt;}
.x3_c00402{left:204.676373pt;}
.x2_c00402{left:206.574107pt;}
.x4_c00402{left:209.317987pt;}
.x5_c00402{left:213.616993pt;}
.x6_c00402{left:218.376513pt;}
.x7_c00402{left:220.819105pt;}
.x8_c00402{left:223.490334pt;}
.x9_c00402{left:226.905704pt;}
.x3f_c00402{left:227.972394pt;}
.xa_c00402{left:229.825509pt;}
.xb_c00402{left:233.767373pt;}
.xc_c00402{left:241.423300pt;}
.xd_c00402{left:251.942027pt;}
.xe_c00402{left:258.549026pt;}
.xf_c00402{left:261.564741pt;}
.x3d_c00402{left:262.612255pt;}
.x10_c00402{left:266.308178pt;}
.x11_c00402{left:269.319244pt;}
.x12_c00402{left:272.883167pt;}
.x13_c00402{left:289.225349pt;}
.x14_c00402{left:290.306761pt;}
.x15_c00402{left:291.569114pt;}
.x16_c00402{left:294.587062pt;}
.x17_c00402{left:297.451603pt;}
.x18_c00402{left:302.677178pt;}
.x19_c00402{left:308.173457pt;}
.x1a_c00402{left:313.230862pt;}
.x1b_c00402{left:316.260173pt;}
.x1c_c00402{left:323.284548pt;}
.x1d_c00402{left:330.381558pt;}
.x1e_c00402{left:336.386614pt;}
.x1f_c00402{left:339.069625pt;}
.x20_c00402{left:341.738474pt;}
.x21_c00402{left:344.757080pt;}
.x22_c00402{left:347.081977pt;}
.x23_c00402{left:350.026488pt;}
.x24_c00402{left:354.624063pt;}
.x25_c00402{left:357.115628pt;}
.x40_c00402{left:401.765180pt;}
.x1_c00402{left:413.420124pt;}
.x41_c00402{left:587.713096pt;}
.x3a_c00402{left:619.470933pt;}
.x39_c00402{left:651.647171pt;}
.x38_c00402{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.006348;font-style:normal;font-weight:normal;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_70dd9853f7a088af871ad115.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.171387;font-style:normal;font-weight:normal;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_ef75ac09ec0bee8008350615.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:0.713867;font-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_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);}
.v0_c00403{vertical-align:0.000000px;}
.ls1_c00403{letter-spacing:0.000000px;}
.ls0_c00403{letter-spacing:5.129772px;}
.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:-18.680283px;}
.ws1_c00403{word-spacing:0.000000px;}
._4_c00403{width:1.037793px;}
._3_c00403{width:2.529739px;}
._a_c00403{width:4.483173px;}
._2_c00403{width:6.254080px;}
._1_c00403{width:8.072389px;}
._0_c00403{width:9.084046px;}
._b_c00403{width:10.712072px;}
._7_c00403{width:12.039663px;}
._5_c00403{width:14.651411px;}
._c_c00403{width:16.896841px;}
._8_c00403{width:20.985365px;}
._6_c00403{width:22.199043px;}
._9_c00403{width:33.461546px;}
.fc2_c00403{color:rgb(255,49,49);}
.fc1_c00403{color:rgb(0,0,0);}
.fc0_c00403{color:rgb(194,158,103);}
.fs3_c00403{font-size:71.912067px;}
.fs1_c00403{font-size:71.957041px;}
.fs2_c00403{font-size:74.340621px;}
.fs0_c00403{font-size:74.379845px;}
.y0_c00403{bottom:0.000000px;}
.y1_c00403{bottom:0.000008px;}
.y22_c00403{bottom:30.156225px;}
.yd_c00403{bottom:122.459149px;}
.yc_c00403{bottom:152.816026px;}
.yb_c00403{bottom:183.172903px;}
.ya_c00403{bottom:213.529780px;}
.y9_c00403{bottom:243.886656px;}
.y8_c00403{bottom:274.243533px;}
.y1d_c00403{bottom:310.611212px;}
.y1c_c00403{bottom:369.217641px;}
.y1b_c00403{bottom:399.574518px;}
.y1a_c00403{bottom:429.931395px;}
.y19_c00403{bottom:462.926090px;}
.y18_c00403{bottom:521.780336px;}
.y17_c00403{bottom:552.137212px;}
.y16_c00403{bottom:582.494089px;}
.y15_c00403{bottom:612.850966px;}
.y14_c00403{bottom:643.207843px;}
.y13_c00403{bottom:673.564719px;}
.y12_c00403{bottom:703.921596px;}
.y11_c00403{bottom:734.278473px;}
.y10_c00403{bottom:764.635350px;}
.yf_c00403{bottom:794.992227px;}
.ye_c00403{bottom:825.349103px;}
.y7_c00403{bottom:862.247905px;}
.y6_c00403{bottom:920.818409px;}
.y5_c00403{bottom:951.175286px;}
.y4_c00403{bottom:981.532162px;}
.y3_c00403{bottom:1011.889039px;}
.y2_c00403{bottom:1045.814816px;}
.y21_c00403{bottom:1109.214181px;}
.y20_c00403{bottom:1139.571057px;}
.y1f_c00403{bottom:1169.927934px;}
.y1e_c00403{bottom:1200.284811px;}
.h5_c00403{height:56.953337px;}
.h3_c00403{height:56.983387px;}
.h6_c00403{height:66.961090px;}
.h4_c00403{height:67.002968px;}
.h2_c00403{height:1304.999946px;}
.h0_c00403{height:1304.999953px;}
.h1_c00403{height:1305.000000px;}
.w2_c00403{width:934.874961px;}
.w0_c00403{width:934.875000px;}
.w1_c00403{width:935.250000px;}
.x0_c00403{left:0.000000px;}
.x1_c00403{left:87.850202px;}
.x2_c00403{left:451.985828px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls1_c00403{letter-spacing:0.000000pt;}
.ls0_c00403{letter-spacing:4.559797pt;}
.ws0_c00403{word-spacing:-16.604696pt;}
.ws1_c00403{word-spacing:0.000000pt;}
._4_c00403{width:0.922483pt;}
._3_c00403{width:2.248657pt;}
._a_c00403{width:3.985043pt;}
._2_c00403{width:5.559182pt;}
._1_c00403{width:7.175457pt;}
._0_c00403{width:8.074708pt;}
._b_c00403{width:9.521841pt;}
._7_c00403{width:10.701922pt;}
._5_c00403{width:13.023476pt;}
._c_c00403{width:15.019414pt;}
._8_c00403{width:18.653658pt;}
._6_c00403{width:19.732483pt;}
._9_c00403{width:29.743596pt;}
.fs3_c00403{font-size:63.921837pt;}
.fs1_c00403{font-size:63.961814pt;}
.fs2_c00403{font-size:66.080552pt;}
.fs0_c00403{font-size:66.115417pt;}
.y0_c00403{bottom:0.000000pt;}
.y1_c00403{bottom:0.000007pt;}
.y22_c00403{bottom:26.805533pt;}
.yd_c00403{bottom:108.852577pt;}
.yc_c00403{bottom:135.836468pt;}
.yb_c00403{bottom:162.820358pt;}
.ya_c00403{bottom:189.804248pt;}
.y9_c00403{bottom:216.788139pt;}
.y8_c00403{bottom:243.772029pt;}
.y1d_c00403{bottom:276.098855pt;}
.y1c_c00403{bottom:328.193459pt;}
.y1b_c00403{bottom:355.177349pt;}
.y1a_c00403{bottom:382.161240pt;}
.y19_c00403{bottom:411.489858pt;}
.y18_c00403{bottom:463.804743pt;}
.y17_c00403{bottom:490.788633pt;}
.y16_c00403{bottom:517.772524pt;}
.y15_c00403{bottom:544.756414pt;}
.y14_c00403{bottom:571.740305pt;}
.y13_c00403{bottom:598.724195pt;}
.y12_c00403{bottom:625.708086pt;}
.y11_c00403{bottom:652.691976pt;}
.y10_c00403{bottom:679.675866pt;}
.yf_c00403{bottom:706.659757pt;}
.ye_c00403{bottom:733.643647pt;}
.y7_c00403{bottom:766.442582pt;}
.y6_c00403{bottom:818.505252pt;}
.y5_c00403{bottom:845.489143pt;}
.y4_c00403{bottom:872.473033pt;}
.y3_c00403{bottom:899.456924pt;}
.y2_c00403{bottom:929.613170pt;}
.y21_c00403{bottom:985.968161pt;}
.y20_c00403{bottom:1012.952051pt;}
.y1f_c00403{bottom:1039.935941pt;}
.y1e_c00403{bottom:1066.919832pt;}
.h5_c00403{height:50.625189pt;}
.h3_c00403{height:50.651899pt;}
.h6_c00403{height:59.520969pt;}
.h4_c00403{height:59.558193pt;}
.h2_c00403{height:1159.999952pt;}
.h0_c00403{height:1159.999959pt;}
.h1_c00403{height:1160.000000pt;}
.w2_c00403{width:830.999965pt;}
.w0_c00403{width:831.000000pt;}
.w1_c00403{width:831.333333pt;}
.x0_c00403{left:0.000000pt;}
.x1_c00403{left:78.089069pt;}
.x2_c00403{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61b075118da10a273c1fe246.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:0.734863;font-style:normal;font-weight: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_c00404;src:url('chunks/assets/font_7f8f33236f4cfb15e4c13b4a.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:1.171387;font-style:normal;font-weight: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_c00404;src:url('chunks/assets/font_24611b29b34ed90dcce634db.woff2')format("woff");}.ff6_c00404{font-family:ff6_c00404;line-height:1.000000;font-style:normal;font-weight: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_c00404;src:url('chunks/assets/font_56775323797f472183b2a5ca.woff2')format("woff");}.ff7_c00404{font-family:ff7_c00404;line-height:0.769531;font-style:normal;font-weight: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_c00404;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00404{font-family:ff8_c00404;line-height:1.006348;font-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_c00404{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00404{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00404{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00404{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00404{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00404{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00404{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00404{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00404{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00404{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00404{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00404{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00404{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00404{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00404{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00404{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00404{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00404{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00404{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00404{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00404{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00404{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00404{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00404{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00404{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00404{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00404{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00404{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00404{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00404{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00404{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00404{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00404{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00404{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00404{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00404{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00404{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00404{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00404{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00404{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00404{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00404{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00404{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00404{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00404{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00404{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00404{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00404{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00404{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00404{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00404{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00404{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00404{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00404{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00404{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00404{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00404{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00404{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00404{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00404{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00404{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00404{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00404{vertical-align:0.000000px;}
.ls0_c00404{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00404{word-spacing:-18.680283px;}
.ws0_c00404{word-spacing:-15.162211px;}
.ws2_c00404{word-spacing:-0.055722px;}
.ws4_c00404{word-spacing:0.000000px;}
.ws1_c00404{word-spacing:281.470806px;}
._1_c00404{width:5.476023px;}
._3_c00404{width:6.892344px;}
._0_c00404{width:9.545952px;}
._2_c00404{width:64.149186px;}
.fc3_c00404{color:rgb(194,158,103);}
.fc2_c00404{color:rgb(9,71,81);}
.fc1_c00404{color:rgb(255,255,255);}
.fc0_c00404{color:rgb(0,0,0);}
.fs8_c00404{font-size:41.974772px;}
.fsa_c00404{font-size:41.975069px;}
.fs2_c00404{font-size:47.339969px;}
.fs5_c00404{font-size:47.339970px;}
.fs1_c00404{font-size:47.339972px;}
.fs4_c00404{font-size:47.339973px;}
.fs3_c00404{font-size:47.339974px;}
.fs6_c00404{font-size:47.339975px;}
.fs9_c00404{font-size:51.630774px;}
.fsf_c00404{font-size:55.721735px;}
.fsd_c00404{font-size:59.949210px;}
.fs10_c00404{font-size:71.912067px;}
.fs0_c00404{font-size:71.957041px;}
.fse_c00404{font-size:74.379845px;}
.fs7_c00404{font-size:76.965540px;}
.fsc_c00404{font-size:89.946302px;}
.fsb_c00404{font-size:95.927731px;}
.y0_c00404{bottom:0.000000px;}
.y1_c00404{bottom:0.000008px;}
.y54_c00404{bottom:30.156225px;}
.y4b_c00404{bottom:149.560308px;}
.y4a_c00404{bottom:179.917185px;}
.y49_c00404{bottom:210.274062px;}
.y48_c00404{bottom:240.630938px;}
.y47_c00404{bottom:270.987815px;}
.y46_c00404{bottom:301.344692px;}
.y52_c00404{bottom:337.901615px;}
.y45_c00404{bottom:402.064151px;}
.y42_c00404{bottom:487.376458px;}
.y10_c00404{bottom:493.812629px;}
.y38_c00404{bottom:493.827623px;}
.yf_c00404{bottom:494.337609px;}
.y39_c00404{bottom:494.357158px;}
.y22_c00404{bottom:494.700737px;}
.y37_c00404{bottom:495.071586px;}
.ye_c00404{bottom:495.403002px;}
.y23_c00404{bottom:495.533530px;}
.y21_c00404{bottom:495.553663px;}
.y36_c00404{bottom:496.322201px;}
.yd_c00404{bottom:496.475623px;}
.y20_c00404{bottom:496.587915px;}
.y3a_c00404{bottom:496.772260px;}
.y11_c00404{bottom:496.835884px;}
.y24_c00404{bottom:497.713596px;}
.y35_c00404{bottom:497.966053px;}
.yc_c00404{bottom:498.126234px;}
.y1f_c00404{bottom:498.789265px;}
.y25_c00404{bottom:499.103521px;}
.y34_c00404{bottom:499.653306px;}
.yb_c00404{bottom:499.818769px;}
.y26_c00404{bottom:500.800864px;}
.y12_c00404{bottom:501.110605px;}
.y33_c00404{bottom:501.517382px;}
.ya_c00404{bottom:501.687706px;}
.y3b_c00404{bottom:501.869915px;}
.y1e_c00404{bottom:502.578702px;}
.y27_c00404{bottom:503.241722px;}
.y13_c00404{bottom:503.627848px;}
.y3c_c00404{bottom:505.496019px;}
.y28_c00404{bottom:505.499367px;}
.y32_c00404{bottom:506.168989px;}
.y9_c00404{bottom:506.348634px;}
.y1d_c00404{bottom:508.044213px;}
.y29_c00404{bottom:508.766327px;}
.y14_c00404{bottom:509.576794px;}
.y3d_c00404{bottom:511.126534px;}
.y1c_c00404{bottom:512.508085px;}
.y31_c00404{bottom:512.566592px;}
.y8_c00404{bottom:512.754669px;}
.y15_c00404{bottom:514.322677px;}
.y2a_c00404{bottom:517.158603px;}
.y3e_c00404{bottom:517.780195px;}
.y1b_c00404{bottom:518.929057px;}
.y30_c00404{bottom:519.869222px;}
.y7_c00404{bottom:519.959421px;}
.y6_c00404{bottom:523.416158px;}
.y1a_c00404{bottom:523.496236px;}
.y2b_c00404{bottom:525.202812px;}
.y16_c00404{bottom:526.099549px;}
.y2f_c00404{bottom:527.026630px;}
.y5_c00404{bottom:529.422883px;}
.y3f_c00404{bottom:529.736175px;}
.y19_c00404{bottom:531.263725px;}
.y2e_c00404{bottom:531.792993px;}
.y41_c00404{bottom:533.728456px;}
.y51_c00404{bottom:534.421816px;}
.y18_c00404{bottom:535.155114px;}
.y4_c00404{bottom:536.678099px;}
.y2d_c00404{bottom:537.961701px;}
.y17_c00404{bottom:538.332892px;}
.y40_c00404{bottom:538.696314px;}
.y43_c00404{bottom:540.431168px;}
.y2c_c00404{bottom:545.020884px;}
.y3_c00404{bottom:546.207017px;}
.y44_c00404{bottom:577.871130px;}
.y2_c00404{bottom:597.559761px;}
.y53_c00404{bottom:639.489911px;}
.y4d_c00404{bottom:1127.585799px;}
.y50_c00404{bottom:1129.718199px;}
.y4f_c00404{bottom:1147.707459px;}
.y4e_c00404{bottom:1150.017273px;}
.y4c_c00404{bottom:1170.658440px;}
.h8_c00404{height:35.967282px;}
.h7_c00404{height:35.967283px;}
.h9_c00404{height:35.967285px;}
.hc_c00404{height:37.437353px;}
.hb_c00404{height:39.084907px;}
.hd_c00404{height:39.085184px;}
.h5_c00404{height:44.080723px;}
.h4_c00404{height:44.080726px;}
.h6_c00404{height:44.080728px;}
.h12_c00404{height:51.885424px;}
.h10_c00404{height:55.821847px;}
.ha_c00404{height:56.261810px;}
.h11_c00404{height:56.983387px;}
.h13_c00404{height:66.961090px;}
.h3_c00404{height:67.002968px;}
.hf_c00404{height:68.338108px;}
.he_c00404{height:89.323331px;}
.h2_c00404{height:1304.999946px;}
.h0_c00404{height:1304.999953px;}
.h1_c00404{height:1305.000000px;}
.w2_c00404{width:934.874961px;}
.w0_c00404{width:934.875000px;}
.w1_c00404{width:935.250000px;}
.x0_c00404{left:0.000000px;}
.x3b_c00404{left:89.735637px;}
.x3e_c00404{left:108.062661px;}
.x3c_c00404{left:109.658623px;}
.x27_c00404{left:134.894322px;}
.x26_c00404{left:136.566734px;}
.x28_c00404{left:139.937719px;}
.x29_c00404{left:144.785273px;}
.x2a_c00404{left:150.147890px;}
.x2b_c00404{left:152.899057px;}
.x2c_c00404{left:155.907145px;}
.x2d_c00404{left:159.752336px;}
.x37_c00404{left:161.347648px;}
.x2e_c00404{left:163.203941px;}
.x2f_c00404{left:171.483965px;}
.x30_c00404{left:179.748684px;}
.x31_c00404{left:188.175145px;}
.x32_c00404{left:196.556636px;}
.x33_c00404{left:200.721504px;}
.x34_c00404{left:205.276922px;}
.x35_c00404{left:209.084069px;}
.x36_c00404{left:211.669316px;}
.x3_c00404{left:230.260919px;}
.x2_c00404{left:232.395871px;}
.x4_c00404{left:235.482735px;}
.x5_c00404{left:240.319117px;}
.x6_c00404{left:245.673577px;}
.x7_c00404{left:248.421493px;}
.x8_c00404{left:251.426626px;}
.x9_c00404{left:255.268917px;}
.x3f_c00404{left:256.468943px;}
.xa_c00404{left:258.553698px;}
.xb_c00404{left:262.988294px;}
.xc_c00404{left:271.601212px;}
.xd_c00404{left:283.434780px;}
.xe_c00404{left:290.867654px;}
.xf_c00404{left:294.260334px;}
.x3d_c00404{left:295.438786px;}
.x10_c00404{left:299.596701px;}
.x11_c00404{left:302.984150px;}
.x12_c00404{left:306.993562px;}
.x13_c00404{left:325.378518px;}
.x14_c00404{left:326.595106px;}
.x15_c00404{left:328.015253px;}
.x16_c00404{left:331.410444px;}
.x17_c00404{left:334.633053px;}
.x18_c00404{left:340.511825px;}
.x19_c00404{left:346.695139px;}
.x1a_c00404{left:352.384720px;}
.x1b_c00404{left:355.792694px;}
.x1c_c00404{left:363.695116px;}
.x1d_c00404{left:371.679253px;}
.x1e_c00404{left:378.434940px;}
.x1f_c00404{left:381.453328px;}
.x20_c00404{left:384.455783px;}
.x21_c00404{left:387.851715px;}
.x22_c00404{left:390.467224px;}
.x23_c00404{left:393.779799px;}
.x24_c00404{left:398.952070px;}
.x25_c00404{left:401.755082px;}
.x41_c00404{left:451.985828px;}
.x1_c00404{left:465.097640px;}
.x40_c00404{left:676.474352px;}
.x3a_c00404{left:696.904800px;}
.x39_c00404{left:733.103068px;}
.x38_c00404{left:756.637341px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws3_c00404{word-spacing:-16.604696pt;}
.ws0_c00404{word-spacing:-13.477521pt;}
.ws2_c00404{word-spacing:-0.049530pt;}
.ws4_c00404{word-spacing:0.000000pt;}
.ws1_c00404{word-spacing:250.196272pt;}
._1_c00404{width:4.867576pt;}
._3_c00404{width:6.126528pt;}
._0_c00404{width:8.485291pt;}
._2_c00404{width:57.021499pt;}
.fs8_c00404{font-size:37.310908pt;}
.fsa_c00404{font-size:37.311173pt;}
.fs2_c00404{font-size:42.079973pt;}
.fs5_c00404{font-size:42.079974pt;}
.fs1_c00404{font-size:42.079975pt;}
.fs4_c00404{font-size:42.079976pt;}
.fs3_c00404{font-size:42.079977pt;}
.fs6_c00404{font-size:42.079978pt;}
.fs9_c00404{font-size:45.894021pt;}
.fsf_c00404{font-size:49.530431pt;}
.fsd_c00404{font-size:53.288186pt;}
.fs10_c00404{font-size:63.921837pt;}
.fs0_c00404{font-size:63.961814pt;}
.fse_c00404{font-size:66.115417pt;}
.fs7_c00404{font-size:68.413814pt;}
.fsc_c00404{font-size:79.952268pt;}
.fsb_c00404{font-size:85.269094pt;}
.y0_c00404{bottom:0.000000pt;}
.y1_c00404{bottom:0.000007pt;}
.y54_c00404{bottom:26.805533pt;}
.y4b_c00404{bottom:132.942496pt;}
.y4a_c00404{bottom:159.926387pt;}
.y49_c00404{bottom:186.910277pt;}
.y48_c00404{bottom:213.894167pt;}
.y47_c00404{bottom:240.878058pt;}
.y46_c00404{bottom:267.861948pt;}
.y52_c00404{bottom:300.356991pt;}
.y45_c00404{bottom:357.390356pt;}
.y42_c00404{bottom:433.223518pt;}
.y10_c00404{bottom:438.944560pt;}
.y38_c00404{bottom:438.957887pt;}
.yf_c00404{bottom:439.411208pt;}
.y39_c00404{bottom:439.428585pt;}
.y22_c00404{bottom:439.733989pt;}
.y37_c00404{bottom:440.063632pt;}
.ye_c00404{bottom:440.358224pt;}
.y23_c00404{bottom:440.474249pt;}
.y21_c00404{bottom:440.492144pt;}
.y36_c00404{bottom:441.175290pt;}
.yd_c00404{bottom:441.311665pt;}
.y20_c00404{bottom:441.411480pt;}
.y3a_c00404{bottom:441.575343pt;}
.y11_c00404{bottom:441.631897pt;}
.y24_c00404{bottom:442.412085pt;}
.y35_c00404{bottom:442.636491pt;}
.yc_c00404{bottom:442.778875pt;}
.y1f_c00404{bottom:443.368235pt;}
.y25_c00404{bottom:443.647574pt;}
.y34_c00404{bottom:444.136272pt;}
.yb_c00404{bottom:444.283350pt;}
.y26_c00404{bottom:445.156323pt;}
.y12_c00404{bottom:445.431649pt;}
.y33_c00404{bottom:445.793228pt;}
.ya_c00404{bottom:445.944627pt;}
.y3b_c00404{bottom:446.106592pt;}
.y1e_c00404{bottom:446.736624pt;}
.y27_c00404{bottom:447.325975pt;}
.y13_c00404{bottom:447.669198pt;}
.y3c_c00404{bottom:449.329795pt;}
.y28_c00404{bottom:449.332771pt;}
.y32_c00404{bottom:449.927990pt;}
.y9_c00404{bottom:450.087675pt;}
.y1d_c00404{bottom:451.594856pt;}
.y29_c00404{bottom:452.236735pt;}
.y14_c00404{bottom:452.957150pt;}
.y3d_c00404{bottom:454.334697pt;}
.y1c_c00404{bottom:455.562742pt;}
.y31_c00404{bottom:455.614749pt;}
.y8_c00404{bottom:455.781928pt;}
.y15_c00404{bottom:457.175713pt;}
.y2a_c00404{bottom:459.696536pt;}
.y3e_c00404{bottom:460.249062pt;}
.y1b_c00404{bottom:461.270273pt;}
.y30_c00404{bottom:462.105976pt;}
.y7_c00404{bottom:462.186152pt;}
.y6_c00404{bottom:465.258807pt;}
.y1a_c00404{bottom:465.329988pt;}
.y2b_c00404{bottom:466.846944pt;}
.y16_c00404{bottom:467.644044pt;}
.y2f_c00404{bottom:468.468115pt;}
.y5_c00404{bottom:470.598118pt;}
.y3f_c00404{bottom:470.876600pt;}
.y19_c00404{bottom:472.234422pt;}
.y2e_c00404{bottom:472.704883pt;}
.y41_c00404{bottom:474.425294pt;}
.y51_c00404{bottom:475.041614pt;}
.y18_c00404{bottom:475.693435pt;}
.y4_c00404{bottom:477.047199pt;}
.y2d_c00404{bottom:478.188178pt;}
.y17_c00404{bottom:478.518126pt;}
.y40_c00404{bottom:478.841168pt;}
.y43_c00404{bottom:480.383260pt;}
.y2c_c00404{bottom:484.463008pt;}
.y3_c00404{bottom:485.517349pt;}
.y44_c00404{bottom:513.663227pt;}
.y2_c00404{bottom:531.164232pt;}
.y53_c00404{bottom:568.435476pt;}
.y4d_c00404{bottom:1002.298488pt;}
.y50_c00404{bottom:1004.193955pt;}
.y4f_c00404{bottom:1020.184408pt;}
.y4e_c00404{bottom:1022.237576pt;}
.y4c_c00404{bottom:1040.585280pt;}
.h8_c00404{height:31.970917pt;}
.h7_c00404{height:31.970918pt;}
.h9_c00404{height:31.970920pt;}
.hc_c00404{height:33.277647pt;}
.hb_c00404{height:34.742140pt;}
.hd_c00404{height:34.742386pt;}
.h5_c00404{height:39.182865pt;}
.h4_c00404{height:39.182867pt;}
.h6_c00404{height:39.182869pt;}
.h12_c00404{height:46.120377pt;}
.h10_c00404{height:49.619420pt;}
.ha_c00404{height:50.010498pt;}
.h11_c00404{height:50.651899pt;}
.h13_c00404{height:59.520969pt;}
.h3_c00404{height:59.558193pt;}
.hf_c00404{height:60.744985pt;}
.he_c00404{height:79.398517pt;}
.h2_c00404{height:1159.999952pt;}
.h0_c00404{height:1159.999959pt;}
.h1_c00404{height:1160.000000pt;}
.w2_c00404{width:830.999965pt;}
.w0_c00404{width:831.000000pt;}
.w1_c00404{width:831.333333pt;}
.x0_c00404{left:0.000000pt;}
.x3b_c00404{left:79.765011pt;}
.x3e_c00404{left:96.055698pt;}
.x3c_c00404{left:97.474332pt;}
.x27_c00404{left:119.906064pt;}
.x26_c00404{left:121.392652pt;}
.x28_c00404{left:124.389083pt;}
.x29_c00404{left:128.698021pt;}
.x2a_c00404{left:133.464791pt;}
.x2b_c00404{left:135.910272pt;}
.x2c_c00404{left:138.584129pt;}
.x2d_c00404{left:142.002076pt;}
.x37_c00404{left:143.420132pt;}
.x2e_c00404{left:145.070170pt;}
.x2f_c00404{left:152.430191pt;}
.x30_c00404{left:159.776608pt;}
.x31_c00404{left:167.266795pt;}
.x32_c00404{left:174.717010pt;}
.x33_c00404{left:178.419115pt;}
.x34_c00404{left:182.468375pt;}
.x35_c00404{left:185.852506pt;}
.x36_c00404{left:188.150503pt;}
.x3_c00404{left:204.676373pt;}
.x2_c00404{left:206.574107pt;}
.x4_c00404{left:209.317987pt;}
.x5_c00404{left:213.616993pt;}
.x6_c00404{left:218.376513pt;}
.x7_c00404{left:220.819105pt;}
.x8_c00404{left:223.490334pt;}
.x9_c00404{left:226.905704pt;}
.x3f_c00404{left:227.972394pt;}
.xa_c00404{left:229.825509pt;}
.xb_c00404{left:233.767373pt;}
.xc_c00404{left:241.423300pt;}
.xd_c00404{left:251.942027pt;}
.xe_c00404{left:258.549026pt;}
.xf_c00404{left:261.564741pt;}
.x3d_c00404{left:262.612255pt;}
.x10_c00404{left:266.308178pt;}
.x11_c00404{left:269.319244pt;}
.x12_c00404{left:272.883167pt;}
.x13_c00404{left:289.225349pt;}
.x14_c00404{left:290.306761pt;}
.x15_c00404{left:291.569114pt;}
.x16_c00404{left:294.587062pt;}
.x17_c00404{left:297.451603pt;}
.x18_c00404{left:302.677178pt;}
.x19_c00404{left:308.173457pt;}
.x1a_c00404{left:313.230862pt;}
.x1b_c00404{left:316.260173pt;}
.x1c_c00404{left:323.284548pt;}
.x1d_c00404{left:330.381558pt;}
.x1e_c00404{left:336.386614pt;}
.x1f_c00404{left:339.069625pt;}
.x20_c00404{left:341.738474pt;}
.x21_c00404{left:344.757080pt;}
.x22_c00404{left:347.081977pt;}
.x23_c00404{left:350.026488pt;}
.x24_c00404{left:354.624063pt;}
.x25_c00404{left:357.115628pt;}
.x41_c00404{left:401.765180pt;}
.x1_c00404{left:413.420124pt;}
.x40_c00404{left:601.310535pt;}
.x3a_c00404{left:619.470933pt;}
.x39_c00404{left:651.647171pt;}
.x38_c00404{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.006348;font-style:normal;font-weight:normal;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_49d8b8d2b56ae2ebd112d963.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.171387;font-style:normal;font-weight:normal;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_e20c351452cc74decda3e270.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.005371;font-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_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);}
.v0_c00405{vertical-align:0.000000px;}
.ls0_c00405{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00405{word-spacing:-18.680283px;}
.ws2_c00405{word-spacing:0.000000px;}
._c_c00405{width:1.038610px;}
._2_c00405{width:2.064816px;}
._5_c00405{width:3.199023px;}
._9_c00405{width:4.891081px;}
._1_c00405{width:6.369022px;}
._b_c00405{width:7.623738px;}
._3_c00405{width:8.713548px;}
._4_c00405{width:9.778986px;}
._6_c00405{width:11.061175px;}
._a_c00405{width:12.169537px;}
._e_c00405{width:14.567619px;}
._0_c00405{width:16.875707px;}
._d_c00405{width:20.617563px;}
._8_c00405{width:21.762734px;}
._7_c00405{width:28.740655px;}
.fc1_c00405{color:rgb(0,0,0);}
.fc0_c00405{color:rgb(194,158,103);}
.fs3_c00405{font-size:71.912067px;}
.fs1_c00405{font-size:71.957041px;}
.fs2_c00405{font-size:74.340621px;}
.fs0_c00405{font-size:74.379845px;}
.y0_c00405{bottom:0.000000px;}
.y1_c00405{bottom:0.000008px;}
.y28_c00405{bottom:30.156225px;}
.y12_c00405{bottom:63.996842px;}
.y11_c00405{bottom:94.353718px;}
.y10_c00405{bottom:124.710595px;}
.yf_c00405{bottom:155.067472px;}
.ye_c00405{bottom:185.424349px;}
.yd_c00405{bottom:215.781225px;}
.yc_c00405{bottom:246.138102px;}
.yb_c00405{bottom:276.494979px;}
.ya_c00405{bottom:306.851856px;}
.y9_c00405{bottom:337.208732px;}
.y8_c00405{bottom:367.565609px;}
.y27_c00405{bottom:400.854389px;}
.y26_c00405{bottom:439.877868px;}
.y25_c00405{bottom:470.234745px;}
.y24_c00405{bottom:500.591622px;}
.y23_c00405{bottom:530.948498px;}
.y22_c00405{bottom:561.305375px;}
.y21_c00405{bottom:591.662252px;}
.y20_c00405{bottom:623.836039px;}
.y1f_c00405{bottom:659.462653px;}
.y1e_c00405{bottom:689.819530px;}
.y1d_c00405{bottom:720.176407px;}
.y1c_c00405{bottom:750.533283px;}
.y1b_c00405{bottom:780.890160px;}
.y1a_c00405{bottom:811.247037px;}
.y19_c00405{bottom:841.603914px;}
.y18_c00405{bottom:871.960790px;}
.y17_c00405{bottom:902.317667px;}
.y16_c00405{bottom:932.674544px;}
.y15_c00405{bottom:963.031421px;}
.y14_c00405{bottom:993.388297px;}
.y13_c00405{bottom:1023.745174px;}
.y7_c00405{bottom:1052.145107px;}
.y6_c00405{bottom:1088.402927px;}
.y5_c00405{bottom:1118.759804px;}
.y4_c00405{bottom:1149.116681px;}
.y3_c00405{bottom:1179.473557px;}
.y2_c00405{bottom:1204.539346px;}
.h5_c00405{height:56.953337px;}
.h3_c00405{height:56.983387px;}
.h6_c00405{height:66.961090px;}
.h4_c00405{height:67.002968px;}
.h2_c00405{height:1304.999946px;}
.h0_c00405{height:1304.999953px;}
.h1_c00405{height:1305.000000px;}
.w2_c00405{width:934.874961px;}
.w0_c00405{width:934.875000px;}
.w1_c00405{width:935.250000px;}
.x0_c00405{left:0.000000px;}
.x1_c00405{left:87.850202px;}
.x2_c00405{left:451.985828px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws0_c00405{word-spacing:-16.615081pt;}
.ws1_c00405{word-spacing:-16.604696pt;}
.ws2_c00405{word-spacing:0.000000pt;}
._c_c00405{width:0.923209pt;}
._2_c00405{width:1.835392pt;}
._5_c00405{width:2.843576pt;}
._9_c00405{width:4.347628pt;}
._1_c00405{width:5.661352pt;}
._b_c00405{width:6.776656pt;}
._3_c00405{width:7.745376pt;}
._4_c00405{width:8.692432pt;}
._6_c00405{width:9.832155pt;}
._a_c00405{width:10.817367pt;}
._e_c00405{width:12.948995pt;}
._0_c00405{width:15.000629pt;}
._d_c00405{width:18.326723pt;}
._8_c00405{width:19.344652pt;}
._7_c00405{width:25.547249pt;}
.fs3_c00405{font-size:63.921837pt;}
.fs1_c00405{font-size:63.961814pt;}
.fs2_c00405{font-size:66.080552pt;}
.fs0_c00405{font-size:66.115417pt;}
.y0_c00405{bottom:0.000000pt;}
.y1_c00405{bottom:0.000007pt;}
.y28_c00405{bottom:26.805533pt;}
.y12_c00405{bottom:56.886081pt;}
.y11_c00405{bottom:83.869972pt;}
.y10_c00405{bottom:110.853862pt;}
.yf_c00405{bottom:137.837753pt;}
.ye_c00405{bottom:164.821643pt;}
.yd_c00405{bottom:191.805534pt;}
.yc_c00405{bottom:218.789424pt;}
.yb_c00405{bottom:245.773315pt;}
.ya_c00405{bottom:272.757205pt;}
.y9_c00405{bottom:299.741095pt;}
.y8_c00405{bottom:326.724986pt;}
.y27_c00405{bottom:356.315012pt;}
.y26_c00405{bottom:391.002549pt;}
.y25_c00405{bottom:417.986440pt;}
.y24_c00405{bottom:444.970330pt;}
.y23_c00405{bottom:471.954221pt;}
.y22_c00405{bottom:498.938111pt;}
.y21_c00405{bottom:525.922002pt;}
.y20_c00405{bottom:554.520924pt;}
.y1f_c00405{bottom:586.189025pt;}
.y1e_c00405{bottom:613.172915pt;}
.y1d_c00405{bottom:640.156806pt;}
.y1c_c00405{bottom:667.140696pt;}
.y1b_c00405{bottom:694.124587pt;}
.y1a_c00405{bottom:721.108477pt;}
.y19_c00405{bottom:748.092368pt;}
.y18_c00405{bottom:775.076258pt;}
.y17_c00405{bottom:802.060149pt;}
.y16_c00405{bottom:829.044039pt;}
.y15_c00405{bottom:856.027930pt;}
.y14_c00405{bottom:883.011820pt;}
.y13_c00405{bottom:909.995710pt;}
.y7_c00405{bottom:935.240095pt;}
.y6_c00405{bottom:967.469268pt;}
.y5_c00405{bottom:994.453159pt;}
.y4_c00405{bottom:1021.437049pt;}
.y3_c00405{bottom:1048.420940pt;}
.y2_c00405{bottom:1070.701641pt;}
.h5_c00405{height:50.625189pt;}
.h3_c00405{height:50.651899pt;}
.h6_c00405{height:59.520969pt;}
.h4_c00405{height:59.558193pt;}
.h2_c00405{height:1159.999952pt;}
.h0_c00405{height:1159.999959pt;}
.h1_c00405{height:1160.000000pt;}
.w2_c00405{width:830.999965pt;}
.w0_c00405{width:831.000000pt;}
.w1_c00405{width:831.333333pt;}
.x0_c00405{left:0.000000pt;}
.x1_c00405{left:78.089069pt;}
.x2_c00405{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_024935b145915d9d6dfe906a.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.006348;font-style:normal;font-weight:normal;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_4d3183d6e7f78b4742f0d9c6.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.000000;font-style:normal;font-weight:normal;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_21dee0b694c1e06f6ad17ba3.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.171387;font-style:normal;font-weight:normal;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_1acf3b77cd81663484e1482d.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.000000;font-style:normal;font-weight: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_56775323797f472183b2a5ca.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:0.769531;font-style:normal;font-weight: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_c00406;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff6_c00406{font-family:ff6_c00406;line-height:0.769531;font-style:normal;font-weight: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_c00406;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff7_c00406{font-family:ff7_c00406;line-height:0.743000;font-style:normal;font-weight: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_c00406;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00406{font-family:ff8_c00406;line-height:1.006348;font-style:normal;font-weight: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_c00406;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00406{font-family:ff9_c00406;line-height:0.734863;font-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.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00406{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00406{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00406{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00406{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00406{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00406{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00406{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00406{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00406{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00406{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00406{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00406{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00406{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00406{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00406{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00406{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00406{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00406{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00406{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00406{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00406{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00406{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00406{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00406{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00406{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00406{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00406{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00406{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00406{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00406{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00406{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00406{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00406{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00406{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00406{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00406{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00406{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00406{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00406{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00406{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00406{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00406{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00406{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00406{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00406{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00406{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00406{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00406{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00406{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00406{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00406{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00406{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00406{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00406{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00406{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00406{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00406{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00406{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00406{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00406{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00406{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00406{vertical-align:0.000000px;}
.ls0_c00406{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws4_c00406{word-spacing:-18.680283px;}
.ws1_c00406{word-spacing:-15.162211px;}
.ws3_c00406{word-spacing:-0.055722px;}
.ws5_c00406{word-spacing:0.000000px;}
.ws2_c00406{word-spacing:281.470806px;}
._4_c00406{width:1.159465px;}
._5_c00406{width:3.181319px;}
._3_c00406{width:7.099794px;}
._0_c00406{width:8.317454px;}
._2_c00406{width:9.418856px;}
._6_c00406{width:13.935184px;}
._1_c00406{width:17.442742px;}
.fc3_c00406{color:rgb(9,71,81);}
.fc2_c00406{color:rgb(194,158,103);}
.fc1_c00406{color:rgb(255,255,255);}
.fc0_c00406{color:rgb(0,0,0);}
.fsc_c00406{font-size:41.974772px;}
.fs1_c00406{font-size:41.975069px;}
.fs6_c00406{font-size:47.339969px;}
.fs9_c00406{font-size:47.339970px;}
.fs5_c00406{font-size:47.339972px;}
.fs8_c00406{font-size:47.339973px;}
.fs7_c00406{font-size:47.339974px;}
.fsa_c00406{font-size:47.339975px;}
.fse_c00406{font-size:51.630774px;}
.fsf_c00406{font-size:55.721735px;}
.fs4_c00406{font-size:59.949210px;}
.fs10_c00406{font-size:71.912067px;}
.fs0_c00406{font-size:71.957041px;}
.fsd_c00406{font-size:74.379845px;}
.fsb_c00406{font-size:76.965540px;}
.fs3_c00406{font-size:89.946302px;}
.fs2_c00406{font-size:95.927731px;}
.y0_c00406{bottom:0.000000px;}
.y1_c00406{bottom:0.000008px;}
.y56_c00406{bottom:30.156225px;}
.y9_c00406{bottom:92.797518px;}
.y8_c00406{bottom:123.154395px;}
.y7_c00406{bottom:153.511272px;}
.y6_c00406{bottom:183.868149px;}
.y5_c00406{bottom:214.225025px;}
.y4_c00406{bottom:244.581902px;}
.y3_c00406{bottom:274.938779px;}
.y2_c00406{bottom:305.295656px;}
.y53_c00406{bottom:332.289791px;}
.y54_c00406{bottom:402.064151px;}
.y4f_c00406{bottom:487.376458px;}
.y1d_c00406{bottom:493.812629px;}
.y45_c00406{bottom:493.827623px;}
.y1c_c00406{bottom:494.337609px;}
.y46_c00406{bottom:494.357158px;}
.y2f_c00406{bottom:494.700737px;}
.y44_c00406{bottom:495.071586px;}
.y1b_c00406{bottom:495.403002px;}
.y30_c00406{bottom:495.533530px;}
.y2e_c00406{bottom:495.553663px;}
.y43_c00406{bottom:496.322201px;}
.y1a_c00406{bottom:496.475623px;}
.y2d_c00406{bottom:496.587915px;}
.y47_c00406{bottom:496.772260px;}
.y1e_c00406{bottom:496.835884px;}
.y31_c00406{bottom:497.713596px;}
.y42_c00406{bottom:497.966053px;}
.y19_c00406{bottom:498.126234px;}
.y2c_c00406{bottom:498.789265px;}
.y32_c00406{bottom:499.103521px;}
.y41_c00406{bottom:499.653306px;}
.y18_c00406{bottom:499.818769px;}
.y33_c00406{bottom:500.800864px;}
.y1f_c00406{bottom:501.110605px;}
.y40_c00406{bottom:501.517382px;}
.y17_c00406{bottom:501.687706px;}
.y48_c00406{bottom:501.869915px;}
.y2b_c00406{bottom:502.578702px;}
.y34_c00406{bottom:503.241722px;}
.y20_c00406{bottom:503.627848px;}
.y49_c00406{bottom:505.496019px;}
.y35_c00406{bottom:505.499367px;}
.y3f_c00406{bottom:506.168989px;}
.y16_c00406{bottom:506.348634px;}
.y2a_c00406{bottom:508.044213px;}
.y36_c00406{bottom:508.766327px;}
.y21_c00406{bottom:509.576794px;}
.y4a_c00406{bottom:511.126534px;}
.y29_c00406{bottom:512.508085px;}
.y3e_c00406{bottom:512.566592px;}
.y15_c00406{bottom:512.754669px;}
.y22_c00406{bottom:514.322677px;}
.y37_c00406{bottom:517.158603px;}
.y4b_c00406{bottom:517.780195px;}
.y28_c00406{bottom:518.929057px;}
.y3d_c00406{bottom:519.869222px;}
.y14_c00406{bottom:519.959421px;}
.y13_c00406{bottom:523.416158px;}
.y27_c00406{bottom:523.496236px;}
.y38_c00406{bottom:525.202812px;}
.y23_c00406{bottom:526.099549px;}
.y3c_c00406{bottom:527.026630px;}
.y12_c00406{bottom:529.422883px;}
.y4c_c00406{bottom:529.736175px;}
.y26_c00406{bottom:531.263725px;}
.y3b_c00406{bottom:531.792993px;}
.y4e_c00406{bottom:533.728456px;}
.y52_c00406{bottom:534.421816px;}
.y25_c00406{bottom:535.155114px;}
.y11_c00406{bottom:536.678099px;}
.y3a_c00406{bottom:537.961701px;}
.y24_c00406{bottom:538.332892px;}
.y4d_c00406{bottom:538.696314px;}
.y50_c00406{bottom:540.431168px;}
.y39_c00406{bottom:545.020884px;}
.y10_c00406{bottom:546.207017px;}
.y51_c00406{bottom:577.871130px;}
.yd_c00406{bottom:597.559761px;}
.y55_c00406{bottom:639.489911px;}
.yb_c00406{bottom:1127.585799px;}
.yf_c00406{bottom:1129.718199px;}
.ye_c00406{bottom:1147.707459px;}
.yc_c00406{bottom:1150.017273px;}
.ya_c00406{bottom:1170.658440px;}
.h10_c00406{height:32.157430px;}
.hd_c00406{height:35.967282px;}
.hc_c00406{height:35.967283px;}
.he_c00406{height:35.967285px;}
.ha_c00406{height:36.267779px;}
.h9_c00406{height:36.267781px;}
.hb_c00406{height:36.267783px;}
.h12_c00406{height:37.437353px;}
.h4_c00406{height:39.085184px;}
.h13_c00406{height:51.885424px;}
.h14_c00406{height:55.092790px;}
.h3_c00406{height:55.127245px;}
.h8_c00406{height:55.821847px;}
.hf_c00406{height:56.261810px;}
.h11_c00406{height:56.983387px;}
.h5_c00406{height:67.002968px;}
.h7_c00406{height:68.338108px;}
.h6_c00406{height:89.323331px;}
.h2_c00406{height:1304.999946px;}
.h0_c00406{height:1304.999953px;}
.h1_c00406{height:1305.000000px;}
.w2_c00406{width:934.874961px;}
.w0_c00406{width:934.875000px;}
.w1_c00406{width:935.250000px;}
.x0_c00406{left:0.000000px;}
.x1_c00406{left:89.434062px;}
.x3f_c00406{left:90.790650px;}
.x5_c00406{left:108.062661px;}
.x2_c00406{left:109.658623px;}
.x2b_c00406{left:134.894322px;}
.x2a_c00406{left:136.566734px;}
.x2c_c00406{left:139.937719px;}
.x2d_c00406{left:144.785273px;}
.x2e_c00406{left:150.147890px;}
.x2f_c00406{left:152.899057px;}
.x30_c00406{left:155.907145px;}
.x31_c00406{left:159.752336px;}
.x3b_c00406{left:161.347648px;}
.x32_c00406{left:163.203941px;}
.x33_c00406{left:171.483965px;}
.x34_c00406{left:179.748684px;}
.x35_c00406{left:188.175145px;}
.x36_c00406{left:196.556636px;}
.x37_c00406{left:200.721504px;}
.x38_c00406{left:205.276922px;}
.x39_c00406{left:209.084069px;}
.x3a_c00406{left:211.669316px;}
.x7_c00406{left:230.260919px;}
.x6_c00406{left:232.395871px;}
.x8_c00406{left:235.482735px;}
.x9_c00406{left:240.319117px;}
.xa_c00406{left:245.673577px;}
.xb_c00406{left:248.421493px;}
.xc_c00406{left:251.426626px;}
.xd_c00406{left:255.268917px;}
.x3e_c00406{left:256.468943px;}
.xe_c00406{left:258.553698px;}
.xf_c00406{left:262.988294px;}
.x10_c00406{left:271.601212px;}
.x11_c00406{left:283.434780px;}
.x12_c00406{left:290.867654px;}
.x13_c00406{left:294.260334px;}
.x3_c00406{left:295.438786px;}
.x14_c00406{left:299.596701px;}
.x15_c00406{left:302.984150px;}
.x16_c00406{left:306.993562px;}
.x17_c00406{left:325.378518px;}
.x18_c00406{left:326.595106px;}
.x19_c00406{left:328.015253px;}
.x1a_c00406{left:331.410444px;}
.x1b_c00406{left:334.633053px;}
.x1c_c00406{left:340.511825px;}
.x1d_c00406{left:346.695139px;}
.x1e_c00406{left:352.384720px;}
.x1f_c00406{left:355.792694px;}
.x20_c00406{left:363.695116px;}
.x21_c00406{left:371.679253px;}
.x22_c00406{left:378.434940px;}
.x23_c00406{left:381.453328px;}
.x24_c00406{left:384.455783px;}
.x25_c00406{left:387.851715px;}
.x26_c00406{left:390.467224px;}
.x27_c00406{left:393.779799px;}
.x28_c00406{left:398.952070px;}
.x29_c00406{left:401.755082px;}
.x42_c00406{left:451.985828px;}
.x4_c00406{left:465.097640px;}
.x41_c00406{left:676.474352px;}
.x40_c00406{left:696.904800px;}
.x3d_c00406{left:733.103068px;}
.x3c_c00406{left:756.637341px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ws0_c00406{word-spacing:-16.615081pt;}
.ws4_c00406{word-spacing:-16.604696pt;}
.ws1_c00406{word-spacing:-13.477521pt;}
.ws3_c00406{word-spacing:-0.049530pt;}
.ws5_c00406{word-spacing:0.000000pt;}
.ws2_c00406{word-spacing:250.196272pt;}
._4_c00406{width:1.030635pt;}
._5_c00406{width:2.827839pt;}
._3_c00406{width:6.310928pt;}
._0_c00406{width:7.393292pt;}
._2_c00406{width:8.372316pt;}
._6_c00406{width:12.386830pt;}
._1_c00406{width:15.504659pt;}
.fsc_c00406{font-size:37.310908pt;}
.fs1_c00406{font-size:37.311173pt;}
.fs6_c00406{font-size:42.079973pt;}
.fs9_c00406{font-size:42.079974pt;}
.fs5_c00406{font-size:42.079975pt;}
.fs8_c00406{font-size:42.079976pt;}
.fs7_c00406{font-size:42.079977pt;}
.fsa_c00406{font-size:42.079978pt;}
.fse_c00406{font-size:45.894021pt;}
.fsf_c00406{font-size:49.530431pt;}
.fs4_c00406{font-size:53.288186pt;}
.fs10_c00406{font-size:63.921837pt;}
.fs0_c00406{font-size:63.961814pt;}
.fsd_c00406{font-size:66.115417pt;}
.fsb_c00406{font-size:68.413814pt;}
.fs3_c00406{font-size:79.952268pt;}
.fs2_c00406{font-size:85.269094pt;}
.y0_c00406{bottom:0.000000pt;}
.y1_c00406{bottom:0.000007pt;}
.y56_c00406{bottom:26.805533pt;}
.y9_c00406{bottom:82.486683pt;}
.y8_c00406{bottom:109.470573pt;}
.y7_c00406{bottom:136.454464pt;}
.y6_c00406{bottom:163.438354pt;}
.y5_c00406{bottom:190.422245pt;}
.y4_c00406{bottom:217.406135pt;}
.y3_c00406{bottom:244.390026pt;}
.y2_c00406{bottom:271.373916pt;}
.y53_c00406{bottom:295.368703pt;}
.y54_c00406{bottom:357.390356pt;}
.y4f_c00406{bottom:433.223518pt;}
.y1d_c00406{bottom:438.944560pt;}
.y45_c00406{bottom:438.957887pt;}
.y1c_c00406{bottom:439.411208pt;}
.y46_c00406{bottom:439.428585pt;}
.y2f_c00406{bottom:439.733989pt;}
.y44_c00406{bottom:440.063632pt;}
.y1b_c00406{bottom:440.358224pt;}
.y30_c00406{bottom:440.474249pt;}
.y2e_c00406{bottom:440.492144pt;}
.y43_c00406{bottom:441.175290pt;}
.y1a_c00406{bottom:441.311665pt;}
.y2d_c00406{bottom:441.411480pt;}
.y47_c00406{bottom:441.575343pt;}
.y1e_c00406{bottom:441.631897pt;}
.y31_c00406{bottom:442.412085pt;}
.y42_c00406{bottom:442.636491pt;}
.y19_c00406{bottom:442.778875pt;}
.y2c_c00406{bottom:443.368235pt;}
.y32_c00406{bottom:443.647574pt;}
.y41_c00406{bottom:444.136272pt;}
.y18_c00406{bottom:444.283350pt;}
.y33_c00406{bottom:445.156323pt;}
.y1f_c00406{bottom:445.431649pt;}
.y40_c00406{bottom:445.793228pt;}
.y17_c00406{bottom:445.944627pt;}
.y48_c00406{bottom:446.106592pt;}
.y2b_c00406{bottom:446.736624pt;}
.y34_c00406{bottom:447.325975pt;}
.y20_c00406{bottom:447.669198pt;}
.y49_c00406{bottom:449.329795pt;}
.y35_c00406{bottom:449.332771pt;}
.y3f_c00406{bottom:449.927990pt;}
.y16_c00406{bottom:450.087675pt;}
.y2a_c00406{bottom:451.594856pt;}
.y36_c00406{bottom:452.236735pt;}
.y21_c00406{bottom:452.957150pt;}
.y4a_c00406{bottom:454.334697pt;}
.y29_c00406{bottom:455.562742pt;}
.y3e_c00406{bottom:455.614749pt;}
.y15_c00406{bottom:455.781928pt;}
.y22_c00406{bottom:457.175713pt;}
.y37_c00406{bottom:459.696536pt;}
.y4b_c00406{bottom:460.249062pt;}
.y28_c00406{bottom:461.270273pt;}
.y3d_c00406{bottom:462.105976pt;}
.y14_c00406{bottom:462.186152pt;}
.y13_c00406{bottom:465.258807pt;}
.y27_c00406{bottom:465.329988pt;}
.y38_c00406{bottom:466.846944pt;}
.y23_c00406{bottom:467.644044pt;}
.y3c_c00406{bottom:468.468115pt;}
.y12_c00406{bottom:470.598118pt;}
.y4c_c00406{bottom:470.876600pt;}
.y26_c00406{bottom:472.234422pt;}
.y3b_c00406{bottom:472.704883pt;}
.y4e_c00406{bottom:474.425294pt;}
.y52_c00406{bottom:475.041614pt;}
.y25_c00406{bottom:475.693435pt;}
.y11_c00406{bottom:477.047199pt;}
.y3a_c00406{bottom:478.188178pt;}
.y24_c00406{bottom:478.518126pt;}
.y4d_c00406{bottom:478.841168pt;}
.y50_c00406{bottom:480.383260pt;}
.y39_c00406{bottom:484.463008pt;}
.y10_c00406{bottom:485.517349pt;}
.y51_c00406{bottom:513.663227pt;}
.yd_c00406{bottom:531.164232pt;}
.y55_c00406{bottom:568.435476pt;}
.yb_c00406{bottom:1002.298488pt;}
.yf_c00406{bottom:1004.193955pt;}
.ye_c00406{bottom:1020.184408pt;}
.yc_c00406{bottom:1022.237576pt;}
.ya_c00406{bottom:1040.585280pt;}
.h10_c00406{height:28.584382pt;}
.hd_c00406{height:31.970917pt;}
.hc_c00406{height:31.970918pt;}
.he_c00406{height:31.970920pt;}
.ha_c00406{height:32.238026pt;}
.h9_c00406{height:32.238028pt;}
.hb_c00406{height:32.238029pt;}
.h12_c00406{height:33.277647pt;}
.h4_c00406{height:34.742386pt;}
.h13_c00406{height:46.120377pt;}
.h14_c00406{height:48.971369pt;}
.h3_c00406{height:49.001996pt;}
.h8_c00406{height:49.619420pt;}
.hf_c00406{height:50.010498pt;}
.h11_c00406{height:50.651899pt;}
.h5_c00406{height:59.558193pt;}
.h7_c00406{height:60.744985pt;}
.h6_c00406{height:79.398517pt;}
.h2_c00406{height:1159.999952pt;}
.h0_c00406{height:1159.999959pt;}
.h1_c00406{height:1160.000000pt;}
.w2_c00406{width:830.999965pt;}
.w0_c00406{width:831.000000pt;}
.w1_c00406{width:831.333333pt;}
.x0_c00406{left:0.000000pt;}
.x1_c00406{left:79.496944pt;}
.x3f_c00406{left:80.702800pt;}
.x5_c00406{left:96.055698pt;}
.x2_c00406{left:97.474332pt;}
.x2b_c00406{left:119.906064pt;}
.x2a_c00406{left:121.392652pt;}
.x2c_c00406{left:124.389083pt;}
.x2d_c00406{left:128.698021pt;}
.x2e_c00406{left:133.464791pt;}
.x2f_c00406{left:135.910272pt;}
.x30_c00406{left:138.584129pt;}
.x31_c00406{left:142.002076pt;}
.x3b_c00406{left:143.420132pt;}
.x32_c00406{left:145.070170pt;}
.x33_c00406{left:152.430191pt;}
.x34_c00406{left:159.776608pt;}
.x35_c00406{left:167.266795pt;}
.x36_c00406{left:174.717010pt;}
.x37_c00406{left:178.419115pt;}
.x38_c00406{left:182.468375pt;}
.x39_c00406{left:185.852506pt;}
.x3a_c00406{left:188.150503pt;}
.x7_c00406{left:204.676373pt;}
.x6_c00406{left:206.574107pt;}
.x8_c00406{left:209.317987pt;}
.x9_c00406{left:213.616993pt;}
.xa_c00406{left:218.376513pt;}
.xb_c00406{left:220.819105pt;}
.xc_c00406{left:223.490334pt;}
.xd_c00406{left:226.905704pt;}
.x3e_c00406{left:227.972394pt;}
.xe_c00406{left:229.825509pt;}
.xf_c00406{left:233.767373pt;}
.x10_c00406{left:241.423300pt;}
.x11_c00406{left:251.942027pt;}
.x12_c00406{left:258.549026pt;}
.x13_c00406{left:261.564741pt;}
.x3_c00406{left:262.612255pt;}
.x14_c00406{left:266.308178pt;}
.x15_c00406{left:269.319244pt;}
.x16_c00406{left:272.883167pt;}
.x17_c00406{left:289.225349pt;}
.x18_c00406{left:290.306761pt;}
.x19_c00406{left:291.569114pt;}
.x1a_c00406{left:294.587062pt;}
.x1b_c00406{left:297.451603pt;}
.x1c_c00406{left:302.677178pt;}
.x1d_c00406{left:308.173457pt;}
.x1e_c00406{left:313.230862pt;}
.x1f_c00406{left:316.260173pt;}
.x20_c00406{left:323.284548pt;}
.x21_c00406{left:330.381558pt;}
.x22_c00406{left:336.386614pt;}
.x23_c00406{left:339.069625pt;}
.x24_c00406{left:341.738474pt;}
.x25_c00406{left:344.757080pt;}
.x26_c00406{left:347.081977pt;}
.x27_c00406{left:350.026488pt;}
.x28_c00406{left:354.624063pt;}
.x29_c00406{left:357.115628pt;}
.x42_c00406{left:401.765180pt;}
.x4_c00406{left:413.420124pt;}
.x41_c00406{left:601.310535pt;}
.x40_c00406{left:619.470933pt;}
.x3d_c00406{left:651.647171pt;}
.x3c_c00406{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.006348;font-style:normal;font-weight:normal;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_775467f04d666d5941ca1b9b.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.006348;font-style:normal;font-weight:normal;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_9dde21d52e66e1a92fdeb9c6.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.000000;font-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_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);}
.v0_c00407{vertical-align:0.000000px;}
.ls0_c00407{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00407{word-spacing:0.000000px;}
._2_c00407{width:1.522480px;}
._3_c00407{width:2.541551px;}
._d_c00407{width:3.923339px;}
._c_c00407{width:7.848291px;}
._0_c00407{width:8.860471px;}
._5_c00407{width:10.328745px;}
._8_c00407{width:12.039663px;}
._a_c00407{width:13.128929px;}
._6_c00407{width:14.651411px;}
._4_c00407{width:19.704988px;}
._1_c00407{width:20.971844px;}
._7_c00407{width:22.199043px;}
._9_c00407{width:38.039768px;}
._b_c00407{width:42.970442px;}
.fc1_c00407{color:rgb(0,0,0);}
.fc0_c00407{color:rgb(194,158,103);}
.fs3_c00407{font-size:71.912067px;}
.fs1_c00407{font-size:71.957041px;}
.fs2_c00407{font-size:74.340621px;}
.fs0_c00407{font-size:74.379845px;}
.y0_c00407{bottom:0.000000px;}
.y1_c00407{bottom:0.000008px;}
.y20_c00407{bottom:30.156225px;}
.y10_c00407{bottom:209.655790px;}
.yf_c00407{bottom:240.012666px;}
.ye_c00407{bottom:270.369543px;}
.yd_c00407{bottom:300.726420px;}
.yc_c00407{bottom:331.083297px;}
.yb_c00407{bottom:361.440173px;}
.y1f_c00407{bottom:399.822665px;}
.y1e_c00407{bottom:469.920243px;}
.y1d_c00407{bottom:500.277120px;}
.y1c_c00407{bottom:532.450835px;}
.y1b_c00407{bottom:602.548435px;}
.y1a_c00407{bottom:632.905311px;}
.y19_c00407{bottom:663.262188px;}
.y18_c00407{bottom:693.619065px;}
.y17_c00407{bottom:723.975942px;}
.y16_c00407{bottom:754.332819px;}
.y15_c00407{bottom:784.689695px;}
.y14_c00407{bottom:815.046572px;}
.y13_c00407{bottom:845.403449px;}
.y12_c00407{bottom:875.760326px;}
.y11_c00407{bottom:906.117202px;}
.ya_c00407{bottom:938.766557px;}
.y9_c00407{bottom:1009.420610px;}
.y8_c00407{bottom:1039.777487px;}
.y7_c00407{bottom:1070.134364px;}
.y6_c00407{bottom:1100.491241px;}
.y5_c00407{bottom:1130.848117px;}
.y4_c00407{bottom:1161.204994px;}
.y3_c00407{bottom:1191.561871px;}
.y2_c00407{bottom:1214.773396px;}
.h6_c00407{height:55.092790px;}
.h4_c00407{height:55.127245px;}
.h5_c00407{height:56.953337px;}
.h3_c00407{height:56.983387px;}
.h2_c00407{height:1304.999946px;}
.h0_c00407{height:1304.999953px;}
.h1_c00407{height:1305.000000px;}
.w2_c00407{width:934.874961px;}
.w0_c00407{width:934.875000px;}
.w1_c00407{width:935.250000px;}
.x0_c00407{left:0.000000px;}
.x1_c00407{left:87.850202px;}
.x2_c00407{left:451.985828px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ws0_c00407{word-spacing:-16.604696pt;}
.ws1_c00407{word-spacing:0.000000pt;}
._2_c00407{width:1.353315pt;}
._3_c00407{width:2.259156pt;}
._d_c00407{width:3.487413pt;}
._c_c00407{width:6.976258pt;}
._0_c00407{width:7.875974pt;}
._5_c00407{width:9.181106pt;}
._8_c00407{width:10.701922pt;}
._a_c00407{width:11.670159pt;}
._6_c00407{width:13.023476pt;}
._4_c00407{width:17.515545pt;}
._1_c00407{width:18.641639pt;}
._7_c00407{width:19.732483pt;}
._9_c00407{width:33.813127pt;}
._b_c00407{width:38.195948pt;}
.fs3_c00407{font-size:63.921837pt;}
.fs1_c00407{font-size:63.961814pt;}
.fs2_c00407{font-size:66.080552pt;}
.fs0_c00407{font-size:66.115417pt;}
.y0_c00407{bottom:0.000000pt;}
.y1_c00407{bottom:0.000007pt;}
.y20_c00407{bottom:26.805533pt;}
.y10_c00407{bottom:186.360702pt;}
.yf_c00407{bottom:213.344592pt;}
.ye_c00407{bottom:240.328483pt;}
.yd_c00407{bottom:267.312373pt;}
.yc_c00407{bottom:294.296264pt;}
.yb_c00407{bottom:321.280154pt;}
.y1f_c00407{bottom:355.397924pt;}
.y1e_c00407{bottom:417.706883pt;}
.y1d_c00407{bottom:444.690773pt;}
.y1c_c00407{bottom:473.289631pt;}
.y1b_c00407{bottom:535.598609pt;}
.y1a_c00407{bottom:562.582499pt;}
.y19_c00407{bottom:589.566390pt;}
.y18_c00407{bottom:616.550280pt;}
.y17_c00407{bottom:643.534170pt;}
.y16_c00407{bottom:670.518061pt;}
.y15_c00407{bottom:697.501951pt;}
.y14_c00407{bottom:724.485842pt;}
.y13_c00407{bottom:751.469732pt;}
.y12_c00407{bottom:778.453623pt;}
.y11_c00407{bottom:805.437513pt;}
.ya_c00407{bottom:834.459162pt;}
.y9_c00407{bottom:897.262765pt;}
.y8_c00407{bottom:924.246655pt;}
.y7_c00407{bottom:951.230546pt;}
.y6_c00407{bottom:978.214436pt;}
.y5_c00407{bottom:1005.198327pt;}
.y4_c00407{bottom:1032.182217pt;}
.y3_c00407{bottom:1059.166107pt;}
.y2_c00407{bottom:1079.798575pt;}
.h6_c00407{height:48.971369pt;}
.h4_c00407{height:49.001996pt;}
.h5_c00407{height:50.625189pt;}
.h3_c00407{height:50.651899pt;}
.h2_c00407{height:1159.999952pt;}
.h0_c00407{height:1159.999959pt;}
.h1_c00407{height:1160.000000pt;}
.w2_c00407{width:830.999965pt;}
.w0_c00407{width:831.000000pt;}
.w1_c00407{width:831.333333pt;}
.x0_c00407{left:0.000000pt;}
.x1_c00407{left:78.089069pt;}
.x2_c00407{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60a184a71cac64e8b37f1744.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.006348;font-style:normal;font-weight:normal;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_d6df7301796e7eb4ac2e241e.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.000000;font-style:normal;font-weight:normal;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_f12da8838666d96b32feca81.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.171387;font-style:normal;font-weight:normal;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_1a7af410d6fcaaa6012d55a5.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:0.769531;font-style:normal;font-weight: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_56775323797f472183b2a5ca.woff2')format("woff");}.ff5_c00408{font-family:ff5_c00408;line-height:0.769531;font-style:normal;font-weight: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_c00408;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff6_c00408{font-family:ff6_c00408;line-height:0.769531;font-style:normal;font-weight: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_c00408;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff7_c00408{font-family:ff7_c00408;line-height:0.743000;font-style:normal;font-weight: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_c00408;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00408{font-family:ff8_c00408;line-height:1.006348;font-style:normal;font-weight: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_c00408;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00408{font-family:ff9_c00408;line-height:0.734863;font-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_c00408{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00408{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00408{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00408{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00408{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00408{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00408{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00408{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00408{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00408{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00408{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00408{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00408{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00408{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00408{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00408{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00408{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00408{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00408{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00408{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00408{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00408{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00408{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00408{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00408{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00408{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00408{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00408{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00408{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00408{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00408{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00408{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00408{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00408{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00408{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00408{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00408{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00408{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00408{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00408{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00408{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00408{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00408{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00408{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00408{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00408{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00408{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00408{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00408{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00408{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00408{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00408{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00408{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00408{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00408{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00408{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00408{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00408{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00408{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00408{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00408{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00408{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00408{vertical-align:0.000000px;}
.v1_c00408{vertical-align:26.810849px;}
.ls0_c00408{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00408{word-spacing:-18.680283px;}
.ws0_c00408{word-spacing:-0.071957px;}
.ws3_c00408{word-spacing:-0.055722px;}
.ws5_c00408{word-spacing:0.000000px;}
.ws2_c00408{word-spacing:281.470806px;}
.ws1_c00408{word-spacing:1114.343689px;}
._1_c00408{width:3.807374px;}
._2_c00408{width:7.575151px;}
._0_c00408{width:12.387657px;}
._3_c00408{width:15.607060px;}
.fc3_c00408{color:rgb(9,71,81);}
.fc2_c00408{color:rgb(194,158,103);}
.fc1_c00408{color:rgb(255,255,255);}
.fc0_c00408{color:rgb(0,0,0);}
.fsc_c00408{font-size:41.974772px;}
.fs1_c00408{font-size:41.975069px;}
.fs6_c00408{font-size:47.339969px;}
.fs9_c00408{font-size:47.339970px;}
.fs5_c00408{font-size:47.339972px;}
.fs8_c00408{font-size:47.339973px;}
.fs7_c00408{font-size:47.339974px;}
.fsa_c00408{font-size:47.339975px;}
.fse_c00408{font-size:51.630774px;}
.fsf_c00408{font-size:55.721735px;}
.fs4_c00408{font-size:59.949210px;}
.fs10_c00408{font-size:71.912067px;}
.fs0_c00408{font-size:71.957041px;}
.fsd_c00408{font-size:74.379845px;}
.fsb_c00408{font-size:76.965540px;}
.fs3_c00408{font-size:89.946302px;}
.fs2_c00408{font-size:95.927731px;}
.y0_c00408{bottom:0.000000px;}
.y1_c00408{bottom:0.000008px;}
.y50_c00408{bottom:30.156225px;}
.y6_c00408{bottom:183.642177px;}
.y5_c00408{bottom:213.999053px;}
.y4_c00408{bottom:244.355930px;}
.y3_c00408{bottom:274.712807px;}
.y2_c00408{bottom:305.069684px;}
.y4d_c00408{bottom:339.025895px;}
.y4e_c00408{bottom:402.064151px;}
.y19_c00408{bottom:493.812629px;}
.y41_c00408{bottom:493.827623px;}
.y18_c00408{bottom:494.337609px;}
.y42_c00408{bottom:494.357158px;}
.y2b_c00408{bottom:494.700737px;}
.y40_c00408{bottom:495.071586px;}
.y17_c00408{bottom:495.403002px;}
.y2c_c00408{bottom:495.533530px;}
.y2a_c00408{bottom:495.553663px;}
.y3f_c00408{bottom:496.322201px;}
.y16_c00408{bottom:496.475623px;}
.y29_c00408{bottom:496.587915px;}
.y43_c00408{bottom:496.772260px;}
.y1a_c00408{bottom:496.835884px;}
.y2d_c00408{bottom:497.713596px;}
.y3e_c00408{bottom:497.966053px;}
.y15_c00408{bottom:498.126234px;}
.y28_c00408{bottom:498.789265px;}
.y2e_c00408{bottom:499.103521px;}
.y3d_c00408{bottom:499.653306px;}
.y14_c00408{bottom:499.818769px;}
.y2f_c00408{bottom:500.800864px;}
.y1b_c00408{bottom:501.110605px;}
.y3c_c00408{bottom:501.517382px;}
.y13_c00408{bottom:501.687706px;}
.y44_c00408{bottom:501.869915px;}
.y27_c00408{bottom:502.578702px;}
.y30_c00408{bottom:503.241722px;}
.y1c_c00408{bottom:503.627848px;}
.y45_c00408{bottom:505.496019px;}
.y31_c00408{bottom:505.499367px;}
.y3b_c00408{bottom:506.168989px;}
.y12_c00408{bottom:506.348634px;}
.y26_c00408{bottom:508.044213px;}
.y32_c00408{bottom:508.766327px;}
.y1d_c00408{bottom:509.576794px;}
.y46_c00408{bottom:511.126534px;}
.y25_c00408{bottom:512.508085px;}
.y3a_c00408{bottom:512.566592px;}
.y11_c00408{bottom:512.754669px;}
.y1e_c00408{bottom:514.322677px;}
.y33_c00408{bottom:517.158603px;}
.y47_c00408{bottom:517.780195px;}
.y24_c00408{bottom:518.929057px;}
.y39_c00408{bottom:519.869222px;}
.y10_c00408{bottom:519.959421px;}
.yf_c00408{bottom:523.416158px;}
.y23_c00408{bottom:523.496236px;}
.y34_c00408{bottom:525.202812px;}
.y1f_c00408{bottom:526.099549px;}
.y38_c00408{bottom:527.026630px;}
.ye_c00408{bottom:529.422883px;}
.y48_c00408{bottom:529.736175px;}
.y22_c00408{bottom:531.263725px;}
.y37_c00408{bottom:531.792993px;}
.y4a_c00408{bottom:533.728456px;}
.y4c_c00408{bottom:534.421816px;}
.y21_c00408{bottom:535.155114px;}
.yd_c00408{bottom:536.678099px;}
.y36_c00408{bottom:537.961701px;}
.y20_c00408{bottom:538.332892px;}
.y49_c00408{bottom:538.696314px;}
.y35_c00408{bottom:545.020884px;}
.yc_c00408{bottom:546.207017px;}
.y4b_c00408{bottom:577.871130px;}
.y4f_c00408{bottom:639.489911px;}
.y8_c00408{bottom:1127.585799px;}
.yb_c00408{bottom:1129.718199px;}
.ya_c00408{bottom:1147.707459px;}
.y9_c00408{bottom:1150.017273px;}
.y7_c00408{bottom:1170.658440px;}
.h10_c00408{height:32.157430px;}
.hd_c00408{height:35.967282px;}
.hc_c00408{height:35.967283px;}
.he_c00408{height:35.967285px;}
.ha_c00408{height:36.267779px;}
.h9_c00408{height:36.267781px;}
.hb_c00408{height:36.267783px;}
.h13_c00408{height:37.437353px;}
.h4_c00408{height:39.085184px;}
.h14_c00408{height:51.885424px;}
.h15_c00408{height:55.092790px;}
.h3_c00408{height:55.127245px;}
.h8_c00408{height:55.821847px;}
.h11_c00408{height:56.261810px;}
.h12_c00408{height:56.983387px;}
.hf_c00408{height:58.968279px;}
.h5_c00408{height:67.002968px;}
.h7_c00408{height:68.338108px;}
.h6_c00408{height:89.323331px;}
.h2_c00408{height:1304.999946px;}
.h0_c00408{height:1304.999953px;}
.h1_c00408{height:1305.000000px;}
.w2_c00408{width:934.874961px;}
.w0_c00408{width:934.875000px;}
.w1_c00408{width:935.250000px;}
.x0_c00408{left:0.000000px;}
.x1_c00408{left:89.434062px;}
.x4_c00408{left:108.062661px;}
.x2_c00408{left:109.658623px;}
.x2a_c00408{left:134.894322px;}
.x29_c00408{left:136.566734px;}
.x2b_c00408{left:139.937719px;}
.x2c_c00408{left:144.785273px;}
.x2d_c00408{left:150.147890px;}
.x2e_c00408{left:152.899057px;}
.x2f_c00408{left:155.907145px;}
.x30_c00408{left:159.752336px;}
.x3a_c00408{left:161.347648px;}
.x31_c00408{left:163.203941px;}
.x32_c00408{left:171.483965px;}
.x33_c00408{left:179.748684px;}
.x34_c00408{left:188.175145px;}
.x35_c00408{left:196.556636px;}
.x36_c00408{left:200.721504px;}
.x37_c00408{left:205.276922px;}
.x38_c00408{left:209.084069px;}
.x39_c00408{left:211.669316px;}
.x6_c00408{left:230.260919px;}
.x5_c00408{left:232.395871px;}
.x7_c00408{left:235.482735px;}
.x8_c00408{left:240.319117px;}
.x9_c00408{left:245.673577px;}
.xa_c00408{left:248.421493px;}
.xb_c00408{left:251.426626px;}
.xc_c00408{left:255.268917px;}
.x3c_c00408{left:256.468943px;}
.xd_c00408{left:258.553698px;}
.xe_c00408{left:262.988294px;}
.xf_c00408{left:271.601212px;}
.x10_c00408{left:283.434780px;}
.x11_c00408{left:290.867654px;}
.x12_c00408{left:294.260334px;}
.x3_c00408{left:295.438786px;}
.x13_c00408{left:299.596701px;}
.x14_c00408{left:302.984150px;}
.x15_c00408{left:306.993562px;}
.x16_c00408{left:325.378518px;}
.x17_c00408{left:326.595106px;}
.x18_c00408{left:328.015253px;}
.x19_c00408{left:331.410444px;}
.x1a_c00408{left:334.633053px;}
.x1b_c00408{left:340.511825px;}
.x1c_c00408{left:346.695139px;}
.x1d_c00408{left:352.384720px;}
.x1e_c00408{left:355.792694px;}
.x1f_c00408{left:363.695116px;}
.x20_c00408{left:371.679253px;}
.x21_c00408{left:378.434940px;}
.x22_c00408{left:381.453328px;}
.x23_c00408{left:384.455783px;}
.x24_c00408{left:387.851715px;}
.x25_c00408{left:390.467224px;}
.x26_c00408{left:393.779799px;}
.x27_c00408{left:398.952070px;}
.x28_c00408{left:401.755082px;}
.x3f_c00408{left:451.985828px;}
.x3e_c00408{left:676.474352px;}
.x3d_c00408{left:696.904800px;}
.x3b_c00408{left:733.103068px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.v1_c00408{vertical-align:23.831865pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws4_c00408{word-spacing:-16.604696pt;}
.ws0_c00408{word-spacing:-0.063962pt;}
.ws3_c00408{word-spacing:-0.049530pt;}
.ws5_c00408{word-spacing:0.000000pt;}
.ws2_c00408{word-spacing:250.196272pt;}
.ws1_c00408{word-spacing:990.527723pt;}
._1_c00408{width:3.384332pt;}
._2_c00408{width:6.733467pt;}
._0_c00408{width:11.011251pt;}
._3_c00408{width:13.872942pt;}
.fsc_c00408{font-size:37.310908pt;}
.fs1_c00408{font-size:37.311173pt;}
.fs6_c00408{font-size:42.079973pt;}
.fs9_c00408{font-size:42.079974pt;}
.fs5_c00408{font-size:42.079975pt;}
.fs8_c00408{font-size:42.079976pt;}
.fs7_c00408{font-size:42.079977pt;}
.fsa_c00408{font-size:42.079978pt;}
.fse_c00408{font-size:45.894021pt;}
.fsf_c00408{font-size:49.530431pt;}
.fs4_c00408{font-size:53.288186pt;}
.fs10_c00408{font-size:63.921837pt;}
.fs0_c00408{font-size:63.961814pt;}
.fsd_c00408{font-size:66.115417pt;}
.fsb_c00408{font-size:68.413814pt;}
.fs3_c00408{font-size:79.952268pt;}
.fs2_c00408{font-size:85.269094pt;}
.y0_c00408{bottom:0.000000pt;}
.y1_c00408{bottom:0.000007pt;}
.y50_c00408{bottom:26.805533pt;}
.y6_c00408{bottom:163.237490pt;}
.y5_c00408{bottom:190.221381pt;}
.y4_c00408{bottom:217.205271pt;}
.y3_c00408{bottom:244.189162pt;}
.y2_c00408{bottom:271.173052pt;}
.y4d_c00408{bottom:301.356351pt;}
.y4e_c00408{bottom:357.390356pt;}
.y19_c00408{bottom:438.944560pt;}
.y41_c00408{bottom:438.957887pt;}
.y18_c00408{bottom:439.411208pt;}
.y42_c00408{bottom:439.428585pt;}
.y2b_c00408{bottom:439.733989pt;}
.y40_c00408{bottom:440.063632pt;}
.y17_c00408{bottom:440.358224pt;}
.y2c_c00408{bottom:440.474249pt;}
.y2a_c00408{bottom:440.492144pt;}
.y3f_c00408{bottom:441.175290pt;}
.y16_c00408{bottom:441.311665pt;}
.y29_c00408{bottom:441.411480pt;}
.y43_c00408{bottom:441.575343pt;}
.y1a_c00408{bottom:441.631897pt;}
.y2d_c00408{bottom:442.412085pt;}
.y3e_c00408{bottom:442.636491pt;}
.y15_c00408{bottom:442.778875pt;}
.y28_c00408{bottom:443.368235pt;}
.y2e_c00408{bottom:443.647574pt;}
.y3d_c00408{bottom:444.136272pt;}
.y14_c00408{bottom:444.283350pt;}
.y2f_c00408{bottom:445.156323pt;}
.y1b_c00408{bottom:445.431649pt;}
.y3c_c00408{bottom:445.793228pt;}
.y13_c00408{bottom:445.944627pt;}
.y44_c00408{bottom:446.106592pt;}
.y27_c00408{bottom:446.736624pt;}
.y30_c00408{bottom:447.325975pt;}
.y1c_c00408{bottom:447.669198pt;}
.y45_c00408{bottom:449.329795pt;}
.y31_c00408{bottom:449.332771pt;}
.y3b_c00408{bottom:449.927990pt;}
.y12_c00408{bottom:450.087675pt;}
.y26_c00408{bottom:451.594856pt;}
.y32_c00408{bottom:452.236735pt;}
.y1d_c00408{bottom:452.957150pt;}
.y46_c00408{bottom:454.334697pt;}
.y25_c00408{bottom:455.562742pt;}
.y3a_c00408{bottom:455.614749pt;}
.y11_c00408{bottom:455.781928pt;}
.y1e_c00408{bottom:457.175713pt;}
.y33_c00408{bottom:459.696536pt;}
.y47_c00408{bottom:460.249062pt;}
.y24_c00408{bottom:461.270273pt;}
.y39_c00408{bottom:462.105976pt;}
.y10_c00408{bottom:462.186152pt;}
.yf_c00408{bottom:465.258807pt;}
.y23_c00408{bottom:465.329988pt;}
.y34_c00408{bottom:466.846944pt;}
.y1f_c00408{bottom:467.644044pt;}
.y38_c00408{bottom:468.468115pt;}
.ye_c00408{bottom:470.598118pt;}
.y48_c00408{bottom:470.876600pt;}
.y22_c00408{bottom:472.234422pt;}
.y37_c00408{bottom:472.704883pt;}
.y4a_c00408{bottom:474.425294pt;}
.y4c_c00408{bottom:475.041614pt;}
.y21_c00408{bottom:475.693435pt;}
.yd_c00408{bottom:477.047199pt;}
.y36_c00408{bottom:478.188178pt;}
.y20_c00408{bottom:478.518126pt;}
.y49_c00408{bottom:478.841168pt;}
.y35_c00408{bottom:484.463008pt;}
.yc_c00408{bottom:485.517349pt;}
.y4b_c00408{bottom:513.663227pt;}
.y4f_c00408{bottom:568.435476pt;}
.y8_c00408{bottom:1002.298488pt;}
.yb_c00408{bottom:1004.193955pt;}
.ya_c00408{bottom:1020.184408pt;}
.y9_c00408{bottom:1022.237576pt;}
.y7_c00408{bottom:1040.585280pt;}
.h10_c00408{height:28.584382pt;}
.hd_c00408{height:31.970917pt;}
.hc_c00408{height:31.970918pt;}
.he_c00408{height:31.970920pt;}
.ha_c00408{height:32.238026pt;}
.h9_c00408{height:32.238028pt;}
.hb_c00408{height:32.238029pt;}
.h13_c00408{height:33.277647pt;}
.h4_c00408{height:34.742386pt;}
.h14_c00408{height:46.120377pt;}
.h15_c00408{height:48.971369pt;}
.h3_c00408{height:49.001996pt;}
.h8_c00408{height:49.619420pt;}
.h11_c00408{height:50.010498pt;}
.h12_c00408{height:50.651899pt;}
.hf_c00408{height:52.416248pt;}
.h5_c00408{height:59.558193pt;}
.h7_c00408{height:60.744985pt;}
.h6_c00408{height:79.398517pt;}
.h2_c00408{height:1159.999952pt;}
.h0_c00408{height:1159.999959pt;}
.h1_c00408{height:1160.000000pt;}
.w2_c00408{width:830.999965pt;}
.w0_c00408{width:831.000000pt;}
.w1_c00408{width:831.333333pt;}
.x0_c00408{left:0.000000pt;}
.x1_c00408{left:79.496944pt;}
.x4_c00408{left:96.055698pt;}
.x2_c00408{left:97.474332pt;}
.x2a_c00408{left:119.906064pt;}
.x29_c00408{left:121.392652pt;}
.x2b_c00408{left:124.389083pt;}
.x2c_c00408{left:128.698021pt;}
.x2d_c00408{left:133.464791pt;}
.x2e_c00408{left:135.910272pt;}
.x2f_c00408{left:138.584129pt;}
.x30_c00408{left:142.002076pt;}
.x3a_c00408{left:143.420132pt;}
.x31_c00408{left:145.070170pt;}
.x32_c00408{left:152.430191pt;}
.x33_c00408{left:159.776608pt;}
.x34_c00408{left:167.266795pt;}
.x35_c00408{left:174.717010pt;}
.x36_c00408{left:178.419115pt;}
.x37_c00408{left:182.468375pt;}
.x38_c00408{left:185.852506pt;}
.x39_c00408{left:188.150503pt;}
.x6_c00408{left:204.676373pt;}
.x5_c00408{left:206.574107pt;}
.x7_c00408{left:209.317987pt;}
.x8_c00408{left:213.616993pt;}
.x9_c00408{left:218.376513pt;}
.xa_c00408{left:220.819105pt;}
.xb_c00408{left:223.490334pt;}
.xc_c00408{left:226.905704pt;}
.x3c_c00408{left:227.972394pt;}
.xd_c00408{left:229.825509pt;}
.xe_c00408{left:233.767373pt;}
.xf_c00408{left:241.423300pt;}
.x10_c00408{left:251.942027pt;}
.x11_c00408{left:258.549026pt;}
.x12_c00408{left:261.564741pt;}
.x3_c00408{left:262.612255pt;}
.x13_c00408{left:266.308178pt;}
.x14_c00408{left:269.319244pt;}
.x15_c00408{left:272.883167pt;}
.x16_c00408{left:289.225349pt;}
.x17_c00408{left:290.306761pt;}
.x18_c00408{left:291.569114pt;}
.x19_c00408{left:294.587062pt;}
.x1a_c00408{left:297.451603pt;}
.x1b_c00408{left:302.677178pt;}
.x1c_c00408{left:308.173457pt;}
.x1d_c00408{left:313.230862pt;}
.x1e_c00408{left:316.260173pt;}
.x1f_c00408{left:323.284548pt;}
.x20_c00408{left:330.381558pt;}
.x21_c00408{left:336.386614pt;}
.x22_c00408{left:339.069625pt;}
.x23_c00408{left:341.738474pt;}
.x24_c00408{left:344.757080pt;}
.x25_c00408{left:347.081977pt;}
.x26_c00408{left:350.026488pt;}
.x27_c00408{left:354.624063pt;}
.x28_c00408{left:357.115628pt;}
.x3f_c00408{left:401.765180pt;}
.x3e_c00408{left:601.310535pt;}
.x3d_c00408{left:619.470933pt;}
.x3b_c00408{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.006348;font-style:normal;font-weight:normal;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_e3deaef25d5f5ec5508b6c85.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.171387;font-style:normal;font-weight:normal;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_bc56205161961d66e8845e22.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.000000;font-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_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);}
.v0_c00409{vertical-align:0.000000px;}
.ls0_c00409{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00409{word-spacing:-18.691966px;}
.ws1_c00409{word-spacing:-18.680283px;}
.ws2_c00409{word-spacing:0.000000px;}
._2_c00409{width:1.535864px;}
._3_c00409{width:3.523617px;}
._d_c00409{width:4.947002px;}
._a_c00409{width:6.481087px;}
._1_c00409{width:10.142356px;}
._6_c00409{width:11.495889px;}
._0_c00409{width:12.583439px;}
._4_c00409{width:14.651411px;}
._7_c00409{width:20.694676px;}
._5_c00409{width:22.199043px;}
._c_c00409{width:23.418205px;}
._b_c00409{width:27.118128px;}
._8_c00409{width:28.414827px;}
._9_c00409{width:33.497915px;}
.fc1_c00409{color:rgb(0,0,0);}
.fc0_c00409{color:rgb(194,158,103);}
.fs3_c00409{font-size:71.912067px;}
.fs1_c00409{font-size:71.957041px;}
.fs2_c00409{font-size:74.340621px;}
.fs0_c00409{font-size:74.379845px;}
.y0_c00409{bottom:0.000000px;}
.y1_c00409{bottom:0.000008px;}
.y1c_c00409{bottom:30.156225px;}
.yd_c00409{bottom:275.629747px;}
.yc_c00409{bottom:305.986624px;}
.yb_c00409{bottom:336.343500px;}
.ya_c00409{bottom:366.700377px;}
.y9_c00409{bottom:397.057254px;}
.y8_c00409{bottom:427.414131px;}
.y1b_c00409{bottom:463.781810px;}
.y1a_c00409{bottom:537.255518px;}
.y19_c00409{bottom:567.612395px;}
.y18_c00409{bottom:597.969272px;}
.y17_c00409{bottom:634.333819px;}
.y16_c00409{bottom:715.770177px;}
.y15_c00409{bottom:746.127054px;}
.y14_c00409{bottom:776.483930px;}
.y13_c00409{bottom:806.840807px;}
.y12_c00409{bottom:837.197684px;}
.y11_c00409{bottom:867.554561px;}
.y10_c00409{bottom:897.911437px;}
.yf_c00409{bottom:928.268314px;}
.ye_c00409{bottom:958.625191px;}
.y7_c00409{bottom:995.523989px;}
.y6_c00409{bottom:1072.927752px;}
.y5_c00409{bottom:1103.284628px;}
.y4_c00409{bottom:1133.641505px;}
.y3_c00409{bottom:1163.998382px;}
.y2_c00409{bottom:1204.539346px;}
.h5_c00409{height:56.953337px;}
.h3_c00409{height:56.983387px;}
.h6_c00409{height:66.961090px;}
.h4_c00409{height:67.002968px;}
.h2_c00409{height:1304.999946px;}
.h0_c00409{height:1304.999953px;}
.h1_c00409{height:1305.000000px;}
.w2_c00409{width:934.874961px;}
.w0_c00409{width:934.875000px;}
.w1_c00409{width:935.250000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:87.850202px;}
.x2_c00409{left:451.985828px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ws0_c00409{word-spacing:-16.615081pt;}
.ws1_c00409{word-spacing:-16.604696pt;}
.ws2_c00409{word-spacing:0.000000pt;}
._2_c00409{width:1.365213pt;}
._3_c00409{width:3.132104pt;}
._d_c00409{width:4.397335pt;}
._a_c00409{width:5.760966pt;}
._1_c00409{width:9.015428pt;}
._6_c00409{width:10.218568pt;}
._0_c00409{width:11.185279pt;}
._4_c00409{width:13.023476pt;}
._7_c00409{width:18.395268pt;}
._5_c00409{width:19.732483pt;}
._c_c00409{width:20.816182pt;}
._b_c00409{width:24.105002pt;}
._8_c00409{width:25.257624pt;}
._9_c00409{width:29.775925pt;}
.fs3_c00409{font-size:63.921837pt;}
.fs1_c00409{font-size:63.961814pt;}
.fs2_c00409{font-size:66.080552pt;}
.fs0_c00409{font-size:66.115417pt;}
.y0_c00409{bottom:0.000000pt;}
.y1_c00409{bottom:0.000007pt;}
.y1c_c00409{bottom:26.805533pt;}
.yd_c00409{bottom:245.004219pt;}
.yc_c00409{bottom:271.988110pt;}
.yb_c00409{bottom:298.972000pt;}
.ya_c00409{bottom:325.955891pt;}
.y9_c00409{bottom:352.939781pt;}
.y8_c00409{bottom:379.923672pt;}
.y1b_c00409{bottom:412.250498pt;}
.y1a_c00409{bottom:477.560460pt;}
.y19_c00409{bottom:504.544351pt;}
.y18_c00409{bottom:531.528241pt;}
.y17_c00409{bottom:563.852283pt;}
.y16_c00409{bottom:636.240157pt;}
.y15_c00409{bottom:663.224048pt;}
.y14_c00409{bottom:690.207938pt;}
.y13_c00409{bottom:717.191829pt;}
.y12_c00409{bottom:744.175719pt;}
.y11_c00409{bottom:771.159609pt;}
.y10_c00409{bottom:798.143500pt;}
.yf_c00409{bottom:825.127390pt;}
.ye_c00409{bottom:852.111281pt;}
.y7_c00409{bottom:884.910212pt;}
.y6_c00409{bottom:953.713557pt;}
.y5_c00409{bottom:980.697448pt;}
.y4_c00409{bottom:1007.681338pt;}
.y3_c00409{bottom:1034.665228pt;}
.y2_c00409{bottom:1070.701641pt;}
.h5_c00409{height:50.625189pt;}
.h3_c00409{height:50.651899pt;}
.h6_c00409{height:59.520969pt;}
.h4_c00409{height:59.558193pt;}
.h2_c00409{height:1159.999952pt;}
.h0_c00409{height:1159.999959pt;}
.h1_c00409{height:1160.000000pt;}
.w2_c00409{width:830.999965pt;}
.w0_c00409{width:831.000000pt;}
.w1_c00409{width:831.333333pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:78.089069pt;}
.x2_c00409{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccdabf86678688c9fc424383.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.171387;font-style:normal;font-weight:normal;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_36d1ead68ad304d03d54672b.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:0.723633;font-style:normal;font-weight:normal;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_1bb498fc17264e2873321b78.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.171387;font-style:normal;font-weight:normal;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_63c8af5a1218b98da7766dd2.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:0.769531;font-style:normal;font-weight: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_fe9e8c692b65bbc953ab3561.woff2')format("woff");}.ff5_c00410{font-family:ff5_c00410;line-height:1.000000;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff6_c00410{font-family:ff6_c00410;line-height:0.769531;font-style:normal;font-weight: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_c00410;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff7_c00410{font-family:ff7_c00410;line-height:0.743000;font-style:normal;font-weight: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_c00410;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00410{font-family:ff8_c00410;line-height:1.006348;font-style:normal;font-weight: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_c00410;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00410{font-family:ff9_c00410;line-height:0.734863;font-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_c00410{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00410{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00410{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00410{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00410{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00410{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00410{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00410{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00410{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00410{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00410{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00410{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00410{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00410{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00410{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00410{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00410{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00410{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00410{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00410{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00410{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00410{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00410{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00410{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00410{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00410{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00410{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00410{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00410{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00410{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00410{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00410{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00410{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00410{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00410{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00410{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00410{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00410{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00410{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00410{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00410{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00410{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00410{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00410{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00410{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00410{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00410{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00410{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00410{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00410{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00410{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00410{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00410{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00410{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00410{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00410{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00410{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00410{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00410{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00410{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00410{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00410{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00410{vertical-align:0.000000px;}
.v1_c00410{vertical-align:26.810849px;}
.ls0_c00410{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00410{word-spacing:-18.680283px;}
.ws0_c00410{word-spacing:-0.071957px;}
.ws3_c00410{word-spacing:-0.055722px;}
.ws5_c00410{word-spacing:0.000000px;}
.ws2_c00410{word-spacing:281.470806px;}
.ws1_c00410{word-spacing:1114.343689px;}
._2_c00410{width:4.858001px;}
._0_c00410{width:7.199506px;}
._4_c00410{width:8.454491px;}
._1_c00410{width:9.513493px;}
._3_c00410{width:13.552814px;}
.fc3_c00410{color:rgb(9,71,81);}
.fc2_c00410{color:rgb(194,158,103);}
.fc1_c00410{color:rgb(255,255,255);}
.fc0_c00410{color:rgb(0,0,0);}
.fsc_c00410{font-size:41.974772px;}
.fs1_c00410{font-size:41.975069px;}
.fs6_c00410{font-size:47.339969px;}
.fs9_c00410{font-size:47.339970px;}
.fs5_c00410{font-size:47.339972px;}
.fs8_c00410{font-size:47.339973px;}
.fs7_c00410{font-size:47.339974px;}
.fsa_c00410{font-size:47.339975px;}
.fse_c00410{font-size:51.630774px;}
.fsf_c00410{font-size:55.721735px;}
.fs4_c00410{font-size:59.949210px;}
.fs10_c00410{font-size:71.912067px;}
.fs0_c00410{font-size:71.957041px;}
.fsd_c00410{font-size:74.379845px;}
.fsb_c00410{font-size:76.965540px;}
.fs3_c00410{font-size:89.946302px;}
.fs2_c00410{font-size:95.927731px;}
.y0_c00410{bottom:0.000000px;}
.y1_c00410{bottom:0.000008px;}
.y52_c00410{bottom:30.156225px;}
.y7_c00410{bottom:134.944021px;}
.y6_c00410{bottom:165.300897px;}
.y5_c00410{bottom:195.657774px;}
.y4_c00410{bottom:226.014651px;}
.y3_c00410{bottom:256.371528px;}
.y2_c00410{bottom:286.728405px;}
.y4f_c00410{bottom:323.285327px;}
.y50_c00410{bottom:402.064151px;}
.y1b_c00410{bottom:493.812629px;}
.y43_c00410{bottom:493.827623px;}
.y1a_c00410{bottom:494.337609px;}
.y44_c00410{bottom:494.357158px;}
.y2d_c00410{bottom:494.700737px;}
.y42_c00410{bottom:495.071586px;}
.y19_c00410{bottom:495.403002px;}
.y2e_c00410{bottom:495.533530px;}
.y2c_c00410{bottom:495.553663px;}
.y41_c00410{bottom:496.322201px;}
.y18_c00410{bottom:496.475623px;}
.y2b_c00410{bottom:496.587915px;}
.y45_c00410{bottom:496.772260px;}
.y1c_c00410{bottom:496.835884px;}
.y2f_c00410{bottom:497.713596px;}
.y40_c00410{bottom:497.966053px;}
.y17_c00410{bottom:498.126234px;}
.y2a_c00410{bottom:498.789265px;}
.y30_c00410{bottom:499.103521px;}
.y3f_c00410{bottom:499.653306px;}
.y16_c00410{bottom:499.818769px;}
.y31_c00410{bottom:500.800864px;}
.y1d_c00410{bottom:501.110605px;}
.y3e_c00410{bottom:501.517382px;}
.y15_c00410{bottom:501.687706px;}
.y46_c00410{bottom:501.869915px;}
.y29_c00410{bottom:502.578702px;}
.y32_c00410{bottom:503.241722px;}
.y1e_c00410{bottom:503.627848px;}
.y47_c00410{bottom:505.496019px;}
.y33_c00410{bottom:505.499367px;}
.y3d_c00410{bottom:506.168989px;}
.y14_c00410{bottom:506.348634px;}
.y28_c00410{bottom:508.044213px;}
.y34_c00410{bottom:508.766327px;}
.y1f_c00410{bottom:509.576794px;}
.y48_c00410{bottom:511.126534px;}
.y27_c00410{bottom:512.508085px;}
.y3c_c00410{bottom:512.566592px;}
.y13_c00410{bottom:512.754669px;}
.y20_c00410{bottom:514.322677px;}
.y35_c00410{bottom:517.158603px;}
.y49_c00410{bottom:517.780195px;}
.y26_c00410{bottom:518.929057px;}
.y3b_c00410{bottom:519.869222px;}
.y12_c00410{bottom:519.959421px;}
.y11_c00410{bottom:523.416158px;}
.y25_c00410{bottom:523.496236px;}
.y36_c00410{bottom:525.202812px;}
.y21_c00410{bottom:526.099549px;}
.y3a_c00410{bottom:527.026630px;}
.y10_c00410{bottom:529.422883px;}
.y4a_c00410{bottom:529.736175px;}
.y24_c00410{bottom:531.263725px;}
.y39_c00410{bottom:531.792993px;}
.y4c_c00410{bottom:533.728456px;}
.y4e_c00410{bottom:534.421816px;}
.y23_c00410{bottom:535.155114px;}
.yf_c00410{bottom:536.678099px;}
.y38_c00410{bottom:537.961701px;}
.y22_c00410{bottom:538.332892px;}
.y4b_c00410{bottom:538.696314px;}
.y37_c00410{bottom:545.020884px;}
.ye_c00410{bottom:546.207017px;}
.y4d_c00410{bottom:577.871130px;}
.yb_c00410{bottom:597.559761px;}
.y51_c00410{bottom:639.489911px;}
.y9_c00410{bottom:1127.585799px;}
.yd_c00410{bottom:1129.718199px;}
.yc_c00410{bottom:1147.707459px;}
.ya_c00410{bottom:1150.017273px;}
.y8_c00410{bottom:1170.658440px;}
.hc_c00410{height:35.967282px;}
.hb_c00410{height:35.967283px;}
.hd_c00410{height:35.967285px;}
.h12_c00410{height:37.437353px;}
.hf_c00410{height:39.084907px;}
.h4_c00410{height:39.085184px;}
.h9_c00410{height:44.080723px;}
.h8_c00410{height:44.080726px;}
.ha_c00410{height:44.080728px;}
.h13_c00410{height:51.885424px;}
.h7_c00410{height:55.821847px;}
.h10_c00410{height:56.261810px;}
.h11_c00410{height:56.983387px;}
.he_c00410{height:65.895756px;}
.h14_c00410{height:66.961090px;}
.h3_c00410{height:67.002968px;}
.h6_c00410{height:68.338108px;}
.h5_c00410{height:89.323331px;}
.h2_c00410{height:1304.999946px;}
.h0_c00410{height:1304.999953px;}
.h1_c00410{height:1305.000000px;}
.w2_c00410{width:934.874961px;}
.w0_c00410{width:934.875000px;}
.w1_c00410{width:935.250000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:89.434062px;}
.x5_c00410{left:108.062661px;}
.x2_c00410{left:109.658623px;}
.x2b_c00410{left:134.894322px;}
.x2a_c00410{left:136.566734px;}
.x2c_c00410{left:139.937719px;}
.x2d_c00410{left:144.785273px;}
.x2e_c00410{left:150.147890px;}
.x2f_c00410{left:152.899057px;}
.x30_c00410{left:155.907145px;}
.x31_c00410{left:159.752336px;}
.x3b_c00410{left:161.347648px;}
.x32_c00410{left:163.203941px;}
.x33_c00410{left:171.483965px;}
.x34_c00410{left:179.748684px;}
.x35_c00410{left:188.175145px;}
.x36_c00410{left:196.556636px;}
.x37_c00410{left:200.721504px;}
.x38_c00410{left:205.276922px;}
.x39_c00410{left:209.084069px;}
.x3a_c00410{left:211.669316px;}
.x7_c00410{left:230.260919px;}
.x6_c00410{left:232.395871px;}
.x8_c00410{left:235.482735px;}
.x9_c00410{left:240.319117px;}
.xa_c00410{left:245.673577px;}
.xb_c00410{left:248.421493px;}
.xc_c00410{left:251.426626px;}
.xd_c00410{left:255.268917px;}
.x3d_c00410{left:256.468943px;}
.xe_c00410{left:258.553698px;}
.xf_c00410{left:262.988294px;}
.x10_c00410{left:271.601212px;}
.x11_c00410{left:283.434780px;}
.x12_c00410{left:290.867654px;}
.x13_c00410{left:294.260334px;}
.x3_c00410{left:295.438786px;}
.x14_c00410{left:299.596701px;}
.x15_c00410{left:302.984150px;}
.x16_c00410{left:306.993562px;}
.x17_c00410{left:325.378518px;}
.x18_c00410{left:326.595106px;}
.x19_c00410{left:328.015253px;}
.x1a_c00410{left:331.410444px;}
.x1b_c00410{left:334.633053px;}
.x1c_c00410{left:340.511825px;}
.x1d_c00410{left:346.695139px;}
.x1e_c00410{left:352.384720px;}
.x1f_c00410{left:355.792694px;}
.x20_c00410{left:363.695116px;}
.x21_c00410{left:371.679253px;}
.x22_c00410{left:378.434940px;}
.x23_c00410{left:381.453328px;}
.x24_c00410{left:384.455783px;}
.x25_c00410{left:387.851715px;}
.x26_c00410{left:390.467224px;}
.x27_c00410{left:393.779799px;}
.x28_c00410{left:398.952070px;}
.x29_c00410{left:401.755082px;}
.x40_c00410{left:451.985828px;}
.x4_c00410{left:465.097640px;}
.x3f_c00410{left:676.474352px;}
.x3e_c00410{left:696.904800px;}
.x3c_c00410{left:733.103068px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.v1_c00410{vertical-align:23.831865pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ws4_c00410{word-spacing:-16.604696pt;}
.ws0_c00410{word-spacing:-0.063962pt;}
.ws3_c00410{word-spacing:-0.049530pt;}
.ws5_c00410{word-spacing:0.000000pt;}
.ws2_c00410{word-spacing:250.196272pt;}
.ws1_c00410{word-spacing:990.527723pt;}
._2_c00410{width:4.318223pt;}
._0_c00410{width:6.399561pt;}
._4_c00410{width:7.515103pt;}
._1_c00410{width:8.456439pt;}
._3_c00410{width:12.046946pt;}
.fsc_c00410{font-size:37.310908pt;}
.fs1_c00410{font-size:37.311173pt;}
.fs6_c00410{font-size:42.079973pt;}
.fs9_c00410{font-size:42.079974pt;}
.fs5_c00410{font-size:42.079975pt;}
.fs8_c00410{font-size:42.079976pt;}
.fs7_c00410{font-size:42.079977pt;}
.fsa_c00410{font-size:42.079978pt;}
.fse_c00410{font-size:45.894021pt;}
.fsf_c00410{font-size:49.530431pt;}
.fs4_c00410{font-size:53.288186pt;}
.fs10_c00410{font-size:63.921837pt;}
.fs0_c00410{font-size:63.961814pt;}
.fsd_c00410{font-size:66.115417pt;}
.fsb_c00410{font-size:68.413814pt;}
.fs3_c00410{font-size:79.952268pt;}
.fs2_c00410{font-size:85.269094pt;}
.y0_c00410{bottom:0.000000pt;}
.y1_c00410{bottom:0.000007pt;}
.y52_c00410{bottom:26.805533pt;}
.y7_c00410{bottom:119.950241pt;}
.y6_c00410{bottom:146.934131pt;}
.y5_c00410{bottom:173.918022pt;}
.y4_c00410{bottom:200.901912pt;}
.y3_c00410{bottom:227.885802pt;}
.y2_c00410{bottom:254.869693pt;}
.y4f_c00410{bottom:287.364736pt;}
.y50_c00410{bottom:357.390356pt;}
.y1b_c00410{bottom:438.944560pt;}
.y43_c00410{bottom:438.957887pt;}
.y1a_c00410{bottom:439.411208pt;}
.y44_c00410{bottom:439.428585pt;}
.y2d_c00410{bottom:439.733989pt;}
.y42_c00410{bottom:440.063632pt;}
.y19_c00410{bottom:440.358224pt;}
.y2e_c00410{bottom:440.474249pt;}
.y2c_c00410{bottom:440.492144pt;}
.y41_c00410{bottom:441.175290pt;}
.y18_c00410{bottom:441.311665pt;}
.y2b_c00410{bottom:441.411480pt;}
.y45_c00410{bottom:441.575343pt;}
.y1c_c00410{bottom:441.631897pt;}
.y2f_c00410{bottom:442.412085pt;}
.y40_c00410{bottom:442.636491pt;}
.y17_c00410{bottom:442.778875pt;}
.y2a_c00410{bottom:443.368235pt;}
.y30_c00410{bottom:443.647574pt;}
.y3f_c00410{bottom:444.136272pt;}
.y16_c00410{bottom:444.283350pt;}
.y31_c00410{bottom:445.156323pt;}
.y1d_c00410{bottom:445.431649pt;}
.y3e_c00410{bottom:445.793228pt;}
.y15_c00410{bottom:445.944627pt;}
.y46_c00410{bottom:446.106592pt;}
.y29_c00410{bottom:446.736624pt;}
.y32_c00410{bottom:447.325975pt;}
.y1e_c00410{bottom:447.669198pt;}
.y47_c00410{bottom:449.329795pt;}
.y33_c00410{bottom:449.332771pt;}
.y3d_c00410{bottom:449.927990pt;}
.y14_c00410{bottom:450.087675pt;}
.y28_c00410{bottom:451.594856pt;}
.y34_c00410{bottom:452.236735pt;}
.y1f_c00410{bottom:452.957150pt;}
.y48_c00410{bottom:454.334697pt;}
.y27_c00410{bottom:455.562742pt;}
.y3c_c00410{bottom:455.614749pt;}
.y13_c00410{bottom:455.781928pt;}
.y20_c00410{bottom:457.175713pt;}
.y35_c00410{bottom:459.696536pt;}
.y49_c00410{bottom:460.249062pt;}
.y26_c00410{bottom:461.270273pt;}
.y3b_c00410{bottom:462.105976pt;}
.y12_c00410{bottom:462.186152pt;}
.y11_c00410{bottom:465.258807pt;}
.y25_c00410{bottom:465.329988pt;}
.y36_c00410{bottom:466.846944pt;}
.y21_c00410{bottom:467.644044pt;}
.y3a_c00410{bottom:468.468115pt;}
.y10_c00410{bottom:470.598118pt;}
.y4a_c00410{bottom:470.876600pt;}
.y24_c00410{bottom:472.234422pt;}
.y39_c00410{bottom:472.704883pt;}
.y4c_c00410{bottom:474.425294pt;}
.y4e_c00410{bottom:475.041614pt;}
.y23_c00410{bottom:475.693435pt;}
.yf_c00410{bottom:477.047199pt;}
.y38_c00410{bottom:478.188178pt;}
.y22_c00410{bottom:478.518126pt;}
.y4b_c00410{bottom:478.841168pt;}
.y37_c00410{bottom:484.463008pt;}
.ye_c00410{bottom:485.517349pt;}
.y4d_c00410{bottom:513.663227pt;}
.yb_c00410{bottom:531.164232pt;}
.y51_c00410{bottom:568.435476pt;}
.y9_c00410{bottom:1002.298488pt;}
.yd_c00410{bottom:1004.193955pt;}
.yc_c00410{bottom:1020.184408pt;}
.ya_c00410{bottom:1022.237576pt;}
.y8_c00410{bottom:1040.585280pt;}
.hc_c00410{height:31.970917pt;}
.hb_c00410{height:31.970918pt;}
.hd_c00410{height:31.970920pt;}
.h12_c00410{height:33.277647pt;}
.hf_c00410{height:34.742140pt;}
.h4_c00410{height:34.742386pt;}
.h9_c00410{height:39.182865pt;}
.h8_c00410{height:39.182867pt;}
.ha_c00410{height:39.182869pt;}
.h13_c00410{height:46.120377pt;}
.h7_c00410{height:49.619420pt;}
.h10_c00410{height:50.010498pt;}
.h11_c00410{height:50.651899pt;}
.he_c00410{height:58.574005pt;}
.h14_c00410{height:59.520969pt;}
.h3_c00410{height:59.558193pt;}
.h6_c00410{height:60.744985pt;}
.h5_c00410{height:79.398517pt;}
.h2_c00410{height:1159.999952pt;}
.h0_c00410{height:1159.999959pt;}
.h1_c00410{height:1160.000000pt;}
.w2_c00410{width:830.999965pt;}
.w0_c00410{width:831.000000pt;}
.w1_c00410{width:831.333333pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:79.496944pt;}
.x5_c00410{left:96.055698pt;}
.x2_c00410{left:97.474332pt;}
.x2b_c00410{left:119.906064pt;}
.x2a_c00410{left:121.392652pt;}
.x2c_c00410{left:124.389083pt;}
.x2d_c00410{left:128.698021pt;}
.x2e_c00410{left:133.464791pt;}
.x2f_c00410{left:135.910272pt;}
.x30_c00410{left:138.584129pt;}
.x31_c00410{left:142.002076pt;}
.x3b_c00410{left:143.420132pt;}
.x32_c00410{left:145.070170pt;}
.x33_c00410{left:152.430191pt;}
.x34_c00410{left:159.776608pt;}
.x35_c00410{left:167.266795pt;}
.x36_c00410{left:174.717010pt;}
.x37_c00410{left:178.419115pt;}
.x38_c00410{left:182.468375pt;}
.x39_c00410{left:185.852506pt;}
.x3a_c00410{left:188.150503pt;}
.x7_c00410{left:204.676373pt;}
.x6_c00410{left:206.574107pt;}
.x8_c00410{left:209.317987pt;}
.x9_c00410{left:213.616993pt;}
.xa_c00410{left:218.376513pt;}
.xb_c00410{left:220.819105pt;}
.xc_c00410{left:223.490334pt;}
.xd_c00410{left:226.905704pt;}
.x3d_c00410{left:227.972394pt;}
.xe_c00410{left:229.825509pt;}
.xf_c00410{left:233.767373pt;}
.x10_c00410{left:241.423300pt;}
.x11_c00410{left:251.942027pt;}
.x12_c00410{left:258.549026pt;}
.x13_c00410{left:261.564741pt;}
.x3_c00410{left:262.612255pt;}
.x14_c00410{left:266.308178pt;}
.x15_c00410{left:269.319244pt;}
.x16_c00410{left:272.883167pt;}
.x17_c00410{left:289.225349pt;}
.x18_c00410{left:290.306761pt;}
.x19_c00410{left:291.569114pt;}
.x1a_c00410{left:294.587062pt;}
.x1b_c00410{left:297.451603pt;}
.x1c_c00410{left:302.677178pt;}
.x1d_c00410{left:308.173457pt;}
.x1e_c00410{left:313.230862pt;}
.x1f_c00410{left:316.260173pt;}
.x20_c00410{left:323.284548pt;}
.x21_c00410{left:330.381558pt;}
.x22_c00410{left:336.386614pt;}
.x23_c00410{left:339.069625pt;}
.x24_c00410{left:341.738474pt;}
.x25_c00410{left:344.757080pt;}
.x26_c00410{left:347.081977pt;}
.x27_c00410{left:350.026488pt;}
.x28_c00410{left:354.624063pt;}
.x29_c00410{left:357.115628pt;}
.x40_c00410{left:401.765180pt;}
.x4_c00410{left:413.420124pt;}
.x3f_c00410{left:601.310535pt;}
.x3e_c00410{left:619.470933pt;}
.x3c_c00410{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.006348;font-style:normal;font-weight:normal;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_ffb57baf7bd96c9df08a6211.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.171387;font-style:normal;font-weight:normal;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_ae2ce729159e082a7c69f103.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:0.769531;font-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_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);}
.v0_c00411{vertical-align:0.000000px;}
.ls0_c00411{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00411{word-spacing:0.000000px;}
._6_c00411{width:1.037793px;}
._5_c00411{width:2.529739px;}
._0_c00411{width:7.946954px;}
._1_c00411{width:8.975758px;}
._2_c00411{width:10.294638px;}
._4_c00411{width:12.224330px;}
._3_c00411{width:13.392372px;}
._7_c00411{width:14.651411px;}
._8_c00411{width:22.199043px;}
.fc1_c00411{color:rgb(0,0,0);}
.fc0_c00411{color:rgb(194,158,103);}
.fs3_c00411{font-size:71.912067px;}
.fs1_c00411{font-size:71.957041px;}
.fs2_c00411{font-size:74.340621px;}
.fs0_c00411{font-size:74.379845px;}
.y0_c00411{bottom:0.000000px;}
.y1_c00411{bottom:0.000008px;}
.y14_c00411{bottom:30.156225px;}
.y10_c00411{bottom:507.358461px;}
.yf_c00411{bottom:537.715338px;}
.ye_c00411{bottom:568.072215px;}
.yd_c00411{bottom:598.429091px;}
.yc_c00411{bottom:628.785968px;}
.yb_c00411{bottom:659.142845px;}
.y13_c00411{bottom:693.261838px;}
.y12_c00411{bottom:783.753024px;}
.y11_c00411{bottom:820.176158px;}
.y9_c00411{bottom:898.025953px;}
.y8_c00411{bottom:928.382830px;}
.y7_c00411{bottom:958.739707px;}
.y6_c00411{bottom:989.096583px;}
.ya_c00411{bottom:1023.215602px;}
.y5_c00411{bottom:1109.899815px;}
.y4_c00411{bottom:1140.256692px;}
.y3_c00411{bottom:1170.613569px;}
.y2_c00411{bottom:1204.539346px;}
.h5_c00411{height:56.953337px;}
.h3_c00411{height:56.983387px;}
.h6_c00411{height:66.961090px;}
.h4_c00411{height:67.002968px;}
.h2_c00411{height:1304.999946px;}
.h0_c00411{height:1304.999953px;}
.h1_c00411{height:1305.000000px;}
.w2_c00411{width:934.874961px;}
.w0_c00411{width:934.875000px;}
.w1_c00411{width:935.250000px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:87.850202px;}
.x2_c00411{left:89.434062px;}
.x3_c00411{left:451.985828px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls0_c00411{letter-spacing:0.000000pt;}
.ws0_c00411{word-spacing:-16.604696pt;}
.ws1_c00411{word-spacing:0.000000pt;}
._6_c00411{width:0.922483pt;}
._5_c00411{width:2.248657pt;}
._0_c00411{width:7.063959pt;}
._1_c00411{width:7.978451pt;}
._2_c00411{width:9.150789pt;}
._4_c00411{width:10.866071pt;}
._3_c00411{width:11.904330pt;}
._7_c00411{width:13.023476pt;}
._8_c00411{width:19.732483pt;}
.fs3_c00411{font-size:63.921837pt;}
.fs1_c00411{font-size:63.961814pt;}
.fs2_c00411{font-size:66.080552pt;}
.fs0_c00411{font-size:66.115417pt;}
.y0_c00411{bottom:0.000000pt;}
.y1_c00411{bottom:0.000007pt;}
.y14_c00411{bottom:26.805533pt;}
.y10_c00411{bottom:450.985299pt;}
.yf_c00411{bottom:477.969189pt;}
.ye_c00411{bottom:504.953080pt;}
.yd_c00411{bottom:531.936970pt;}
.yc_c00411{bottom:558.920861pt;}
.yb_c00411{bottom:585.904751pt;}
.y13_c00411{bottom:616.232745pt;}
.y12_c00411{bottom:696.669355pt;}
.y11_c00411{bottom:729.045473pt;}
.y9_c00411{bottom:798.245292pt;}
.y8_c00411{bottom:825.229182pt;}
.y7_c00411{bottom:852.213072pt;}
.y6_c00411{bottom:879.196963pt;}
.ya_c00411{bottom:909.524979pt;}
.y5_c00411{bottom:986.577614pt;}
.y4_c00411{bottom:1013.561504pt;}
.y3_c00411{bottom:1040.545395pt;}
.y2_c00411{bottom:1070.701641pt;}
.h5_c00411{height:50.625189pt;}
.h3_c00411{height:50.651899pt;}
.h6_c00411{height:59.520969pt;}
.h4_c00411{height:59.558193pt;}
.h2_c00411{height:1159.999952pt;}
.h0_c00411{height:1159.999959pt;}
.h1_c00411{height:1160.000000pt;}
.w2_c00411{width:830.999965pt;}
.w0_c00411{width:831.000000pt;}
.w1_c00411{width:831.333333pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:78.089069pt;}
.x2_c00411{left:79.496944pt;}
.x3_c00411{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df227a045780b83d6681949d.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.171387;font-style:normal;font-weight:normal;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_1e35ec1c12d8745c69923e21.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.171387;font-style:normal;font-weight:normal;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_c11d083cc588761fdd66646f.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.000000;font-style:normal;font-weight:normal;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_fe9e8c692b65bbc953ab3561.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.000000;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:0.769531;font-style:normal;font-weight: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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff6_c00412{font-family:ff6_c00412;line-height:0.743000;font-style:normal;font-weight: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_c00412;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00412{font-family:ff7_c00412;line-height:1.006348;font-style:normal;font-weight: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_c00412;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00412{font-family:ff8_c00412;line-height:0.734863;font-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_c00412{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00412{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00412{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00412{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00412{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00412{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00412{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00412{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00412{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00412{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00412{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00412{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00412{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00412{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00412{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00412{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00412{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00412{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00412{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00412{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00412{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00412{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00412{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00412{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00412{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00412{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00412{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00412{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00412{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00412{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00412{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00412{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00412{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00412{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00412{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00412{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00412{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00412{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00412{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00412{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00412{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00412{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00412{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00412{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00412{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00412{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00412{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00412{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00412{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00412{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00412{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00412{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00412{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00412{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00412{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00412{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00412{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00412{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00412{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00412{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00412{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00412{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00412{vertical-align:0.000000px;}
.v1_c00412{vertical-align:26.810849px;}
.ls0_c00412{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00412{word-spacing:-18.680283px;}
.ws2_c00412{word-spacing:-0.055722px;}
.ws4_c00412{word-spacing:0.000000px;}
.ws1_c00412{word-spacing:281.470806px;}
.ws0_c00412{word-spacing:1114.343689px;}
._0_c00412{width:5.457633px;}
._1_c00412{width:7.272999px;}
._4_c00412{width:8.508088px;}
._6_c00412{width:9.855445px;}
._2_c00412{width:14.305064px;}
._3_c00412{width:15.997743px;}
._5_c00412{width:28.778945px;}
.fc3_c00412{color:rgb(9,71,81);}
.fc2_c00412{color:rgb(194,158,103);}
.fc1_c00412{color:rgb(255,255,255);}
.fc0_c00412{color:rgb(0,0,0);}
.fsc_c00412{font-size:41.974772px;}
.fs1_c00412{font-size:41.975069px;}
.fs6_c00412{font-size:47.339969px;}
.fs9_c00412{font-size:47.339970px;}
.fs5_c00412{font-size:47.339972px;}
.fs8_c00412{font-size:47.339973px;}
.fs7_c00412{font-size:47.339974px;}
.fsa_c00412{font-size:47.339975px;}
.fse_c00412{font-size:51.630774px;}
.fsf_c00412{font-size:55.721735px;}
.fs4_c00412{font-size:59.949210px;}
.fs10_c00412{font-size:71.912067px;}
.fs0_c00412{font-size:71.957041px;}
.fsd_c00412{font-size:74.379845px;}
.fsb_c00412{font-size:76.965540px;}
.fs3_c00412{font-size:89.946302px;}
.fs2_c00412{font-size:95.927731px;}
.y0_c00412{bottom:0.000000px;}
.y1_c00412{bottom:0.000008px;}
.y55_c00412{bottom:30.156225px;}
.ya_c00412{bottom:64.244746px;}
.y9_c00412{bottom:94.601622px;}
.y8_c00412{bottom:124.958499px;}
.y7_c00412{bottom:155.315376px;}
.y6_c00412{bottom:185.672253px;}
.y5_c00412{bottom:216.029129px;}
.y4_c00412{bottom:246.386006px;}
.y3_c00412{bottom:276.742883px;}
.y2_c00412{bottom:307.099760px;}
.y52_c00412{bottom:339.025895px;}
.y53_c00412{bottom:402.064151px;}
.y1e_c00412{bottom:493.812629px;}
.y46_c00412{bottom:493.827623px;}
.y1d_c00412{bottom:494.337609px;}
.y47_c00412{bottom:494.357158px;}
.y30_c00412{bottom:494.700737px;}
.y45_c00412{bottom:495.071586px;}
.y1c_c00412{bottom:495.403002px;}
.y31_c00412{bottom:495.533530px;}
.y2f_c00412{bottom:495.553663px;}
.y44_c00412{bottom:496.322201px;}
.y1b_c00412{bottom:496.475623px;}
.y2e_c00412{bottom:496.587915px;}
.y48_c00412{bottom:496.772260px;}
.y1f_c00412{bottom:496.835884px;}
.y32_c00412{bottom:497.713596px;}
.y43_c00412{bottom:497.966053px;}
.y1a_c00412{bottom:498.126234px;}
.y2d_c00412{bottom:498.789265px;}
.y33_c00412{bottom:499.103521px;}
.y42_c00412{bottom:499.653306px;}
.y19_c00412{bottom:499.818769px;}
.y34_c00412{bottom:500.800864px;}
.y20_c00412{bottom:501.110605px;}
.y41_c00412{bottom:501.517382px;}
.y18_c00412{bottom:501.687706px;}
.y49_c00412{bottom:501.869915px;}
.y2c_c00412{bottom:502.578702px;}
.y35_c00412{bottom:503.241722px;}
.y21_c00412{bottom:503.627848px;}
.y4a_c00412{bottom:505.496019px;}
.y36_c00412{bottom:505.499367px;}
.y40_c00412{bottom:506.168989px;}
.y17_c00412{bottom:506.348634px;}
.y2b_c00412{bottom:508.044213px;}
.y37_c00412{bottom:508.766327px;}
.y22_c00412{bottom:509.576794px;}
.y4b_c00412{bottom:511.126534px;}
.y2a_c00412{bottom:512.508085px;}
.y3f_c00412{bottom:512.566592px;}
.y16_c00412{bottom:512.754669px;}
.y23_c00412{bottom:514.322677px;}
.y38_c00412{bottom:517.158603px;}
.y4c_c00412{bottom:517.780195px;}
.y29_c00412{bottom:518.929057px;}
.y3e_c00412{bottom:519.869222px;}
.y15_c00412{bottom:519.959421px;}
.y14_c00412{bottom:523.416158px;}
.y28_c00412{bottom:523.496236px;}
.y39_c00412{bottom:525.202812px;}
.y24_c00412{bottom:526.099549px;}
.y3d_c00412{bottom:527.026630px;}
.y13_c00412{bottom:529.422883px;}
.y4d_c00412{bottom:529.736175px;}
.y27_c00412{bottom:531.263725px;}
.y3c_c00412{bottom:531.792993px;}
.y4f_c00412{bottom:533.728456px;}
.y51_c00412{bottom:534.421816px;}
.y26_c00412{bottom:535.155114px;}
.y12_c00412{bottom:536.678099px;}
.y3b_c00412{bottom:537.961701px;}
.y25_c00412{bottom:538.332892px;}
.y4e_c00412{bottom:538.696314px;}
.y3a_c00412{bottom:545.020884px;}
.y11_c00412{bottom:546.207017px;}
.y50_c00412{bottom:577.871130px;}
.ye_c00412{bottom:597.559761px;}
.y54_c00412{bottom:639.489911px;}
.yc_c00412{bottom:1127.585799px;}
.y10_c00412{bottom:1129.718199px;}
.yf_c00412{bottom:1147.707459px;}
.yd_c00412{bottom:1150.017273px;}
.yb_c00412{bottom:1170.658440px;}
.hc_c00412{height:35.967282px;}
.hb_c00412{height:35.967283px;}
.hd_c00412{height:35.967285px;}
.h12_c00412{height:37.437353px;}
.hf_c00412{height:39.084907px;}
.h4_c00412{height:39.085184px;}
.h9_c00412{height:44.080723px;}
.h8_c00412{height:44.080726px;}
.ha_c00412{height:44.080728px;}
.h13_c00412{height:51.885424px;}
.h7_c00412{height:55.821847px;}
.h10_c00412{height:56.261810px;}
.h11_c00412{height:56.983387px;}
.he_c00412{height:65.895756px;}
.h14_c00412{height:66.961090px;}
.h3_c00412{height:67.002968px;}
.h6_c00412{height:68.338108px;}
.h5_c00412{height:89.323331px;}
.h2_c00412{height:1304.999946px;}
.h0_c00412{height:1304.999953px;}
.h1_c00412{height:1305.000000px;}
.w2_c00412{width:934.874961px;}
.w0_c00412{width:934.875000px;}
.w1_c00412{width:935.250000px;}
.x0_c00412{left:0.000000px;}
.x1_c00412{left:89.434062px;}
.x5_c00412{left:108.062661px;}
.x2_c00412{left:109.658623px;}
.x2b_c00412{left:134.894322px;}
.x2a_c00412{left:136.566734px;}
.x2c_c00412{left:139.937719px;}
.x2d_c00412{left:144.785273px;}
.x2e_c00412{left:150.147890px;}
.x2f_c00412{left:152.899057px;}
.x30_c00412{left:155.907145px;}
.x31_c00412{left:159.752336px;}
.x3b_c00412{left:161.347648px;}
.x32_c00412{left:163.203941px;}
.x33_c00412{left:171.483965px;}
.x34_c00412{left:179.748684px;}
.x35_c00412{left:188.175145px;}
.x36_c00412{left:196.556636px;}
.x37_c00412{left:200.721504px;}
.x38_c00412{left:205.276922px;}
.x39_c00412{left:209.084069px;}
.x3a_c00412{left:211.669316px;}
.x7_c00412{left:230.260919px;}
.x6_c00412{left:232.395871px;}
.x8_c00412{left:235.482735px;}
.x9_c00412{left:240.319117px;}
.xa_c00412{left:245.673577px;}
.xb_c00412{left:248.421493px;}
.xc_c00412{left:251.426626px;}
.xd_c00412{left:255.268917px;}
.x3d_c00412{left:256.468943px;}
.xe_c00412{left:258.553698px;}
.xf_c00412{left:262.988294px;}
.x10_c00412{left:271.601212px;}
.x11_c00412{left:283.434780px;}
.x12_c00412{left:290.867654px;}
.x13_c00412{left:294.260334px;}
.x3_c00412{left:295.438786px;}
.x14_c00412{left:299.596701px;}
.x15_c00412{left:302.984150px;}
.x16_c00412{left:306.993562px;}
.x17_c00412{left:325.378518px;}
.x18_c00412{left:326.595106px;}
.x19_c00412{left:328.015253px;}
.x1a_c00412{left:331.410444px;}
.x1b_c00412{left:334.633053px;}
.x1c_c00412{left:340.511825px;}
.x1d_c00412{left:346.695139px;}
.x1e_c00412{left:352.384720px;}
.x1f_c00412{left:355.792694px;}
.x20_c00412{left:363.695116px;}
.x21_c00412{left:371.679253px;}
.x22_c00412{left:378.434940px;}
.x23_c00412{left:381.453328px;}
.x24_c00412{left:384.455783px;}
.x25_c00412{left:387.851715px;}
.x26_c00412{left:390.467224px;}
.x27_c00412{left:393.779799px;}
.x28_c00412{left:398.952070px;}
.x29_c00412{left:401.755082px;}
.x40_c00412{left:451.985828px;}
.x4_c00412{left:465.097640px;}
.x3f_c00412{left:676.474352px;}
.x3e_c00412{left:696.904800px;}
.x3c_c00412{left:733.103068px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.v1_c00412{vertical-align:23.831865pt;}
.ls0_c00412{letter-spacing:0.000000pt;}
.ws3_c00412{word-spacing:-16.604696pt;}
.ws2_c00412{word-spacing:-0.049530pt;}
.ws4_c00412{word-spacing:0.000000pt;}
.ws1_c00412{word-spacing:250.196272pt;}
.ws0_c00412{word-spacing:990.527723pt;}
._0_c00412{width:4.851230pt;}
._1_c00412{width:6.464888pt;}
._4_c00412{width:7.562745pt;}
._6_c00412{width:8.760396pt;}
._2_c00412{width:12.715612pt;}
._3_c00412{width:14.220216pt;}
._5_c00412{width:25.581284pt;}
.fsc_c00412{font-size:37.310908pt;}
.fs1_c00412{font-size:37.311173pt;}
.fs6_c00412{font-size:42.079973pt;}
.fs9_c00412{font-size:42.079974pt;}
.fs5_c00412{font-size:42.079975pt;}
.fs8_c00412{font-size:42.079976pt;}
.fs7_c00412{font-size:42.079977pt;}
.fsa_c00412{font-size:42.079978pt;}
.fse_c00412{font-size:45.894021pt;}
.fsf_c00412{font-size:49.530431pt;}
.fs4_c00412{font-size:53.288186pt;}
.fs10_c00412{font-size:63.921837pt;}
.fs0_c00412{font-size:63.961814pt;}
.fsd_c00412{font-size:66.115417pt;}
.fsb_c00412{font-size:68.413814pt;}
.fs3_c00412{font-size:79.952268pt;}
.fs2_c00412{font-size:85.269094pt;}
.y0_c00412{bottom:0.000000pt;}
.y1_c00412{bottom:0.000007pt;}
.y55_c00412{bottom:26.805533pt;}
.ya_c00412{bottom:57.106441pt;}
.y9_c00412{bottom:84.090331pt;}
.y8_c00412{bottom:111.074221pt;}
.y7_c00412{bottom:138.058112pt;}
.y6_c00412{bottom:165.042002pt;}
.y5_c00412{bottom:192.025893pt;}
.y4_c00412{bottom:219.009783pt;}
.y3_c00412{bottom:245.993674pt;}
.y2_c00412{bottom:272.977564pt;}
.y52_c00412{bottom:301.356351pt;}
.y53_c00412{bottom:357.390356pt;}
.y1e_c00412{bottom:438.944560pt;}
.y46_c00412{bottom:438.957887pt;}
.y1d_c00412{bottom:439.411208pt;}
.y47_c00412{bottom:439.428585pt;}
.y30_c00412{bottom:439.733989pt;}
.y45_c00412{bottom:440.063632pt;}
.y1c_c00412{bottom:440.358224pt;}
.y31_c00412{bottom:440.474249pt;}
.y2f_c00412{bottom:440.492144pt;}
.y44_c00412{bottom:441.175290pt;}
.y1b_c00412{bottom:441.311665pt;}
.y2e_c00412{bottom:441.411480pt;}
.y48_c00412{bottom:441.575343pt;}
.y1f_c00412{bottom:441.631897pt;}
.y32_c00412{bottom:442.412085pt;}
.y43_c00412{bottom:442.636491pt;}
.y1a_c00412{bottom:442.778875pt;}
.y2d_c00412{bottom:443.368235pt;}
.y33_c00412{bottom:443.647574pt;}
.y42_c00412{bottom:444.136272pt;}
.y19_c00412{bottom:444.283350pt;}
.y34_c00412{bottom:445.156323pt;}
.y20_c00412{bottom:445.431649pt;}
.y41_c00412{bottom:445.793228pt;}
.y18_c00412{bottom:445.944627pt;}
.y49_c00412{bottom:446.106592pt;}
.y2c_c00412{bottom:446.736624pt;}
.y35_c00412{bottom:447.325975pt;}
.y21_c00412{bottom:447.669198pt;}
.y4a_c00412{bottom:449.329795pt;}
.y36_c00412{bottom:449.332771pt;}
.y40_c00412{bottom:449.927990pt;}
.y17_c00412{bottom:450.087675pt;}
.y2b_c00412{bottom:451.594856pt;}
.y37_c00412{bottom:452.236735pt;}
.y22_c00412{bottom:452.957150pt;}
.y4b_c00412{bottom:454.334697pt;}
.y2a_c00412{bottom:455.562742pt;}
.y3f_c00412{bottom:455.614749pt;}
.y16_c00412{bottom:455.781928pt;}
.y23_c00412{bottom:457.175713pt;}
.y38_c00412{bottom:459.696536pt;}
.y4c_c00412{bottom:460.249062pt;}
.y29_c00412{bottom:461.270273pt;}
.y3e_c00412{bottom:462.105976pt;}
.y15_c00412{bottom:462.186152pt;}
.y14_c00412{bottom:465.258807pt;}
.y28_c00412{bottom:465.329988pt;}
.y39_c00412{bottom:466.846944pt;}
.y24_c00412{bottom:467.644044pt;}
.y3d_c00412{bottom:468.468115pt;}
.y13_c00412{bottom:470.598118pt;}
.y4d_c00412{bottom:470.876600pt;}
.y27_c00412{bottom:472.234422pt;}
.y3c_c00412{bottom:472.704883pt;}
.y4f_c00412{bottom:474.425294pt;}
.y51_c00412{bottom:475.041614pt;}
.y26_c00412{bottom:475.693435pt;}
.y12_c00412{bottom:477.047199pt;}
.y3b_c00412{bottom:478.188178pt;}
.y25_c00412{bottom:478.518126pt;}
.y4e_c00412{bottom:478.841168pt;}
.y3a_c00412{bottom:484.463008pt;}
.y11_c00412{bottom:485.517349pt;}
.y50_c00412{bottom:513.663227pt;}
.ye_c00412{bottom:531.164232pt;}
.y54_c00412{bottom:568.435476pt;}
.yc_c00412{bottom:1002.298488pt;}
.y10_c00412{bottom:1004.193955pt;}
.yf_c00412{bottom:1020.184408pt;}
.yd_c00412{bottom:1022.237576pt;}
.yb_c00412{bottom:1040.585280pt;}
.hc_c00412{height:31.970917pt;}
.hb_c00412{height:31.970918pt;}
.hd_c00412{height:31.970920pt;}
.h12_c00412{height:33.277647pt;}
.hf_c00412{height:34.742140pt;}
.h4_c00412{height:34.742386pt;}
.h9_c00412{height:39.182865pt;}
.h8_c00412{height:39.182867pt;}
.ha_c00412{height:39.182869pt;}
.h13_c00412{height:46.120377pt;}
.h7_c00412{height:49.619420pt;}
.h10_c00412{height:50.010498pt;}
.h11_c00412{height:50.651899pt;}
.he_c00412{height:58.574005pt;}
.h14_c00412{height:59.520969pt;}
.h3_c00412{height:59.558193pt;}
.h6_c00412{height:60.744985pt;}
.h5_c00412{height:79.398517pt;}
.h2_c00412{height:1159.999952pt;}
.h0_c00412{height:1159.999959pt;}
.h1_c00412{height:1160.000000pt;}
.w2_c00412{width:830.999965pt;}
.w0_c00412{width:831.000000pt;}
.w1_c00412{width:831.333333pt;}
.x0_c00412{left:0.000000pt;}
.x1_c00412{left:79.496944pt;}
.x5_c00412{left:96.055698pt;}
.x2_c00412{left:97.474332pt;}
.x2b_c00412{left:119.906064pt;}
.x2a_c00412{left:121.392652pt;}
.x2c_c00412{left:124.389083pt;}
.x2d_c00412{left:128.698021pt;}
.x2e_c00412{left:133.464791pt;}
.x2f_c00412{left:135.910272pt;}
.x30_c00412{left:138.584129pt;}
.x31_c00412{left:142.002076pt;}
.x3b_c00412{left:143.420132pt;}
.x32_c00412{left:145.070170pt;}
.x33_c00412{left:152.430191pt;}
.x34_c00412{left:159.776608pt;}
.x35_c00412{left:167.266795pt;}
.x36_c00412{left:174.717010pt;}
.x37_c00412{left:178.419115pt;}
.x38_c00412{left:182.468375pt;}
.x39_c00412{left:185.852506pt;}
.x3a_c00412{left:188.150503pt;}
.x7_c00412{left:204.676373pt;}
.x6_c00412{left:206.574107pt;}
.x8_c00412{left:209.317987pt;}
.x9_c00412{left:213.616993pt;}
.xa_c00412{left:218.376513pt;}
.xb_c00412{left:220.819105pt;}
.xc_c00412{left:223.490334pt;}
.xd_c00412{left:226.905704pt;}
.x3d_c00412{left:227.972394pt;}
.xe_c00412{left:229.825509pt;}
.xf_c00412{left:233.767373pt;}
.x10_c00412{left:241.423300pt;}
.x11_c00412{left:251.942027pt;}
.x12_c00412{left:258.549026pt;}
.x13_c00412{left:261.564741pt;}
.x3_c00412{left:262.612255pt;}
.x14_c00412{left:266.308178pt;}
.x15_c00412{left:269.319244pt;}
.x16_c00412{left:272.883167pt;}
.x17_c00412{left:289.225349pt;}
.x18_c00412{left:290.306761pt;}
.x19_c00412{left:291.569114pt;}
.x1a_c00412{left:294.587062pt;}
.x1b_c00412{left:297.451603pt;}
.x1c_c00412{left:302.677178pt;}
.x1d_c00412{left:308.173457pt;}
.x1e_c00412{left:313.230862pt;}
.x1f_c00412{left:316.260173pt;}
.x20_c00412{left:323.284548pt;}
.x21_c00412{left:330.381558pt;}
.x22_c00412{left:336.386614pt;}
.x23_c00412{left:339.069625pt;}
.x24_c00412{left:341.738474pt;}
.x25_c00412{left:344.757080pt;}
.x26_c00412{left:347.081977pt;}
.x27_c00412{left:350.026488pt;}
.x28_c00412{left:354.624063pt;}
.x29_c00412{left:357.115628pt;}
.x40_c00412{left:401.765180pt;}
.x4_c00412{left:413.420124pt;}
.x3f_c00412{left:601.310535pt;}
.x3e_c00412{left:619.470933pt;}
.x3c_c00412{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.006348;font-style:normal;font-weight:normal;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_8c97493a41da2c5e826fe15c.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.006348;font-style:normal;font-weight:normal;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_f3093b12c3588864adb4bfe7.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.005371;font-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_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;}
.ls1_c00413{letter-spacing:0.000000px;}
.ls0_c00413{letter-spacing:10.470289px;}
.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:-18.691966px;}
.ws1_c00413{word-spacing:-18.680283px;}
.ws2_c00413{word-spacing:0.000000px;}
._c_c00413{width:1.138258px;}
._8_c00413{width:3.605416px;}
._3_c00413{width:6.091851px;}
._b_c00413{width:7.170070px;}
._9_c00413{width:8.872822px;}
._7_c00413{width:10.414038px;}
._6_c00413{width:11.454100px;}
._a_c00413{width:12.518036px;}
._4_c00413{width:14.153613px;}
._e_c00413{width:15.647002px;}
._1_c00413{width:17.350234px;}
._d_c00413{width:24.271957px;}
._2_c00413{width:25.292661px;}
._0_c00413{width:26.447252px;}
._5_c00413{width:40.440700px;}
.fc1_c00413{color:rgb(0,0,0);}
.fc0_c00413{color:rgb(194,158,103);}
.fs3_c00413{font-size:71.912067px;}
.fs1_c00413{font-size:71.957041px;}
.fs2_c00413{font-size:74.340621px;}
.fs0_c00413{font-size:74.379845px;}
.y0_c00413{bottom:0.000000px;}
.y1_c00413{bottom:0.000008px;}
.y1f_c00413{bottom:30.156225px;}
.y19_c00413{bottom:180.136151px;}
.y18_c00413{bottom:210.493028px;}
.y17_c00413{bottom:240.849904px;}
.y16_c00413{bottom:271.206781px;}
.y15_c00413{bottom:301.563658px;}
.y14_c00413{bottom:331.920535px;}
.y1e_c00413{bottom:365.209314px;}
.y1d_c00413{bottom:443.357154px;}
.y1c_c00413{bottom:473.714031px;}
.y1b_c00413{bottom:504.070907px;}
.y1a_c00413{bottom:536.244731px;}
.y12_c00413{bottom:621.967791px;}
.y11_c00413{bottom:652.324667px;}
.y10_c00413{bottom:682.681544px;}
.yf_c00413{bottom:713.038421px;}
.ye_c00413{bottom:743.395298px;}
.yd_c00413{bottom:773.752174px;}
.yc_c00413{bottom:804.109051px;}
.yb_c00413{bottom:834.465928px;}
.ya_c00413{bottom:864.822805px;}
.y9_c00413{bottom:895.179682px;}
.y8_c00413{bottom:925.536558px;}
.y7_c00413{bottom:955.893435px;}
.y6_c00413{bottom:986.250312px;}
.y13_c00413{bottom:1018.966176px;}
.y5_c00413{bottom:1109.899815px;}
.y4_c00413{bottom:1140.256692px;}
.y3_c00413{bottom:1170.613569px;}
.y2_c00413{bottom:1204.539346px;}
.h6_c00413{height:55.092790px;}
.h4_c00413{height:55.127245px;}
.h5_c00413{height:56.953337px;}
.h3_c00413{height:56.983387px;}
.h2_c00413{height:1304.999946px;}
.h0_c00413{height:1304.999953px;}
.h1_c00413{height:1305.000000px;}
.w2_c00413{width:934.874961px;}
.w0_c00413{width:934.875000px;}
.w1_c00413{width:935.250000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:87.850202px;}
.x2_c00413{left:451.985828px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls1_c00413{letter-spacing:0.000000pt;}
.ls0_c00413{letter-spacing:9.306923pt;}
.ws0_c00413{word-spacing:-16.615081pt;}
.ws1_c00413{word-spacing:-16.604696pt;}
.ws2_c00413{word-spacing:0.000000pt;}
._c_c00413{width:1.011785pt;}
._8_c00413{width:3.204814pt;}
._3_c00413{width:5.414979pt;}
._b_c00413{width:6.373396pt;}
._9_c00413{width:7.886953pt;}
._7_c00413{width:9.256923pt;}
._6_c00413{width:10.181422pt;}
._a_c00413{width:11.127143pt;}
._4_c00413{width:12.580989pt;}
._e_c00413{width:13.908446pt;}
._1_c00413{width:15.422431pt;}
._d_c00413{width:21.575073pt;}
._2_c00413{width:22.482366pt;}
._0_c00413{width:23.508668pt;}
._5_c00413{width:35.947289pt;}
.fs3_c00413{font-size:63.921837pt;}
.fs1_c00413{font-size:63.961814pt;}
.fs2_c00413{font-size:66.080552pt;}
.fs0_c00413{font-size:66.115417pt;}
.y0_c00413{bottom:0.000000pt;}
.y1_c00413{bottom:0.000007pt;}
.y1f_c00413{bottom:26.805533pt;}
.y19_c00413{bottom:160.121023pt;}
.y18_c00413{bottom:187.104913pt;}
.y17_c00413{bottom:214.088804pt;}
.y16_c00413{bottom:241.072694pt;}
.y15_c00413{bottom:268.056585pt;}
.y14_c00413{bottom:295.040475pt;}
.y1e_c00413{bottom:324.630501pt;}
.y1d_c00413{bottom:394.095248pt;}
.y1c_c00413{bottom:421.079138pt;}
.y1b_c00413{bottom:448.063029pt;}
.y1a_c00413{bottom:476.661983pt;}
.y12_c00413{bottom:552.860258pt;}
.y11_c00413{bottom:579.844149pt;}
.y10_c00413{bottom:606.828039pt;}
.yf_c00413{bottom:633.811930pt;}
.ye_c00413{bottom:660.795820pt;}
.yd_c00413{bottom:687.779711pt;}
.yc_c00413{bottom:714.763601pt;}
.yb_c00413{bottom:741.747492pt;}
.ya_c00413{bottom:768.731382pt;}
.y9_c00413{bottom:795.715272pt;}
.y8_c00413{bottom:822.699163pt;}
.y7_c00413{bottom:849.683053pt;}
.y6_c00413{bottom:876.666944pt;}
.y13_c00413{bottom:905.747712pt;}
.y5_c00413{bottom:986.577614pt;}
.y4_c00413{bottom:1013.561504pt;}
.y3_c00413{bottom:1040.545395pt;}
.y2_c00413{bottom:1070.701641pt;}
.h6_c00413{height:48.971369pt;}
.h4_c00413{height:49.001996pt;}
.h5_c00413{height:50.625189pt;}
.h3_c00413{height:50.651899pt;}
.h2_c00413{height:1159.999952pt;}
.h0_c00413{height:1159.999959pt;}
.h1_c00413{height:1160.000000pt;}
.w2_c00413{width:830.999965pt;}
.w0_c00413{width:831.000000pt;}
.w1_c00413{width:831.333333pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:78.089069pt;}
.x2_c00413{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_258eeb5def6063ee531832af.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:0.734863;font-style:normal;font-weight: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_1b694a2e1657a474deea12a6.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:1.171387;font-style:normal;font-weight: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_dd6548f6116242dc8e0d9b29.woff2')format("woff");}.ff6_c00414{font-family:ff6_c00414;line-height:1.000000;font-style:normal;font-weight: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_fe9e8c692b65bbc953ab3561.woff2')format("woff");}.ff7_c00414{font-family:ff7_c00414;line-height:1.000000;font-style:normal;font-weight: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_c00414;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00414{font-family:ff8_c00414;line-height:1.006348;font-style:normal;font-weight: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_c00414;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00414{font-family:ff9_c00414;line-height:0.940000;font-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_c00414{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00414{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00414{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00414{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00414{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00414{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00414{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00414{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00414{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00414{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00414{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00414{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00414{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00414{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00414{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00414{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00414{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00414{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00414{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00414{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00414{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00414{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00414{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00414{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00414{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00414{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00414{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00414{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00414{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00414{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00414{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00414{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00414{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00414{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00414{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00414{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00414{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00414{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00414{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00414{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00414{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00414{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00414{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00414{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00414{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00414{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00414{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00414{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00414{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00414{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00414{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00414{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00414{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00414{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00414{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00414{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00414{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00414{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00414{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00414{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00414{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00414{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00414{vertical-align:0.000000px;}
.v1_c00414{vertical-align:26.810849px;}
.ls0_c00414{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00414{word-spacing:-41.664701px;}
.ws3_c00414{word-spacing:-18.680283px;}
.ws2_c00414{word-spacing:-0.055722px;}
.ws5_c00414{word-spacing:0.000000px;}
.ws1_c00414{word-spacing:285.968171px;}
.ws0_c00414{word-spacing:1114.343689px;}
._0_c00414{width:1.264868px;}
._1_c00414{width:3.411963px;}
._2_c00414{width:8.133816px;}
.fc3_c00414{color:rgb(194,158,103);}
.fc2_c00414{color:rgb(9,71,81);}
.fc1_c00414{color:rgb(255,255,255);}
.fc0_c00414{color:rgb(0,0,0);}
.fs8_c00414{font-size:41.974772px;}
.fsa_c00414{font-size:41.975069px;}
.fs2_c00414{font-size:47.339969px;}
.fs5_c00414{font-size:47.339970px;}
.fs1_c00414{font-size:47.339972px;}
.fs4_c00414{font-size:47.339973px;}
.fs3_c00414{font-size:47.339974px;}
.fs6_c00414{font-size:47.339975px;}
.fs9_c00414{font-size:51.630774px;}
.fsf_c00414{font-size:55.721735px;}
.fsd_c00414{font-size:59.949210px;}
.fs10_c00414{font-size:71.912067px;}
.fs0_c00414{font-size:71.957041px;}
.fse_c00414{font-size:74.379845px;}
.fs7_c00414{font-size:76.965540px;}
.fsc_c00414{font-size:89.946302px;}
.fsb_c00414{font-size:95.927731px;}
.y0_c00414{bottom:0.000000px;}
.y1_c00414{bottom:0.000008px;}
.y51_c00414{bottom:30.156225px;}
.y48_c00414{bottom:177.173409px;}
.y47_c00414{bottom:207.530286px;}
.y46_c00414{bottom:237.887163px;}
.y45_c00414{bottom:268.244039px;}
.y44_c00414{bottom:298.600916px;}
.y4f_c00414{bottom:330.527051px;}
.y43_c00414{bottom:402.064151px;}
.y10_c00414{bottom:493.812629px;}
.y38_c00414{bottom:493.827623px;}
.yf_c00414{bottom:494.337609px;}
.y39_c00414{bottom:494.357158px;}
.y22_c00414{bottom:494.700737px;}
.y37_c00414{bottom:495.071586px;}
.ye_c00414{bottom:495.403002px;}
.y23_c00414{bottom:495.533530px;}
.y21_c00414{bottom:495.553663px;}
.y36_c00414{bottom:496.322201px;}
.yd_c00414{bottom:496.475623px;}
.y20_c00414{bottom:496.587915px;}
.y3a_c00414{bottom:496.772260px;}
.y11_c00414{bottom:496.835884px;}
.y24_c00414{bottom:497.713596px;}
.y35_c00414{bottom:497.966053px;}
.yc_c00414{bottom:498.126234px;}
.y1f_c00414{bottom:498.789265px;}
.y25_c00414{bottom:499.103521px;}
.y34_c00414{bottom:499.653306px;}
.yb_c00414{bottom:499.818769px;}
.y26_c00414{bottom:500.800864px;}
.y12_c00414{bottom:501.110605px;}
.y33_c00414{bottom:501.517382px;}
.ya_c00414{bottom:501.687706px;}
.y3b_c00414{bottom:501.869915px;}
.y1e_c00414{bottom:502.578702px;}
.y27_c00414{bottom:503.241722px;}
.y13_c00414{bottom:503.627848px;}
.y3c_c00414{bottom:505.496019px;}
.y28_c00414{bottom:505.499367px;}
.y32_c00414{bottom:506.168989px;}
.y9_c00414{bottom:506.348634px;}
.y1d_c00414{bottom:508.044213px;}
.y29_c00414{bottom:508.766327px;}
.y14_c00414{bottom:509.576794px;}
.y3d_c00414{bottom:511.126534px;}
.y1c_c00414{bottom:512.508085px;}
.y31_c00414{bottom:512.566592px;}
.y8_c00414{bottom:512.754669px;}
.y15_c00414{bottom:514.322677px;}
.y2a_c00414{bottom:517.158603px;}
.y3e_c00414{bottom:517.780195px;}
.y1b_c00414{bottom:518.929057px;}
.y30_c00414{bottom:519.869222px;}
.y7_c00414{bottom:519.959421px;}
.y6_c00414{bottom:523.416158px;}
.y1a_c00414{bottom:523.496236px;}
.y2b_c00414{bottom:525.202812px;}
.y16_c00414{bottom:526.099549px;}
.y2f_c00414{bottom:527.026630px;}
.y5_c00414{bottom:529.422883px;}
.y3f_c00414{bottom:529.736175px;}
.y19_c00414{bottom:531.263725px;}
.y2e_c00414{bottom:531.792993px;}
.y41_c00414{bottom:533.728456px;}
.y4e_c00414{bottom:534.421816px;}
.y18_c00414{bottom:535.155114px;}
.y4_c00414{bottom:536.678099px;}
.y2d_c00414{bottom:537.961701px;}
.y17_c00414{bottom:538.332892px;}
.y40_c00414{bottom:538.696314px;}
.y2c_c00414{bottom:545.020884px;}
.y3_c00414{bottom:546.207017px;}
.y42_c00414{bottom:577.871130px;}
.y2_c00414{bottom:597.559761px;}
.y50_c00414{bottom:639.489911px;}
.y52_c00414{bottom:1021.609033px;}
.y4a_c00414{bottom:1127.585799px;}
.y4d_c00414{bottom:1129.718199px;}
.y4c_c00414{bottom:1147.707459px;}
.y4b_c00414{bottom:1150.017273px;}
.y49_c00414{bottom:1170.658440px;}
.hb_c00414{height:32.157430px;}
.h8_c00414{height:35.967282px;}
.h7_c00414{height:35.967283px;}
.h9_c00414{height:35.967285px;}
.h5_c00414{height:36.267779px;}
.h4_c00414{height:36.267781px;}
.h6_c00414{height:36.267783px;}
.hc_c00414{height:37.437353px;}
.hd_c00414{height:39.085184px;}
.h16_c00414{height:45.561399px;}
.h14_c00414{height:51.885424px;}
.h15_c00414{height:55.092790px;}
.h3_c00414{height:55.127245px;}
.h11_c00414{height:55.821847px;}
.h12_c00414{height:56.261810px;}
.h13_c00414{height:56.983387px;}
.ha_c00414{height:58.968279px;}
.he_c00414{height:67.002968px;}
.h10_c00414{height:68.338108px;}
.hf_c00414{height:89.323331px;}
.h2_c00414{height:1304.999946px;}
.h0_c00414{height:1304.999953px;}
.h1_c00414{height:1305.000000px;}
.w2_c00414{width:934.874961px;}
.w0_c00414{width:934.875000px;}
.w1_c00414{width:935.250000px;}
.x0_c00414{left:0.000000px;}
.x3a_c00414{left:89.434062px;}
.x3d_c00414{left:108.062661px;}
.x3b_c00414{left:109.658623px;}
.x41_c00414{left:130.612669px;}
.x27_c00414{left:134.894322px;}
.x26_c00414{left:136.566734px;}
.x28_c00414{left:139.937719px;}
.x29_c00414{left:144.785273px;}
.x2a_c00414{left:150.147890px;}
.x2b_c00414{left:152.899057px;}
.x2c_c00414{left:155.907145px;}
.x2d_c00414{left:159.752336px;}
.x37_c00414{left:161.347648px;}
.x2e_c00414{left:163.203941px;}
.x2f_c00414{left:171.483965px;}
.x30_c00414{left:179.748684px;}
.x31_c00414{left:188.175145px;}
.x32_c00414{left:196.556636px;}
.x33_c00414{left:200.721504px;}
.x34_c00414{left:205.276922px;}
.x35_c00414{left:209.084069px;}
.x36_c00414{left:211.669316px;}
.x3_c00414{left:230.260919px;}
.x2_c00414{left:232.395871px;}
.x4_c00414{left:235.482735px;}
.x5_c00414{left:240.319117px;}
.x6_c00414{left:245.673577px;}
.x7_c00414{left:248.421493px;}
.x8_c00414{left:251.426626px;}
.x9_c00414{left:255.268917px;}
.x3e_c00414{left:256.468943px;}
.xa_c00414{left:258.553698px;}
.xb_c00414{left:262.988294px;}
.xc_c00414{left:271.601212px;}
.xd_c00414{left:283.434780px;}
.xe_c00414{left:290.867654px;}
.xf_c00414{left:294.260334px;}
.x3c_c00414{left:295.438786px;}
.x10_c00414{left:299.596701px;}
.x11_c00414{left:302.984150px;}
.x12_c00414{left:306.993562px;}
.x13_c00414{left:325.378518px;}
.x14_c00414{left:326.595106px;}
.x15_c00414{left:328.015253px;}
.x16_c00414{left:331.410444px;}
.x17_c00414{left:334.633053px;}
.x18_c00414{left:340.511825px;}
.x19_c00414{left:346.695139px;}
.x1a_c00414{left:352.384720px;}
.x1b_c00414{left:355.792694px;}
.x1c_c00414{left:363.695116px;}
.x1d_c00414{left:371.679253px;}
.x1e_c00414{left:378.434940px;}
.x1f_c00414{left:381.453328px;}
.x20_c00414{left:384.455783px;}
.x21_c00414{left:387.851715px;}
.x22_c00414{left:390.467224px;}
.x23_c00414{left:393.779799px;}
.x24_c00414{left:398.952070px;}
.x25_c00414{left:401.755082px;}
.x40_c00414{left:451.985828px;}
.x1_c00414{left:465.097640px;}
.x3f_c00414{left:676.474352px;}
.x39_c00414{left:696.904800px;}
.x38_c00414{left:733.103068px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.v1_c00414{vertical-align:23.831865pt;}
.ls0_c00414{letter-spacing:0.000000pt;}
.ws4_c00414{word-spacing:-37.035289pt;}
.ws3_c00414{word-spacing:-16.604696pt;}
.ws2_c00414{word-spacing:-0.049530pt;}
.ws5_c00414{word-spacing:0.000000pt;}
.ws1_c00414{word-spacing:254.193930pt;}
.ws0_c00414{word-spacing:990.527723pt;}
._0_c00414{width:1.124327pt;}
._1_c00414{width:3.032856pt;}
._2_c00414{width:7.230059pt;}
.fs8_c00414{font-size:37.310908pt;}
.fsa_c00414{font-size:37.311173pt;}
.fs2_c00414{font-size:42.079973pt;}
.fs5_c00414{font-size:42.079974pt;}
.fs1_c00414{font-size:42.079975pt;}
.fs4_c00414{font-size:42.079976pt;}
.fs3_c00414{font-size:42.079977pt;}
.fs6_c00414{font-size:42.079978pt;}
.fs9_c00414{font-size:45.894021pt;}
.fsf_c00414{font-size:49.530431pt;}
.fsd_c00414{font-size:53.288186pt;}
.fs10_c00414{font-size:63.921837pt;}
.fs0_c00414{font-size:63.961814pt;}
.fse_c00414{font-size:66.115417pt;}
.fs7_c00414{font-size:68.413814pt;}
.fsc_c00414{font-size:79.952268pt;}
.fsb_c00414{font-size:85.269094pt;}
.y0_c00414{bottom:0.000000pt;}
.y1_c00414{bottom:0.000007pt;}
.y51_c00414{bottom:26.805533pt;}
.y48_c00414{bottom:157.487475pt;}
.y47_c00414{bottom:184.471365pt;}
.y46_c00414{bottom:211.455256pt;}
.y45_c00414{bottom:238.439146pt;}
.y44_c00414{bottom:265.423036pt;}
.y4f_c00414{bottom:293.801823pt;}
.y43_c00414{bottom:357.390356pt;}
.y10_c00414{bottom:438.944560pt;}
.y38_c00414{bottom:438.957887pt;}
.yf_c00414{bottom:439.411208pt;}
.y39_c00414{bottom:439.428585pt;}
.y22_c00414{bottom:439.733989pt;}
.y37_c00414{bottom:440.063632pt;}
.ye_c00414{bottom:440.358224pt;}
.y23_c00414{bottom:440.474249pt;}
.y21_c00414{bottom:440.492144pt;}
.y36_c00414{bottom:441.175290pt;}
.yd_c00414{bottom:441.311665pt;}
.y20_c00414{bottom:441.411480pt;}
.y3a_c00414{bottom:441.575343pt;}
.y11_c00414{bottom:441.631897pt;}
.y24_c00414{bottom:442.412085pt;}
.y35_c00414{bottom:442.636491pt;}
.yc_c00414{bottom:442.778875pt;}
.y1f_c00414{bottom:443.368235pt;}
.y25_c00414{bottom:443.647574pt;}
.y34_c00414{bottom:444.136272pt;}
.yb_c00414{bottom:444.283350pt;}
.y26_c00414{bottom:445.156323pt;}
.y12_c00414{bottom:445.431649pt;}
.y33_c00414{bottom:445.793228pt;}
.ya_c00414{bottom:445.944627pt;}
.y3b_c00414{bottom:446.106592pt;}
.y1e_c00414{bottom:446.736624pt;}
.y27_c00414{bottom:447.325975pt;}
.y13_c00414{bottom:447.669198pt;}
.y3c_c00414{bottom:449.329795pt;}
.y28_c00414{bottom:449.332771pt;}
.y32_c00414{bottom:449.927990pt;}
.y9_c00414{bottom:450.087675pt;}
.y1d_c00414{bottom:451.594856pt;}
.y29_c00414{bottom:452.236735pt;}
.y14_c00414{bottom:452.957150pt;}
.y3d_c00414{bottom:454.334697pt;}
.y1c_c00414{bottom:455.562742pt;}
.y31_c00414{bottom:455.614749pt;}
.y8_c00414{bottom:455.781928pt;}
.y15_c00414{bottom:457.175713pt;}
.y2a_c00414{bottom:459.696536pt;}
.y3e_c00414{bottom:460.249062pt;}
.y1b_c00414{bottom:461.270273pt;}
.y30_c00414{bottom:462.105976pt;}
.y7_c00414{bottom:462.186152pt;}
.y6_c00414{bottom:465.258807pt;}
.y1a_c00414{bottom:465.329988pt;}
.y2b_c00414{bottom:466.846944pt;}
.y16_c00414{bottom:467.644044pt;}
.y2f_c00414{bottom:468.468115pt;}
.y5_c00414{bottom:470.598118pt;}
.y3f_c00414{bottom:470.876600pt;}
.y19_c00414{bottom:472.234422pt;}
.y2e_c00414{bottom:472.704883pt;}
.y41_c00414{bottom:474.425294pt;}
.y4e_c00414{bottom:475.041614pt;}
.y18_c00414{bottom:475.693435pt;}
.y4_c00414{bottom:477.047199pt;}
.y2d_c00414{bottom:478.188178pt;}
.y17_c00414{bottom:478.518126pt;}
.y40_c00414{bottom:478.841168pt;}
.y2c_c00414{bottom:484.463008pt;}
.y3_c00414{bottom:485.517349pt;}
.y42_c00414{bottom:513.663227pt;}
.y2_c00414{bottom:531.164232pt;}
.y50_c00414{bottom:568.435476pt;}
.y52_c00414{bottom:908.096918pt;}
.y4a_c00414{bottom:1002.298488pt;}
.y4d_c00414{bottom:1004.193955pt;}
.y4c_c00414{bottom:1020.184408pt;}
.y4b_c00414{bottom:1022.237576pt;}
.y49_c00414{bottom:1040.585280pt;}
.hb_c00414{height:28.584382pt;}
.h8_c00414{height:31.970917pt;}
.h7_c00414{height:31.970918pt;}
.h9_c00414{height:31.970920pt;}
.h5_c00414{height:32.238026pt;}
.h4_c00414{height:32.238028pt;}
.h6_c00414{height:32.238029pt;}
.hc_c00414{height:33.277647pt;}
.hd_c00414{height:34.742386pt;}
.h16_c00414{height:40.499022pt;}
.h14_c00414{height:46.120377pt;}
.h15_c00414{height:48.971369pt;}
.h3_c00414{height:49.001996pt;}
.h11_c00414{height:49.619420pt;}
.h12_c00414{height:50.010498pt;}
.h13_c00414{height:50.651899pt;}
.ha_c00414{height:52.416248pt;}
.he_c00414{height:59.558193pt;}
.h10_c00414{height:60.744985pt;}
.hf_c00414{height:79.398517pt;}
.h2_c00414{height:1159.999952pt;}
.h0_c00414{height:1159.999959pt;}
.h1_c00414{height:1160.000000pt;}
.w2_c00414{width:830.999965pt;}
.w0_c00414{width:831.000000pt;}
.w1_c00414{width:831.333333pt;}
.x0_c00414{left:0.000000pt;}
.x3a_c00414{left:79.496944pt;}
.x3d_c00414{left:96.055698pt;}
.x3b_c00414{left:97.474332pt;}
.x41_c00414{left:116.100150pt;}
.x27_c00414{left:119.906064pt;}
.x26_c00414{left:121.392652pt;}
.x28_c00414{left:124.389083pt;}
.x29_c00414{left:128.698021pt;}
.x2a_c00414{left:133.464791pt;}
.x2b_c00414{left:135.910272pt;}
.x2c_c00414{left:138.584129pt;}
.x2d_c00414{left:142.002076pt;}
.x37_c00414{left:143.420132pt;}
.x2e_c00414{left:145.070170pt;}
.x2f_c00414{left:152.430191pt;}
.x30_c00414{left:159.776608pt;}
.x31_c00414{left:167.266795pt;}
.x32_c00414{left:174.717010pt;}
.x33_c00414{left:178.419115pt;}
.x34_c00414{left:182.468375pt;}
.x35_c00414{left:185.852506pt;}
.x36_c00414{left:188.150503pt;}
.x3_c00414{left:204.676373pt;}
.x2_c00414{left:206.574107pt;}
.x4_c00414{left:209.317987pt;}
.x5_c00414{left:213.616993pt;}
.x6_c00414{left:218.376513pt;}
.x7_c00414{left:220.819105pt;}
.x8_c00414{left:223.490334pt;}
.x9_c00414{left:226.905704pt;}
.x3e_c00414{left:227.972394pt;}
.xa_c00414{left:229.825509pt;}
.xb_c00414{left:233.767373pt;}
.xc_c00414{left:241.423300pt;}
.xd_c00414{left:251.942027pt;}
.xe_c00414{left:258.549026pt;}
.xf_c00414{left:261.564741pt;}
.x3c_c00414{left:262.612255pt;}
.x10_c00414{left:266.308178pt;}
.x11_c00414{left:269.319244pt;}
.x12_c00414{left:272.883167pt;}
.x13_c00414{left:289.225349pt;}
.x14_c00414{left:290.306761pt;}
.x15_c00414{left:291.569114pt;}
.x16_c00414{left:294.587062pt;}
.x17_c00414{left:297.451603pt;}
.x18_c00414{left:302.677178pt;}
.x19_c00414{left:308.173457pt;}
.x1a_c00414{left:313.230862pt;}
.x1b_c00414{left:316.260173pt;}
.x1c_c00414{left:323.284548pt;}
.x1d_c00414{left:330.381558pt;}
.x1e_c00414{left:336.386614pt;}
.x1f_c00414{left:339.069625pt;}
.x20_c00414{left:341.738474pt;}
.x21_c00414{left:344.757080pt;}
.x22_c00414{left:347.081977pt;}
.x23_c00414{left:350.026488pt;}
.x24_c00414{left:354.624063pt;}
.x25_c00414{left:357.115628pt;}
.x40_c00414{left:401.765180pt;}
.x1_c00414{left:413.420124pt;}
.x3f_c00414{left:601.310535pt;}
.x39_c00414{left:619.470933pt;}
.x38_c00414{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_857bac774935085cbad39967.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.006348;font-style:normal;font-weight:normal;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_f9eae8c30949dec5e2a51538.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.171387;font-style:normal;font-weight:normal;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_971e8e58b8ffb07ba6426177.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.005371;font-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_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);}
.v0_c00415{vertical-align:0.000000px;}
.ls1_c00415{letter-spacing:0.000000px;}
.ls0_c00415{letter-spacing:19.464964px;}
.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:-18.691966px;}
.ws1_c00415{word-spacing:-18.680283px;}
.ws2_c00415{word-spacing:0.000000px;}
._8_c00415{width:1.499015px;}
._1_c00415{width:2.766078px;}
._5_c00415{width:4.574448px;}
._10_c00415{width:5.641682px;}
._2_c00415{width:7.729760px;}
._d_c00415{width:8.853810px;}
._12_c00415{width:9.929984px;}
._a_c00415{width:10.938734px;}
._c_c00415{width:12.714921px;}
._3_c00415{width:13.977041px;}
._0_c00415{width:15.026164px;}
._6_c00415{width:16.043980px;}
._7_c00415{width:17.439715px;}
._9_c00415{width:20.179312px;}
._f_c00415{width:23.253173px;}
._e_c00415{width:24.671344px;}
._15_c00415{width:27.603493px;}
._13_c00415{width:29.232548px;}
._4_c00415{width:35.923826px;}
._14_c00415{width:36.990373px;}
._11_c00415{width:50.883632px;}
._b_c00415{width:53.063048px;}
.fc1_c00415{color:rgb(0,0,0);}
.fc0_c00415{color:rgb(194,158,103);}
.fs3_c00415{font-size:71.912067px;}
.fs1_c00415{font-size:71.957041px;}
.fs2_c00415{font-size:74.340621px;}
.fs0_c00415{font-size:74.379845px;}
.y0_c00415{bottom:0.000000px;}
.y1_c00415{bottom:0.000008px;}
.y25_c00415{bottom:30.156225px;}
.y23_c00415{bottom:130.958063px;}
.y22_c00415{bottom:161.314940px;}
.y21_c00415{bottom:191.671817px;}
.y20_c00415{bottom:222.028694px;}
.y1f_c00415{bottom:252.385571px;}
.y1e_c00415{bottom:282.742447px;}
.y1d_c00415{bottom:313.099324px;}
.y1c_c00415{bottom:343.456201px;}
.y1b_c00415{bottom:373.813078px;}
.y1a_c00415{bottom:404.169954px;}
.y19_c00415{bottom:434.526831px;}
.y18_c00415{bottom:464.883708px;}
.y17_c00415{bottom:495.240585px;}
.y16_c00415{bottom:525.597461px;}
.y15_c00415{bottom:555.954338px;}
.y14_c00415{bottom:586.311215px;}
.y13_c00415{bottom:616.668092px;}
.y12_c00415{bottom:647.024968px;}
.y11_c00415{bottom:677.381845px;}
.y10_c00415{bottom:707.738722px;}
.yf_c00415{bottom:738.095599px;}
.ye_c00415{bottom:768.452476px;}
.yd_c00415{bottom:798.809352px;}
.yc_c00415{bottom:829.166229px;}
.yb_c00415{bottom:859.523106px;}
.ya_c00415{bottom:889.879983px;}
.y24_c00415{bottom:926.608054px;}
.y9_c00415{bottom:988.472308px;}
.y8_c00415{bottom:1018.829185px;}
.y7_c00415{bottom:1049.186062px;}
.y6_c00415{bottom:1079.542939px;}
.y5_c00415{bottom:1109.899815px;}
.y4_c00415{bottom:1140.256692px;}
.y3_c00415{bottom:1170.613569px;}
.y2_c00415{bottom:1204.539346px;}
.h5_c00415{height:56.953337px;}
.h3_c00415{height:56.983387px;}
.h6_c00415{height:66.961090px;}
.h4_c00415{height:67.002968px;}
.h2_c00415{height:1304.999946px;}
.h0_c00415{height:1304.999953px;}
.h1_c00415{height:1305.000000px;}
.w2_c00415{width:934.874961px;}
.w0_c00415{width:934.875000px;}
.w1_c00415{width:935.250000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:87.850202px;}
.x2_c00415{left:451.985828px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls1_c00415{letter-spacing:0.000000pt;}
.ls0_c00415{letter-spacing:17.302190pt;}
.ws0_c00415{word-spacing:-16.615081pt;}
.ws1_c00415{word-spacing:-16.604696pt;}
.ws2_c00415{word-spacing:0.000000pt;}
._8_c00415{width:1.332457pt;}
._1_c00415{width:2.458736pt;}
._5_c00415{width:4.066176pt;}
._10_c00415{width:5.014829pt;}
._2_c00415{width:6.870897pt;}
._d_c00415{width:7.870054pt;}
._12_c00415{width:8.826652pt;}
._a_c00415{width:9.723319pt;}
._c_c00415{width:11.302152pt;}
._3_c00415{width:12.424037pt;}
._0_c00415{width:13.356591pt;}
._6_c00415{width:14.261315pt;}
._7_c00415{width:15.501969pt;}
._9_c00415{width:17.937166pt;}
._f_c00415{width:20.669487pt;}
._e_c00415{width:21.930084pt;}
._15_c00415{width:24.536438pt;}
._13_c00415{width:25.984487pt;}
._4_c00415{width:31.932290pt;}
._14_c00415{width:32.880332pt;}
._11_c00415{width:45.229895pt;}
._b_c00415{width:47.167154pt;}
.fs3_c00415{font-size:63.921837pt;}
.fs1_c00415{font-size:63.961814pt;}
.fs2_c00415{font-size:66.080552pt;}
.fs0_c00415{font-size:66.115417pt;}
.y0_c00415{bottom:0.000000pt;}
.y1_c00415{bottom:0.000007pt;}
.y25_c00415{bottom:26.805533pt;}
.y23_c00415{bottom:116.407168pt;}
.y22_c00415{bottom:143.391058pt;}
.y21_c00415{bottom:170.374948pt;}
.y20_c00415{bottom:197.358839pt;}
.y1f_c00415{bottom:224.342729pt;}
.y1e_c00415{bottom:251.326620pt;}
.y1d_c00415{bottom:278.310510pt;}
.y1c_c00415{bottom:305.294401pt;}
.y1b_c00415{bottom:332.278291pt;}
.y1a_c00415{bottom:359.262182pt;}
.y19_c00415{bottom:386.246072pt;}
.y18_c00415{bottom:413.229963pt;}
.y17_c00415{bottom:440.213853pt;}
.y16_c00415{bottom:467.197743pt;}
.y15_c00415{bottom:494.181634pt;}
.y14_c00415{bottom:521.165524pt;}
.y13_c00415{bottom:548.149415pt;}
.y12_c00415{bottom:575.133305pt;}
.y11_c00415{bottom:602.117196pt;}
.y10_c00415{bottom:629.101086pt;}
.yf_c00415{bottom:656.084977pt;}
.ye_c00415{bottom:683.068867pt;}
.yd_c00415{bottom:710.052758pt;}
.yc_c00415{bottom:737.036648pt;}
.yb_c00415{bottom:764.020539pt;}
.ya_c00415{bottom:791.004429pt;}
.y24_c00415{bottom:823.651604pt;}
.y9_c00415{bottom:878.642052pt;}
.y8_c00415{bottom:905.625942pt;}
.y7_c00415{bottom:932.609833pt;}
.y6_c00415{bottom:959.593723pt;}
.y5_c00415{bottom:986.577614pt;}
.y4_c00415{bottom:1013.561504pt;}
.y3_c00415{bottom:1040.545395pt;}
.y2_c00415{bottom:1070.701641pt;}
.h5_c00415{height:50.625189pt;}
.h3_c00415{height:50.651899pt;}
.h6_c00415{height:59.520969pt;}
.h4_c00415{height:59.558193pt;}
.h2_c00415{height:1159.999952pt;}
.h0_c00415{height:1159.999959pt;}
.h1_c00415{height:1160.000000pt;}
.w2_c00415{width:830.999965pt;}
.w0_c00415{width:831.000000pt;}
.w1_c00415{width:831.333333pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:78.089069pt;}
.x2_c00415{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1740daaa98f6e9ffba96b9b3.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.006348;font-style:normal;font-weight:normal;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_89873fd29bacc349aa46ea71.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.000000;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.006348;font-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_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);}
.v0_c00416{vertical-align:0.000000px;}
.ls0_c00416{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00416{word-spacing:-18.680283px;}
.ws2_c00416{word-spacing:0.000000px;}
._3_c00416{width:1.054060px;}
._4_c00416{width:3.016214px;}
._a_c00416{width:4.227963px;}
._1_c00416{width:5.797322px;}
._8_c00416{width:6.979018px;}
._b_c00416{width:8.168950px;}
._d_c00416{width:9.381116px;}
._f_c00416{width:10.805674px;}
._9_c00416{width:12.080693px;}
._6_c00416{width:13.415774px;}
._c_c00416{width:14.604731px;}
._0_c00416{width:16.308119px;}
._2_c00416{width:19.729761px;}
._7_c00416{width:22.205495px;}
._e_c00416{width:24.173067px;}
._5_c00416{width:25.422289px;}
.fc1_c00416{color:rgb(194,158,103);}
.fc0_c00416{color:rgb(0,0,0);}
.fs2_c00416{font-size:71.912067px;}
.fs0_c00416{font-size:71.957041px;}
.fs1_c00416{font-size:74.340621px;}
.y0_c00416{bottom:0.000000px;}
.y1_c00416{bottom:0.000008px;}
.y22_c00416{bottom:30.156225px;}
.y9_c00416{bottom:188.606366px;}
.y8_c00416{bottom:218.963243px;}
.y7_c00416{bottom:249.320120px;}
.y6_c00416{bottom:279.676997px;}
.y5_c00416{bottom:310.033873px;}
.y4_c00416{bottom:340.390750px;}
.y3_c00416{bottom:370.747627px;}
.y2_c00416{bottom:401.104504px;}
.y12_c00416{bottom:430.143951px;}
.y11_c00416{bottom:495.744156px;}
.y10_c00416{bottom:526.101032px;}
.yf_c00416{bottom:556.457909px;}
.ye_c00416{bottom:586.814786px;}
.yd_c00416{bottom:617.171663px;}
.yc_c00416{bottom:647.528539px;}
.yb_c00416{bottom:677.885416px;}
.ya_c00416{bottom:710.059143px;}
.y21_c00416{bottom:775.288536px;}
.y20_c00416{bottom:805.645413px;}
.y1f_c00416{bottom:836.002290px;}
.y1e_c00416{bottom:866.359166px;}
.y1d_c00416{bottom:896.716043px;}
.y1c_c00416{bottom:927.072920px;}
.y1b_c00416{bottom:957.429797px;}
.y1a_c00416{bottom:987.786674px;}
.y19_c00416{bottom:1018.143550px;}
.y18_c00416{bottom:1048.500427px;}
.y17_c00416{bottom:1078.857304px;}
.y16_c00416{bottom:1109.214181px;}
.y15_c00416{bottom:1139.571057px;}
.y14_c00416{bottom:1169.927934px;}
.y13_c00416{bottom:1200.284811px;}
.h5_c00416{height:55.092790px;}
.h3_c00416{height:55.127245px;}
.h4_c00416{height:56.953337px;}
.h2_c00416{height:1304.999946px;}
.h0_c00416{height:1304.999953px;}
.h1_c00416{height:1305.000000px;}
.w2_c00416{width:934.874961px;}
.w0_c00416{width:934.875000px;}
.w1_c00416{width:935.250000px;}
.x0_c00416{left:0.000000px;}
.x1_c00416{left:87.850202px;}
.x2_c00416{left:451.985828px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws0_c00416{word-spacing:-16.615081pt;}
.ws1_c00416{word-spacing:-16.604696pt;}
.ws2_c00416{word-spacing:0.000000pt;}
._3_c00416{width:0.936942pt;}
._4_c00416{width:2.681079pt;}
._a_c00416{width:3.758189pt;}
._1_c00416{width:5.153175pt;}
._8_c00416{width:6.203572pt;}
._b_c00416{width:7.261289pt;}
._d_c00416{width:8.338770pt;}
._f_c00416{width:9.605043pt;}
._9_c00416{width:10.738394pt;}
._6_c00416{width:11.925133pt;}
._c_c00416{width:12.981983pt;}
._0_c00416{width:14.496105pt;}
._2_c00416{width:17.537565pt;}
._7_c00416{width:19.738218pt;}
._e_c00416{width:21.487171pt;}
._5_c00416{width:22.597590pt;}
.fs2_c00416{font-size:63.921837pt;}
.fs0_c00416{font-size:63.961814pt;}
.fs1_c00416{font-size:66.080552pt;}
.y0_c00416{bottom:0.000000pt;}
.y1_c00416{bottom:0.000007pt;}
.y22_c00416{bottom:26.805533pt;}
.y9_c00416{bottom:167.650103pt;}
.y8_c00416{bottom:194.633994pt;}
.y7_c00416{bottom:221.617884pt;}
.y6_c00416{bottom:248.601775pt;}
.y5_c00416{bottom:275.585665pt;}
.y4_c00416{bottom:302.569556pt;}
.y3_c00416{bottom:329.553446pt;}
.y2_c00416{bottom:356.537337pt;}
.y12_c00416{bottom:382.350179pt;}
.y11_c00416{bottom:440.661472pt;}
.y10_c00416{bottom:467.645362pt;}
.yf_c00416{bottom:494.629253pt;}
.ye_c00416{bottom:521.613143pt;}
.yd_c00416{bottom:548.597034pt;}
.yc_c00416{bottom:575.580924pt;}
.yb_c00416{bottom:602.564814pt;}
.ya_c00416{bottom:631.163682pt;}
.y21_c00416{bottom:689.145365pt;}
.y20_c00416{bottom:716.129256pt;}
.y1f_c00416{bottom:743.113146pt;}
.y1e_c00416{bottom:770.097037pt;}
.y1d_c00416{bottom:797.080927pt;}
.y1c_c00416{bottom:824.064818pt;}
.y1b_c00416{bottom:851.048708pt;}
.y1a_c00416{bottom:878.032599pt;}
.y19_c00416{bottom:905.016489pt;}
.y18_c00416{bottom:932.000380pt;}
.y17_c00416{bottom:958.984270pt;}
.y16_c00416{bottom:985.968161pt;}
.y15_c00416{bottom:1012.952051pt;}
.y14_c00416{bottom:1039.935941pt;}
.y13_c00416{bottom:1066.919832pt;}
.h5_c00416{height:48.971369pt;}
.h3_c00416{height:49.001996pt;}
.h4_c00416{height:50.625189pt;}
.h2_c00416{height:1159.999952pt;}
.h0_c00416{height:1159.999959pt;}
.h1_c00416{height:1160.000000pt;}
.w2_c00416{width:830.999965pt;}
.w0_c00416{width:831.000000pt;}
.w1_c00416{width:831.333333pt;}
.x0_c00416{left:0.000000pt;}
.x1_c00416{left:78.089069pt;}
.x2_c00416{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f84cbd4f3c9740618655bddf.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:0.734863;font-style:normal;font-weight: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_717b9e0b8578583e2994f33d.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:0.773926;font-style:normal;font-weight: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_1126edb96a2fbf00f13420e7.woff2')format("woff");}.ff6_c00417{font-family:ff6_c00417;line-height:1.171387;font-style:normal;font-weight: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_c12c531259f677a014a7f027.woff2')format("woff");}.ff7_c00417{font-family:ff7_c00417;line-height:1.000000;font-style:normal;font-weight: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_c00417;src:url('chunks/assets/font_fe9e8c692b65bbc953ab3561.woff2')format("woff");}.ff8_c00417{font-family:ff8_c00417;line-height:1.000000;font-style:normal;font-weight: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_c00417;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff9_c00417{font-family:ff9_c00417;line-height:1.006348;font-style:normal;font-weight: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_c00417;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00417{font-family:ffa_c00417;line-height:0.940000;font-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_c00417{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00417{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00417{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00417{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00417{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00417{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00417{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00417{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00417{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00417{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00417{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00417{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00417{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00417{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00417{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00417{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00417{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00417{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00417{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00417{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00417{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00417{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00417{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00417{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00417{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00417{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00417{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00417{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00417{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00417{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00417{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00417{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00417{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00417{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00417{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00417{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00417{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00417{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00417{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00417{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00417{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00417{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00417{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00417{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00417{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00417{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00417{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00417{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00417{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00417{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00417{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00417{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00417{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00417{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00417{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00417{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00417{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00417{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00417{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00417{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00417{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00417{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00417{vertical-align:0.000000px;}
.ls0_c00417{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00417{word-spacing:-41.664701px;}
.ws3_c00417{word-spacing:-18.680283px;}
.ws0_c00417{word-spacing:-15.162211px;}
.ws2_c00417{word-spacing:-0.055722px;}
.ws5_c00417{word-spacing:0.000000px;}
.ws1_c00417{word-spacing:281.470806px;}
._0_c00417{width:5.516238px;}
._1_c00417{width:9.236666px;}
._2_c00417{width:17.653964px;}
.fc3_c00417{color:rgb(194,158,103);}
.fc2_c00417{color:rgb(9,71,81);}
.fc1_c00417{color:rgb(255,255,255);}
.fc0_c00417{color:rgb(0,0,0);}
.fsd_c00417{font-size:41.974772px;}
.fs9_c00417{font-size:41.975069px;}
.fs2_c00417{font-size:47.339969px;}
.fs5_c00417{font-size:47.339970px;}
.fs1_c00417{font-size:47.339972px;}
.fs4_c00417{font-size:47.339973px;}
.fs3_c00417{font-size:47.339974px;}
.fs6_c00417{font-size:47.339975px;}
.fs8_c00417{font-size:51.630774px;}
.fsf_c00417{font-size:55.721735px;}
.fsc_c00417{font-size:59.949210px;}
.fs10_c00417{font-size:71.912067px;}
.fs0_c00417{font-size:71.957041px;}
.fse_c00417{font-size:74.379845px;}
.fs7_c00417{font-size:76.965540px;}
.fsb_c00417{font-size:89.946302px;}
.fsa_c00417{font-size:95.927731px;}
.y0_c00417{bottom:0.000000px;}
.y1_c00417{bottom:0.000008px;}
.y52_c00417{bottom:30.156225px;}
.y47_c00417{bottom:177.668409px;}
.y46_c00417{bottom:208.025286px;}
.y45_c00417{bottom:238.382162px;}
.y44_c00417{bottom:268.739039px;}
.y43_c00417{bottom:299.095916px;}
.y50_c00417{bottom:331.155647px;}
.y42_c00417{bottom:402.064151px;}
.y10_c00417{bottom:493.812629px;}
.y38_c00417{bottom:493.827623px;}
.yf_c00417{bottom:494.337609px;}
.y39_c00417{bottom:494.357158px;}
.y22_c00417{bottom:494.700737px;}
.y37_c00417{bottom:495.071586px;}
.ye_c00417{bottom:495.403002px;}
.y23_c00417{bottom:495.533530px;}
.y21_c00417{bottom:495.553663px;}
.y36_c00417{bottom:496.322201px;}
.yd_c00417{bottom:496.475623px;}
.y20_c00417{bottom:496.587915px;}
.y3a_c00417{bottom:496.772260px;}
.y11_c00417{bottom:496.835884px;}
.y24_c00417{bottom:497.713596px;}
.y35_c00417{bottom:497.966053px;}
.yc_c00417{bottom:498.126234px;}
.y1f_c00417{bottom:498.789265px;}
.y25_c00417{bottom:499.103521px;}
.y34_c00417{bottom:499.653306px;}
.yb_c00417{bottom:499.818769px;}
.y26_c00417{bottom:500.800864px;}
.y12_c00417{bottom:501.110605px;}
.y33_c00417{bottom:501.517382px;}
.ya_c00417{bottom:501.687706px;}
.y3b_c00417{bottom:501.869915px;}
.y1e_c00417{bottom:502.578702px;}
.y27_c00417{bottom:503.241722px;}
.y13_c00417{bottom:503.627848px;}
.y3c_c00417{bottom:505.496019px;}
.y28_c00417{bottom:505.499367px;}
.y32_c00417{bottom:506.168989px;}
.y9_c00417{bottom:506.348634px;}
.y1d_c00417{bottom:508.044213px;}
.y29_c00417{bottom:508.766327px;}
.y14_c00417{bottom:509.576794px;}
.y3d_c00417{bottom:511.126534px;}
.y1c_c00417{bottom:512.508085px;}
.y31_c00417{bottom:512.566592px;}
.y8_c00417{bottom:512.754669px;}
.y15_c00417{bottom:514.322677px;}
.y2a_c00417{bottom:517.158603px;}
.y3e_c00417{bottom:517.780195px;}
.y1b_c00417{bottom:518.929057px;}
.y30_c00417{bottom:519.869222px;}
.y7_c00417{bottom:519.959421px;}
.y6_c00417{bottom:523.416158px;}
.y1a_c00417{bottom:523.496236px;}
.y2b_c00417{bottom:525.202812px;}
.y16_c00417{bottom:526.099549px;}
.y2f_c00417{bottom:527.026630px;}
.y5_c00417{bottom:529.422883px;}
.y3f_c00417{bottom:529.736175px;}
.y19_c00417{bottom:531.263725px;}
.y2e_c00417{bottom:531.792993px;}
.y41_c00417{bottom:533.728456px;}
.y4f_c00417{bottom:534.421816px;}
.y18_c00417{bottom:535.155114px;}
.y4_c00417{bottom:536.678099px;}
.y2d_c00417{bottom:537.961701px;}
.y17_c00417{bottom:538.332892px;}
.y40_c00417{bottom:538.696314px;}
.y4d_c00417{bottom:540.431096px;}
.y2c_c00417{bottom:545.020884px;}
.y3_c00417{bottom:546.207017px;}
.y4e_c00417{bottom:577.871130px;}
.y2_c00417{bottom:597.559761px;}
.y51_c00417{bottom:639.489911px;}
.y53_c00417{bottom:1021.609033px;}
.y49_c00417{bottom:1127.585799px;}
.y4c_c00417{bottom:1129.718199px;}
.y4b_c00417{bottom:1147.707459px;}
.y4a_c00417{bottom:1150.017273px;}
.y48_c00417{bottom:1170.658440px;}
.h8_c00417{height:35.967282px;}
.h7_c00417{height:35.967283px;}
.h9_c00417{height:35.967285px;}
.hb_c00417{height:37.437353px;}
.h10_c00417{height:39.084907px;}
.hc_c00417{height:39.085184px;}
.h5_c00417{height:44.080723px;}
.h4_c00417{height:44.080726px;}
.h6_c00417{height:44.080728px;}
.h14_c00417{height:45.561399px;}
.h12_c00417{height:51.885424px;}
.hf_c00417{height:55.821847px;}
.ha_c00417{height:56.261810px;}
.h11_c00417{height:56.983387px;}
.h13_c00417{height:66.961090px;}
.h3_c00417{height:67.002968px;}
.he_c00417{height:68.338108px;}
.hd_c00417{height:89.323331px;}
.h2_c00417{height:1304.999946px;}
.h0_c00417{height:1304.999953px;}
.h1_c00417{height:1305.000000px;}
.w2_c00417{width:934.874961px;}
.w0_c00417{width:934.875000px;}
.w1_c00417{width:935.250000px;}
.x0_c00417{left:0.000000px;}
.x39_c00417{left:87.850202px;}
.x3c_c00417{left:108.062661px;}
.x3a_c00417{left:109.658623px;}
.x41_c00417{left:130.612669px;}
.x27_c00417{left:134.894322px;}
.x26_c00417{left:136.566734px;}
.x28_c00417{left:139.937719px;}
.x29_c00417{left:144.785273px;}
.x2a_c00417{left:150.147890px;}
.x2b_c00417{left:152.899057px;}
.x2c_c00417{left:155.907145px;}
.x2d_c00417{left:159.752336px;}
.x37_c00417{left:161.347648px;}
.x2e_c00417{left:163.203941px;}
.x2f_c00417{left:171.483965px;}
.x30_c00417{left:179.748684px;}
.x31_c00417{left:188.175145px;}
.x32_c00417{left:196.556636px;}
.x33_c00417{left:200.721504px;}
.x34_c00417{left:205.276922px;}
.x35_c00417{left:209.084069px;}
.x36_c00417{left:211.669316px;}
.x3_c00417{left:230.260919px;}
.x2_c00417{left:232.395871px;}
.x4_c00417{left:235.482735px;}
.x5_c00417{left:240.319117px;}
.x6_c00417{left:245.673577px;}
.x7_c00417{left:248.421493px;}
.x8_c00417{left:251.426626px;}
.x9_c00417{left:255.268917px;}
.x3e_c00417{left:256.468943px;}
.xa_c00417{left:258.553698px;}
.xb_c00417{left:262.988294px;}
.xc_c00417{left:271.601212px;}
.xd_c00417{left:283.434780px;}
.xe_c00417{left:290.867654px;}
.xf_c00417{left:294.260334px;}
.x3b_c00417{left:295.438786px;}
.x10_c00417{left:299.596701px;}
.x11_c00417{left:302.984150px;}
.x12_c00417{left:306.993562px;}
.x13_c00417{left:325.378518px;}
.x14_c00417{left:326.595106px;}
.x15_c00417{left:328.015253px;}
.x16_c00417{left:331.410444px;}
.x17_c00417{left:334.633053px;}
.x18_c00417{left:340.511825px;}
.x19_c00417{left:346.695139px;}
.x1a_c00417{left:352.384720px;}
.x1b_c00417{left:355.792694px;}
.x1c_c00417{left:363.695116px;}
.x1d_c00417{left:371.679253px;}
.x1e_c00417{left:378.434940px;}
.x1f_c00417{left:381.453328px;}
.x20_c00417{left:384.455783px;}
.x21_c00417{left:387.851715px;}
.x22_c00417{left:390.467224px;}
.x23_c00417{left:393.779799px;}
.x24_c00417{left:398.952070px;}
.x25_c00417{left:401.755082px;}
.x40_c00417{left:451.985828px;}
.x1_c00417{left:465.097640px;}
.x3f_c00417{left:676.474352px;}
.x38_c00417{left:696.904800px;}
.x3d_c00417{left:733.103068px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ws4_c00417{word-spacing:-37.035289pt;}
.ws3_c00417{word-spacing:-16.604696pt;}
.ws0_c00417{word-spacing:-13.477521pt;}
.ws2_c00417{word-spacing:-0.049530pt;}
.ws5_c00417{word-spacing:0.000000pt;}
.ws1_c00417{word-spacing:250.196272pt;}
._0_c00417{width:4.903323pt;}
._1_c00417{width:8.210370pt;}
._2_c00417{width:15.692412pt;}
.fsd_c00417{font-size:37.310908pt;}
.fs9_c00417{font-size:37.311173pt;}
.fs2_c00417{font-size:42.079973pt;}
.fs5_c00417{font-size:42.079974pt;}
.fs1_c00417{font-size:42.079975pt;}
.fs4_c00417{font-size:42.079976pt;}
.fs3_c00417{font-size:42.079977pt;}
.fs6_c00417{font-size:42.079978pt;}
.fs8_c00417{font-size:45.894021pt;}
.fsf_c00417{font-size:49.530431pt;}
.fsc_c00417{font-size:53.288186pt;}
.fs10_c00417{font-size:63.921837pt;}
.fs0_c00417{font-size:63.961814pt;}
.fse_c00417{font-size:66.115417pt;}
.fs7_c00417{font-size:68.413814pt;}
.fsb_c00417{font-size:79.952268pt;}
.fsa_c00417{font-size:85.269094pt;}
.y0_c00417{bottom:0.000000pt;}
.y1_c00417{bottom:0.000007pt;}
.y52_c00417{bottom:26.805533pt;}
.y47_c00417{bottom:157.927475pt;}
.y46_c00417{bottom:184.911365pt;}
.y45_c00417{bottom:211.895256pt;}
.y44_c00417{bottom:238.879146pt;}
.y43_c00417{bottom:265.863036pt;}
.y50_c00417{bottom:294.360575pt;}
.y42_c00417{bottom:357.390356pt;}
.y10_c00417{bottom:438.944560pt;}
.y38_c00417{bottom:438.957887pt;}
.yf_c00417{bottom:439.411208pt;}
.y39_c00417{bottom:439.428585pt;}
.y22_c00417{bottom:439.733989pt;}
.y37_c00417{bottom:440.063632pt;}
.ye_c00417{bottom:440.358224pt;}
.y23_c00417{bottom:440.474249pt;}
.y21_c00417{bottom:440.492144pt;}
.y36_c00417{bottom:441.175290pt;}
.yd_c00417{bottom:441.311665pt;}
.y20_c00417{bottom:441.411480pt;}
.y3a_c00417{bottom:441.575343pt;}
.y11_c00417{bottom:441.631897pt;}
.y24_c00417{bottom:442.412085pt;}
.y35_c00417{bottom:442.636491pt;}
.yc_c00417{bottom:442.778875pt;}
.y1f_c00417{bottom:443.368235pt;}
.y25_c00417{bottom:443.647574pt;}
.y34_c00417{bottom:444.136272pt;}
.yb_c00417{bottom:444.283350pt;}
.y26_c00417{bottom:445.156323pt;}
.y12_c00417{bottom:445.431649pt;}
.y33_c00417{bottom:445.793228pt;}
.ya_c00417{bottom:445.944627pt;}
.y3b_c00417{bottom:446.106592pt;}
.y1e_c00417{bottom:446.736624pt;}
.y27_c00417{bottom:447.325975pt;}
.y13_c00417{bottom:447.669198pt;}
.y3c_c00417{bottom:449.329795pt;}
.y28_c00417{bottom:449.332771pt;}
.y32_c00417{bottom:449.927990pt;}
.y9_c00417{bottom:450.087675pt;}
.y1d_c00417{bottom:451.594856pt;}
.y29_c00417{bottom:452.236735pt;}
.y14_c00417{bottom:452.957150pt;}
.y3d_c00417{bottom:454.334697pt;}
.y1c_c00417{bottom:455.562742pt;}
.y31_c00417{bottom:455.614749pt;}
.y8_c00417{bottom:455.781928pt;}
.y15_c00417{bottom:457.175713pt;}
.y2a_c00417{bottom:459.696536pt;}
.y3e_c00417{bottom:460.249062pt;}
.y1b_c00417{bottom:461.270273pt;}
.y30_c00417{bottom:462.105976pt;}
.y7_c00417{bottom:462.186152pt;}
.y6_c00417{bottom:465.258807pt;}
.y1a_c00417{bottom:465.329988pt;}
.y2b_c00417{bottom:466.846944pt;}
.y16_c00417{bottom:467.644044pt;}
.y2f_c00417{bottom:468.468115pt;}
.y5_c00417{bottom:470.598118pt;}
.y3f_c00417{bottom:470.876600pt;}
.y19_c00417{bottom:472.234422pt;}
.y2e_c00417{bottom:472.704883pt;}
.y41_c00417{bottom:474.425294pt;}
.y4f_c00417{bottom:475.041614pt;}
.y18_c00417{bottom:475.693435pt;}
.y4_c00417{bottom:477.047199pt;}
.y2d_c00417{bottom:478.188178pt;}
.y17_c00417{bottom:478.518126pt;}
.y40_c00417{bottom:478.841168pt;}
.y4d_c00417{bottom:480.383196pt;}
.y2c_c00417{bottom:484.463008pt;}
.y3_c00417{bottom:485.517349pt;}
.y4e_c00417{bottom:513.663227pt;}
.y2_c00417{bottom:531.164232pt;}
.y51_c00417{bottom:568.435476pt;}
.y53_c00417{bottom:908.096918pt;}
.y49_c00417{bottom:1002.298488pt;}
.y4c_c00417{bottom:1004.193955pt;}
.y4b_c00417{bottom:1020.184408pt;}
.y4a_c00417{bottom:1022.237576pt;}
.y48_c00417{bottom:1040.585280pt;}
.h8_c00417{height:31.970917pt;}
.h7_c00417{height:31.970918pt;}
.h9_c00417{height:31.970920pt;}
.hb_c00417{height:33.277647pt;}
.h10_c00417{height:34.742140pt;}
.hc_c00417{height:34.742386pt;}
.h5_c00417{height:39.182865pt;}
.h4_c00417{height:39.182867pt;}
.h6_c00417{height:39.182869pt;}
.h14_c00417{height:40.499022pt;}
.h12_c00417{height:46.120377pt;}
.hf_c00417{height:49.619420pt;}
.ha_c00417{height:50.010498pt;}
.h11_c00417{height:50.651899pt;}
.h13_c00417{height:59.520969pt;}
.h3_c00417{height:59.558193pt;}
.he_c00417{height:60.744985pt;}
.hd_c00417{height:79.398517pt;}
.h2_c00417{height:1159.999952pt;}
.h0_c00417{height:1159.999959pt;}
.h1_c00417{height:1160.000000pt;}
.w2_c00417{width:830.999965pt;}
.w0_c00417{width:831.000000pt;}
.w1_c00417{width:831.333333pt;}
.x0_c00417{left:0.000000pt;}
.x39_c00417{left:78.089069pt;}
.x3c_c00417{left:96.055698pt;}
.x3a_c00417{left:97.474332pt;}
.x41_c00417{left:116.100150pt;}
.x27_c00417{left:119.906064pt;}
.x26_c00417{left:121.392652pt;}
.x28_c00417{left:124.389083pt;}
.x29_c00417{left:128.698021pt;}
.x2a_c00417{left:133.464791pt;}
.x2b_c00417{left:135.910272pt;}
.x2c_c00417{left:138.584129pt;}
.x2d_c00417{left:142.002076pt;}
.x37_c00417{left:143.420132pt;}
.x2e_c00417{left:145.070170pt;}
.x2f_c00417{left:152.430191pt;}
.x30_c00417{left:159.776608pt;}
.x31_c00417{left:167.266795pt;}
.x32_c00417{left:174.717010pt;}
.x33_c00417{left:178.419115pt;}
.x34_c00417{left:182.468375pt;}
.x35_c00417{left:185.852506pt;}
.x36_c00417{left:188.150503pt;}
.x3_c00417{left:204.676373pt;}
.x2_c00417{left:206.574107pt;}
.x4_c00417{left:209.317987pt;}
.x5_c00417{left:213.616993pt;}
.x6_c00417{left:218.376513pt;}
.x7_c00417{left:220.819105pt;}
.x8_c00417{left:223.490334pt;}
.x9_c00417{left:226.905704pt;}
.x3e_c00417{left:227.972394pt;}
.xa_c00417{left:229.825509pt;}
.xb_c00417{left:233.767373pt;}
.xc_c00417{left:241.423300pt;}
.xd_c00417{left:251.942027pt;}
.xe_c00417{left:258.549026pt;}
.xf_c00417{left:261.564741pt;}
.x3b_c00417{left:262.612255pt;}
.x10_c00417{left:266.308178pt;}
.x11_c00417{left:269.319244pt;}
.x12_c00417{left:272.883167pt;}
.x13_c00417{left:289.225349pt;}
.x14_c00417{left:290.306761pt;}
.x15_c00417{left:291.569114pt;}
.x16_c00417{left:294.587062pt;}
.x17_c00417{left:297.451603pt;}
.x18_c00417{left:302.677178pt;}
.x19_c00417{left:308.173457pt;}
.x1a_c00417{left:313.230862pt;}
.x1b_c00417{left:316.260173pt;}
.x1c_c00417{left:323.284548pt;}
.x1d_c00417{left:330.381558pt;}
.x1e_c00417{left:336.386614pt;}
.x1f_c00417{left:339.069625pt;}
.x20_c00417{left:341.738474pt;}
.x21_c00417{left:344.757080pt;}
.x22_c00417{left:347.081977pt;}
.x23_c00417{left:350.026488pt;}
.x24_c00417{left:354.624063pt;}
.x25_c00417{left:357.115628pt;}
.x40_c00417{left:401.765180pt;}
.x1_c00417{left:413.420124pt;}
.x3f_c00417{left:601.310535pt;}
.x38_c00417{left:619.470933pt;}
.x3d_c00417{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.006348;font-style:normal;font-weight:normal;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_2bcfeb9aa419a8e2a0f89cb2.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.171387;font-style:normal;font-weight:normal;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_02f65bc616636999c5c65eb2.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.000000;font-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_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);}
.v0_c00418{vertical-align:0.000000px;}
.ls0_c00418{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00418{word-spacing:-18.680283px;}
.ws2_c00418{word-spacing:0.000000px;}
._a_c00418{width:1.550961px;}
._4_c00418{width:3.996637px;}
._3_c00418{width:5.570519px;}
._0_c00418{width:6.734238px;}
._b_c00418{width:7.751515px;}
._8_c00418{width:9.394499px;}
._1_c00418{width:10.796547px;}
._c_c00418{width:11.817224px;}
._2_c00418{width:12.840297px;}
._d_c00418{width:14.651411px;}
._6_c00418{width:15.973033px;}
._9_c00418{width:20.577534px;}
._5_c00418{width:22.334298px;}
._7_c00418{width:48.296935px;}
.fc1_c00418{color:rgb(0,0,0);}
.fc0_c00418{color:rgb(194,158,103);}
.fs3_c00418{font-size:71.912067px;}
.fs1_c00418{font-size:71.957041px;}
.fs2_c00418{font-size:74.340621px;}
.fs0_c00418{font-size:74.379845px;}
.y0_c00418{bottom:0.000000px;}
.y1_c00418{bottom:0.000008px;}
.y1f_c00418{bottom:30.156225px;}
.y1b_c00418{bottom:250.957004px;}
.y1a_c00418{bottom:281.313881px;}
.y19_c00418{bottom:311.670757px;}
.y18_c00418{bottom:342.027634px;}
.y17_c00418{bottom:372.384511px;}
.y16_c00418{bottom:402.741388px;}
.y1e_c00418{bottom:440.279751px;}
.y1d_c00418{bottom:507.004367px;}
.y1c_c00418{bottom:539.177975px;}
.y14_c00418{bottom:605.488745px;}
.y13_c00418{bottom:635.845622px;}
.y12_c00418{bottom:666.202498px;}
.y11_c00418{bottom:696.559375px;}
.y10_c00418{bottom:726.916252px;}
.yf_c00418{bottom:757.273129px;}
.ye_c00418{bottom:787.630006px;}
.yd_c00418{bottom:817.986882px;}
.yc_c00418{bottom:848.343759px;}
.yb_c00418{bottom:878.700636px;}
.ya_c00418{bottom:909.057513px;}
.y9_c00418{bottom:939.414389px;}
.y15_c00418{bottom:973.409503px;}
.y8_c00418{bottom:1053.163665px;}
.y7_c00418{bottom:1083.520542px;}
.y6_c00418{bottom:1113.877419px;}
.y5_c00418{bottom:1144.234296px;}
.y4_c00418{bottom:1174.591172px;}
.y3_c00418{bottom:1204.948049px;}
.y2_c00418{bottom:1229.600032px;}
.h5_c00418{height:56.953337px;}
.h3_c00418{height:56.983387px;}
.h6_c00418{height:66.961090px;}
.h4_c00418{height:67.002968px;}
.h2_c00418{height:1304.999946px;}
.h0_c00418{height:1304.999953px;}
.h1_c00418{height:1305.000000px;}
.w2_c00418{width:934.874961px;}
.w0_c00418{width:934.875000px;}
.w1_c00418{width:935.250000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:87.850202px;}
.x2_c00418{left:451.985828px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.ws0_c00418{word-spacing:-16.615081pt;}
.ws1_c00418{word-spacing:-16.604696pt;}
.ws2_c00418{word-spacing:0.000000pt;}
._a_c00418{width:1.378632pt;}
._4_c00418{width:3.552567pt;}
._3_c00418{width:4.951573pt;}
._0_c00418{width:5.985989pt;}
._b_c00418{width:6.890235pt;}
._8_c00418{width:8.350666pt;}
._1_c00418{width:9.596931pt;}
._c_c00418{width:10.504199pt;}
._2_c00418{width:11.413598pt;}
._d_c00418{width:13.023476pt;}
._6_c00418{width:14.198251pt;}
._9_c00418{width:18.291142pt;}
._5_c00418{width:19.852710pt;}
._7_c00418{width:42.930609pt;}
.fs3_c00418{font-size:63.921837pt;}
.fs1_c00418{font-size:63.961814pt;}
.fs2_c00418{font-size:66.080552pt;}
.fs0_c00418{font-size:66.115417pt;}
.y0_c00418{bottom:0.000000pt;}
.y1_c00418{bottom:0.000007pt;}
.y1f_c00418{bottom:26.805533pt;}
.y1b_c00418{bottom:223.072892pt;}
.y1a_c00418{bottom:250.056783pt;}
.y19_c00418{bottom:277.040673pt;}
.y18_c00418{bottom:304.024564pt;}
.y17_c00418{bottom:331.008454pt;}
.y16_c00418{bottom:357.992345pt;}
.y1e_c00418{bottom:391.359779pt;}
.y1d_c00418{bottom:450.670549pt;}
.y1c_c00418{bottom:479.269311pt;}
.y14_c00418{bottom:538.212218pt;}
.y13_c00418{bottom:565.196108pt;}
.y12_c00418{bottom:592.179999pt;}
.y11_c00418{bottom:619.163889pt;}
.y10_c00418{bottom:646.147780pt;}
.yf_c00418{bottom:673.131670pt;}
.ye_c00418{bottom:700.115560pt;}
.yd_c00418{bottom:727.099451pt;}
.yc_c00418{bottom:754.083341pt;}
.yb_c00418{bottom:781.067232pt;}
.ya_c00418{bottom:808.051122pt;}
.y9_c00418{bottom:835.035013pt;}
.y15_c00418{bottom:865.252892pt;}
.y8_c00418{bottom:936.145480pt;}
.y7_c00418{bottom:963.129371pt;}
.y6_c00418{bottom:990.113261pt;}
.y5_c00418{bottom:1017.097152pt;}
.y4_c00418{bottom:1044.081042pt;}
.y3_c00418{bottom:1071.064933pt;}
.y2_c00418{bottom:1092.977807pt;}
.h5_c00418{height:50.625189pt;}
.h3_c00418{height:50.651899pt;}
.h6_c00418{height:59.520969pt;}
.h4_c00418{height:59.558193pt;}
.h2_c00418{height:1159.999952pt;}
.h0_c00418{height:1159.999959pt;}
.h1_c00418{height:1160.000000pt;}
.w2_c00418{width:830.999965pt;}
.w0_c00418{width:831.000000pt;}
.w1_c00418{width:831.333333pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:78.089069pt;}
.x2_c00418{left:401.765180pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00419 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c00419 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00419 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00419 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_857bac774935085cbad39967.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.006348;font-style:normal;font-weight:normal;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_0bb66818f30226ecff452ecb.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.006348;font-style:normal;font-weight:normal;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_a3c0d7df66246ec4bebc460b.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.000000;font-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_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);}
.v0_c00420{vertical-align:0.000000px;}
.ls0_c00420{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00420{word-spacing:0.000000px;}
._2_c00420{width:1.037796px;}
._8_c00420{width:2.091574px;}
._0_c00420{width:3.843195px;}
._1_c00420{width:5.872601px;}
._3_c00420{width:7.478802px;}
._4_c00420{width:8.487576px;}
._b_c00420{width:9.632751px;}
._7_c00420{width:16.097307px;}
._6_c00420{width:20.071780px;}
._5_c00420{width:24.407282px;}
._9_c00420{width:25.672148px;}
._a_c00420{width:28.490796px;}
.fc1_c00420{color:rgb(0,0,0);}
.fc0_c00420{color:rgb(194,158,103);}
.fs3_c00420{font-size:71.912067px;}
.fs1_c00420{font-size:71.957041px;}
.fs2_c00420{font-size:74.340621px;}
.fs0_c00420{font-size:74.379845px;}
.y0_c00420{bottom:0.000000px;}
.y1_c00420{bottom:0.000008px;}
.y1c_c00420{bottom:30.156225px;}
.y1a_c00420{bottom:307.394369px;}
.y19_c00420{bottom:337.751245px;}
.y18_c00420{bottom:368.108122px;}
.y17_c00420{bottom:398.464999px;}
.y16_c00420{bottom:428.821876px;}
.y15_c00420{bottom:459.178753px;}
.y14_c00420{bottom:489.535629px;}
.y13_c00420{bottom:519.892506px;}
.y12_c00420{bottom:550.249383px;}
.y11_c00420{bottom:580.606260px;}
.y10_c00420{bottom:610.963136px;}
.yf_c00420{bottom:641.320013px;}
.ye_c00420{bottom:671.676890px;}
.yd_c00420{bottom:702.033767px;}
.yc_c00420{bottom:732.390643px;}
.yb_c00420{bottom:762.747520px;}
.ya_c00420{bottom:793.104397px;}
.y9_c00420{bottom:823.461274px;}
.y8_c00420{bottom:853.818151px;}
.y1b_c00420{bottom:893.226008px;}
.y7_c00420{bottom:972.192249px;}
.y6_c00420{bottom:1002.549126px;}
.y5_c00420{bottom:1032.906003px;}
.y4_c00420{bottom:1063.262880px;}
.y3_c00420{bottom:1093.619757px;}
.y2_c00420{bottom:1127.800176px;}
.h6_c00420{height:55.092790px;}
.h4_c00420{height:55.127245px;}
.h5_c00420{height:56.953337px;}
.h3_c00420{height:56.983387px;}
.h2_c00420{height:1304.999946px;}
.h0_c00420{height:1304.999953px;}
.h1_c00420{height:1305.000000px;}
.w2_c00420{width:934.874961px;}
.w0_c00420{width:934.875000px;}
.w1_c00420{width:935.250000px;}
.x0_c00420{left:0.000000px;}
.x1_c00420{left:87.850202px;}
.x2_c00420{left:451.985828px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls0_c00420{letter-spacing:0.000000pt;}
.ws0_c00420{word-spacing:-16.604696pt;}
.ws1_c00420{word-spacing:0.000000pt;}
._2_c00420{width:0.922485pt;}
._8_c00420{width:1.859177pt;}
._0_c00420{width:3.416173pt;}
._1_c00420{width:5.220090pt;}
._3_c00420{width:6.647824pt;}
._4_c00420{width:7.544512pt;}
._b_c00420{width:8.562446pt;}
._7_c00420{width:14.308717pt;}
._6_c00420{width:17.841582pt;}
._5_c00420{width:21.695362pt;}
._9_c00420{width:22.819687pt;}
._a_c00420{width:25.325152pt;}
.fs3_c00420{font-size:63.921837pt;}
.fs1_c00420{font-size:63.961814pt;}
.fs2_c00420{font-size:66.080552pt;}
.fs0_c00420{font-size:66.115417pt;}
.y0_c00420{bottom:0.000000pt;}
.y1_c00420{bottom:0.000007pt;}
.y1c_c00420{bottom:26.805533pt;}
.y1a_c00420{bottom:273.239439pt;}
.y19_c00420{bottom:300.223329pt;}
.y18_c00420{bottom:327.207220pt;}
.y17_c00420{bottom:354.191110pt;}
.y16_c00420{bottom:381.175001pt;}
.y15_c00420{bottom:408.158891pt;}
.y14_c00420{bottom:435.142782pt;}
.y13_c00420{bottom:462.126672pt;}
.y12_c00420{bottom:489.110563pt;}
.y11_c00420{bottom:516.094453pt;}
.y10_c00420{bottom:543.078343pt;}
.yf_c00420{bottom:570.062234pt;}
.ye_c00420{bottom:597.046124pt;}
.yd_c00420{bottom:624.030015pt;}
.yc_c00420{bottom:651.013905pt;}
.yb_c00420{bottom:677.997796pt;}
.ya_c00420{bottom:704.981686pt;}
.y9_c00420{bottom:731.965577pt;}
.y8_c00420{bottom:758.949467pt;}
.y1b_c00420{bottom:793.978674pt;}
.y7_c00420{bottom:864.170888pt;}
.y6_c00420{bottom:891.154779pt;}
.y5_c00420{bottom:918.138669pt;}
.y4_c00420{bottom:945.122560pt;}
.y3_c00420{bottom:972.106450pt;}
.y2_c00420{bottom:1002.489045pt;}
.h6_c00420{height:48.971369pt;}
.h4_c00420{height:49.001996pt;}
.h5_c00420{height:50.625189pt;}
.h3_c00420{height:50.651899pt;}
.h2_c00420{height:1159.999952pt;}
.h0_c00420{height:1159.999959pt;}
.h1_c00420{height:1160.000000pt;}
.w2_c00420{width:830.999965pt;}
.w0_c00420{width:831.000000pt;}
.w1_c00420{width:831.333333pt;}
.x0_c00420{left:0.000000pt;}
.x1_c00420{left:78.089069pt;}
.x2_c00420{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e1c9bc88488aea1188cc9ee.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.006348;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.006348;font-style:normal;font-weight:normal;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_c8948ca8e5ae805d38ac2d53.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.005371;font-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_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);}
.v0_c00421{vertical-align:0.000000px;}
.ls0_c00421{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00421{word-spacing:-18.680283px;}
.ws2_c00421{word-spacing:0.000000px;}
._1_c00421{width:1.037793px;}
._0_c00421{width:2.529739px;}
._6_c00421{width:3.694212px;}
._3_c00421{width:12.666266px;}
._2_c00421{width:14.651411px;}
._7_c00421{width:21.713599px;}
._4_c00421{width:31.278147px;}
._5_c00421{width:51.536377px;}
.fc1_c00421{color:rgb(194,158,103);}
.fc0_c00421{color:rgb(0,0,0);}
.fs2_c00421{font-size:71.912067px;}
.fs0_c00421{font-size:71.957041px;}
.fs1_c00421{font-size:74.340621px;}
.y0_c00421{bottom:0.000000px;}
.y1_c00421{bottom:0.000008px;}
.y11_c00421{bottom:30.156225px;}
.y6_c00421{bottom:701.982906px;}
.y5_c00421{bottom:732.339783px;}
.y4_c00421{bottom:762.696660px;}
.y3_c00421{bottom:793.053537px;}
.y2_c00421{bottom:823.410413px;}
.y10_c00421{bottom:862.903217px;}
.yf_c00421{bottom:945.337848px;}
.ye_c00421{bottom:975.694724px;}
.yd_c00421{bottom:1006.051601px;}
.yc_c00421{bottom:1036.408478px;}
.yb_c00421{bottom:1066.765355px;}
.ya_c00421{bottom:1097.122232px;}
.y9_c00421{bottom:1127.479108px;}
.y8_c00421{bottom:1157.835985px;}
.y7_c00421{bottom:1193.134029px;}
.h5_c00421{height:55.056974px;}
.h6_c00421{height:55.092790px;}
.h3_c00421{height:55.127245px;}
.h4_c00421{height:56.953337px;}
.h2_c00421{height:1304.999946px;}
.h0_c00421{height:1304.999953px;}
.h1_c00421{height:1305.000000px;}
.w2_c00421{width:934.874961px;}
.w0_c00421{width:934.875000px;}
.w1_c00421{width:935.250000px;}
.x0_c00421{left:0.000000px;}
.x1_c00421{left:89.434062px;}
.x2_c00421{left:451.985828px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ws0_c00421{word-spacing:-16.615081pt;}
.ws1_c00421{word-spacing:-16.604696pt;}
.ws2_c00421{word-spacing:0.000000pt;}
._1_c00421{width:0.922483pt;}
._0_c00421{width:2.248657pt;}
._6_c00421{width:3.283744pt;}
._3_c00421{width:11.258903pt;}
._2_c00421{width:13.023476pt;}
._7_c00421{width:19.300977pt;}
._4_c00421{width:27.802798pt;}
._5_c00421{width:45.810113pt;}
.fs2_c00421{font-size:63.921837pt;}
.fs0_c00421{font-size:63.961814pt;}
.fs1_c00421{font-size:66.080552pt;}
.y0_c00421{bottom:0.000000pt;}
.y1_c00421{bottom:0.000007pt;}
.y11_c00421{bottom:26.805533pt;}
.y6_c00421{bottom:623.984806pt;}
.y5_c00421{bottom:650.968696pt;}
.y4_c00421{bottom:677.952587pt;}
.y3_c00421{bottom:704.936477pt;}
.y2_c00421{bottom:731.920367pt;}
.y10_c00421{bottom:767.025081pt;}
.yf_c00421{bottom:840.300309pt;}
.ye_c00421{bottom:867.284200pt;}
.yd_c00421{bottom:894.268090pt;}
.yc_c00421{bottom:921.251980pt;}
.yb_c00421{bottom:948.235871pt;}
.ya_c00421{bottom:975.219761pt;}
.y9_c00421{bottom:1002.203652pt;}
.y8_c00421{bottom:1029.187542pt;}
.y7_c00421{bottom:1060.563581pt;}
.h5_c00421{height:48.939533pt;}
.h6_c00421{height:48.971369pt;}
.h3_c00421{height:49.001996pt;}
.h4_c00421{height:50.625189pt;}
.h2_c00421{height:1159.999952pt;}
.h0_c00421{height:1159.999959pt;}
.h1_c00421{height:1160.000000pt;}
.w2_c00421{width:830.999965pt;}
.w0_c00421{width:831.000000pt;}
.w1_c00421{width:831.333333pt;}
.x0_c00421{left:0.000000pt;}
.x1_c00421{left:79.496944pt;}
.x2_c00421{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d3d96996b9d893be841cd19.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00422;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00422;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:0.734863;font-style:normal;font-weight: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_c00422;src:url('chunks/assets/font_fe9e8c692b65bbc953ab3561.woff2')format("woff");}.ff5_c00422{font-family:ff5_c00422;line-height:1.000000;font-style:normal;font-weight: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_c00422;src:url('chunks/assets/font_ff0828a9d1b066cc6b9aec2b.woff2')format("woff");}.ff6_c00422{font-family:ff6_c00422;line-height:1.171387;font-style:normal;font-weight: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_c00422;src:url('chunks/assets/font_a2f478f710bcf7f5702acc3b.woff2')format("woff");}.ff7_c00422{font-family:ff7_c00422;line-height:1.000000;font-style:normal;font-weight: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_c00422;src:url('chunks/assets/font_5214515bb35fc665e6c12aa2.woff2')format("woff");}.ff8_c00422{font-family:ff8_c00422;line-height:0.734863;font-style:normal;font-weight: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_c00422;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff9_c00422{font-family:ff9_c00422;line-height:1.006348;font-style:normal;font-weight: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_c00422;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00422{font-family:ffa_c00422;line-height:0.940000;font-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_c00422{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3d_c00422{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m29_c00422{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00422{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2a_c00422{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3c_c00422{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00422{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m15_c00422{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00422{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2b_c00422{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m28_c00422{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m16_c00422{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00422{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2c_c00422{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3b_c00422{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00422{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m17_c00422{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m27_c00422{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00422{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00422{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2d_c00422{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m18_c00422{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3a_c00422{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m26_c00422{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00422{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00422{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m19_c00422{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2e_c00422{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m39_c00422{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00422{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m25_c00422{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1a_c00422{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00422{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m2f_c00422{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m38_c00422{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m24_c00422{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00422{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m23_c00422{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00422{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m30_c00422{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1b_c00422{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m37_c00422{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m22_c00422{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00422{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m31_c00422{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00422{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m21_c00422{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00422{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m32_c00422{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1c_c00422{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00422{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m33_c00422{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m20_c00422{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m36_c00422{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1d_c00422{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00422{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00422{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m34_c00422{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1e_c00422{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m1f_c00422{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m35_c00422{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00422{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m3e_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;}
.v1_c00422{vertical-align:26.810849px;}
.ls0_c00422{letter-spacing:0.000000px;}
.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;}
}
.ws5_c00422{word-spacing:-41.664701px;}
.ws4_c00422{word-spacing:-18.680283px;}
.ws2_c00422{word-spacing:-0.089946px;}
.ws1_c00422{word-spacing:-0.055722px;}
.ws6_c00422{word-spacing:0.000000px;}
.ws3_c00422{word-spacing:281.470806px;}
.ws0_c00422{word-spacing:1114.343689px;}
._1_c00422{width:3.794609px;}
._2_c00422{width:6.562129px;}
._0_c00422{width:16.964434px;}
.fc3_c00422{color:rgb(194,158,103);}
.fc2_c00422{color:rgb(9,71,81);}
.fc1_c00422{color:rgb(255,255,255);}
.fc0_c00422{color:rgb(0,0,0);}
.fs7_c00422{font-size:41.974772px;}
.fsb_c00422{font-size:41.975069px;}
.fs1_c00422{font-size:47.339969px;}
.fs4_c00422{font-size:47.339970px;}
.fs0_c00422{font-size:47.339972px;}
.fs3_c00422{font-size:47.339973px;}
.fs2_c00422{font-size:47.339974px;}
.fs5_c00422{font-size:47.339975px;}
.fs8_c00422{font-size:51.630774px;}
.fsa_c00422{font-size:55.721735px;}
.fsd_c00422{font-size:59.949210px;}
.fsf_c00422{font-size:71.912067px;}
.fs9_c00422{font-size:71.957041px;}
.fse_c00422{font-size:74.379845px;}
.fs6_c00422{font-size:76.965540px;}
.fsc_c00422{font-size:89.946302px;}
.y0_c00422{bottom:0.000000px;}
.y1_c00422{bottom:0.000008px;}
.y50_c00422{bottom:30.156225px;}
.y47_c00422{bottom:177.668409px;}
.y46_c00422{bottom:208.025286px;}
.y45_c00422{bottom:238.382162px;}
.y44_c00422{bottom:268.739039px;}
.y43_c00422{bottom:299.095916px;}
.y4f_c00422{bottom:335.652911px;}
.y42_c00422{bottom:402.064151px;}
.yf_c00422{bottom:493.812629px;}
.y37_c00422{bottom:493.827623px;}
.ye_c00422{bottom:494.337609px;}
.y38_c00422{bottom:494.357158px;}
.y21_c00422{bottom:494.700737px;}
.y36_c00422{bottom:495.071586px;}
.yd_c00422{bottom:495.403002px;}
.y22_c00422{bottom:495.533530px;}
.y20_c00422{bottom:495.553663px;}
.y35_c00422{bottom:496.322201px;}
.yc_c00422{bottom:496.475623px;}
.y1f_c00422{bottom:496.587915px;}
.y39_c00422{bottom:496.772260px;}
.y10_c00422{bottom:496.835884px;}
.y23_c00422{bottom:497.713596px;}
.y34_c00422{bottom:497.966053px;}
.yb_c00422{bottom:498.126234px;}
.y1e_c00422{bottom:498.789265px;}
.y24_c00422{bottom:499.103521px;}
.y33_c00422{bottom:499.653306px;}
.ya_c00422{bottom:499.818769px;}
.y25_c00422{bottom:500.800864px;}
.y11_c00422{bottom:501.110605px;}
.y32_c00422{bottom:501.517382px;}
.y9_c00422{bottom:501.687706px;}
.y3a_c00422{bottom:501.869915px;}
.y1d_c00422{bottom:502.578702px;}
.y26_c00422{bottom:503.241722px;}
.y12_c00422{bottom:503.627848px;}
.y3b_c00422{bottom:505.496019px;}
.y27_c00422{bottom:505.499367px;}
.y31_c00422{bottom:506.168989px;}
.y8_c00422{bottom:506.348634px;}
.y1c_c00422{bottom:508.044213px;}
.y28_c00422{bottom:508.766327px;}
.y13_c00422{bottom:509.576794px;}
.y3c_c00422{bottom:511.126534px;}
.y1b_c00422{bottom:512.508085px;}
.y30_c00422{bottom:512.566592px;}
.y7_c00422{bottom:512.754669px;}
.y14_c00422{bottom:514.322677px;}
.y29_c00422{bottom:517.158603px;}
.y3d_c00422{bottom:517.780195px;}
.y1a_c00422{bottom:518.929057px;}
.y2f_c00422{bottom:519.869222px;}
.y6_c00422{bottom:519.959421px;}
.y5_c00422{bottom:523.416158px;}
.y19_c00422{bottom:523.496236px;}
.y2a_c00422{bottom:525.202812px;}
.y15_c00422{bottom:526.099549px;}
.y2e_c00422{bottom:527.026630px;}
.y4_c00422{bottom:529.422883px;}
.y3e_c00422{bottom:529.736175px;}
.y18_c00422{bottom:531.263725px;}
.y2d_c00422{bottom:531.792993px;}
.y40_c00422{bottom:533.728456px;}
.y4e_c00422{bottom:534.421816px;}
.y17_c00422{bottom:535.155114px;}
.y3_c00422{bottom:536.678099px;}
.y2c_c00422{bottom:537.961701px;}
.y16_c00422{bottom:538.332892px;}
.y3f_c00422{bottom:538.696314px;}
.y2b_c00422{bottom:545.020884px;}
.y2_c00422{bottom:546.207017px;}
.y41_c00422{bottom:577.871130px;}
.y48_c00422{bottom:639.489911px;}
.y51_c00422{bottom:1021.609033px;}
.y4a_c00422{bottom:1127.585799px;}
.y4d_c00422{bottom:1129.718199px;}
.y4c_c00422{bottom:1147.707459px;}
.y4b_c00422{bottom:1150.991705px;}
.y49_c00422{bottom:1170.658440px;}
.ha_c00422{height:32.157430px;}
.h7_c00422{height:35.967282px;}
.h6_c00422{height:35.967283px;}
.h8_c00422{height:35.967285px;}
.h4_c00422{height:36.267779px;}
.h3_c00422{height:36.267781px;}
.h5_c00422{height:36.267783px;}
.hb_c00422{height:37.437353px;}
.he_c00422{height:39.085184px;}
.h16_c00422{height:45.561399px;}
.hd_c00422{height:51.885424px;}
.h15_c00422{height:55.092790px;}
.hc_c00422{height:55.127245px;}
.h12_c00422{height:55.821847px;}
.h13_c00422{height:56.261810px;}
.h14_c00422{height:56.983387px;}
.h9_c00422{height:58.968279px;}
.hf_c00422{height:67.002968px;}
.h11_c00422{height:68.338108px;}
.h10_c00422{height:83.753709px;}
.h2_c00422{height:1304.999946px;}
.h0_c00422{height:1304.999953px;}
.h1_c00422{height:1305.000000px;}
.w2_c00422{width:934.874961px;}
.w0_c00422{width:934.875000px;}
.w1_c00422{width:935.250000px;}
.x0_c00422{left:0.000000px;}
.x39_c00422{left:89.434062px;}
.x3f_c00422{left:90.790650px;}
.x3d_c00422{left:108.062661px;}
.x3b_c00422{left:109.658623px;}
.x41_c00422{left:130.612669px;}
.x26_c00422{left:134.894322px;}
.x25_c00422{left:136.566734px;}
.x27_c00422{left:139.937719px;}
.x28_c00422{left:144.785273px;}
.x29_c00422{left:150.147890px;}
.x2a_c00422{left:152.899057px;}
.x2b_c00422{left:155.907145px;}
.x2c_c00422{left:159.752336px;}
.x36_c00422{left:161.347648px;}
.x2d_c00422{left:163.203941px;}
.x2e_c00422{left:171.483965px;}
.x2f_c00422{left:179.748684px;}
.x30_c00422{left:188.175145px;}
.x31_c00422{left:196.556636px;}
.x32_c00422{left:200.721504px;}
.x33_c00422{left:205.276922px;}
.x34_c00422{left:209.084069px;}
.x35_c00422{left:211.669316px;}
.x2_c00422{left:230.260919px;}
.x1_c00422{left:232.395871px;}
.x3_c00422{left:235.482735px;}
.x4_c00422{left:240.319117px;}
.x5_c00422{left:245.673577px;}
.x6_c00422{left:248.421493px;}
.x7_c00422{left:251.426626px;}
.x8_c00422{left:255.268917px;}
.x3e_c00422{left:256.468943px;}
.x9_c00422{left:258.553698px;}
.xa_c00422{left:262.988294px;}
.xb_c00422{left:271.601212px;}
.xc_c00422{left:283.434780px;}
.xd_c00422{left:290.867654px;}
.xe_c00422{left:294.260334px;}
.x3c_c00422{left:295.438786px;}
.xf_c00422{left:299.596701px;}
.x10_c00422{left:302.984150px;}
.x11_c00422{left:306.993562px;}
.x12_c00422{left:325.378518px;}
.x13_c00422{left:326.595106px;}
.x14_c00422{left:328.015253px;}
.x15_c00422{left:331.410444px;}
.x16_c00422{left:334.633053px;}
.x17_c00422{left:340.511825px;}
.x18_c00422{left:346.695139px;}
.x19_c00422{left:352.384720px;}
.x1a_c00422{left:355.792694px;}
.x1b_c00422{left:363.695116px;}
.x1c_c00422{left:371.679253px;}
.x1d_c00422{left:378.434940px;}
.x1e_c00422{left:381.453328px;}
.x1f_c00422{left:384.455783px;}
.x20_c00422{left:387.851715px;}
.x21_c00422{left:390.467224px;}
.x22_c00422{left:393.779799px;}
.x23_c00422{left:398.952070px;}
.x24_c00422{left:401.755082px;}
.x40_c00422{left:451.985828px;}
.x3a_c00422{left:676.474352px;}
.x38_c00422{left:696.904800px;}
.x37_c00422{left:733.103068px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.v1_c00422{vertical-align:23.831865pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.ws5_c00422{word-spacing:-37.035289pt;}
.ws4_c00422{word-spacing:-16.604696pt;}
.ws2_c00422{word-spacing:-0.079952pt;}
.ws1_c00422{word-spacing:-0.049530pt;}
.ws6_c00422{word-spacing:0.000000pt;}
.ws3_c00422{word-spacing:250.196272pt;}
.ws0_c00422{word-spacing:990.527723pt;}
._1_c00422{width:3.372986pt;}
._2_c00422{width:5.833004pt;}
._0_c00422{width:15.079497pt;}
.fs7_c00422{font-size:37.310908pt;}
.fsb_c00422{font-size:37.311173pt;}
.fs1_c00422{font-size:42.079973pt;}
.fs4_c00422{font-size:42.079974pt;}
.fs0_c00422{font-size:42.079975pt;}
.fs3_c00422{font-size:42.079976pt;}
.fs2_c00422{font-size:42.079977pt;}
.fs5_c00422{font-size:42.079978pt;}
.fs8_c00422{font-size:45.894021pt;}
.fsa_c00422{font-size:49.530431pt;}
.fsd_c00422{font-size:53.288186pt;}
.fsf_c00422{font-size:63.921837pt;}
.fs9_c00422{font-size:63.961814pt;}
.fse_c00422{font-size:66.115417pt;}
.fs6_c00422{font-size:68.413814pt;}
.fsc_c00422{font-size:79.952268pt;}
.y0_c00422{bottom:0.000000pt;}
.y1_c00422{bottom:0.000007pt;}
.y50_c00422{bottom:26.805533pt;}
.y47_c00422{bottom:157.927475pt;}
.y46_c00422{bottom:184.911365pt;}
.y45_c00422{bottom:211.895256pt;}
.y44_c00422{bottom:238.879146pt;}
.y43_c00422{bottom:265.863036pt;}
.y4f_c00422{bottom:298.358143pt;}
.y42_c00422{bottom:357.390356pt;}
.yf_c00422{bottom:438.944560pt;}
.y37_c00422{bottom:438.957887pt;}
.ye_c00422{bottom:439.411208pt;}
.y38_c00422{bottom:439.428585pt;}
.y21_c00422{bottom:439.733989pt;}
.y36_c00422{bottom:440.063632pt;}
.yd_c00422{bottom:440.358224pt;}
.y22_c00422{bottom:440.474249pt;}
.y20_c00422{bottom:440.492144pt;}
.y35_c00422{bottom:441.175290pt;}
.yc_c00422{bottom:441.311665pt;}
.y1f_c00422{bottom:441.411480pt;}
.y39_c00422{bottom:441.575343pt;}
.y10_c00422{bottom:441.631897pt;}
.y23_c00422{bottom:442.412085pt;}
.y34_c00422{bottom:442.636491pt;}
.yb_c00422{bottom:442.778875pt;}
.y1e_c00422{bottom:443.368235pt;}
.y24_c00422{bottom:443.647574pt;}
.y33_c00422{bottom:444.136272pt;}
.ya_c00422{bottom:444.283350pt;}
.y25_c00422{bottom:445.156323pt;}
.y11_c00422{bottom:445.431649pt;}
.y32_c00422{bottom:445.793228pt;}
.y9_c00422{bottom:445.944627pt;}
.y3a_c00422{bottom:446.106592pt;}
.y1d_c00422{bottom:446.736624pt;}
.y26_c00422{bottom:447.325975pt;}
.y12_c00422{bottom:447.669198pt;}
.y3b_c00422{bottom:449.329795pt;}
.y27_c00422{bottom:449.332771pt;}
.y31_c00422{bottom:449.927990pt;}
.y8_c00422{bottom:450.087675pt;}
.y1c_c00422{bottom:451.594856pt;}
.y28_c00422{bottom:452.236735pt;}
.y13_c00422{bottom:452.957150pt;}
.y3c_c00422{bottom:454.334697pt;}
.y1b_c00422{bottom:455.562742pt;}
.y30_c00422{bottom:455.614749pt;}
.y7_c00422{bottom:455.781928pt;}
.y14_c00422{bottom:457.175713pt;}
.y29_c00422{bottom:459.696536pt;}
.y3d_c00422{bottom:460.249062pt;}
.y1a_c00422{bottom:461.270273pt;}
.y2f_c00422{bottom:462.105976pt;}
.y6_c00422{bottom:462.186152pt;}
.y5_c00422{bottom:465.258807pt;}
.y19_c00422{bottom:465.329988pt;}
.y2a_c00422{bottom:466.846944pt;}
.y15_c00422{bottom:467.644044pt;}
.y2e_c00422{bottom:468.468115pt;}
.y4_c00422{bottom:470.598118pt;}
.y3e_c00422{bottom:470.876600pt;}
.y18_c00422{bottom:472.234422pt;}
.y2d_c00422{bottom:472.704883pt;}
.y40_c00422{bottom:474.425294pt;}
.y4e_c00422{bottom:475.041614pt;}
.y17_c00422{bottom:475.693435pt;}
.y3_c00422{bottom:477.047199pt;}
.y2c_c00422{bottom:478.188178pt;}
.y16_c00422{bottom:478.518126pt;}
.y3f_c00422{bottom:478.841168pt;}
.y2b_c00422{bottom:484.463008pt;}
.y2_c00422{bottom:485.517349pt;}
.y41_c00422{bottom:513.663227pt;}
.y48_c00422{bottom:568.435476pt;}
.y51_c00422{bottom:908.096918pt;}
.y4a_c00422{bottom:1002.298488pt;}
.y4d_c00422{bottom:1004.193955pt;}
.y4c_c00422{bottom:1020.184408pt;}
.y4b_c00422{bottom:1023.103737pt;}
.y49_c00422{bottom:1040.585280pt;}
.ha_c00422{height:28.584382pt;}
.h7_c00422{height:31.970917pt;}
.h6_c00422{height:31.970918pt;}
.h8_c00422{height:31.970920pt;}
.h4_c00422{height:32.238026pt;}
.h3_c00422{height:32.238028pt;}
.h5_c00422{height:32.238029pt;}
.hb_c00422{height:33.277647pt;}
.he_c00422{height:34.742386pt;}
.h16_c00422{height:40.499022pt;}
.hd_c00422{height:46.120377pt;}
.h15_c00422{height:48.971369pt;}
.hc_c00422{height:49.001996pt;}
.h12_c00422{height:49.619420pt;}
.h13_c00422{height:50.010498pt;}
.h14_c00422{height:50.651899pt;}
.h9_c00422{height:52.416248pt;}
.hf_c00422{height:59.558193pt;}
.h11_c00422{height:60.744985pt;}
.h10_c00422{height:74.447742pt;}
.h2_c00422{height:1159.999952pt;}
.h0_c00422{height:1159.999959pt;}
.h1_c00422{height:1160.000000pt;}
.w2_c00422{width:830.999965pt;}
.w0_c00422{width:831.000000pt;}
.w1_c00422{width:831.333333pt;}
.x0_c00422{left:0.000000pt;}
.x39_c00422{left:79.496944pt;}
.x3f_c00422{left:80.702800pt;}
.x3d_c00422{left:96.055698pt;}
.x3b_c00422{left:97.474332pt;}
.x41_c00422{left:116.100150pt;}
.x26_c00422{left:119.906064pt;}
.x25_c00422{left:121.392652pt;}
.x27_c00422{left:124.389083pt;}
.x28_c00422{left:128.698021pt;}
.x29_c00422{left:133.464791pt;}
.x2a_c00422{left:135.910272pt;}
.x2b_c00422{left:138.584129pt;}
.x2c_c00422{left:142.002076pt;}
.x36_c00422{left:143.420132pt;}
.x2d_c00422{left:145.070170pt;}
.x2e_c00422{left:152.430191pt;}
.x2f_c00422{left:159.776608pt;}
.x30_c00422{left:167.266795pt;}
.x31_c00422{left:174.717010pt;}
.x32_c00422{left:178.419115pt;}
.x33_c00422{left:182.468375pt;}
.x34_c00422{left:185.852506pt;}
.x35_c00422{left:188.150503pt;}
.x2_c00422{left:204.676373pt;}
.x1_c00422{left:206.574107pt;}
.x3_c00422{left:209.317987pt;}
.x4_c00422{left:213.616993pt;}
.x5_c00422{left:218.376513pt;}
.x6_c00422{left:220.819105pt;}
.x7_c00422{left:223.490334pt;}
.x8_c00422{left:226.905704pt;}
.x3e_c00422{left:227.972394pt;}
.x9_c00422{left:229.825509pt;}
.xa_c00422{left:233.767373pt;}
.xb_c00422{left:241.423300pt;}
.xc_c00422{left:251.942027pt;}
.xd_c00422{left:258.549026pt;}
.xe_c00422{left:261.564741pt;}
.x3c_c00422{left:262.612255pt;}
.xf_c00422{left:266.308178pt;}
.x10_c00422{left:269.319244pt;}
.x11_c00422{left:272.883167pt;}
.x12_c00422{left:289.225349pt;}
.x13_c00422{left:290.306761pt;}
.x14_c00422{left:291.569114pt;}
.x15_c00422{left:294.587062pt;}
.x16_c00422{left:297.451603pt;}
.x17_c00422{left:302.677178pt;}
.x18_c00422{left:308.173457pt;}
.x19_c00422{left:313.230862pt;}
.x1a_c00422{left:316.260173pt;}
.x1b_c00422{left:323.284548pt;}
.x1c_c00422{left:330.381558pt;}
.x1d_c00422{left:336.386614pt;}
.x1e_c00422{left:339.069625pt;}
.x1f_c00422{left:341.738474pt;}
.x20_c00422{left:344.757080pt;}
.x21_c00422{left:347.081977pt;}
.x22_c00422{left:350.026488pt;}
.x23_c00422{left:354.624063pt;}
.x24_c00422{left:357.115628pt;}
.x40_c00422{left:401.765180pt;}
.x3a_c00422{left:601.310535pt;}
.x38_c00422{left:619.470933pt;}
.x37_c00422{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.006348;font-style:normal;font-weight:normal;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_27979f6e3d392e5a38a98822.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.006348;font-style:normal;font-weight:normal;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_4981bbcbead1457b403b9377.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.000000;font-style:normal;font-weight:normal;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_af24c93efcc5d6409d693242.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:0.727051;font-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_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);}
.v0_c00423{vertical-align:0.000000px;}
.ls0_c00423{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws2_c00423{word-spacing:-18.680283px;}
.ws1_c00423{word-spacing:-0.053968px;}
.ws3_c00423{word-spacing:0.000000px;}
._4_c00423{width:1.037793px;}
._3_c00423{width:2.529739px;}
._0_c00423{width:4.790062px;}
._2_c00423{width:6.221619px;}
._1_c00423{width:11.562181px;}
._7_c00423{width:12.994631px;}
._5_c00423{width:14.651411px;}
._9_c00423{width:16.443308px;}
._a_c00423{width:17.602770px;}
._10_c00423{width:19.699082px;}
._8_c00423{width:21.151435px;}
._6_c00423{width:22.199043px;}
._f_c00423{width:23.976257px;}
._b_c00423{width:25.142789px;}
._c_c00423{width:27.499182px;}
._d_c00423{width:29.103743px;}
._e_c00423{width:38.894750px;}
.fc1_c00423{color:rgb(0,0,0);}
.fc0_c00423{color:rgb(194,158,103);}
.fs3_c00423{font-size:53.967781px;}
.fs4_c00423{font-size:71.912067px;}
.fs1_c00423{font-size:71.957041px;}
.fs2_c00423{font-size:74.340621px;}
.fs0_c00423{font-size:74.379845px;}
.y0_c00423{bottom:0.000000px;}
.y1_c00423{bottom:0.000008px;}
.y22_c00423{bottom:30.156225px;}
.y21_c00423{bottom:55.250134px;}
.yd_c00423{bottom:224.544633px;}
.yc_c00423{bottom:254.901510px;}
.yb_c00423{bottom:285.258387px;}
.ya_c00423{bottom:315.615263px;}
.y9_c00423{bottom:345.972140px;}
.y8_c00423{bottom:376.329017px;}
.y20_c00423{bottom:409.617868px;}
.y1f_c00423{bottom:456.106387px;}
.y1e_c00423{bottom:486.463264px;}
.y1d_c00423{bottom:516.820141px;}
.y1c_c00423{bottom:547.177018px;}
.y1b_c00423{bottom:582.172341px;}
.y1a_c00423{bottom:633.946995px;}
.y19_c00423{bottom:664.303872px;}
.y18_c00423{bottom:694.660749px;}
.y17_c00423{bottom:725.017626px;}
.y16_c00423{bottom:755.374502px;}
.y15_c00423{bottom:785.731379px;}
.y14_c00423{bottom:816.088256px;}
.y13_c00423{bottom:846.445133px;}
.y12_c00423{bottom:876.802009px;}
.y11_c00423{bottom:907.158886px;}
.y10_c00423{bottom:937.515763px;}
.yf_c00423{bottom:967.872640px;}
.ye_c00423{bottom:998.229517px;}
.y7_c00423{bottom:1029.292027px;}
.y6_c00423{bottom:1079.542939px;}
.y5_c00423{bottom:1109.899815px;}
.y4_c00423{bottom:1140.256692px;}
.y3_c00423{bottom:1170.613569px;}
.y2_c00423{bottom:1204.539346px;}
.h6_c00423{height:41.345434px;}
.h7_c00423{height:55.092790px;}
.h4_c00423{height:55.127245px;}
.h5_c00423{height:56.953337px;}
.h3_c00423{height:56.983387px;}
.h2_c00423{height:1304.999946px;}
.h0_c00423{height:1304.999953px;}
.h1_c00423{height:1305.000000px;}
.w2_c00423{width:934.874961px;}
.w0_c00423{width:934.875000px;}
.w1_c00423{width:935.250000px;}
.x0_c00423{left:0.000000px;}
.x1_c00423{left:87.850202px;}
.x3_c00423{left:451.985828px;}
.x2_c00423{left:703.895479px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ws0_c00423{word-spacing:-16.615081pt;}
.ws2_c00423{word-spacing:-16.604696pt;}
.ws1_c00423{word-spacing:-0.047971pt;}
.ws3_c00423{word-spacing:0.000000pt;}
._4_c00423{width:0.922483pt;}
._3_c00423{width:2.248657pt;}
._0_c00423{width:4.257833pt;}
._2_c00423{width:5.530328pt;}
._1_c00423{width:10.277494pt;}
._7_c00423{width:11.550783pt;}
._5_c00423{width:13.023476pt;}
._9_c00423{width:14.616274pt;}
._a_c00423{width:15.646907pt;}
._10_c00423{width:17.510296pt;}
._8_c00423{width:18.801275pt;}
._6_c00423{width:19.732483pt;}
._f_c00423{width:21.312228pt;}
._b_c00423{width:22.349146pt;}
._c_c00423{width:24.443717pt;}
._d_c00423{width:25.869994pt;}
._e_c00423{width:34.573111pt;}
.fs3_c00423{font-size:47.971361pt;}
.fs4_c00423{font-size:63.921837pt;}
.fs1_c00423{font-size:63.961814pt;}
.fs2_c00423{font-size:66.080552pt;}
.fs0_c00423{font-size:66.115417pt;}
.y0_c00423{bottom:0.000000pt;}
.y1_c00423{bottom:0.000007pt;}
.y22_c00423{bottom:26.805533pt;}
.y21_c00423{bottom:49.111230pt;}
.yd_c00423{bottom:199.595229pt;}
.yc_c00423{bottom:226.579120pt;}
.yb_c00423{bottom:253.563010pt;}
.ya_c00423{bottom:280.546901pt;}
.y9_c00423{bottom:307.530791pt;}
.y8_c00423{bottom:334.514682pt;}
.y20_c00423{bottom:364.104772pt;}
.y1f_c00423{bottom:405.427900pt;}
.y1e_c00423{bottom:432.411790pt;}
.y1d_c00423{bottom:459.395681pt;}
.y1c_c00423{bottom:486.379571pt;}
.y1b_c00423{bottom:517.486525pt;}
.y1a_c00423{bottom:563.508440pt;}
.y19_c00423{bottom:590.492331pt;}
.y18_c00423{bottom:617.476221pt;}
.y17_c00423{bottom:644.460112pt;}
.y16_c00423{bottom:671.444002pt;}
.y15_c00423{bottom:698.427893pt;}
.y14_c00423{bottom:725.411783pt;}
.y13_c00423{bottom:752.395673pt;}
.y12_c00423{bottom:779.379564pt;}
.y11_c00423{bottom:806.363454pt;}
.y10_c00423{bottom:833.347345pt;}
.yf_c00423{bottom:860.331235pt;}
.ye_c00423{bottom:887.315126pt;}
.y7_c00423{bottom:914.926246pt;}
.y6_c00423{bottom:959.593723pt;}
.y5_c00423{bottom:986.577614pt;}
.y4_c00423{bottom:1013.561504pt;}
.y3_c00423{bottom:1040.545395pt;}
.y2_c00423{bottom:1070.701641pt;}
.h6_c00423{height:36.751497pt;}
.h7_c00423{height:48.971369pt;}
.h4_c00423{height:49.001996pt;}
.h5_c00423{height:50.625189pt;}
.h3_c00423{height:50.651899pt;}
.h2_c00423{height:1159.999952pt;}
.h0_c00423{height:1159.999959pt;}
.h1_c00423{height:1160.000000pt;}
.w2_c00423{width:830.999965pt;}
.w0_c00423{width:831.000000pt;}
.w1_c00423{width:831.333333pt;}
.x0_c00423{left:0.000000pt;}
.x1_c00423{left:78.089069pt;}
.x3_c00423{left:401.765180pt;}
.x2_c00423{left:625.684870pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe9e8c692b65bbc953ab3561.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.000000;font-style:normal;font-weight:normal;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_78e487c1a24c69c39d1142d0.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.171387;font-style:normal;font-weight:normal;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_89b854987250301d23fadd77.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.171387;font-style:normal;font-weight:normal;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_85613442f53f5b3deb1bf967.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.000000;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff5_c00424{font-family:ff5_c00424;line-height:0.769531;font-style:normal;font-weight: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_c00424;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff6_c00424{font-family:ff6_c00424;line-height:0.743000;font-style:normal;font-weight: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_c00424;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00424{font-family:ff7_c00424;line-height:1.006348;font-style:normal;font-weight: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_c00424;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00424{font-family:ff8_c00424;line-height:0.734863;font-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_c00424{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00424{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00424{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00424{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00424{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00424{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00424{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00424{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00424{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00424{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00424{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00424{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00424{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00424{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00424{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00424{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00424{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00424{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00424{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00424{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00424{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00424{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00424{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00424{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00424{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00424{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00424{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00424{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00424{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00424{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00424{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00424{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00424{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00424{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00424{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00424{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00424{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00424{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00424{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00424{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00424{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00424{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00424{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00424{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00424{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00424{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00424{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00424{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00424{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00424{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00424{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00424{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00424{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00424{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00424{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00424{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00424{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00424{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00424{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00424{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00424{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00424{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00424{vertical-align:0.000000px;}
.v1_c00424{vertical-align:26.810849px;}
.ls0_c00424{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00424{word-spacing:-18.680283px;}
.ws0_c00424{word-spacing:-0.055722px;}
.ws4_c00424{word-spacing:0.000000px;}
.ws2_c00424{word-spacing:281.470806px;}
.ws1_c00424{word-spacing:1114.343689px;}
._4_c00424{width:3.513530px;}
._2_c00424{width:5.164886px;}
._3_c00424{width:13.824085px;}
._5_c00424{width:17.415359px;}
._0_c00424{width:21.286554px;}
._1_c00424{width:26.744942px;}
._6_c00424{width:30.605980px;}
.fc3_c00424{color:rgb(9,71,81);}
.fc2_c00424{color:rgb(194,158,103);}
.fc1_c00424{color:rgb(0,0,0);}
.fc0_c00424{color:rgb(255,255,255);}
.fsd_c00424{font-size:41.974772px;}
.fs2_c00424{font-size:41.975069px;}
.fs7_c00424{font-size:47.339969px;}
.fsa_c00424{font-size:47.339970px;}
.fs6_c00424{font-size:47.339972px;}
.fs9_c00424{font-size:47.339973px;}
.fs8_c00424{font-size:47.339974px;}
.fsb_c00424{font-size:47.339975px;}
.fsf_c00424{font-size:51.630774px;}
.fs0_c00424{font-size:55.721735px;}
.fs5_c00424{font-size:59.949210px;}
.fs10_c00424{font-size:71.912067px;}
.fs1_c00424{font-size:71.957041px;}
.fse_c00424{font-size:74.379845px;}
.fsc_c00424{font-size:76.965540px;}
.fs4_c00424{font-size:89.946302px;}
.fs3_c00424{font-size:95.927731px;}
.y0_c00424{bottom:0.000000px;}
.y1_c00424{bottom:0.000008px;}
.y54_c00424{bottom:30.156225px;}
.ya_c00424{bottom:89.970835px;}
.y9_c00424{bottom:120.327711px;}
.y8_c00424{bottom:150.684588px;}
.y7_c00424{bottom:181.041465px;}
.y6_c00424{bottom:211.398342px;}
.y5_c00424{bottom:241.755218px;}
.y4_c00424{bottom:272.112095px;}
.y3_c00424{bottom:302.468972px;}
.y52_c00424{bottom:339.025895px;}
.y53_c00424{bottom:402.064151px;}
.y1e_c00424{bottom:493.812629px;}
.y46_c00424{bottom:493.827623px;}
.y1d_c00424{bottom:494.337609px;}
.y47_c00424{bottom:494.357158px;}
.y30_c00424{bottom:494.700737px;}
.y45_c00424{bottom:495.071586px;}
.y1c_c00424{bottom:495.403002px;}
.y31_c00424{bottom:495.533530px;}
.y2f_c00424{bottom:495.553663px;}
.y44_c00424{bottom:496.322201px;}
.y1b_c00424{bottom:496.475623px;}
.y2e_c00424{bottom:496.587915px;}
.y48_c00424{bottom:496.772260px;}
.y1f_c00424{bottom:496.835884px;}
.y32_c00424{bottom:497.713596px;}
.y43_c00424{bottom:497.966053px;}
.y1a_c00424{bottom:498.126234px;}
.y2d_c00424{bottom:498.789265px;}
.y33_c00424{bottom:499.103521px;}
.y42_c00424{bottom:499.653306px;}
.y19_c00424{bottom:499.818769px;}
.y34_c00424{bottom:500.800864px;}
.y20_c00424{bottom:501.110605px;}
.y41_c00424{bottom:501.517382px;}
.y18_c00424{bottom:501.687706px;}
.y49_c00424{bottom:501.869915px;}
.y2c_c00424{bottom:502.578702px;}
.y35_c00424{bottom:503.241722px;}
.y21_c00424{bottom:503.627848px;}
.y4a_c00424{bottom:505.496019px;}
.y36_c00424{bottom:505.499367px;}
.y40_c00424{bottom:506.168989px;}
.y17_c00424{bottom:506.348634px;}
.y2b_c00424{bottom:508.044213px;}
.y37_c00424{bottom:508.766327px;}
.y22_c00424{bottom:509.576794px;}
.y4b_c00424{bottom:511.126534px;}
.y2a_c00424{bottom:512.508085px;}
.y3f_c00424{bottom:512.566592px;}
.y16_c00424{bottom:512.754669px;}
.y23_c00424{bottom:514.322677px;}
.y38_c00424{bottom:517.158603px;}
.y4c_c00424{bottom:517.780195px;}
.y29_c00424{bottom:518.929057px;}
.y3e_c00424{bottom:519.869222px;}
.y15_c00424{bottom:519.959421px;}
.y14_c00424{bottom:523.416158px;}
.y28_c00424{bottom:523.496236px;}
.y39_c00424{bottom:525.202812px;}
.y24_c00424{bottom:526.099549px;}
.y3d_c00424{bottom:527.026630px;}
.y13_c00424{bottom:529.422883px;}
.y4d_c00424{bottom:529.736175px;}
.y27_c00424{bottom:531.263725px;}
.y3c_c00424{bottom:531.792993px;}
.y4f_c00424{bottom:533.728456px;}
.y51_c00424{bottom:534.421816px;}
.y26_c00424{bottom:535.155114px;}
.y12_c00424{bottom:536.678099px;}
.y3b_c00424{bottom:537.961701px;}
.y25_c00424{bottom:538.332892px;}
.y4e_c00424{bottom:538.696314px;}
.y3a_c00424{bottom:545.020884px;}
.y11_c00424{bottom:546.207017px;}
.y50_c00424{bottom:577.871130px;}
.ye_c00424{bottom:597.559761px;}
.y2_c00424{bottom:639.489911px;}
.yc_c00424{bottom:1127.585799px;}
.y10_c00424{bottom:1129.718199px;}
.yf_c00424{bottom:1147.707459px;}
.yd_c00424{bottom:1150.017273px;}
.yb_c00424{bottom:1170.658440px;}
.hd_c00424{height:35.967282px;}
.hc_c00424{height:35.967283px;}
.he_c00424{height:35.967285px;}
.h13_c00424{height:37.437353px;}
.h10_c00424{height:39.084907px;}
.h5_c00424{height:39.085184px;}
.ha_c00424{height:44.080723px;}
.h9_c00424{height:44.080726px;}
.hb_c00424{height:44.080728px;}
.h3_c00424{height:51.885424px;}
.h8_c00424{height:55.821847px;}
.h11_c00424{height:56.261810px;}
.h12_c00424{height:56.983387px;}
.hf_c00424{height:65.895756px;}
.h14_c00424{height:66.961090px;}
.h4_c00424{height:67.002968px;}
.h7_c00424{height:68.338108px;}
.h6_c00424{height:89.323331px;}
.h2_c00424{height:1304.999946px;}
.h0_c00424{height:1304.999953px;}
.h1_c00424{height:1305.000000px;}
.w2_c00424{width:934.874961px;}
.w0_c00424{width:934.875000px;}
.w1_c00424{width:935.250000px;}
.x0_c00424{left:0.000000px;}
.x2_c00424{left:89.434062px;}
.x6_c00424{left:108.062661px;}
.x3_c00424{left:109.658623px;}
.x2c_c00424{left:134.894322px;}
.x2b_c00424{left:136.566734px;}
.x2d_c00424{left:139.937719px;}
.x2e_c00424{left:144.785273px;}
.x2f_c00424{left:150.147890px;}
.x30_c00424{left:152.899057px;}
.x31_c00424{left:155.907145px;}
.x32_c00424{left:159.752336px;}
.x3c_c00424{left:161.347648px;}
.x33_c00424{left:163.203941px;}
.x34_c00424{left:171.483965px;}
.x35_c00424{left:179.748684px;}
.x36_c00424{left:188.175145px;}
.x37_c00424{left:196.556636px;}
.x38_c00424{left:200.721504px;}
.x39_c00424{left:205.276922px;}
.x3a_c00424{left:209.084069px;}
.x3b_c00424{left:211.669316px;}
.x8_c00424{left:230.260919px;}
.x7_c00424{left:232.395871px;}
.x9_c00424{left:235.482735px;}
.xa_c00424{left:240.319117px;}
.xb_c00424{left:245.673577px;}
.xc_c00424{left:248.421493px;}
.xd_c00424{left:251.426626px;}
.xe_c00424{left:255.268917px;}
.x3e_c00424{left:256.468943px;}
.xf_c00424{left:258.553698px;}
.x10_c00424{left:262.988294px;}
.x11_c00424{left:271.601212px;}
.x12_c00424{left:283.434780px;}
.x13_c00424{left:290.867654px;}
.x14_c00424{left:294.260334px;}
.x4_c00424{left:295.438786px;}
.x15_c00424{left:299.596701px;}
.x16_c00424{left:302.984150px;}
.x17_c00424{left:306.993562px;}
.x18_c00424{left:325.378518px;}
.x19_c00424{left:326.595106px;}
.x1a_c00424{left:328.015253px;}
.x1b_c00424{left:331.410444px;}
.x1c_c00424{left:334.633053px;}
.x1d_c00424{left:340.511825px;}
.x1e_c00424{left:346.695139px;}
.x1f_c00424{left:352.384720px;}
.x20_c00424{left:355.792694px;}
.x21_c00424{left:363.695116px;}
.x22_c00424{left:371.679253px;}
.x23_c00424{left:378.434940px;}
.x24_c00424{left:381.453328px;}
.x25_c00424{left:384.455783px;}
.x26_c00424{left:387.851715px;}
.x27_c00424{left:390.467224px;}
.x28_c00424{left:393.779799px;}
.x29_c00424{left:398.952070px;}
.x2a_c00424{left:401.755082px;}
.x40_c00424{left:451.985828px;}
.x5_c00424{left:465.097640px;}
.x1_c00424{left:676.474352px;}
.x3f_c00424{left:696.904800px;}
.x3d_c00424{left:733.103068px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.v1_c00424{vertical-align:23.831865pt;}
.ls0_c00424{letter-spacing:0.000000pt;}
.ws3_c00424{word-spacing:-16.604696pt;}
.ws0_c00424{word-spacing:-0.049530pt;}
.ws4_c00424{word-spacing:0.000000pt;}
.ws2_c00424{word-spacing:250.196272pt;}
.ws1_c00424{word-spacing:990.527723pt;}
._4_c00424{width:3.123138pt;}
._2_c00424{width:4.591009pt;}
._3_c00424{width:12.288075pt;}
._5_c00424{width:15.480319pt;}
._0_c00424{width:18.921382pt;}
._1_c00424{width:23.773282pt;}
._6_c00424{width:27.205316pt;}
.fsd_c00424{font-size:37.310908pt;}
.fs2_c00424{font-size:37.311173pt;}
.fs7_c00424{font-size:42.079973pt;}
.fsa_c00424{font-size:42.079974pt;}
.fs6_c00424{font-size:42.079975pt;}
.fs9_c00424{font-size:42.079976pt;}
.fs8_c00424{font-size:42.079977pt;}
.fsb_c00424{font-size:42.079978pt;}
.fsf_c00424{font-size:45.894021pt;}
.fs0_c00424{font-size:49.530431pt;}
.fs5_c00424{font-size:53.288186pt;}
.fs10_c00424{font-size:63.921837pt;}
.fs1_c00424{font-size:63.961814pt;}
.fse_c00424{font-size:66.115417pt;}
.fsc_c00424{font-size:68.413814pt;}
.fs4_c00424{font-size:79.952268pt;}
.fs3_c00424{font-size:85.269094pt;}
.y0_c00424{bottom:0.000000pt;}
.y1_c00424{bottom:0.000007pt;}
.y54_c00424{bottom:26.805533pt;}
.ya_c00424{bottom:79.974075pt;}
.y9_c00424{bottom:106.957966pt;}
.y8_c00424{bottom:133.941856pt;}
.y7_c00424{bottom:160.925747pt;}
.y6_c00424{bottom:187.909637pt;}
.y5_c00424{bottom:214.893527pt;}
.y4_c00424{bottom:241.877418pt;}
.y3_c00424{bottom:268.861308pt;}
.y52_c00424{bottom:301.356351pt;}
.y53_c00424{bottom:357.390356pt;}
.y1e_c00424{bottom:438.944560pt;}
.y46_c00424{bottom:438.957887pt;}
.y1d_c00424{bottom:439.411208pt;}
.y47_c00424{bottom:439.428585pt;}
.y30_c00424{bottom:439.733989pt;}
.y45_c00424{bottom:440.063632pt;}
.y1c_c00424{bottom:440.358224pt;}
.y31_c00424{bottom:440.474249pt;}
.y2f_c00424{bottom:440.492144pt;}
.y44_c00424{bottom:441.175290pt;}
.y1b_c00424{bottom:441.311665pt;}
.y2e_c00424{bottom:441.411480pt;}
.y48_c00424{bottom:441.575343pt;}
.y1f_c00424{bottom:441.631897pt;}
.y32_c00424{bottom:442.412085pt;}
.y43_c00424{bottom:442.636491pt;}
.y1a_c00424{bottom:442.778875pt;}
.y2d_c00424{bottom:443.368235pt;}
.y33_c00424{bottom:443.647574pt;}
.y42_c00424{bottom:444.136272pt;}
.y19_c00424{bottom:444.283350pt;}
.y34_c00424{bottom:445.156323pt;}
.y20_c00424{bottom:445.431649pt;}
.y41_c00424{bottom:445.793228pt;}
.y18_c00424{bottom:445.944627pt;}
.y49_c00424{bottom:446.106592pt;}
.y2c_c00424{bottom:446.736624pt;}
.y35_c00424{bottom:447.325975pt;}
.y21_c00424{bottom:447.669198pt;}
.y4a_c00424{bottom:449.329795pt;}
.y36_c00424{bottom:449.332771pt;}
.y40_c00424{bottom:449.927990pt;}
.y17_c00424{bottom:450.087675pt;}
.y2b_c00424{bottom:451.594856pt;}
.y37_c00424{bottom:452.236735pt;}
.y22_c00424{bottom:452.957150pt;}
.y4b_c00424{bottom:454.334697pt;}
.y2a_c00424{bottom:455.562742pt;}
.y3f_c00424{bottom:455.614749pt;}
.y16_c00424{bottom:455.781928pt;}
.y23_c00424{bottom:457.175713pt;}
.y38_c00424{bottom:459.696536pt;}
.y4c_c00424{bottom:460.249062pt;}
.y29_c00424{bottom:461.270273pt;}
.y3e_c00424{bottom:462.105976pt;}
.y15_c00424{bottom:462.186152pt;}
.y14_c00424{bottom:465.258807pt;}
.y28_c00424{bottom:465.329988pt;}
.y39_c00424{bottom:466.846944pt;}
.y24_c00424{bottom:467.644044pt;}
.y3d_c00424{bottom:468.468115pt;}
.y13_c00424{bottom:470.598118pt;}
.y4d_c00424{bottom:470.876600pt;}
.y27_c00424{bottom:472.234422pt;}
.y3c_c00424{bottom:472.704883pt;}
.y4f_c00424{bottom:474.425294pt;}
.y51_c00424{bottom:475.041614pt;}
.y26_c00424{bottom:475.693435pt;}
.y12_c00424{bottom:477.047199pt;}
.y3b_c00424{bottom:478.188178pt;}
.y25_c00424{bottom:478.518126pt;}
.y4e_c00424{bottom:478.841168pt;}
.y3a_c00424{bottom:484.463008pt;}
.y11_c00424{bottom:485.517349pt;}
.y50_c00424{bottom:513.663227pt;}
.ye_c00424{bottom:531.164232pt;}
.y2_c00424{bottom:568.435476pt;}
.yc_c00424{bottom:1002.298488pt;}
.y10_c00424{bottom:1004.193955pt;}
.yf_c00424{bottom:1020.184408pt;}
.yd_c00424{bottom:1022.237576pt;}
.yb_c00424{bottom:1040.585280pt;}
.hd_c00424{height:31.970917pt;}
.hc_c00424{height:31.970918pt;}
.he_c00424{height:31.970920pt;}
.h13_c00424{height:33.277647pt;}
.h10_c00424{height:34.742140pt;}
.h5_c00424{height:34.742386pt;}
.ha_c00424{height:39.182865pt;}
.h9_c00424{height:39.182867pt;}
.hb_c00424{height:39.182869pt;}
.h3_c00424{height:46.120377pt;}
.h8_c00424{height:49.619420pt;}
.h11_c00424{height:50.010498pt;}
.h12_c00424{height:50.651899pt;}
.hf_c00424{height:58.574005pt;}
.h14_c00424{height:59.520969pt;}
.h4_c00424{height:59.558193pt;}
.h7_c00424{height:60.744985pt;}
.h6_c00424{height:79.398517pt;}
.h2_c00424{height:1159.999952pt;}
.h0_c00424{height:1159.999959pt;}
.h1_c00424{height:1160.000000pt;}
.w2_c00424{width:830.999965pt;}
.w0_c00424{width:831.000000pt;}
.w1_c00424{width:831.333333pt;}
.x0_c00424{left:0.000000pt;}
.x2_c00424{left:79.496944pt;}
.x6_c00424{left:96.055698pt;}
.x3_c00424{left:97.474332pt;}
.x2c_c00424{left:119.906064pt;}
.x2b_c00424{left:121.392652pt;}
.x2d_c00424{left:124.389083pt;}
.x2e_c00424{left:128.698021pt;}
.x2f_c00424{left:133.464791pt;}
.x30_c00424{left:135.910272pt;}
.x31_c00424{left:138.584129pt;}
.x32_c00424{left:142.002076pt;}
.x3c_c00424{left:143.420132pt;}
.x33_c00424{left:145.070170pt;}
.x34_c00424{left:152.430191pt;}
.x35_c00424{left:159.776608pt;}
.x36_c00424{left:167.266795pt;}
.x37_c00424{left:174.717010pt;}
.x38_c00424{left:178.419115pt;}
.x39_c00424{left:182.468375pt;}
.x3a_c00424{left:185.852506pt;}
.x3b_c00424{left:188.150503pt;}
.x8_c00424{left:204.676373pt;}
.x7_c00424{left:206.574107pt;}
.x9_c00424{left:209.317987pt;}
.xa_c00424{left:213.616993pt;}
.xb_c00424{left:218.376513pt;}
.xc_c00424{left:220.819105pt;}
.xd_c00424{left:223.490334pt;}
.xe_c00424{left:226.905704pt;}
.x3e_c00424{left:227.972394pt;}
.xf_c00424{left:229.825509pt;}
.x10_c00424{left:233.767373pt;}
.x11_c00424{left:241.423300pt;}
.x12_c00424{left:251.942027pt;}
.x13_c00424{left:258.549026pt;}
.x14_c00424{left:261.564741pt;}
.x4_c00424{left:262.612255pt;}
.x15_c00424{left:266.308178pt;}
.x16_c00424{left:269.319244pt;}
.x17_c00424{left:272.883167pt;}
.x18_c00424{left:289.225349pt;}
.x19_c00424{left:290.306761pt;}
.x1a_c00424{left:291.569114pt;}
.x1b_c00424{left:294.587062pt;}
.x1c_c00424{left:297.451603pt;}
.x1d_c00424{left:302.677178pt;}
.x1e_c00424{left:308.173457pt;}
.x1f_c00424{left:313.230862pt;}
.x20_c00424{left:316.260173pt;}
.x21_c00424{left:323.284548pt;}
.x22_c00424{left:330.381558pt;}
.x23_c00424{left:336.386614pt;}
.x24_c00424{left:339.069625pt;}
.x25_c00424{left:341.738474pt;}
.x26_c00424{left:344.757080pt;}
.x27_c00424{left:347.081977pt;}
.x28_c00424{left:350.026488pt;}
.x29_c00424{left:354.624063pt;}
.x2a_c00424{left:357.115628pt;}
.x40_c00424{left:401.765180pt;}
.x5_c00424{left:413.420124pt;}
.x1_c00424{left:601.310535pt;}
.x3f_c00424{left:619.470933pt;}
.x3d_c00424{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.006348;font-style:normal;font-weight:normal;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_9d3b27c589f3d0f0906d6423.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.006348;font-style:normal;font-weight:normal;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_95eb9e174d6894d7cd8cf8c1.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.005371;font-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_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);}
.v0_c00425{vertical-align:0.000000px;}
.ls0_c00425{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00425{word-spacing:-18.680283px;}
.ws2_c00425{word-spacing:0.000000px;}
._5_c00425{width:1.037793px;}
._4_c00425{width:2.529739px;}
._3_c00425{width:4.365011px;}
._c_c00425{width:5.457557px;}
._a_c00425{width:7.308136px;}
._b_c00425{width:8.981663px;}
._9_c00425{width:10.425774px;}
._8_c00425{width:12.039663px;}
._6_c00425{width:13.746536px;}
._1_c00425{width:15.103846px;}
._0_c00425{width:16.747789px;}
._e_c00425{width:19.798725px;}
._2_c00425{width:21.110396px;}
._7_c00425{width:22.199043px;}
._10_c00425{width:41.073136px;}
._d_c00425{width:52.738047px;}
._f_c00425{width:54.680506px;}
.fc1_c00425{color:rgb(0,0,0);}
.fc0_c00425{color:rgb(194,158,103);}
.fs3_c00425{font-size:71.912067px;}
.fs1_c00425{font-size:71.957041px;}
.fs2_c00425{font-size:74.340621px;}
.fs0_c00425{font-size:74.379845px;}
.y0_c00425{bottom:0.000000px;}
.y1_c00425{bottom:0.000008px;}
.y22_c00425{bottom:30.156225px;}
.yf_c00425{bottom:130.957993px;}
.ye_c00425{bottom:161.314870px;}
.yd_c00425{bottom:191.671746px;}
.yc_c00425{bottom:222.028623px;}
.yb_c00425{bottom:252.385500px;}
.ya_c00425{bottom:282.742377px;}
.y21_c00425{bottom:316.031264px;}
.y20_c00425{bottom:385.951872px;}
.y1f_c00425{bottom:416.308749px;}
.y1e_c00425{bottom:446.665626px;}
.y1d_c00425{bottom:477.022503px;}
.y1c_c00425{bottom:507.379379px;}
.y1b_c00425{bottom:540.374075px;}
.y1a_c00425{bottom:614.473125px;}
.y19_c00425{bottom:644.830001px;}
.y18_c00425{bottom:675.186878px;}
.y17_c00425{bottom:705.543755px;}
.y16_c00425{bottom:735.900632px;}
.y15_c00425{bottom:766.257508px;}
.y14_c00425{bottom:796.614385px;}
.y13_c00425{bottom:826.971262px;}
.y12_c00425{bottom:857.328139px;}
.y11_c00425{bottom:887.685015px;}
.y10_c00425{bottom:918.041892px;}
.y9_c00425{bottom:950.691247px;}
.y8_c00425{bottom:1018.829185px;}
.y7_c00425{bottom:1049.186062px;}
.y6_c00425{bottom:1079.542939px;}
.y5_c00425{bottom:1109.899815px;}
.y4_c00425{bottom:1140.256692px;}
.y3_c00425{bottom:1170.613569px;}
.y2_c00425{bottom:1204.539346px;}
.h6_c00425{height:55.092790px;}
.h4_c00425{height:55.127245px;}
.h5_c00425{height:56.953337px;}
.h3_c00425{height:56.983387px;}
.h2_c00425{height:1304.999946px;}
.h0_c00425{height:1304.999953px;}
.h1_c00425{height:1305.000000px;}
.w2_c00425{width:934.874961px;}
.w0_c00425{width:934.875000px;}
.w1_c00425{width:935.250000px;}
.x0_c00425{left:0.000000px;}
.x1_c00425{left:87.850202px;}
.x2_c00425{left:451.985828px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws0_c00425{word-spacing:-16.615081pt;}
.ws1_c00425{word-spacing:-16.604696pt;}
.ws2_c00425{word-spacing:0.000000pt;}
._5_c00425{width:0.922483pt;}
._4_c00425{width:2.248657pt;}
._3_c00425{width:3.880010pt;}
._c_c00425{width:4.851162pt;}
._a_c00425{width:6.496121pt;}
._b_c00425{width:7.983701pt;}
._9_c00425{width:9.267355pt;}
._8_c00425{width:10.701922pt;}
._6_c00425{width:12.219143pt;}
._1_c00425{width:13.425641pt;}
._0_c00425{width:14.886923pt;}
._e_c00425{width:17.598867pt;}
._2_c00425{width:18.764797pt;}
._7_c00425{width:19.732483pt;}
._10_c00425{width:36.509454pt;}
._d_c00425{width:46.878264pt;}
._f_c00425{width:48.604895pt;}
.fs3_c00425{font-size:63.921837pt;}
.fs1_c00425{font-size:63.961814pt;}
.fs2_c00425{font-size:66.080552pt;}
.fs0_c00425{font-size:66.115417pt;}
.y0_c00425{bottom:0.000000pt;}
.y1_c00425{bottom:0.000007pt;}
.y22_c00425{bottom:26.805533pt;}
.yf_c00425{bottom:116.407105pt;}
.ye_c00425{bottom:143.390995pt;}
.yd_c00425{bottom:170.374886pt;}
.yc_c00425{bottom:197.358776pt;}
.yb_c00425{bottom:224.342667pt;}
.ya_c00425{bottom:251.326557pt;}
.y21_c00425{bottom:280.916679pt;}
.y20_c00425{bottom:343.068331pt;}
.y1f_c00425{bottom:370.052221pt;}
.y1e_c00425{bottom:397.036112pt;}
.y1d_c00425{bottom:424.020002pt;}
.y1c_c00425{bottom:451.003893pt;}
.y1b_c00425{bottom:480.332511pt;}
.y1a_c00425{bottom:546.198333pt;}
.y19_c00425{bottom:573.182223pt;}
.y18_c00425{bottom:600.166114pt;}
.y17_c00425{bottom:627.150004pt;}
.y16_c00425{bottom:654.133895pt;}
.y15_c00425{bottom:681.117785pt;}
.y14_c00425{bottom:708.101676pt;}
.y13_c00425{bottom:735.085566pt;}
.y12_c00425{bottom:762.069457pt;}
.y11_c00425{bottom:789.053347pt;}
.y10_c00425{bottom:816.037238pt;}
.y9_c00425{bottom:845.058886pt;}
.y8_c00425{bottom:905.625942pt;}
.y7_c00425{bottom:932.609833pt;}
.y6_c00425{bottom:959.593723pt;}
.y5_c00425{bottom:986.577614pt;}
.y4_c00425{bottom:1013.561504pt;}
.y3_c00425{bottom:1040.545395pt;}
.y2_c00425{bottom:1070.701641pt;}
.h6_c00425{height:48.971369pt;}
.h4_c00425{height:49.001996pt;}
.h5_c00425{height:50.625189pt;}
.h3_c00425{height:50.651899pt;}
.h2_c00425{height:1159.999952pt;}
.h0_c00425{height:1159.999959pt;}
.h1_c00425{height:1160.000000pt;}
.w2_c00425{width:830.999965pt;}
.w0_c00425{width:831.000000pt;}
.w1_c00425{width:831.333333pt;}
.x0_c00425{left:0.000000pt;}
.x1_c00425{left:78.089069pt;}
.x2_c00425{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe9e8c692b65bbc953ab3561.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.000000;font-style:normal;font-weight:normal;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_b0b22aeb698b8a03211af1a1.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.171387;font-style:normal;font-weight:normal;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_c864c674408bb8344ae6bc43.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.171387;font-style:normal;font-weight:normal;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_87b9bc5b13876c02c75f1799.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:1.000000;font-style:normal;font-weight: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_1f09a4e8b01303133c45de02.woff2')format("woff");}.ff5_c00426{font-family:ff5_c00426;line-height:1.000000;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff6_c00426{font-family:ff6_c00426;line-height:0.769531;font-style:normal;font-weight: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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff7_c00426{font-family:ff7_c00426;line-height:0.743000;font-style:normal;font-weight: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_c00426;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00426{font-family:ff8_c00426;line-height:1.006348;font-style:normal;font-weight: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_c00426;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00426{font-family:ff9_c00426;line-height:0.734863;font-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_c00426{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00426{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00426{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00426{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00426{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00426{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00426{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00426{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00426{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00426{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00426{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00426{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00426{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00426{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00426{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00426{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00426{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00426{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00426{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00426{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00426{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00426{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00426{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00426{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00426{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00426{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00426{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00426{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00426{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00426{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00426{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00426{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00426{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00426{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00426{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00426{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00426{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00426{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00426{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00426{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00426{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00426{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00426{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00426{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00426{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00426{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00426{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00426{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00426{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00426{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00426{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00426{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00426{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00426{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00426{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00426{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00426{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00426{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00426{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00426{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00426{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00426{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00426{vertical-align:0.000000px;}
.v1_c00426{vertical-align:26.810849px;}
.ls0_c00426{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00426{word-spacing:-18.680283px;}
.ws0_c00426{word-spacing:-0.055722px;}
.ws4_c00426{word-spacing:0.000000px;}
.ws2_c00426{word-spacing:281.470806px;}
.ws1_c00426{word-spacing:1114.343689px;}
._2_c00426{width:9.789224px;}
._1_c00426{width:13.190682px;}
._0_c00426{width:14.335192px;}
.fc3_c00426{color:rgb(9,71,81);}
.fc2_c00426{color:rgb(194,158,103);}
.fc1_c00426{color:rgb(0,0,0);}
.fc0_c00426{color:rgb(255,255,255);}
.fsd_c00426{font-size:41.974772px;}
.fs2_c00426{font-size:41.975069px;}
.fs7_c00426{font-size:47.339969px;}
.fsa_c00426{font-size:47.339970px;}
.fs6_c00426{font-size:47.339972px;}
.fs9_c00426{font-size:47.339973px;}
.fs8_c00426{font-size:47.339974px;}
.fsb_c00426{font-size:47.339975px;}
.fsf_c00426{font-size:51.630774px;}
.fs0_c00426{font-size:55.721735px;}
.fs5_c00426{font-size:59.949210px;}
.fs10_c00426{font-size:71.912067px;}
.fs1_c00426{font-size:71.957041px;}
.fse_c00426{font-size:74.379845px;}
.fsc_c00426{font-size:76.965540px;}
.fs4_c00426{font-size:89.946302px;}
.fs3_c00426{font-size:95.927731px;}
.y0_c00426{bottom:0.000000px;}
.y1_c00426{bottom:0.000008px;}
.y51_c00426{bottom:30.156225px;}
.y7_c00426{bottom:179.917185px;}
.y6_c00426{bottom:210.274062px;}
.y5_c00426{bottom:240.630938px;}
.y4_c00426{bottom:270.987815px;}
.y3_c00426{bottom:301.344692px;}
.y4f_c00426{bottom:337.901615px;}
.y50_c00426{bottom:402.064151px;}
.y1b_c00426{bottom:493.812629px;}
.y43_c00426{bottom:493.827623px;}
.y1a_c00426{bottom:494.337609px;}
.y44_c00426{bottom:494.357158px;}
.y2d_c00426{bottom:494.700737px;}
.y42_c00426{bottom:495.071586px;}
.y19_c00426{bottom:495.403002px;}
.y2e_c00426{bottom:495.533530px;}
.y2c_c00426{bottom:495.553663px;}
.y41_c00426{bottom:496.322201px;}
.y18_c00426{bottom:496.475623px;}
.y2b_c00426{bottom:496.587915px;}
.y45_c00426{bottom:496.772260px;}
.y1c_c00426{bottom:496.835884px;}
.y2f_c00426{bottom:497.713596px;}
.y40_c00426{bottom:497.966053px;}
.y17_c00426{bottom:498.126234px;}
.y2a_c00426{bottom:498.789265px;}
.y30_c00426{bottom:499.103521px;}
.y3f_c00426{bottom:499.653306px;}
.y16_c00426{bottom:499.818769px;}
.y31_c00426{bottom:500.800864px;}
.y1d_c00426{bottom:501.110605px;}
.y3e_c00426{bottom:501.517382px;}
.y15_c00426{bottom:501.687706px;}
.y46_c00426{bottom:501.869915px;}
.y29_c00426{bottom:502.578702px;}
.y32_c00426{bottom:503.241722px;}
.y1e_c00426{bottom:503.627848px;}
.y47_c00426{bottom:505.496019px;}
.y33_c00426{bottom:505.499367px;}
.y3d_c00426{bottom:506.168989px;}
.y14_c00426{bottom:506.348634px;}
.y28_c00426{bottom:508.044213px;}
.y34_c00426{bottom:508.766327px;}
.y1f_c00426{bottom:509.576794px;}
.y48_c00426{bottom:511.126534px;}
.y27_c00426{bottom:512.508085px;}
.y3c_c00426{bottom:512.566592px;}
.y13_c00426{bottom:512.754669px;}
.y20_c00426{bottom:514.322677px;}
.y35_c00426{bottom:517.158603px;}
.y49_c00426{bottom:517.780195px;}
.y26_c00426{bottom:518.929057px;}
.y3b_c00426{bottom:519.869222px;}
.y12_c00426{bottom:519.959421px;}
.y11_c00426{bottom:523.416158px;}
.y25_c00426{bottom:523.496236px;}
.y36_c00426{bottom:525.202812px;}
.y21_c00426{bottom:526.099549px;}
.y3a_c00426{bottom:527.026630px;}
.y10_c00426{bottom:529.422883px;}
.y4a_c00426{bottom:529.736175px;}
.y24_c00426{bottom:531.263725px;}
.y39_c00426{bottom:531.792993px;}
.y4c_c00426{bottom:533.728456px;}
.y4e_c00426{bottom:534.421816px;}
.y23_c00426{bottom:535.155114px;}
.yf_c00426{bottom:536.678099px;}
.y38_c00426{bottom:537.961701px;}
.y22_c00426{bottom:538.332892px;}
.y4b_c00426{bottom:538.696314px;}
.y37_c00426{bottom:545.020884px;}
.ye_c00426{bottom:546.207017px;}
.y4d_c00426{bottom:577.871130px;}
.yb_c00426{bottom:597.559761px;}
.y2_c00426{bottom:639.489911px;}
.y9_c00426{bottom:1127.585799px;}
.yd_c00426{bottom:1129.718199px;}
.yc_c00426{bottom:1147.707459px;}
.ya_c00426{bottom:1150.017273px;}
.y8_c00426{bottom:1170.658440px;}
.hd_c00426{height:35.967282px;}
.hc_c00426{height:35.967283px;}
.he_c00426{height:35.967285px;}
.h13_c00426{height:37.437353px;}
.h10_c00426{height:39.084907px;}
.h5_c00426{height:39.085184px;}
.ha_c00426{height:44.080723px;}
.h9_c00426{height:44.080726px;}
.hb_c00426{height:44.080728px;}
.h3_c00426{height:51.885424px;}
.h8_c00426{height:55.821847px;}
.h11_c00426{height:56.261810px;}
.h12_c00426{height:56.983387px;}
.hf_c00426{height:65.895756px;}
.h14_c00426{height:66.961090px;}
.h4_c00426{height:67.002968px;}
.h7_c00426{height:68.338108px;}
.h6_c00426{height:89.323331px;}
.h2_c00426{height:1304.999946px;}
.h0_c00426{height:1304.999953px;}
.h1_c00426{height:1305.000000px;}
.w2_c00426{width:934.874961px;}
.w0_c00426{width:934.875000px;}
.w1_c00426{width:935.250000px;}
.x0_c00426{left:0.000000px;}
.x2_c00426{left:89.434062px;}
.x6_c00426{left:108.062661px;}
.x3_c00426{left:109.658623px;}
.x2c_c00426{left:134.894322px;}
.x2b_c00426{left:136.566734px;}
.x2d_c00426{left:139.937719px;}
.x2e_c00426{left:144.785273px;}
.x2f_c00426{left:150.147890px;}
.x30_c00426{left:152.899057px;}
.x31_c00426{left:155.907145px;}
.x32_c00426{left:159.752336px;}
.x3c_c00426{left:161.347648px;}
.x33_c00426{left:163.203941px;}
.x34_c00426{left:171.483965px;}
.x35_c00426{left:179.748684px;}
.x36_c00426{left:188.175145px;}
.x37_c00426{left:196.556636px;}
.x38_c00426{left:200.721504px;}
.x39_c00426{left:205.276922px;}
.x3a_c00426{left:209.084069px;}
.x3b_c00426{left:211.669316px;}
.x8_c00426{left:230.260919px;}
.x7_c00426{left:232.395871px;}
.x9_c00426{left:235.482735px;}
.xa_c00426{left:240.319117px;}
.xb_c00426{left:245.673577px;}
.xc_c00426{left:248.421493px;}
.xd_c00426{left:251.426626px;}
.xe_c00426{left:255.268917px;}
.x3e_c00426{left:256.468943px;}
.xf_c00426{left:258.553698px;}
.x10_c00426{left:262.988294px;}
.x11_c00426{left:271.601212px;}
.x12_c00426{left:283.434780px;}
.x13_c00426{left:290.867654px;}
.x14_c00426{left:294.260334px;}
.x4_c00426{left:295.438786px;}
.x15_c00426{left:299.596701px;}
.x16_c00426{left:302.984150px;}
.x17_c00426{left:306.993562px;}
.x18_c00426{left:325.378518px;}
.x19_c00426{left:326.595106px;}
.x1a_c00426{left:328.015253px;}
.x1b_c00426{left:331.410444px;}
.x1c_c00426{left:334.633053px;}
.x1d_c00426{left:340.511825px;}
.x1e_c00426{left:346.695139px;}
.x1f_c00426{left:352.384720px;}
.x20_c00426{left:355.792694px;}
.x21_c00426{left:363.695116px;}
.x22_c00426{left:371.679253px;}
.x23_c00426{left:378.434940px;}
.x24_c00426{left:381.453328px;}
.x25_c00426{left:384.455783px;}
.x26_c00426{left:387.851715px;}
.x27_c00426{left:390.467224px;}
.x28_c00426{left:393.779799px;}
.x29_c00426{left:398.952070px;}
.x2a_c00426{left:401.755082px;}
.x40_c00426{left:451.985828px;}
.x5_c00426{left:465.097640px;}
.x1_c00426{left:676.474352px;}
.x3f_c00426{left:696.904800px;}
.x3d_c00426{left:733.103068px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.v1_c00426{vertical-align:23.831865pt;}
.ls0_c00426{letter-spacing:0.000000pt;}
.ws3_c00426{word-spacing:-16.604696pt;}
.ws0_c00426{word-spacing:-0.049530pt;}
.ws4_c00426{word-spacing:0.000000pt;}
.ws2_c00426{word-spacing:250.196272pt;}
.ws1_c00426{word-spacing:990.527723pt;}
._2_c00426{width:8.701532pt;}
._1_c00426{width:11.725050pt;}
._0_c00426{width:12.742393pt;}
.fsd_c00426{font-size:37.310908pt;}
.fs2_c00426{font-size:37.311173pt;}
.fs7_c00426{font-size:42.079973pt;}
.fsa_c00426{font-size:42.079974pt;}
.fs6_c00426{font-size:42.079975pt;}
.fs9_c00426{font-size:42.079976pt;}
.fs8_c00426{font-size:42.079977pt;}
.fsb_c00426{font-size:42.079978pt;}
.fsf_c00426{font-size:45.894021pt;}
.fs0_c00426{font-size:49.530431pt;}
.fs5_c00426{font-size:53.288186pt;}
.fs10_c00426{font-size:63.921837pt;}
.fs1_c00426{font-size:63.961814pt;}
.fse_c00426{font-size:66.115417pt;}
.fsc_c00426{font-size:68.413814pt;}
.fs4_c00426{font-size:79.952268pt;}
.fs3_c00426{font-size:85.269094pt;}
.y0_c00426{bottom:0.000000pt;}
.y1_c00426{bottom:0.000007pt;}
.y51_c00426{bottom:26.805533pt;}
.y7_c00426{bottom:159.926387pt;}
.y6_c00426{bottom:186.910277pt;}
.y5_c00426{bottom:213.894167pt;}
.y4_c00426{bottom:240.878058pt;}
.y3_c00426{bottom:267.861948pt;}
.y4f_c00426{bottom:300.356991pt;}
.y50_c00426{bottom:357.390356pt;}
.y1b_c00426{bottom:438.944560pt;}
.y43_c00426{bottom:438.957887pt;}
.y1a_c00426{bottom:439.411208pt;}
.y44_c00426{bottom:439.428585pt;}
.y2d_c00426{bottom:439.733989pt;}
.y42_c00426{bottom:440.063632pt;}
.y19_c00426{bottom:440.358224pt;}
.y2e_c00426{bottom:440.474249pt;}
.y2c_c00426{bottom:440.492144pt;}
.y41_c00426{bottom:441.175290pt;}
.y18_c00426{bottom:441.311665pt;}
.y2b_c00426{bottom:441.411480pt;}
.y45_c00426{bottom:441.575343pt;}
.y1c_c00426{bottom:441.631897pt;}
.y2f_c00426{bottom:442.412085pt;}
.y40_c00426{bottom:442.636491pt;}
.y17_c00426{bottom:442.778875pt;}
.y2a_c00426{bottom:443.368235pt;}
.y30_c00426{bottom:443.647574pt;}
.y3f_c00426{bottom:444.136272pt;}
.y16_c00426{bottom:444.283350pt;}
.y31_c00426{bottom:445.156323pt;}
.y1d_c00426{bottom:445.431649pt;}
.y3e_c00426{bottom:445.793228pt;}
.y15_c00426{bottom:445.944627pt;}
.y46_c00426{bottom:446.106592pt;}
.y29_c00426{bottom:446.736624pt;}
.y32_c00426{bottom:447.325975pt;}
.y1e_c00426{bottom:447.669198pt;}
.y47_c00426{bottom:449.329795pt;}
.y33_c00426{bottom:449.332771pt;}
.y3d_c00426{bottom:449.927990pt;}
.y14_c00426{bottom:450.087675pt;}
.y28_c00426{bottom:451.594856pt;}
.y34_c00426{bottom:452.236735pt;}
.y1f_c00426{bottom:452.957150pt;}
.y48_c00426{bottom:454.334697pt;}
.y27_c00426{bottom:455.562742pt;}
.y3c_c00426{bottom:455.614749pt;}
.y13_c00426{bottom:455.781928pt;}
.y20_c00426{bottom:457.175713pt;}
.y35_c00426{bottom:459.696536pt;}
.y49_c00426{bottom:460.249062pt;}
.y26_c00426{bottom:461.270273pt;}
.y3b_c00426{bottom:462.105976pt;}
.y12_c00426{bottom:462.186152pt;}
.y11_c00426{bottom:465.258807pt;}
.y25_c00426{bottom:465.329988pt;}
.y36_c00426{bottom:466.846944pt;}
.y21_c00426{bottom:467.644044pt;}
.y3a_c00426{bottom:468.468115pt;}
.y10_c00426{bottom:470.598118pt;}
.y4a_c00426{bottom:470.876600pt;}
.y24_c00426{bottom:472.234422pt;}
.y39_c00426{bottom:472.704883pt;}
.y4c_c00426{bottom:474.425294pt;}
.y4e_c00426{bottom:475.041614pt;}
.y23_c00426{bottom:475.693435pt;}
.yf_c00426{bottom:477.047199pt;}
.y38_c00426{bottom:478.188178pt;}
.y22_c00426{bottom:478.518126pt;}
.y4b_c00426{bottom:478.841168pt;}
.y37_c00426{bottom:484.463008pt;}
.ye_c00426{bottom:485.517349pt;}
.y4d_c00426{bottom:513.663227pt;}
.yb_c00426{bottom:531.164232pt;}
.y2_c00426{bottom:568.435476pt;}
.y9_c00426{bottom:1002.298488pt;}
.yd_c00426{bottom:1004.193955pt;}
.yc_c00426{bottom:1020.184408pt;}
.ya_c00426{bottom:1022.237576pt;}
.y8_c00426{bottom:1040.585280pt;}
.hd_c00426{height:31.970917pt;}
.hc_c00426{height:31.970918pt;}
.he_c00426{height:31.970920pt;}
.h13_c00426{height:33.277647pt;}
.h10_c00426{height:34.742140pt;}
.h5_c00426{height:34.742386pt;}
.ha_c00426{height:39.182865pt;}
.h9_c00426{height:39.182867pt;}
.hb_c00426{height:39.182869pt;}
.h3_c00426{height:46.120377pt;}
.h8_c00426{height:49.619420pt;}
.h11_c00426{height:50.010498pt;}
.h12_c00426{height:50.651899pt;}
.hf_c00426{height:58.574005pt;}
.h14_c00426{height:59.520969pt;}
.h4_c00426{height:59.558193pt;}
.h7_c00426{height:60.744985pt;}
.h6_c00426{height:79.398517pt;}
.h2_c00426{height:1159.999952pt;}
.h0_c00426{height:1159.999959pt;}
.h1_c00426{height:1160.000000pt;}
.w2_c00426{width:830.999965pt;}
.w0_c00426{width:831.000000pt;}
.w1_c00426{width:831.333333pt;}
.x0_c00426{left:0.000000pt;}
.x2_c00426{left:79.496944pt;}
.x6_c00426{left:96.055698pt;}
.x3_c00426{left:97.474332pt;}
.x2c_c00426{left:119.906064pt;}
.x2b_c00426{left:121.392652pt;}
.x2d_c00426{left:124.389083pt;}
.x2e_c00426{left:128.698021pt;}
.x2f_c00426{left:133.464791pt;}
.x30_c00426{left:135.910272pt;}
.x31_c00426{left:138.584129pt;}
.x32_c00426{left:142.002076pt;}
.x3c_c00426{left:143.420132pt;}
.x33_c00426{left:145.070170pt;}
.x34_c00426{left:152.430191pt;}
.x35_c00426{left:159.776608pt;}
.x36_c00426{left:167.266795pt;}
.x37_c00426{left:174.717010pt;}
.x38_c00426{left:178.419115pt;}
.x39_c00426{left:182.468375pt;}
.x3a_c00426{left:185.852506pt;}
.x3b_c00426{left:188.150503pt;}
.x8_c00426{left:204.676373pt;}
.x7_c00426{left:206.574107pt;}
.x9_c00426{left:209.317987pt;}
.xa_c00426{left:213.616993pt;}
.xb_c00426{left:218.376513pt;}
.xc_c00426{left:220.819105pt;}
.xd_c00426{left:223.490334pt;}
.xe_c00426{left:226.905704pt;}
.x3e_c00426{left:227.972394pt;}
.xf_c00426{left:229.825509pt;}
.x10_c00426{left:233.767373pt;}
.x11_c00426{left:241.423300pt;}
.x12_c00426{left:251.942027pt;}
.x13_c00426{left:258.549026pt;}
.x14_c00426{left:261.564741pt;}
.x4_c00426{left:262.612255pt;}
.x15_c00426{left:266.308178pt;}
.x16_c00426{left:269.319244pt;}
.x17_c00426{left:272.883167pt;}
.x18_c00426{left:289.225349pt;}
.x19_c00426{left:290.306761pt;}
.x1a_c00426{left:291.569114pt;}
.x1b_c00426{left:294.587062pt;}
.x1c_c00426{left:297.451603pt;}
.x1d_c00426{left:302.677178pt;}
.x1e_c00426{left:308.173457pt;}
.x1f_c00426{left:313.230862pt;}
.x20_c00426{left:316.260173pt;}
.x21_c00426{left:323.284548pt;}
.x22_c00426{left:330.381558pt;}
.x23_c00426{left:336.386614pt;}
.x24_c00426{left:339.069625pt;}
.x25_c00426{left:341.738474pt;}
.x26_c00426{left:344.757080pt;}
.x27_c00426{left:347.081977pt;}
.x28_c00426{left:350.026488pt;}
.x29_c00426{left:354.624063pt;}
.x2a_c00426{left:357.115628pt;}
.x40_c00426{left:401.765180pt;}
.x5_c00426{left:413.420124pt;}
.x1_c00426{left:601.310535pt;}
.x3f_c00426{left:619.470933pt;}
.x3d_c00426{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.006348;font-style:normal;font-weight:normal;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_c504f152d5c71da2277598b5.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.171387;font-style:normal;font-weight:normal;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_f19f9c8591651f182fd2a372.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.005371;font-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_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);}
.v0_c00427{vertical-align:0.000000px;}
.ls0_c00427{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00427{word-spacing:-18.680283px;}
.ws2_c00427{word-spacing:0.000000px;}
._7_c00427{width:1.159460px;}
._4_c00427{width:2.498926px;}
._1_c00427{width:3.717270px;}
._0_c00427{width:4.982140px;}
._6_c00427{width:6.319615px;}
._3_c00427{width:8.250886px;}
._5_c00427{width:9.563176px;}
._a_c00427{width:10.840668px;}
._2_c00427{width:12.080084px;}
._e_c00427{width:13.153486px;}
._8_c00427{width:14.651411px;}
._b_c00427{width:15.751297px;}
._d_c00427{width:16.852030px;}
._c_c00427{width:19.956839px;}
._9_c00427{width:21.228704px;}
._f_c00427{width:28.234691px;}
.fc1_c00427{color:rgb(0,0,0);}
.fc0_c00427{color:rgb(194,158,103);}
.fs3_c00427{font-size:71.912067px;}
.fs1_c00427{font-size:71.957041px;}
.fs2_c00427{font-size:74.340621px;}
.fs0_c00427{font-size:74.379845px;}
.y0_c00427{bottom:0.000000px;}
.y1_c00427{bottom:0.000008px;}
.y25_c00427{bottom:30.156225px;}
.y13_c00427{bottom:92.771894px;}
.y12_c00427{bottom:123.128771px;}
.y11_c00427{bottom:153.485648px;}
.y10_c00427{bottom:183.842525px;}
.yf_c00427{bottom:214.199402px;}
.ye_c00427{bottom:244.556278px;}
.y24_c00427{bottom:277.845130px;}
.y23_c00427{bottom:347.906916px;}
.y22_c00427{bottom:378.263793px;}
.y21_c00427{bottom:408.620669px;}
.y20_c00427{bottom:438.977546px;}
.y1f_c00427{bottom:471.151262px;}
.y1e_c00427{bottom:535.575999px;}
.y1d_c00427{bottom:565.932876px;}
.y1c_c00427{bottom:596.289753px;}
.y1b_c00427{bottom:626.646630px;}
.y1a_c00427{bottom:657.003507px;}
.y19_c00427{bottom:687.360383px;}
.y18_c00427{bottom:717.717260px;}
.y17_c00427{bottom:748.074137px;}
.y16_c00427{bottom:778.431014px;}
.y15_c00427{bottom:808.787890px;}
.y14_c00427{bottom:839.144767px;}
.yd_c00427{bottom:866.765746px;}
.yc_c00427{bottom:922.691587px;}
.yb_c00427{bottom:953.048464px;}
.ya_c00427{bottom:983.405340px;}
.y9_c00427{bottom:1013.762217px;}
.y8_c00427{bottom:1044.119094px;}
.y7_c00427{bottom:1074.475971px;}
.y6_c00427{bottom:1104.832848px;}
.y5_c00427{bottom:1135.189724px;}
.y4_c00427{bottom:1165.546601px;}
.y3_c00427{bottom:1195.903478px;}
.y2_c00427{bottom:1221.101174px;}
.h5_c00427{height:56.953337px;}
.h3_c00427{height:56.983387px;}
.h6_c00427{height:66.961090px;}
.h4_c00427{height:67.002968px;}
.h2_c00427{height:1304.999946px;}
.h0_c00427{height:1304.999953px;}
.h1_c00427{height:1305.000000px;}
.w2_c00427{width:934.874961px;}
.w0_c00427{width:934.875000px;}
.w1_c00427{width:935.250000px;}
.x0_c00427{left:0.000000px;}
.x1_c00427{left:87.850202px;}
.x2_c00427{left:451.985828px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws0_c00427{word-spacing:-16.615081pt;}
.ws1_c00427{word-spacing:-16.604696pt;}
.ws2_c00427{word-spacing:0.000000pt;}
._7_c00427{width:1.030631pt;}
._4_c00427{width:2.221268pt;}
._1_c00427{width:3.304240pt;}
._0_c00427{width:4.428569pt;}
._6_c00427{width:5.617435pt;}
._3_c00427{width:7.334121pt;}
._5_c00427{width:8.500601pt;}
._a_c00427{width:9.636149pt;}
._2_c00427{width:10.737852pt;}
._e_c00427{width:11.691988pt;}
._8_c00427{width:13.023476pt;}
._b_c00427{width:14.001153pt;}
._d_c00427{width:14.979583pt;}
._c_c00427{width:17.739413pt;}
._9_c00427{width:18.869959pt;}
._f_c00427{width:25.097503pt;}
.fs3_c00427{font-size:63.921837pt;}
.fs1_c00427{font-size:63.961814pt;}
.fs2_c00427{font-size:66.080552pt;}
.fs0_c00427{font-size:66.115417pt;}
.y0_c00427{bottom:0.000000pt;}
.y1_c00427{bottom:0.000007pt;}
.y25_c00427{bottom:26.805533pt;}
.y13_c00427{bottom:82.463906pt;}
.y12_c00427{bottom:109.447797pt;}
.y11_c00427{bottom:136.431687pt;}
.y10_c00427{bottom:163.415578pt;}
.yf_c00427{bottom:190.399468pt;}
.ye_c00427{bottom:217.383358pt;}
.y24_c00427{bottom:246.973449pt;}
.y23_c00427{bottom:309.250592pt;}
.y22_c00427{bottom:336.234482pt;}
.y21_c00427{bottom:363.218373pt;}
.y20_c00427{bottom:390.202263pt;}
.y1f_c00427{bottom:418.801121pt;}
.y1e_c00427{bottom:476.067555pt;}
.y1d_c00427{bottom:503.051446pt;}
.y1c_c00427{bottom:530.035336pt;}
.y1b_c00427{bottom:557.019226pt;}
.y1a_c00427{bottom:584.003117pt;}
.y19_c00427{bottom:610.987007pt;}
.y18_c00427{bottom:637.970898pt;}
.y17_c00427{bottom:664.954788pt;}
.y16_c00427{bottom:691.938679pt;}
.y15_c00427{bottom:718.922569pt;}
.y14_c00427{bottom:745.906460pt;}
.yd_c00427{bottom:770.458441pt;}
.yc_c00427{bottom:820.170300pt;}
.yb_c00427{bottom:847.154190pt;}
.ya_c00427{bottom:874.138080pt;}
.y9_c00427{bottom:901.121971pt;}
.y8_c00427{bottom:928.105861pt;}
.y7_c00427{bottom:955.089752pt;}
.y6_c00427{bottom:982.073642pt;}
.y5_c00427{bottom:1009.057533pt;}
.y4_c00427{bottom:1036.041423pt;}
.y3_c00427{bottom:1063.025314pt;}
.y2_c00427{bottom:1085.423265pt;}
.h5_c00427{height:50.625189pt;}
.h3_c00427{height:50.651899pt;}
.h6_c00427{height:59.520969pt;}
.h4_c00427{height:59.558193pt;}
.h2_c00427{height:1159.999952pt;}
.h0_c00427{height:1159.999959pt;}
.h1_c00427{height:1160.000000pt;}
.w2_c00427{width:830.999965pt;}
.w0_c00427{width:831.000000pt;}
.w1_c00427{width:831.333333pt;}
.x0_c00427{left:0.000000pt;}
.x1_c00427{left:78.089069pt;}
.x2_c00427{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e09595c2bbf5f928b8dfd882.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:0.734863;font-style:normal;font-weight: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_bd4566718a5df572047bfa23.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;line-height:1.171387;font-style:normal;font-weight: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_14f874323f9da76796a745dc.woff2')format("woff");}.ff6_c00428{font-family:ff6_c00428;line-height:1.000000;font-style:normal;font-weight: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_fe9e8c692b65bbc953ab3561.woff2')format("woff");}.ff7_c00428{font-family:ff7_c00428;line-height:1.000000;font-style:normal;font-weight: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_c00428;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00428{font-family:ff8_c00428;line-height:1.006348;font-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_c00428{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00428{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00428{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00428{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00428{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00428{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00428{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00428{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00428{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00428{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00428{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00428{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00428{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00428{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00428{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00428{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00428{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00428{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00428{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00428{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00428{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00428{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00428{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00428{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00428{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00428{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00428{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00428{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00428{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00428{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00428{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00428{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00428{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00428{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00428{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00428{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00428{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00428{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00428{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00428{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00428{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00428{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00428{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00428{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00428{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00428{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00428{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00428{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00428{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00428{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00428{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00428{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00428{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00428{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00428{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00428{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00428{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00428{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00428{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00428{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00428{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00428{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00428{vertical-align:0.000000px;}
.v1_c00428{vertical-align:26.810849px;}
.ls0_c00428{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00428{word-spacing:-18.680283px;}
.ws2_c00428{word-spacing:-0.055722px;}
.ws4_c00428{word-spacing:0.000000px;}
.ws1_c00428{word-spacing:281.470806px;}
.ws0_c00428{word-spacing:1114.343689px;}
._3_c00428{width:1.799998px;}
._6_c00428{width:6.221619px;}
._4_c00428{width:7.345948px;}
._0_c00428{width:15.014426px;}
._2_c00428{width:17.479798px;}
._5_c00428{width:30.539552px;}
._1_c00428{width:37.836778px;}
.fc3_c00428{color:rgb(194,158,103);}
.fc2_c00428{color:rgb(9,71,81);}
.fc1_c00428{color:rgb(255,255,255);}
.fc0_c00428{color:rgb(0,0,0);}
.fs8_c00428{font-size:41.974772px;}
.fsa_c00428{font-size:41.975069px;}
.fs2_c00428{font-size:47.339969px;}
.fs5_c00428{font-size:47.339970px;}
.fs1_c00428{font-size:47.339972px;}
.fs4_c00428{font-size:47.339973px;}
.fs3_c00428{font-size:47.339974px;}
.fs6_c00428{font-size:47.339975px;}
.fs9_c00428{font-size:51.630774px;}
.fsf_c00428{font-size:55.721735px;}
.fsd_c00428{font-size:59.949210px;}
.fs10_c00428{font-size:71.912067px;}
.fs0_c00428{font-size:71.957041px;}
.fse_c00428{font-size:74.379845px;}
.fs7_c00428{font-size:76.965540px;}
.fsc_c00428{font-size:89.946302px;}
.fsb_c00428{font-size:95.927731px;}
.y0_c00428{bottom:0.000000px;}
.y1_c00428{bottom:0.000008px;}
.y54_c00428{bottom:30.156225px;}
.y4b_c00428{bottom:92.772030px;}
.y4a_c00428{bottom:123.128907px;}
.y49_c00428{bottom:153.485784px;}
.y48_c00428{bottom:183.842661px;}
.y47_c00428{bottom:214.199537px;}
.y46_c00428{bottom:244.556414px;}
.y45_c00428{bottom:274.913291px;}
.y44_c00428{bottom:305.270168px;}
.y52_c00428{bottom:339.025895px;}
.y43_c00428{bottom:402.064151px;}
.y10_c00428{bottom:493.812629px;}
.y38_c00428{bottom:493.827623px;}
.yf_c00428{bottom:494.337609px;}
.y39_c00428{bottom:494.357158px;}
.y22_c00428{bottom:494.700737px;}
.y37_c00428{bottom:495.071586px;}
.ye_c00428{bottom:495.403002px;}
.y23_c00428{bottom:495.533530px;}
.y21_c00428{bottom:495.553663px;}
.y36_c00428{bottom:496.322201px;}
.yd_c00428{bottom:496.475623px;}
.y20_c00428{bottom:496.587915px;}
.y3a_c00428{bottom:496.772260px;}
.y11_c00428{bottom:496.835884px;}
.y24_c00428{bottom:497.713596px;}
.y35_c00428{bottom:497.966053px;}
.yc_c00428{bottom:498.126234px;}
.y1f_c00428{bottom:498.789265px;}
.y25_c00428{bottom:499.103521px;}
.y34_c00428{bottom:499.653306px;}
.yb_c00428{bottom:499.818769px;}
.y26_c00428{bottom:500.800864px;}
.y12_c00428{bottom:501.110605px;}
.y33_c00428{bottom:501.517382px;}
.ya_c00428{bottom:501.687706px;}
.y3b_c00428{bottom:501.869915px;}
.y1e_c00428{bottom:502.578702px;}
.y27_c00428{bottom:503.241722px;}
.y13_c00428{bottom:503.627848px;}
.y3c_c00428{bottom:505.496019px;}
.y28_c00428{bottom:505.499367px;}
.y32_c00428{bottom:506.168989px;}
.y9_c00428{bottom:506.348634px;}
.y1d_c00428{bottom:508.044213px;}
.y29_c00428{bottom:508.766327px;}
.y14_c00428{bottom:509.576794px;}
.y3d_c00428{bottom:511.126534px;}
.y1c_c00428{bottom:512.508085px;}
.y31_c00428{bottom:512.566592px;}
.y8_c00428{bottom:512.754669px;}
.y15_c00428{bottom:514.322677px;}
.y2a_c00428{bottom:517.158603px;}
.y3e_c00428{bottom:517.780195px;}
.y1b_c00428{bottom:518.929057px;}
.y30_c00428{bottom:519.869222px;}
.y7_c00428{bottom:519.959421px;}
.y6_c00428{bottom:523.416158px;}
.y1a_c00428{bottom:523.496236px;}
.y2b_c00428{bottom:525.202812px;}
.y16_c00428{bottom:526.099549px;}
.y2f_c00428{bottom:527.026630px;}
.y5_c00428{bottom:529.422883px;}
.y3f_c00428{bottom:529.736175px;}
.y19_c00428{bottom:531.263725px;}
.y2e_c00428{bottom:531.792993px;}
.y41_c00428{bottom:533.728456px;}
.y51_c00428{bottom:534.421816px;}
.y18_c00428{bottom:535.155114px;}
.y4_c00428{bottom:536.678099px;}
.y2d_c00428{bottom:537.961701px;}
.y17_c00428{bottom:538.332892px;}
.y40_c00428{bottom:538.696314px;}
.y2c_c00428{bottom:545.020884px;}
.y3_c00428{bottom:546.207017px;}
.y42_c00428{bottom:577.871130px;}
.y2_c00428{bottom:597.559761px;}
.y53_c00428{bottom:639.489911px;}
.y4d_c00428{bottom:1127.585799px;}
.y50_c00428{bottom:1129.718199px;}
.y4f_c00428{bottom:1147.707459px;}
.y4e_c00428{bottom:1150.017273px;}
.y4c_c00428{bottom:1170.658440px;}
.hb_c00428{height:32.157430px;}
.h8_c00428{height:35.967282px;}
.h7_c00428{height:35.967283px;}
.h9_c00428{height:35.967285px;}
.h5_c00428{height:36.267779px;}
.h4_c00428{height:36.267781px;}
.h6_c00428{height:36.267783px;}
.hc_c00428{height:37.437353px;}
.hd_c00428{height:39.085184px;}
.h14_c00428{height:51.885424px;}
.h15_c00428{height:55.092790px;}
.h3_c00428{height:55.127245px;}
.h11_c00428{height:55.821847px;}
.h12_c00428{height:56.261810px;}
.h13_c00428{height:56.983387px;}
.ha_c00428{height:58.968279px;}
.he_c00428{height:67.002968px;}
.h10_c00428{height:68.338108px;}
.hf_c00428{height:89.323331px;}
.h2_c00428{height:1304.999946px;}
.h0_c00428{height:1304.999953px;}
.h1_c00428{height:1305.000000px;}
.w2_c00428{width:934.874961px;}
.w0_c00428{width:934.875000px;}
.w1_c00428{width:935.250000px;}
.x0_c00428{left:0.000000px;}
.x3a_c00428{left:87.850202px;}
.x3d_c00428{left:108.062661px;}
.x3b_c00428{left:109.658623px;}
.x27_c00428{left:134.894322px;}
.x26_c00428{left:136.566734px;}
.x28_c00428{left:139.937719px;}
.x29_c00428{left:144.785273px;}
.x2a_c00428{left:150.147890px;}
.x2b_c00428{left:152.899057px;}
.x2c_c00428{left:155.907145px;}
.x2d_c00428{left:159.752336px;}
.x37_c00428{left:161.347648px;}
.x2e_c00428{left:163.203941px;}
.x2f_c00428{left:171.483965px;}
.x30_c00428{left:179.748684px;}
.x31_c00428{left:188.175145px;}
.x32_c00428{left:196.556636px;}
.x33_c00428{left:200.721504px;}
.x34_c00428{left:205.276922px;}
.x35_c00428{left:209.084069px;}
.x36_c00428{left:211.669316px;}
.x3_c00428{left:230.260919px;}
.x2_c00428{left:232.395871px;}
.x4_c00428{left:235.482735px;}
.x5_c00428{left:240.319117px;}
.x6_c00428{left:245.673577px;}
.x7_c00428{left:248.421493px;}
.x8_c00428{left:251.426626px;}
.x9_c00428{left:255.268917px;}
.x3e_c00428{left:256.468943px;}
.xa_c00428{left:258.553698px;}
.xb_c00428{left:262.988294px;}
.xc_c00428{left:271.601212px;}
.xd_c00428{left:283.434780px;}
.xe_c00428{left:290.867654px;}
.xf_c00428{left:294.260334px;}
.x3c_c00428{left:295.438786px;}
.x10_c00428{left:299.596701px;}
.x11_c00428{left:302.984150px;}
.x12_c00428{left:306.993562px;}
.x13_c00428{left:325.378518px;}
.x14_c00428{left:326.595106px;}
.x15_c00428{left:328.015253px;}
.x16_c00428{left:331.410444px;}
.x17_c00428{left:334.633053px;}
.x18_c00428{left:340.511825px;}
.x19_c00428{left:346.695139px;}
.x1a_c00428{left:352.384720px;}
.x1b_c00428{left:355.792694px;}
.x1c_c00428{left:363.695116px;}
.x1d_c00428{left:371.679253px;}
.x1e_c00428{left:378.434940px;}
.x1f_c00428{left:381.453328px;}
.x20_c00428{left:384.455783px;}
.x21_c00428{left:387.851715px;}
.x22_c00428{left:390.467224px;}
.x23_c00428{left:393.779799px;}
.x24_c00428{left:398.952070px;}
.x25_c00428{left:401.755082px;}
.x40_c00428{left:451.985828px;}
.x1_c00428{left:465.097640px;}
.x3f_c00428{left:676.474352px;}
.x39_c00428{left:696.904800px;}
.x38_c00428{left:733.103068px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.v1_c00428{vertical-align:23.831865pt;}
.ls0_c00428{letter-spacing:0.000000pt;}
.ws3_c00428{word-spacing:-16.604696pt;}
.ws2_c00428{word-spacing:-0.049530pt;}
.ws4_c00428{word-spacing:0.000000pt;}
.ws1_c00428{word-spacing:250.196272pt;}
.ws0_c00428{word-spacing:990.527723pt;}
._3_c00428{width:1.599998pt;}
._6_c00428{width:5.530328pt;}
._4_c00428{width:6.529732pt;}
._0_c00428{width:13.346157pt;}
._2_c00428{width:15.537598pt;}
._5_c00428{width:27.146269pt;}
._1_c00428{width:33.632692pt;}
.fs8_c00428{font-size:37.310908pt;}
.fsa_c00428{font-size:37.311173pt;}
.fs2_c00428{font-size:42.079973pt;}
.fs5_c00428{font-size:42.079974pt;}
.fs1_c00428{font-size:42.079975pt;}
.fs4_c00428{font-size:42.079976pt;}
.fs3_c00428{font-size:42.079977pt;}
.fs6_c00428{font-size:42.079978pt;}
.fs9_c00428{font-size:45.894021pt;}
.fsf_c00428{font-size:49.530431pt;}
.fsd_c00428{font-size:53.288186pt;}
.fs10_c00428{font-size:63.921837pt;}
.fs0_c00428{font-size:63.961814pt;}
.fse_c00428{font-size:66.115417pt;}
.fs7_c00428{font-size:68.413814pt;}
.fsc_c00428{font-size:79.952268pt;}
.fsb_c00428{font-size:85.269094pt;}
.y0_c00428{bottom:0.000000pt;}
.y1_c00428{bottom:0.000007pt;}
.y54_c00428{bottom:26.805533pt;}
.y4b_c00428{bottom:82.464027pt;}
.y4a_c00428{bottom:109.447917pt;}
.y49_c00428{bottom:136.431808pt;}
.y48_c00428{bottom:163.415698pt;}
.y47_c00428{bottom:190.399589pt;}
.y46_c00428{bottom:217.383479pt;}
.y45_c00428{bottom:244.367370pt;}
.y44_c00428{bottom:271.351260pt;}
.y52_c00428{bottom:301.356351pt;}
.y43_c00428{bottom:357.390356pt;}
.y10_c00428{bottom:438.944560pt;}
.y38_c00428{bottom:438.957887pt;}
.yf_c00428{bottom:439.411208pt;}
.y39_c00428{bottom:439.428585pt;}
.y22_c00428{bottom:439.733989pt;}
.y37_c00428{bottom:440.063632pt;}
.ye_c00428{bottom:440.358224pt;}
.y23_c00428{bottom:440.474249pt;}
.y21_c00428{bottom:440.492144pt;}
.y36_c00428{bottom:441.175290pt;}
.yd_c00428{bottom:441.311665pt;}
.y20_c00428{bottom:441.411480pt;}
.y3a_c00428{bottom:441.575343pt;}
.y11_c00428{bottom:441.631897pt;}
.y24_c00428{bottom:442.412085pt;}
.y35_c00428{bottom:442.636491pt;}
.yc_c00428{bottom:442.778875pt;}
.y1f_c00428{bottom:443.368235pt;}
.y25_c00428{bottom:443.647574pt;}
.y34_c00428{bottom:444.136272pt;}
.yb_c00428{bottom:444.283350pt;}
.y26_c00428{bottom:445.156323pt;}
.y12_c00428{bottom:445.431649pt;}
.y33_c00428{bottom:445.793228pt;}
.ya_c00428{bottom:445.944627pt;}
.y3b_c00428{bottom:446.106592pt;}
.y1e_c00428{bottom:446.736624pt;}
.y27_c00428{bottom:447.325975pt;}
.y13_c00428{bottom:447.669198pt;}
.y3c_c00428{bottom:449.329795pt;}
.y28_c00428{bottom:449.332771pt;}
.y32_c00428{bottom:449.927990pt;}
.y9_c00428{bottom:450.087675pt;}
.y1d_c00428{bottom:451.594856pt;}
.y29_c00428{bottom:452.236735pt;}
.y14_c00428{bottom:452.957150pt;}
.y3d_c00428{bottom:454.334697pt;}
.y1c_c00428{bottom:455.562742pt;}
.y31_c00428{bottom:455.614749pt;}
.y8_c00428{bottom:455.781928pt;}
.y15_c00428{bottom:457.175713pt;}
.y2a_c00428{bottom:459.696536pt;}
.y3e_c00428{bottom:460.249062pt;}
.y1b_c00428{bottom:461.270273pt;}
.y30_c00428{bottom:462.105976pt;}
.y7_c00428{bottom:462.186152pt;}
.y6_c00428{bottom:465.258807pt;}
.y1a_c00428{bottom:465.329988pt;}
.y2b_c00428{bottom:466.846944pt;}
.y16_c00428{bottom:467.644044pt;}
.y2f_c00428{bottom:468.468115pt;}
.y5_c00428{bottom:470.598118pt;}
.y3f_c00428{bottom:470.876600pt;}
.y19_c00428{bottom:472.234422pt;}
.y2e_c00428{bottom:472.704883pt;}
.y41_c00428{bottom:474.425294pt;}
.y51_c00428{bottom:475.041614pt;}
.y18_c00428{bottom:475.693435pt;}
.y4_c00428{bottom:477.047199pt;}
.y2d_c00428{bottom:478.188178pt;}
.y17_c00428{bottom:478.518126pt;}
.y40_c00428{bottom:478.841168pt;}
.y2c_c00428{bottom:484.463008pt;}
.y3_c00428{bottom:485.517349pt;}
.y42_c00428{bottom:513.663227pt;}
.y2_c00428{bottom:531.164232pt;}
.y53_c00428{bottom:568.435476pt;}
.y4d_c00428{bottom:1002.298488pt;}
.y50_c00428{bottom:1004.193955pt;}
.y4f_c00428{bottom:1020.184408pt;}
.y4e_c00428{bottom:1022.237576pt;}
.y4c_c00428{bottom:1040.585280pt;}
.hb_c00428{height:28.584382pt;}
.h8_c00428{height:31.970917pt;}
.h7_c00428{height:31.970918pt;}
.h9_c00428{height:31.970920pt;}
.h5_c00428{height:32.238026pt;}
.h4_c00428{height:32.238028pt;}
.h6_c00428{height:32.238029pt;}
.hc_c00428{height:33.277647pt;}
.hd_c00428{height:34.742386pt;}
.h14_c00428{height:46.120377pt;}
.h15_c00428{height:48.971369pt;}
.h3_c00428{height:49.001996pt;}
.h11_c00428{height:49.619420pt;}
.h12_c00428{height:50.010498pt;}
.h13_c00428{height:50.651899pt;}
.ha_c00428{height:52.416248pt;}
.he_c00428{height:59.558193pt;}
.h10_c00428{height:60.744985pt;}
.hf_c00428{height:79.398517pt;}
.h2_c00428{height:1159.999952pt;}
.h0_c00428{height:1159.999959pt;}
.h1_c00428{height:1160.000000pt;}
.w2_c00428{width:830.999965pt;}
.w0_c00428{width:831.000000pt;}
.w1_c00428{width:831.333333pt;}
.x0_c00428{left:0.000000pt;}
.x3a_c00428{left:78.089069pt;}
.x3d_c00428{left:96.055698pt;}
.x3b_c00428{left:97.474332pt;}
.x27_c00428{left:119.906064pt;}
.x26_c00428{left:121.392652pt;}
.x28_c00428{left:124.389083pt;}
.x29_c00428{left:128.698021pt;}
.x2a_c00428{left:133.464791pt;}
.x2b_c00428{left:135.910272pt;}
.x2c_c00428{left:138.584129pt;}
.x2d_c00428{left:142.002076pt;}
.x37_c00428{left:143.420132pt;}
.x2e_c00428{left:145.070170pt;}
.x2f_c00428{left:152.430191pt;}
.x30_c00428{left:159.776608pt;}
.x31_c00428{left:167.266795pt;}
.x32_c00428{left:174.717010pt;}
.x33_c00428{left:178.419115pt;}
.x34_c00428{left:182.468375pt;}
.x35_c00428{left:185.852506pt;}
.x36_c00428{left:188.150503pt;}
.x3_c00428{left:204.676373pt;}
.x2_c00428{left:206.574107pt;}
.x4_c00428{left:209.317987pt;}
.x5_c00428{left:213.616993pt;}
.x6_c00428{left:218.376513pt;}
.x7_c00428{left:220.819105pt;}
.x8_c00428{left:223.490334pt;}
.x9_c00428{left:226.905704pt;}
.x3e_c00428{left:227.972394pt;}
.xa_c00428{left:229.825509pt;}
.xb_c00428{left:233.767373pt;}
.xc_c00428{left:241.423300pt;}
.xd_c00428{left:251.942027pt;}
.xe_c00428{left:258.549026pt;}
.xf_c00428{left:261.564741pt;}
.x3c_c00428{left:262.612255pt;}
.x10_c00428{left:266.308178pt;}
.x11_c00428{left:269.319244pt;}
.x12_c00428{left:272.883167pt;}
.x13_c00428{left:289.225349pt;}
.x14_c00428{left:290.306761pt;}
.x15_c00428{left:291.569114pt;}
.x16_c00428{left:294.587062pt;}
.x17_c00428{left:297.451603pt;}
.x18_c00428{left:302.677178pt;}
.x19_c00428{left:308.173457pt;}
.x1a_c00428{left:313.230862pt;}
.x1b_c00428{left:316.260173pt;}
.x1c_c00428{left:323.284548pt;}
.x1d_c00428{left:330.381558pt;}
.x1e_c00428{left:336.386614pt;}
.x1f_c00428{left:339.069625pt;}
.x20_c00428{left:341.738474pt;}
.x21_c00428{left:344.757080pt;}
.x22_c00428{left:347.081977pt;}
.x23_c00428{left:350.026488pt;}
.x24_c00428{left:354.624063pt;}
.x25_c00428{left:357.115628pt;}
.x40_c00428{left:401.765180pt;}
.x1_c00428{left:413.420124pt;}
.x3f_c00428{left:601.310535pt;}
.x39_c00428{left:619.470933pt;}
.x38_c00428{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.006348;font-style:normal;font-weight:normal;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_eb1ad5e75d131862f5f292fe.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.171387;font-style:normal;font-weight:normal;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_dae4d1f0db28d1687c6cb998.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:0.974121;font-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_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);}
.v0_c00429{vertical-align:0.000000px;}
.ls0_c00429{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00429{word-spacing:0.000000px;}
._3_c00429{width:1.726853px;}
._0_c00429{width:2.730462px;}
._2_c00429{width:4.659606px;}
._5_c00429{width:6.310281px;}
._7_c00429{width:8.659474px;}
._6_c00429{width:9.908149px;}
._8_c00429{width:10.962204px;}
._9_c00429{width:12.059367px;}
._4_c00429{width:14.651411px;}
._1_c00429{width:16.771191px;}
.fc1_c00429{color:rgb(0,0,0);}
.fc0_c00429{color:rgb(194,158,103);}
.fs3_c00429{font-size:71.912067px;}
.fs1_c00429{font-size:71.957041px;}
.fs2_c00429{font-size:74.340621px;}
.fs0_c00429{font-size:74.379845px;}
.y0_c00429{bottom:0.000000px;}
.y1_c00429{bottom:0.000008px;}
.y1e_c00429{bottom:30.156225px;}
.yf_c00429{bottom:193.334772px;}
.ye_c00429{bottom:223.691649px;}
.yd_c00429{bottom:254.048526px;}
.yc_c00429{bottom:284.405403px;}
.yb_c00429{bottom:314.762279px;}
.ya_c00429{bottom:345.119156px;}
.y9_c00429{bottom:375.476033px;}
.y1a_c00429{bottom:411.843820px;}
.y19_c00429{bottom:483.065606px;}
.y18_c00429{bottom:513.422483px;}
.y17_c00429{bottom:547.541566px;}
.y16_c00429{bottom:624.385056px;}
.y15_c00429{bottom:654.741933px;}
.y14_c00429{bottom:685.098810px;}
.y13_c00429{bottom:715.455687px;}
.y12_c00429{bottom:745.812563px;}
.y11_c00429{bottom:776.169440px;}
.y10_c00429{bottom:806.526317px;}
.y8_c00429{bottom:842.893996px;}
.y7_c00429{bottom:913.796270px;}
.y6_c00429{bottom:944.153147px;}
.y5_c00429{bottom:974.510024px;}
.y4_c00429{bottom:1004.866901px;}
.y3_c00429{bottom:1035.223777px;}
.y2_c00429{bottom:1069.149558px;}
.y1d_c00429{bottom:1139.571057px;}
.y1c_c00429{bottom:1169.927934px;}
.y1b_c00429{bottom:1200.284811px;}
.h5_c00429{height:56.953337px;}
.h3_c00429{height:56.983387px;}
.h6_c00429{height:66.961090px;}
.h4_c00429{height:67.002968px;}
.h2_c00429{height:1304.999946px;}
.h0_c00429{height:1304.999953px;}
.h1_c00429{height:1305.000000px;}
.w2_c00429{width:934.874961px;}
.w0_c00429{width:934.875000px;}
.w1_c00429{width:935.250000px;}
.x0_c00429{left:0.000000px;}
.x1_c00429{left:87.850202px;}
.x2_c00429{left:451.985828px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ws0_c00429{word-spacing:-16.604696pt;}
.ws1_c00429{word-spacing:0.000000pt;}
._3_c00429{width:1.534981pt;}
._0_c00429{width:2.427078pt;}
._2_c00429{width:4.141872pt;}
._5_c00429{width:5.609139pt;}
._7_c00429{width:7.697310pt;}
._6_c00429{width:8.807243pt;}
._8_c00429{width:9.744181pt;}
._9_c00429{width:10.719438pt;}
._4_c00429{width:13.023476pt;}
._1_c00429{width:14.907725pt;}
.fs3_c00429{font-size:63.921837pt;}
.fs1_c00429{font-size:63.961814pt;}
.fs2_c00429{font-size:66.080552pt;}
.fs0_c00429{font-size:66.115417pt;}
.y0_c00429{bottom:0.000000pt;}
.y1_c00429{bottom:0.000007pt;}
.y1e_c00429{bottom:26.805533pt;}
.yf_c00429{bottom:171.853131pt;}
.ye_c00429{bottom:198.837021pt;}
.yd_c00429{bottom:225.820912pt;}
.yc_c00429{bottom:252.804802pt;}
.yb_c00429{bottom:279.788693pt;}
.ya_c00429{bottom:306.772583pt;}
.y9_c00429{bottom:333.756474pt;}
.y1a_c00429{bottom:366.083396pt;}
.y19_c00429{bottom:429.391650pt;}
.y18_c00429{bottom:456.375541pt;}
.y17_c00429{bottom:486.703615pt;}
.y16_c00429{bottom:555.008939pt;}
.y15_c00429{bottom:581.992829pt;}
.y14_c00429{bottom:608.976720pt;}
.y13_c00429{bottom:635.960610pt;}
.y12_c00429{bottom:662.944501pt;}
.y11_c00429{bottom:689.928391pt;}
.y10_c00429{bottom:716.912282pt;}
.y8_c00429{bottom:749.239108pt;}
.y7_c00429{bottom:812.263351pt;}
.y6_c00429{bottom:839.247242pt;}
.y5_c00429{bottom:866.231132pt;}
.y4_c00429{bottom:893.215023pt;}
.y3_c00429{bottom:920.198913pt;}
.y2_c00429{bottom:950.355162pt;}
.y1d_c00429{bottom:1012.952051pt;}
.y1c_c00429{bottom:1039.935941pt;}
.y1b_c00429{bottom:1066.919832pt;}
.h5_c00429{height:50.625189pt;}
.h3_c00429{height:50.651899pt;}
.h6_c00429{height:59.520969pt;}
.h4_c00429{height:59.558193pt;}
.h2_c00429{height:1159.999952pt;}
.h0_c00429{height:1159.999959pt;}
.h1_c00429{height:1160.000000pt;}
.w2_c00429{width:830.999965pt;}
.w0_c00429{width:831.000000pt;}
.w1_c00429{width:831.333333pt;}
.x0_c00429{left:0.000000pt;}
.x1_c00429{left:78.089069pt;}
.x2_c00429{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce564a3429366eb4de57d3aa.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:0.734863;font-style:normal;font-weight: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_d22b03093a5dfde16ca2c98f.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;line-height:0.743652;font-style:normal;font-weight: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_87f98c36550b80f377e196b8.woff2')format("woff");}.ff6_c00430{font-family:ff6_c00430;line-height:1.171387;font-style:normal;font-weight: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_7d58ccfce08a86ca7ba38cc9.woff2')format("woff");}.ff7_c00430{font-family:ff7_c00430;line-height:1.000000;font-style:normal;font-weight: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_c00430;src:url('chunks/assets/font_fe9e8c692b65bbc953ab3561.woff2')format("woff");}.ff8_c00430{font-family:ff8_c00430;line-height:1.000000;font-style:normal;font-weight: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_c00430;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff9_c00430{font-family:ff9_c00430;line-height:1.006348;font-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_c00430{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00430{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00430{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00430{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00430{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00430{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00430{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00430{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00430{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00430{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00430{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00430{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00430{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00430{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00430{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00430{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00430{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00430{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00430{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00430{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00430{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00430{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00430{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00430{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00430{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00430{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00430{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00430{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00430{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00430{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00430{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00430{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00430{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00430{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00430{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00430{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00430{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00430{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00430{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00430{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00430{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00430{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00430{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00430{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00430{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00430{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00430{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00430{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00430{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00430{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00430{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00430{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00430{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00430{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00430{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00430{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00430{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00430{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00430{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00430{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00430{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00430{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00430{vertical-align:0.000000px;}
.v1_c00430{vertical-align:26.810849px;}
.ls0_c00430{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00430{word-spacing:-18.680283px;}
.ws1_c00430{word-spacing:-0.071957px;}
.ws3_c00430{word-spacing:-0.055722px;}
.ws5_c00430{word-spacing:0.000000px;}
.ws2_c00430{word-spacing:281.470806px;}
.ws0_c00430{word-spacing:1114.343689px;}
._3_c00430{width:1.202283px;}
._2_c00430{width:8.263789px;}
._5_c00430{width:9.924345px;}
._1_c00430{width:12.239841px;}
._4_c00430{width:13.360995px;}
._0_c00430{width:20.314571px;}
.fc3_c00430{color:rgb(194,158,103);}
.fc2_c00430{color:rgb(9,71,81);}
.fc1_c00430{color:rgb(255,255,255);}
.fc0_c00430{color:rgb(0,0,0);}
.fs8_c00430{font-size:41.974772px;}
.fsa_c00430{font-size:41.975069px;}
.fs2_c00430{font-size:47.339969px;}
.fs5_c00430{font-size:47.339970px;}
.fs1_c00430{font-size:47.339972px;}
.fs4_c00430{font-size:47.339973px;}
.fs3_c00430{font-size:47.339974px;}
.fs6_c00430{font-size:47.339975px;}
.fs9_c00430{font-size:51.630774px;}
.fsf_c00430{font-size:55.721735px;}
.fsd_c00430{font-size:59.949210px;}
.fs10_c00430{font-size:71.912067px;}
.fs0_c00430{font-size:71.957041px;}
.fse_c00430{font-size:74.379845px;}
.fs7_c00430{font-size:76.965540px;}
.fsc_c00430{font-size:89.946302px;}
.fsb_c00430{font-size:95.927731px;}
.y0_c00430{bottom:0.000000px;}
.y1_c00430{bottom:0.000008px;}
.y54_c00430{bottom:30.156225px;}
.y4b_c00430{bottom:89.970835px;}
.y4a_c00430{bottom:120.327711px;}
.y49_c00430{bottom:150.684588px;}
.y48_c00430{bottom:181.041465px;}
.y47_c00430{bottom:211.398342px;}
.y46_c00430{bottom:241.755218px;}
.y45_c00430{bottom:272.112095px;}
.y44_c00430{bottom:302.468972px;}
.y52_c00430{bottom:339.025895px;}
.y43_c00430{bottom:402.064151px;}
.y10_c00430{bottom:493.812629px;}
.y38_c00430{bottom:493.827623px;}
.yf_c00430{bottom:494.337609px;}
.y39_c00430{bottom:494.357158px;}
.y22_c00430{bottom:494.700737px;}
.y37_c00430{bottom:495.071586px;}
.ye_c00430{bottom:495.403002px;}
.y23_c00430{bottom:495.533530px;}
.y21_c00430{bottom:495.553663px;}
.y36_c00430{bottom:496.322201px;}
.yd_c00430{bottom:496.475623px;}
.y20_c00430{bottom:496.587915px;}
.y3a_c00430{bottom:496.772260px;}
.y11_c00430{bottom:496.835884px;}
.y24_c00430{bottom:497.713596px;}
.y35_c00430{bottom:497.966053px;}
.yc_c00430{bottom:498.126234px;}
.y1f_c00430{bottom:498.789265px;}
.y25_c00430{bottom:499.103521px;}
.y34_c00430{bottom:499.653306px;}
.yb_c00430{bottom:499.818769px;}
.y26_c00430{bottom:500.800864px;}
.y12_c00430{bottom:501.110605px;}
.y33_c00430{bottom:501.517382px;}
.ya_c00430{bottom:501.687706px;}
.y3b_c00430{bottom:501.869915px;}
.y1e_c00430{bottom:502.578702px;}
.y27_c00430{bottom:503.241722px;}
.y13_c00430{bottom:503.627848px;}
.y3c_c00430{bottom:505.496019px;}
.y28_c00430{bottom:505.499367px;}
.y32_c00430{bottom:506.168989px;}
.y9_c00430{bottom:506.348634px;}
.y1d_c00430{bottom:508.044213px;}
.y29_c00430{bottom:508.766327px;}
.y14_c00430{bottom:509.576794px;}
.y3d_c00430{bottom:511.126534px;}
.y1c_c00430{bottom:512.508085px;}
.y31_c00430{bottom:512.566592px;}
.y8_c00430{bottom:512.754669px;}
.y15_c00430{bottom:514.322677px;}
.y2a_c00430{bottom:517.158603px;}
.y3e_c00430{bottom:517.780195px;}
.y1b_c00430{bottom:518.929057px;}
.y30_c00430{bottom:519.869222px;}
.y7_c00430{bottom:519.959421px;}
.y6_c00430{bottom:523.416158px;}
.y1a_c00430{bottom:523.496236px;}
.y2b_c00430{bottom:525.202812px;}
.y16_c00430{bottom:526.099549px;}
.y2f_c00430{bottom:527.026630px;}
.y5_c00430{bottom:529.422883px;}
.y3f_c00430{bottom:529.736175px;}
.y19_c00430{bottom:531.263725px;}
.y2e_c00430{bottom:531.792993px;}
.y41_c00430{bottom:533.728456px;}
.y51_c00430{bottom:534.421816px;}
.y18_c00430{bottom:535.155114px;}
.y4_c00430{bottom:536.678099px;}
.y2d_c00430{bottom:537.961701px;}
.y17_c00430{bottom:538.332892px;}
.y40_c00430{bottom:538.696314px;}
.y2c_c00430{bottom:545.020884px;}
.y3_c00430{bottom:546.207017px;}
.y42_c00430{bottom:577.871130px;}
.y2_c00430{bottom:597.559761px;}
.y53_c00430{bottom:639.489911px;}
.y4d_c00430{bottom:1127.585799px;}
.y50_c00430{bottom:1129.718199px;}
.y4f_c00430{bottom:1147.707459px;}
.y4e_c00430{bottom:1150.017273px;}
.y4c_c00430{bottom:1170.658440px;}
.hb_c00430{height:32.157430px;}
.h8_c00430{height:35.967282px;}
.h7_c00430{height:35.967283px;}
.h9_c00430{height:35.967285px;}
.h5_c00430{height:36.267779px;}
.h4_c00430{height:36.267781px;}
.h6_c00430{height:36.267783px;}
.hc_c00430{height:37.437353px;}
.hd_c00430{height:39.085184px;}
.h14_c00430{height:51.885424px;}
.h15_c00430{height:55.092790px;}
.h3_c00430{height:55.127245px;}
.h11_c00430{height:55.821847px;}
.h12_c00430{height:56.261810px;}
.h13_c00430{height:56.983387px;}
.ha_c00430{height:58.968279px;}
.he_c00430{height:67.002968px;}
.h10_c00430{height:68.338108px;}
.hf_c00430{height:89.323331px;}
.h2_c00430{height:1304.999946px;}
.h0_c00430{height:1304.999953px;}
.h1_c00430{height:1305.000000px;}
.w2_c00430{width:934.874961px;}
.w0_c00430{width:934.875000px;}
.w1_c00430{width:935.250000px;}
.x0_c00430{left:0.000000px;}
.x3a_c00430{left:89.434062px;}
.x3d_c00430{left:108.062661px;}
.x3b_c00430{left:109.658623px;}
.x27_c00430{left:134.894322px;}
.x26_c00430{left:136.566734px;}
.x28_c00430{left:139.937719px;}
.x29_c00430{left:144.785273px;}
.x2a_c00430{left:150.147890px;}
.x2b_c00430{left:152.899057px;}
.x2c_c00430{left:155.907145px;}
.x2d_c00430{left:159.752336px;}
.x37_c00430{left:161.347648px;}
.x2e_c00430{left:163.203941px;}
.x2f_c00430{left:171.483965px;}
.x30_c00430{left:179.748684px;}
.x31_c00430{left:188.175145px;}
.x32_c00430{left:196.556636px;}
.x33_c00430{left:200.721504px;}
.x34_c00430{left:205.276922px;}
.x35_c00430{left:209.084069px;}
.x36_c00430{left:211.669316px;}
.x3_c00430{left:230.260919px;}
.x2_c00430{left:232.395871px;}
.x4_c00430{left:235.482735px;}
.x5_c00430{left:240.319117px;}
.x6_c00430{left:245.673577px;}
.x7_c00430{left:248.421493px;}
.x8_c00430{left:251.426626px;}
.x9_c00430{left:255.268917px;}
.x3e_c00430{left:256.468943px;}
.xa_c00430{left:258.553698px;}
.xb_c00430{left:262.988294px;}
.xc_c00430{left:271.601212px;}
.xd_c00430{left:283.434780px;}
.xe_c00430{left:290.867654px;}
.xf_c00430{left:294.260334px;}
.x3c_c00430{left:295.438786px;}
.x10_c00430{left:299.596701px;}
.x11_c00430{left:302.984150px;}
.x12_c00430{left:306.993562px;}
.x13_c00430{left:325.378518px;}
.x14_c00430{left:326.595106px;}
.x15_c00430{left:328.015253px;}
.x16_c00430{left:331.410444px;}
.x17_c00430{left:334.633053px;}
.x18_c00430{left:340.511825px;}
.x19_c00430{left:346.695139px;}
.x1a_c00430{left:352.384720px;}
.x1b_c00430{left:355.792694px;}
.x1c_c00430{left:363.695116px;}
.x1d_c00430{left:371.679253px;}
.x1e_c00430{left:378.434940px;}
.x1f_c00430{left:381.453328px;}
.x20_c00430{left:384.455783px;}
.x21_c00430{left:387.851715px;}
.x22_c00430{left:390.467224px;}
.x23_c00430{left:393.779799px;}
.x24_c00430{left:398.952070px;}
.x25_c00430{left:401.755082px;}
.x40_c00430{left:451.985828px;}
.x1_c00430{left:465.097640px;}
.x3f_c00430{left:676.474352px;}
.x39_c00430{left:696.904800px;}
.x38_c00430{left:733.103068px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.v1_c00430{vertical-align:23.831865pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws4_c00430{word-spacing:-16.604696pt;}
.ws1_c00430{word-spacing:-0.063962pt;}
.ws3_c00430{word-spacing:-0.049530pt;}
.ws5_c00430{word-spacing:0.000000pt;}
.ws2_c00430{word-spacing:250.196272pt;}
.ws0_c00430{word-spacing:990.527723pt;}
._3_c00430{width:1.068696pt;}
._2_c00430{width:7.345590pt;}
._5_c00430{width:8.821640pt;}
._1_c00430{width:10.879858pt;}
._4_c00430{width:11.876440pt;}
._0_c00430{width:18.057396pt;}
.fs8_c00430{font-size:37.310908pt;}
.fsa_c00430{font-size:37.311173pt;}
.fs2_c00430{font-size:42.079973pt;}
.fs5_c00430{font-size:42.079974pt;}
.fs1_c00430{font-size:42.079975pt;}
.fs4_c00430{font-size:42.079976pt;}
.fs3_c00430{font-size:42.079977pt;}
.fs6_c00430{font-size:42.079978pt;}
.fs9_c00430{font-size:45.894021pt;}
.fsf_c00430{font-size:49.530431pt;}
.fsd_c00430{font-size:53.288186pt;}
.fs10_c00430{font-size:63.921837pt;}
.fs0_c00430{font-size:63.961814pt;}
.fse_c00430{font-size:66.115417pt;}
.fs7_c00430{font-size:68.413814pt;}
.fsc_c00430{font-size:79.952268pt;}
.fsb_c00430{font-size:85.269094pt;}
.y0_c00430{bottom:0.000000pt;}
.y1_c00430{bottom:0.000007pt;}
.y54_c00430{bottom:26.805533pt;}
.y4b_c00430{bottom:79.974075pt;}
.y4a_c00430{bottom:106.957966pt;}
.y49_c00430{bottom:133.941856pt;}
.y48_c00430{bottom:160.925747pt;}
.y47_c00430{bottom:187.909637pt;}
.y46_c00430{bottom:214.893527pt;}
.y45_c00430{bottom:241.877418pt;}
.y44_c00430{bottom:268.861308pt;}
.y52_c00430{bottom:301.356351pt;}
.y43_c00430{bottom:357.390356pt;}
.y10_c00430{bottom:438.944560pt;}
.y38_c00430{bottom:438.957887pt;}
.yf_c00430{bottom:439.411208pt;}
.y39_c00430{bottom:439.428585pt;}
.y22_c00430{bottom:439.733989pt;}
.y37_c00430{bottom:440.063632pt;}
.ye_c00430{bottom:440.358224pt;}
.y23_c00430{bottom:440.474249pt;}
.y21_c00430{bottom:440.492144pt;}
.y36_c00430{bottom:441.175290pt;}
.yd_c00430{bottom:441.311665pt;}
.y20_c00430{bottom:441.411480pt;}
.y3a_c00430{bottom:441.575343pt;}
.y11_c00430{bottom:441.631897pt;}
.y24_c00430{bottom:442.412085pt;}
.y35_c00430{bottom:442.636491pt;}
.yc_c00430{bottom:442.778875pt;}
.y1f_c00430{bottom:443.368235pt;}
.y25_c00430{bottom:443.647574pt;}
.y34_c00430{bottom:444.136272pt;}
.yb_c00430{bottom:444.283350pt;}
.y26_c00430{bottom:445.156323pt;}
.y12_c00430{bottom:445.431649pt;}
.y33_c00430{bottom:445.793228pt;}
.ya_c00430{bottom:445.944627pt;}
.y3b_c00430{bottom:446.106592pt;}
.y1e_c00430{bottom:446.736624pt;}
.y27_c00430{bottom:447.325975pt;}
.y13_c00430{bottom:447.669198pt;}
.y3c_c00430{bottom:449.329795pt;}
.y28_c00430{bottom:449.332771pt;}
.y32_c00430{bottom:449.927990pt;}
.y9_c00430{bottom:450.087675pt;}
.y1d_c00430{bottom:451.594856pt;}
.y29_c00430{bottom:452.236735pt;}
.y14_c00430{bottom:452.957150pt;}
.y3d_c00430{bottom:454.334697pt;}
.y1c_c00430{bottom:455.562742pt;}
.y31_c00430{bottom:455.614749pt;}
.y8_c00430{bottom:455.781928pt;}
.y15_c00430{bottom:457.175713pt;}
.y2a_c00430{bottom:459.696536pt;}
.y3e_c00430{bottom:460.249062pt;}
.y1b_c00430{bottom:461.270273pt;}
.y30_c00430{bottom:462.105976pt;}
.y7_c00430{bottom:462.186152pt;}
.y6_c00430{bottom:465.258807pt;}
.y1a_c00430{bottom:465.329988pt;}
.y2b_c00430{bottom:466.846944pt;}
.y16_c00430{bottom:467.644044pt;}
.y2f_c00430{bottom:468.468115pt;}
.y5_c00430{bottom:470.598118pt;}
.y3f_c00430{bottom:470.876600pt;}
.y19_c00430{bottom:472.234422pt;}
.y2e_c00430{bottom:472.704883pt;}
.y41_c00430{bottom:474.425294pt;}
.y51_c00430{bottom:475.041614pt;}
.y18_c00430{bottom:475.693435pt;}
.y4_c00430{bottom:477.047199pt;}
.y2d_c00430{bottom:478.188178pt;}
.y17_c00430{bottom:478.518126pt;}
.y40_c00430{bottom:478.841168pt;}
.y2c_c00430{bottom:484.463008pt;}
.y3_c00430{bottom:485.517349pt;}
.y42_c00430{bottom:513.663227pt;}
.y2_c00430{bottom:531.164232pt;}
.y53_c00430{bottom:568.435476pt;}
.y4d_c00430{bottom:1002.298488pt;}
.y50_c00430{bottom:1004.193955pt;}
.y4f_c00430{bottom:1020.184408pt;}
.y4e_c00430{bottom:1022.237576pt;}
.y4c_c00430{bottom:1040.585280pt;}
.hb_c00430{height:28.584382pt;}
.h8_c00430{height:31.970917pt;}
.h7_c00430{height:31.970918pt;}
.h9_c00430{height:31.970920pt;}
.h5_c00430{height:32.238026pt;}
.h4_c00430{height:32.238028pt;}
.h6_c00430{height:32.238029pt;}
.hc_c00430{height:33.277647pt;}
.hd_c00430{height:34.742386pt;}
.h14_c00430{height:46.120377pt;}
.h15_c00430{height:48.971369pt;}
.h3_c00430{height:49.001996pt;}
.h11_c00430{height:49.619420pt;}
.h12_c00430{height:50.010498pt;}
.h13_c00430{height:50.651899pt;}
.ha_c00430{height:52.416248pt;}
.he_c00430{height:59.558193pt;}
.h10_c00430{height:60.744985pt;}
.hf_c00430{height:79.398517pt;}
.h2_c00430{height:1159.999952pt;}
.h0_c00430{height:1159.999959pt;}
.h1_c00430{height:1160.000000pt;}
.w2_c00430{width:830.999965pt;}
.w0_c00430{width:831.000000pt;}
.w1_c00430{width:831.333333pt;}
.x0_c00430{left:0.000000pt;}
.x3a_c00430{left:79.496944pt;}
.x3d_c00430{left:96.055698pt;}
.x3b_c00430{left:97.474332pt;}
.x27_c00430{left:119.906064pt;}
.x26_c00430{left:121.392652pt;}
.x28_c00430{left:124.389083pt;}
.x29_c00430{left:128.698021pt;}
.x2a_c00430{left:133.464791pt;}
.x2b_c00430{left:135.910272pt;}
.x2c_c00430{left:138.584129pt;}
.x2d_c00430{left:142.002076pt;}
.x37_c00430{left:143.420132pt;}
.x2e_c00430{left:145.070170pt;}
.x2f_c00430{left:152.430191pt;}
.x30_c00430{left:159.776608pt;}
.x31_c00430{left:167.266795pt;}
.x32_c00430{left:174.717010pt;}
.x33_c00430{left:178.419115pt;}
.x34_c00430{left:182.468375pt;}
.x35_c00430{left:185.852506pt;}
.x36_c00430{left:188.150503pt;}
.x3_c00430{left:204.676373pt;}
.x2_c00430{left:206.574107pt;}
.x4_c00430{left:209.317987pt;}
.x5_c00430{left:213.616993pt;}
.x6_c00430{left:218.376513pt;}
.x7_c00430{left:220.819105pt;}
.x8_c00430{left:223.490334pt;}
.x9_c00430{left:226.905704pt;}
.x3e_c00430{left:227.972394pt;}
.xa_c00430{left:229.825509pt;}
.xb_c00430{left:233.767373pt;}
.xc_c00430{left:241.423300pt;}
.xd_c00430{left:251.942027pt;}
.xe_c00430{left:258.549026pt;}
.xf_c00430{left:261.564741pt;}
.x3c_c00430{left:262.612255pt;}
.x10_c00430{left:266.308178pt;}
.x11_c00430{left:269.319244pt;}
.x12_c00430{left:272.883167pt;}
.x13_c00430{left:289.225349pt;}
.x14_c00430{left:290.306761pt;}
.x15_c00430{left:291.569114pt;}
.x16_c00430{left:294.587062pt;}
.x17_c00430{left:297.451603pt;}
.x18_c00430{left:302.677178pt;}
.x19_c00430{left:308.173457pt;}
.x1a_c00430{left:313.230862pt;}
.x1b_c00430{left:316.260173pt;}
.x1c_c00430{left:323.284548pt;}
.x1d_c00430{left:330.381558pt;}
.x1e_c00430{left:336.386614pt;}
.x1f_c00430{left:339.069625pt;}
.x20_c00430{left:341.738474pt;}
.x21_c00430{left:344.757080pt;}
.x22_c00430{left:347.081977pt;}
.x23_c00430{left:350.026488pt;}
.x24_c00430{left:354.624063pt;}
.x25_c00430{left:357.115628pt;}
.x40_c00430{left:401.765180pt;}
.x1_c00430{left:413.420124pt;}
.x3f_c00430{left:601.310535pt;}
.x39_c00430{left:619.470933pt;}
.x38_c00430{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9fef5bd1b79464bb9f1d7466.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.171387;font-style:normal;font-weight:normal;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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.006348;font-style:normal;font-weight:normal;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_0e00d979f89ef87b941b1bc8.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.005371;font-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_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);}
.v0_c00431{vertical-align:0.000000px;}
.ls0_c00431{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00431{word-spacing:-18.680283px;}
.ws2_c00431{word-spacing:0.000000px;}
._2_c00431{width:1.892571px;}
._4_c00431{width:3.398030px;}
._9_c00431{width:4.456276px;}
._b_c00431{width:5.674346px;}
._c_c00431{width:6.880611px;}
._a_c00431{width:8.028409px;}
._3_c00431{width:9.491531px;}
._1_c00431{width:10.917463px;}
._6_c00431{width:12.039663px;}
._7_c00431{width:13.415432px;}
._0_c00431{width:14.635008px;}
._8_c00431{width:16.077887px;}
._f_c00431{width:19.790489px;}
._5_c00431{width:22.199043px;}
._d_c00431{width:24.933213px;}
._10_c00431{width:26.188609px;}
._e_c00431{width:30.202264px;}
.fc1_c00431{color:rgb(194,158,103);}
.fc0_c00431{color:rgb(0,0,0);}
.fs3_c00431{font-size:71.912067px;}
.fs0_c00431{font-size:71.957041px;}
.fs1_c00431{font-size:74.340621px;}
.fs2_c00431{font-size:74.379845px;}
.y0_c00431{bottom:0.000000px;}
.y1_c00431{bottom:0.000008px;}
.y27_c00431{bottom:30.156225px;}
.ye_c00431{bottom:81.121107px;}
.yd_c00431{bottom:111.477984px;}
.yc_c00431{bottom:141.834860px;}
.yb_c00431{bottom:172.191737px;}
.ya_c00431{bottom:202.548614px;}
.y9_c00431{bottom:232.905491px;}
.y25_c00431{bottom:257.781899px;}
.y24_c00431{bottom:312.138851px;}
.y23_c00431{bottom:342.495728px;}
.y22_c00431{bottom:372.852605px;}
.y21_c00431{bottom:405.463396px;}
.y20_c00431{bottom:454.065124px;}
.y1f_c00431{bottom:484.422001px;}
.y1e_c00431{bottom:514.778877px;}
.y1d_c00431{bottom:545.135754px;}
.y1c_c00431{bottom:575.492631px;}
.y1b_c00431{bottom:605.849508px;}
.y1a_c00431{bottom:636.206384px;}
.y19_c00431{bottom:666.563261px;}
.y18_c00431{bottom:696.920138px;}
.y17_c00431{bottom:727.277015px;}
.y16_c00431{bottom:757.633892px;}
.y15_c00431{bottom:787.990768px;}
.y14_c00431{bottom:818.347645px;}
.y13_c00431{bottom:848.704522px;}
.y12_c00431{bottom:879.061399px;}
.y11_c00431{bottom:909.418275px;}
.y10_c00431{bottom:939.775152px;}
.yf_c00431{bottom:970.132029px;}
.y8_c00431{bottom:1000.878089px;}
.y7_c00431{bottom:1048.500427px;}
.y6_c00431{bottom:1078.857304px;}
.y5_c00431{bottom:1109.214181px;}
.y4_c00431{bottom:1139.571057px;}
.y3_c00431{bottom:1169.927934px;}
.y2_c00431{bottom:1200.284811px;}
.y26_c00431{bottom:1231.220131px;}
.h4_c00431{height:56.953337px;}
.h5_c00431{height:56.983387px;}
.h6_c00431{height:66.961090px;}
.h3_c00431{height:67.002968px;}
.h2_c00431{height:1304.999946px;}
.h0_c00431{height:1304.999953px;}
.h1_c00431{height:1305.000000px;}
.w2_c00431{width:934.874961px;}
.w0_c00431{width:934.875000px;}
.w1_c00431{width:935.250000px;}
.x0_c00431{left:0.000000px;}
.x1_c00431{left:87.850202px;}
.x2_c00431{left:451.985828px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws0_c00431{word-spacing:-16.615081pt;}
.ws1_c00431{word-spacing:-16.604696pt;}
.ws2_c00431{word-spacing:0.000000pt;}
._2_c00431{width:1.682285pt;}
._4_c00431{width:3.020471pt;}
._9_c00431{width:3.961134pt;}
._b_c00431{width:5.043864pt;}
._c_c00431{width:6.116098pt;}
._a_c00431{width:7.136363pt;}
._3_c00431{width:8.436917pt;}
._1_c00431{width:9.704412pt;}
._6_c00431{width:10.701922pt;}
._7_c00431{width:11.924829pt;}
._0_c00431{width:13.008896pt;}
._8_c00431{width:14.291455pt;}
._f_c00431{width:17.591545pt;}
._5_c00431{width:19.732483pt;}
._d_c00431{width:22.162856pt;}
._10_c00431{width:23.278764pt;}
._e_c00431{width:26.846457pt;}
.fs3_c00431{font-size:63.921837pt;}
.fs0_c00431{font-size:63.961814pt;}
.fs1_c00431{font-size:66.080552pt;}
.fs2_c00431{font-size:66.115417pt;}
.y0_c00431{bottom:0.000000pt;}
.y1_c00431{bottom:0.000007pt;}
.y27_c00431{bottom:26.805533pt;}
.ye_c00431{bottom:72.107651pt;}
.yd_c00431{bottom:99.091541pt;}
.yc_c00431{bottom:126.075432pt;}
.yb_c00431{bottom:153.059322pt;}
.ya_c00431{bottom:180.043212pt;}
.y9_c00431{bottom:207.027103pt;}
.y25_c00431{bottom:229.139465pt;}
.y24_c00431{bottom:277.456757pt;}
.y23_c00431{bottom:304.440647pt;}
.y22_c00431{bottom:331.424538pt;}
.y21_c00431{bottom:360.411908pt;}
.y20_c00431{bottom:403.613443pt;}
.y1f_c00431{bottom:430.597334pt;}
.y1e_c00431{bottom:457.581224pt;}
.y1d_c00431{bottom:484.565115pt;}
.y1c_c00431{bottom:511.549005pt;}
.y1b_c00431{bottom:538.532896pt;}
.y1a_c00431{bottom:565.516786pt;}
.y19_c00431{bottom:592.500677pt;}
.y18_c00431{bottom:619.484567pt;}
.y17_c00431{bottom:646.468458pt;}
.y16_c00431{bottom:673.452348pt;}
.y15_c00431{bottom:700.436238pt;}
.y14_c00431{bottom:727.420129pt;}
.y13_c00431{bottom:754.404019pt;}
.y12_c00431{bottom:781.387910pt;}
.y11_c00431{bottom:808.371800pt;}
.y10_c00431{bottom:835.355691pt;}
.yf_c00431{bottom:862.339581pt;}
.y8_c00431{bottom:889.669412pt;}
.y7_c00431{bottom:932.000380pt;}
.y6_c00431{bottom:958.984270pt;}
.y5_c00431{bottom:985.968161pt;}
.y4_c00431{bottom:1012.952051pt;}
.y3_c00431{bottom:1039.935941pt;}
.y2_c00431{bottom:1066.919832pt;}
.y26_c00431{bottom:1094.417895pt;}
.h4_c00431{height:50.625189pt;}
.h5_c00431{height:50.651899pt;}
.h6_c00431{height:59.520969pt;}
.h3_c00431{height:59.558193pt;}
.h2_c00431{height:1159.999952pt;}
.h0_c00431{height:1159.999959pt;}
.h1_c00431{height:1160.000000pt;}
.w2_c00431{width:830.999965pt;}
.w0_c00431{width:831.000000pt;}
.w1_c00431{width:831.333333pt;}
.x0_c00431{left:0.000000pt;}
.x1_c00431{left:78.089069pt;}
.x2_c00431{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97751ca4cef21c98e25b1b6a.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.006348;font-style:normal;font-weight:normal;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_e872b414b57edc3f306d6dca.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:0.954102;font-style:normal;font-weight:normal;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_9d76937c8a10293fda300810.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.171387;font-style:normal;font-weight:normal;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_a997fb6fa1ff2f6b248c8de9.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.000000;font-style:normal;font-weight: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_bbb03cdcae6b75bc784047db.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:1.000000;font-style:normal;font-weight: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_c00432;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff6_c00432{font-family:ff6_c00432;line-height:0.769531;font-style:normal;font-weight: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_c00432;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff7_c00432{font-family:ff7_c00432;line-height:0.743000;font-style:normal;font-weight: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_c00432;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00432{font-family:ff8_c00432;line-height:1.006348;font-style:normal;font-weight: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_c00432;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00432{font-family:ff9_c00432;line-height:0.734863;font-style:normal;font-weight: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_c00432;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ffa_c00432{font-family:ffa_c00432;line-height:0.894000;font-style:normal;font-weight: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_c00432;src:url('chunks/assets/font_2d358f218610cf5c16549b37.woff2')format("woff");}.ffb_c00432{font-family:ffb_c00432;line-height:0.895000;font-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_c00432{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00432{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00432{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00432{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00432{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00432{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00432{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00432{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00432{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00432{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00432{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00432{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00432{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00432{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00432{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00432{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00432{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00432{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00432{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00432{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00432{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00432{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00432{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00432{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00432{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00432{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00432{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00432{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00432{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00432{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00432{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00432{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00432{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00432{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00432{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00432{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00432{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00432{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00432{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00432{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00432{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00432{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00432{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00432{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00432{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00432{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00432{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00432{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00432{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00432{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00432{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00432{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00432{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00432{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00432{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00432{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00432{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00432{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00432{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00432{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00432{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00432{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00432{vertical-align:0.000000px;}
.v1_c00432{vertical-align:26.810849px;}
.ls0_c00432{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00432{word-spacing:-18.680283px;}
.ws3_c00432{word-spacing:0.000000px;}
.ws1_c00432{word-spacing:281.470806px;}
.ws0_c00432{word-spacing:1114.343689px;}
._0_c00432{width:4.718146px;}
._2_c00432{width:6.851380px;}
._1_c00432{width:9.951381px;}
._3_c00432{width:15.913535px;}
.fc3_c00432{color:rgb(9,71,81);}
.fc2_c00432{color:rgb(194,158,103);}
.fc1_c00432{color:rgb(255,255,255);}
.fc0_c00432{color:rgb(0,0,0);}
.fsc_c00432{font-size:41.974772px;}
.fs1_c00432{font-size:41.975069px;}
.fs6_c00432{font-size:47.339969px;}
.fs9_c00432{font-size:47.339970px;}
.fs5_c00432{font-size:47.339972px;}
.fs8_c00432{font-size:47.339973px;}
.fs7_c00432{font-size:47.339974px;}
.fsa_c00432{font-size:47.339975px;}
.fse_c00432{font-size:51.630774px;}
.fs10_c00432{font-size:56.388174px;}
.fs4_c00432{font-size:59.949210px;}
.fsf_c00432{font-size:71.912067px;}
.fs0_c00432{font-size:71.957041px;}
.fsd_c00432{font-size:74.379845px;}
.fsb_c00432{font-size:76.965540px;}
.fs3_c00432{font-size:89.946302px;}
.fs2_c00432{font-size:95.927731px;}
.y0_c00432{bottom:0.000000px;}
.y1_c00432{bottom:0.000008px;}
.y51_c00432{bottom:30.156225px;}
.y6_c00432{bottom:172.046829px;}
.y5_c00432{bottom:202.403706px;}
.y4_c00432{bottom:232.760583px;}
.y3_c00432{bottom:263.117460px;}
.y2_c00432{bottom:293.474336px;}
.y4e_c00432{bottom:330.031259px;}
.y4f_c00432{bottom:402.064151px;}
.y1a_c00432{bottom:493.812629px;}
.y42_c00432{bottom:493.827623px;}
.y19_c00432{bottom:494.337609px;}
.y43_c00432{bottom:494.357158px;}
.y2c_c00432{bottom:494.700737px;}
.y41_c00432{bottom:495.071586px;}
.y18_c00432{bottom:495.403002px;}
.y2d_c00432{bottom:495.533530px;}
.y2b_c00432{bottom:495.553663px;}
.y40_c00432{bottom:496.322201px;}
.y17_c00432{bottom:496.475623px;}
.y2a_c00432{bottom:496.587915px;}
.y44_c00432{bottom:496.772260px;}
.y1b_c00432{bottom:496.835884px;}
.y2e_c00432{bottom:497.713596px;}
.y3f_c00432{bottom:497.966053px;}
.y16_c00432{bottom:498.126234px;}
.y29_c00432{bottom:498.789265px;}
.y2f_c00432{bottom:499.103521px;}
.y3e_c00432{bottom:499.653306px;}
.y15_c00432{bottom:499.818769px;}
.y30_c00432{bottom:500.800864px;}
.y1c_c00432{bottom:501.110605px;}
.y3d_c00432{bottom:501.517382px;}
.y14_c00432{bottom:501.687706px;}
.y45_c00432{bottom:501.869915px;}
.y28_c00432{bottom:502.578702px;}
.y31_c00432{bottom:503.241722px;}
.y1d_c00432{bottom:503.627848px;}
.y46_c00432{bottom:505.496019px;}
.y32_c00432{bottom:505.499367px;}
.y3c_c00432{bottom:506.168989px;}
.y13_c00432{bottom:506.348634px;}
.y27_c00432{bottom:508.044213px;}
.y33_c00432{bottom:508.766327px;}
.y1e_c00432{bottom:509.576794px;}
.y47_c00432{bottom:511.126534px;}
.y26_c00432{bottom:512.508085px;}
.y3b_c00432{bottom:512.566592px;}
.y12_c00432{bottom:512.754669px;}
.y1f_c00432{bottom:514.322677px;}
.y34_c00432{bottom:517.158603px;}
.y48_c00432{bottom:517.780195px;}
.y25_c00432{bottom:518.929057px;}
.y3a_c00432{bottom:519.869222px;}
.y11_c00432{bottom:519.959421px;}
.y10_c00432{bottom:523.416158px;}
.y24_c00432{bottom:523.496236px;}
.y35_c00432{bottom:525.202812px;}
.y20_c00432{bottom:526.099549px;}
.y39_c00432{bottom:527.026630px;}
.yf_c00432{bottom:529.422883px;}
.y49_c00432{bottom:529.736175px;}
.y23_c00432{bottom:531.263725px;}
.y38_c00432{bottom:531.792993px;}
.y4b_c00432{bottom:533.728456px;}
.y4d_c00432{bottom:534.421816px;}
.y22_c00432{bottom:535.155114px;}
.ye_c00432{bottom:536.678099px;}
.y37_c00432{bottom:537.961701px;}
.y21_c00432{bottom:538.332892px;}
.y4a_c00432{bottom:538.696314px;}
.y36_c00432{bottom:545.020884px;}
.yd_c00432{bottom:546.207017px;}
.y4c_c00432{bottom:577.871130px;}
.ya_c00432{bottom:597.559761px;}
.y50_c00432{bottom:638.470702px;}
.y52_c00432{bottom:1025.167633px;}
.y8_c00432{bottom:1127.585799px;}
.yc_c00432{bottom:1129.718199px;}
.yb_c00432{bottom:1147.707459px;}
.y9_c00432{bottom:1150.017273px;}
.y7_c00432{bottom:1170.658440px;}
.h10_c00432{height:32.157430px;}
.hd_c00432{height:35.967282px;}
.hc_c00432{height:35.967283px;}
.he_c00432{height:35.967285px;}
.ha_c00432{height:36.267779px;}
.h9_c00432{height:36.267781px;}
.hb_c00432{height:36.267783px;}
.h13_c00432{height:37.437353px;}
.h4_c00432{height:39.085184px;}
.h15_c00432{height:40.317545px;}
.h14_c00432{height:55.092790px;}
.h3_c00432{height:55.127245px;}
.h8_c00432{height:55.821847px;}
.h11_c00432{height:56.261810px;}
.h12_c00432{height:56.983387px;}
.hf_c00432{height:58.968279px;}
.h5_c00432{height:67.002968px;}
.h7_c00432{height:68.338108px;}
.h6_c00432{height:89.323331px;}
.h2_c00432{height:1304.999946px;}
.h0_c00432{height:1304.999953px;}
.h1_c00432{height:1305.000000px;}
.w2_c00432{width:934.874961px;}
.w0_c00432{width:934.875000px;}
.w1_c00432{width:935.250000px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:89.434062px;}
.x5_c00432{left:108.062661px;}
.x2_c00432{left:109.658623px;}
.x2b_c00432{left:134.894322px;}
.x2a_c00432{left:136.566734px;}
.x2c_c00432{left:139.937719px;}
.x2d_c00432{left:144.785273px;}
.x2e_c00432{left:150.147890px;}
.x2f_c00432{left:152.899057px;}
.x30_c00432{left:155.907145px;}
.x31_c00432{left:159.752336px;}
.x3b_c00432{left:161.347648px;}
.x32_c00432{left:163.203941px;}
.x33_c00432{left:171.483965px;}
.x34_c00432{left:179.748684px;}
.x35_c00432{left:188.175145px;}
.x36_c00432{left:196.556636px;}
.x37_c00432{left:200.721504px;}
.x38_c00432{left:205.276922px;}
.x39_c00432{left:209.084069px;}
.x3a_c00432{left:211.669316px;}
.x7_c00432{left:230.260919px;}
.x6_c00432{left:232.395871px;}
.x8_c00432{left:235.482735px;}
.x9_c00432{left:240.319117px;}
.xa_c00432{left:245.673577px;}
.xb_c00432{left:248.421493px;}
.xc_c00432{left:251.426626px;}
.xd_c00432{left:255.268917px;}
.x3d_c00432{left:256.468943px;}
.xe_c00432{left:258.553698px;}
.xf_c00432{left:262.988294px;}
.x10_c00432{left:271.601212px;}
.x11_c00432{left:283.434780px;}
.x12_c00432{left:290.867654px;}
.x13_c00432{left:294.260334px;}
.x3_c00432{left:295.438786px;}
.x14_c00432{left:299.596701px;}
.x15_c00432{left:302.984150px;}
.x16_c00432{left:306.993562px;}
.x17_c00432{left:325.378518px;}
.x18_c00432{left:326.595106px;}
.x19_c00432{left:328.015253px;}
.x1a_c00432{left:331.410444px;}
.x1b_c00432{left:334.633053px;}
.x1c_c00432{left:340.511825px;}
.x1d_c00432{left:346.695139px;}
.x1e_c00432{left:352.384720px;}
.x1f_c00432{left:355.792694px;}
.x20_c00432{left:363.695116px;}
.x21_c00432{left:371.679253px;}
.x22_c00432{left:378.434940px;}
.x23_c00432{left:381.453328px;}
.x24_c00432{left:384.455783px;}
.x25_c00432{left:387.851715px;}
.x26_c00432{left:390.467224px;}
.x27_c00432{left:393.779799px;}
.x28_c00432{left:398.952070px;}
.x29_c00432{left:401.755082px;}
.x40_c00432{left:451.985828px;}
.x4_c00432{left:465.097640px;}
.x3f_c00432{left:676.474352px;}
.x3e_c00432{left:696.904800px;}
.x3c_c00432{left:733.103068px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.v1_c00432{vertical-align:23.831865pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ws2_c00432{word-spacing:-16.604696pt;}
.ws3_c00432{word-spacing:0.000000pt;}
.ws1_c00432{word-spacing:250.196272pt;}
.ws0_c00432{word-spacing:990.527723pt;}
._0_c00432{width:4.193907pt;}
._2_c00432{width:6.090115pt;}
._1_c00432{width:8.845672pt;}
._3_c00432{width:14.145365pt;}
.fsc_c00432{font-size:37.310908pt;}
.fs1_c00432{font-size:37.311173pt;}
.fs6_c00432{font-size:42.079973pt;}
.fs9_c00432{font-size:42.079974pt;}
.fs5_c00432{font-size:42.079975pt;}
.fs8_c00432{font-size:42.079976pt;}
.fs7_c00432{font-size:42.079977pt;}
.fsa_c00432{font-size:42.079978pt;}
.fse_c00432{font-size:45.894021pt;}
.fs10_c00432{font-size:50.122822pt;}
.fs4_c00432{font-size:53.288186pt;}
.fsf_c00432{font-size:63.921837pt;}
.fs0_c00432{font-size:63.961814pt;}
.fsd_c00432{font-size:66.115417pt;}
.fsb_c00432{font-size:68.413814pt;}
.fs3_c00432{font-size:79.952268pt;}
.fs2_c00432{font-size:85.269094pt;}
.y0_c00432{bottom:0.000000pt;}
.y1_c00432{bottom:0.000007pt;}
.y51_c00432{bottom:26.805533pt;}
.y6_c00432{bottom:152.930515pt;}
.y5_c00432{bottom:179.914405pt;}
.y4_c00432{bottom:206.898296pt;}
.y3_c00432{bottom:233.882186pt;}
.y2_c00432{bottom:260.866077pt;}
.y4e_c00432{bottom:293.361119pt;}
.y4f_c00432{bottom:357.390356pt;}
.y1a_c00432{bottom:438.944560pt;}
.y42_c00432{bottom:438.957887pt;}
.y19_c00432{bottom:439.411208pt;}
.y43_c00432{bottom:439.428585pt;}
.y2c_c00432{bottom:439.733989pt;}
.y41_c00432{bottom:440.063632pt;}
.y18_c00432{bottom:440.358224pt;}
.y2d_c00432{bottom:440.474249pt;}
.y2b_c00432{bottom:440.492144pt;}
.y40_c00432{bottom:441.175290pt;}
.y17_c00432{bottom:441.311665pt;}
.y2a_c00432{bottom:441.411480pt;}
.y44_c00432{bottom:441.575343pt;}
.y1b_c00432{bottom:441.631897pt;}
.y2e_c00432{bottom:442.412085pt;}
.y3f_c00432{bottom:442.636491pt;}
.y16_c00432{bottom:442.778875pt;}
.y29_c00432{bottom:443.368235pt;}
.y2f_c00432{bottom:443.647574pt;}
.y3e_c00432{bottom:444.136272pt;}
.y15_c00432{bottom:444.283350pt;}
.y30_c00432{bottom:445.156323pt;}
.y1c_c00432{bottom:445.431649pt;}
.y3d_c00432{bottom:445.793228pt;}
.y14_c00432{bottom:445.944627pt;}
.y45_c00432{bottom:446.106592pt;}
.y28_c00432{bottom:446.736624pt;}
.y31_c00432{bottom:447.325975pt;}
.y1d_c00432{bottom:447.669198pt;}
.y46_c00432{bottom:449.329795pt;}
.y32_c00432{bottom:449.332771pt;}
.y3c_c00432{bottom:449.927990pt;}
.y13_c00432{bottom:450.087675pt;}
.y27_c00432{bottom:451.594856pt;}
.y33_c00432{bottom:452.236735pt;}
.y1e_c00432{bottom:452.957150pt;}
.y47_c00432{bottom:454.334697pt;}
.y26_c00432{bottom:455.562742pt;}
.y3b_c00432{bottom:455.614749pt;}
.y12_c00432{bottom:455.781928pt;}
.y1f_c00432{bottom:457.175713pt;}
.y34_c00432{bottom:459.696536pt;}
.y48_c00432{bottom:460.249062pt;}
.y25_c00432{bottom:461.270273pt;}
.y3a_c00432{bottom:462.105976pt;}
.y11_c00432{bottom:462.186152pt;}
.y10_c00432{bottom:465.258807pt;}
.y24_c00432{bottom:465.329988pt;}
.y35_c00432{bottom:466.846944pt;}
.y20_c00432{bottom:467.644044pt;}
.y39_c00432{bottom:468.468115pt;}
.yf_c00432{bottom:470.598118pt;}
.y49_c00432{bottom:470.876600pt;}
.y23_c00432{bottom:472.234422pt;}
.y38_c00432{bottom:472.704883pt;}
.y4b_c00432{bottom:474.425294pt;}
.y4d_c00432{bottom:475.041614pt;}
.y22_c00432{bottom:475.693435pt;}
.ye_c00432{bottom:477.047199pt;}
.y37_c00432{bottom:478.188178pt;}
.y21_c00432{bottom:478.518126pt;}
.y4a_c00432{bottom:478.841168pt;}
.y36_c00432{bottom:484.463008pt;}
.yd_c00432{bottom:485.517349pt;}
.y4c_c00432{bottom:513.663227pt;}
.ya_c00432{bottom:531.164232pt;}
.y50_c00432{bottom:567.529513pt;}
.y52_c00432{bottom:911.260118pt;}
.y8_c00432{bottom:1002.298488pt;}
.yc_c00432{bottom:1004.193955pt;}
.yb_c00432{bottom:1020.184408pt;}
.y9_c00432{bottom:1022.237576pt;}
.y7_c00432{bottom:1040.585280pt;}
.h10_c00432{height:28.584382pt;}
.hd_c00432{height:31.970917pt;}
.hc_c00432{height:31.970918pt;}
.he_c00432{height:31.970920pt;}
.ha_c00432{height:32.238026pt;}
.h9_c00432{height:32.238028pt;}
.hb_c00432{height:32.238029pt;}
.h13_c00432{height:33.277647pt;}
.h4_c00432{height:34.742386pt;}
.h15_c00432{height:35.837817pt;}
.h14_c00432{height:48.971369pt;}
.h3_c00432{height:49.001996pt;}
.h8_c00432{height:49.619420pt;}
.h11_c00432{height:50.010498pt;}
.h12_c00432{height:50.651899pt;}
.hf_c00432{height:52.416248pt;}
.h5_c00432{height:59.558193pt;}
.h7_c00432{height:60.744985pt;}
.h6_c00432{height:79.398517pt;}
.h2_c00432{height:1159.999952pt;}
.h0_c00432{height:1159.999959pt;}
.h1_c00432{height:1160.000000pt;}
.w2_c00432{width:830.999965pt;}
.w0_c00432{width:831.000000pt;}
.w1_c00432{width:831.333333pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:79.496944pt;}
.x5_c00432{left:96.055698pt;}
.x2_c00432{left:97.474332pt;}
.x2b_c00432{left:119.906064pt;}
.x2a_c00432{left:121.392652pt;}
.x2c_c00432{left:124.389083pt;}
.x2d_c00432{left:128.698021pt;}
.x2e_c00432{left:133.464791pt;}
.x2f_c00432{left:135.910272pt;}
.x30_c00432{left:138.584129pt;}
.x31_c00432{left:142.002076pt;}
.x3b_c00432{left:143.420132pt;}
.x32_c00432{left:145.070170pt;}
.x33_c00432{left:152.430191pt;}
.x34_c00432{left:159.776608pt;}
.x35_c00432{left:167.266795pt;}
.x36_c00432{left:174.717010pt;}
.x37_c00432{left:178.419115pt;}
.x38_c00432{left:182.468375pt;}
.x39_c00432{left:185.852506pt;}
.x3a_c00432{left:188.150503pt;}
.x7_c00432{left:204.676373pt;}
.x6_c00432{left:206.574107pt;}
.x8_c00432{left:209.317987pt;}
.x9_c00432{left:213.616993pt;}
.xa_c00432{left:218.376513pt;}
.xb_c00432{left:220.819105pt;}
.xc_c00432{left:223.490334pt;}
.xd_c00432{left:226.905704pt;}
.x3d_c00432{left:227.972394pt;}
.xe_c00432{left:229.825509pt;}
.xf_c00432{left:233.767373pt;}
.x10_c00432{left:241.423300pt;}
.x11_c00432{left:251.942027pt;}
.x12_c00432{left:258.549026pt;}
.x13_c00432{left:261.564741pt;}
.x3_c00432{left:262.612255pt;}
.x14_c00432{left:266.308178pt;}
.x15_c00432{left:269.319244pt;}
.x16_c00432{left:272.883167pt;}
.x17_c00432{left:289.225349pt;}
.x18_c00432{left:290.306761pt;}
.x19_c00432{left:291.569114pt;}
.x1a_c00432{left:294.587062pt;}
.x1b_c00432{left:297.451603pt;}
.x1c_c00432{left:302.677178pt;}
.x1d_c00432{left:308.173457pt;}
.x1e_c00432{left:313.230862pt;}
.x1f_c00432{left:316.260173pt;}
.x20_c00432{left:323.284548pt;}
.x21_c00432{left:330.381558pt;}
.x22_c00432{left:336.386614pt;}
.x23_c00432{left:339.069625pt;}
.x24_c00432{left:341.738474pt;}
.x25_c00432{left:344.757080pt;}
.x26_c00432{left:347.081977pt;}
.x27_c00432{left:350.026488pt;}
.x28_c00432{left:354.624063pt;}
.x29_c00432{left:357.115628pt;}
.x40_c00432{left:401.765180pt;}
.x4_c00432{left:413.420124pt;}
.x3f_c00432{left:601.310535pt;}
.x3e_c00432{left:619.470933pt;}
.x3c_c00432{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_857bac774935085cbad39967.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.006348;font-style:normal;font-weight:normal;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_5f3f302eeabb86ac9f77e62a.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.006348;font-style:normal;font-weight:normal;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_67a1cc95c9758c7a5281b46f.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.005371;font-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_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;}
.ls1_c00433{letter-spacing:0.000000px;}
.ls0_c00433{letter-spacing:15.248709px;}
.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:-18.691966px;}
.ws1_c00433{word-spacing:-18.680283px;}
.ws2_c00433{word-spacing:0.000000px;}
._b_c00433{width:1.545951px;}
._a_c00433{width:3.122786px;}
._0_c00433{width:4.266396px;}
._4_c00433{width:6.270273px;}
._9_c00433{width:7.435253px;}
._7_c00433{width:8.689050px;}
._6_c00433{width:10.326134px;}
._3_c00433{width:12.183773px;}
._5_c00433{width:13.183898px;}
._1_c00433{width:14.929748px;}
._d_c00433{width:16.100183px;}
._2_c00433{width:17.637907px;}
._c_c00433{width:19.752406px;}
._8_c00433{width:32.847568px;}
.fc1_c00433{color:rgb(0,0,0);}
.fc0_c00433{color:rgb(194,158,103);}
.fs3_c00433{font-size:71.912067px;}
.fs1_c00433{font-size:71.957041px;}
.fs2_c00433{font-size:74.340621px;}
.fs0_c00433{font-size:74.379845px;}
.y0_c00433{bottom:0.000000px;}
.y1_c00433{bottom:0.000008px;}
.y25_c00433{bottom:30.156225px;}
.y24_c00433{bottom:130.958056px;}
.y23_c00433{bottom:161.314933px;}
.y22_c00433{bottom:191.671809px;}
.y21_c00433{bottom:222.028686px;}
.y20_c00433{bottom:252.385563px;}
.y1f_c00433{bottom:282.742440px;}
.y1e_c00433{bottom:313.099316px;}
.y1d_c00433{bottom:343.456193px;}
.y1c_c00433{bottom:373.813070px;}
.y1b_c00433{bottom:404.169947px;}
.y1a_c00433{bottom:434.526823px;}
.y19_c00433{bottom:464.883700px;}
.y18_c00433{bottom:495.240577px;}
.y17_c00433{bottom:525.597454px;}
.y16_c00433{bottom:555.954331px;}
.y15_c00433{bottom:586.311207px;}
.y14_c00433{bottom:616.668084px;}
.y13_c00433{bottom:647.024961px;}
.y12_c00433{bottom:677.381838px;}
.y11_c00433{bottom:707.738714px;}
.y10_c00433{bottom:738.095591px;}
.yf_c00433{bottom:768.452468px;}
.ye_c00433{bottom:798.809345px;}
.yd_c00433{bottom:829.166221px;}
.yc_c00433{bottom:859.523098px;}
.yb_c00433{bottom:889.879975px;}
.ya_c00433{bottom:920.236852px;}
.y9_c00433{bottom:950.645700px;}
.y8_c00433{bottom:1013.541927px;}
.y7_c00433{bottom:1043.898803px;}
.y6_c00433{bottom:1074.255680px;}
.y5_c00433{bottom:1104.612557px;}
.y4_c00433{bottom:1134.969434px;}
.y3_c00433{bottom:1165.326310px;}
.y2_c00433{bottom:1199.252094px;}
.h6_c00433{height:55.092790px;}
.h4_c00433{height:55.127245px;}
.h5_c00433{height:56.953337px;}
.h3_c00433{height:56.983387px;}
.h2_c00433{height:1304.999946px;}
.h0_c00433{height:1304.999953px;}
.h1_c00433{height:1305.000000px;}
.w2_c00433{width:934.874961px;}
.w0_c00433{width:934.875000px;}
.w1_c00433{width:935.250000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:87.850202px;}
.x2_c00433{left:451.985828px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls1_c00433{letter-spacing:0.000000pt;}
.ls0_c00433{letter-spacing:13.554408pt;}
.ws0_c00433{word-spacing:-16.615081pt;}
.ws1_c00433{word-spacing:-16.604696pt;}
.ws2_c00433{word-spacing:0.000000pt;}
._b_c00433{width:1.374179pt;}
._a_c00433{width:2.775810pt;}
._0_c00433{width:3.792352pt;}
._4_c00433{width:5.573576pt;}
._9_c00433{width:6.609113pt;}
._7_c00433{width:7.723600pt;}
._6_c00433{width:9.178785pt;}
._3_c00433{width:10.830020pt;}
._5_c00433{width:11.719020pt;}
._1_c00433{width:13.270887pt;}
._d_c00433{width:14.311274pt;}
._2_c00433{width:15.678140pt;}
._c_c00433{width:17.557694pt;}
._8_c00433{width:29.197838pt;}
.fs3_c00433{font-size:63.921837pt;}
.fs1_c00433{font-size:63.961814pt;}
.fs2_c00433{font-size:66.080552pt;}
.fs0_c00433{font-size:66.115417pt;}
.y0_c00433{bottom:0.000000pt;}
.y1_c00433{bottom:0.000007pt;}
.y25_c00433{bottom:26.805533pt;}
.y24_c00433{bottom:116.407161pt;}
.y23_c00433{bottom:143.391051pt;}
.y22_c00433{bottom:170.374942pt;}
.y21_c00433{bottom:197.358832pt;}
.y20_c00433{bottom:224.342723pt;}
.y1f_c00433{bottom:251.326613pt;}
.y1e_c00433{bottom:278.310503pt;}
.y1d_c00433{bottom:305.294394pt;}
.y1c_c00433{bottom:332.278284pt;}
.y1b_c00433{bottom:359.262175pt;}
.y1a_c00433{bottom:386.246065pt;}
.y19_c00433{bottom:413.229956pt;}
.y18_c00433{bottom:440.213846pt;}
.y17_c00433{bottom:467.197737pt;}
.y16_c00433{bottom:494.181627pt;}
.y15_c00433{bottom:521.165518pt;}
.y14_c00433{bottom:548.149408pt;}
.y13_c00433{bottom:575.133299pt;}
.y12_c00433{bottom:602.117189pt;}
.y11_c00433{bottom:629.101079pt;}
.y10_c00433{bottom:656.084970pt;}
.yf_c00433{bottom:683.068860pt;}
.ye_c00433{bottom:710.052751pt;}
.yd_c00433{bottom:737.036641pt;}
.yc_c00433{bottom:764.020532pt;}
.yb_c00433{bottom:791.004422pt;}
.ya_c00433{bottom:817.988313pt;}
.y9_c00433{bottom:845.018400pt;}
.y8_c00433{bottom:900.926157pt;}
.y7_c00433{bottom:927.910047pt;}
.y6_c00433{bottom:954.893938pt;}
.y5_c00433{bottom:981.877828pt;}
.y4_c00433{bottom:1008.861719pt;}
.y3_c00433{bottom:1035.845609pt;}
.y2_c00433{bottom:1066.001862pt;}
.h6_c00433{height:48.971369pt;}
.h4_c00433{height:49.001996pt;}
.h5_c00433{height:50.625189pt;}
.h3_c00433{height:50.651899pt;}
.h2_c00433{height:1159.999952pt;}
.h0_c00433{height:1159.999959pt;}
.h1_c00433{height:1160.000000pt;}
.w2_c00433{width:830.999965pt;}
.w0_c00433{width:831.000000pt;}
.w1_c00433{width:831.333333pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:78.089069pt;}
.x2_c00433{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_468180ef79c83b588d2627c2.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.006348;font-style:normal;font-weight:normal;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_495feccb173f67b1eb2a4e9f.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.005371;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.006348;font-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_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);}
.v0_c00434{vertical-align:0.000000px;}
.ls1_c00434{letter-spacing:0.000000px;}
.ls0_c00434{letter-spacing:25.719020px;}
.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:-18.691966px;}
.ws1_c00434{word-spacing:-18.680283px;}
.ws2_c00434{word-spacing:0.000000px;}
._1_c00434{width:1.037793px;}
._0_c00434{width:2.529739px;}
._c_c00434{width:3.752561px;}
._8_c00434{width:4.862667px;}
._9_c00434{width:5.873965px;}
._6_c00434{width:7.155862px;}
._5_c00434{width:8.732692px;}
._4_c00434{width:12.039663px;}
._2_c00434{width:14.651411px;}
._b_c00434{width:19.710880px;}
._3_c00434{width:22.199043px;}
._7_c00434{width:24.236890px;}
._d_c00434{width:25.704951px;}
._a_c00434{width:31.426514px;}
.fc1_c00434{color:rgb(194,158,103);}
.fc0_c00434{color:rgb(0,0,0);}
.fs2_c00434{font-size:71.912067px;}
.fs0_c00434{font-size:71.957041px;}
.fs1_c00434{font-size:74.340621px;}
.y0_c00434{bottom:0.000000px;}
.y1_c00434{bottom:0.000008px;}
.y19_c00434{bottom:30.156225px;}
.y7_c00434{bottom:439.395468px;}
.y6_c00434{bottom:469.752345px;}
.y5_c00434{bottom:500.109222px;}
.y4_c00434{bottom:530.466098px;}
.y3_c00434{bottom:560.822975px;}
.y2_c00434{bottom:591.179852px;}
.y18_c00434{bottom:630.000931px;}
.y17_c00434{bottom:699.602759px;}
.y16_c00434{bottom:729.959636px;}
.y15_c00434{bottom:760.316512px;}
.y14_c00434{bottom:790.673389px;}
.y13_c00434{bottom:821.030266px;}
.y12_c00434{bottom:851.387143px;}
.y11_c00434{bottom:892.059745px;}
.y10_c00434{bottom:957.429797px;}
.yf_c00434{bottom:987.786674px;}
.ye_c00434{bottom:1018.143550px;}
.yd_c00434{bottom:1048.500427px;}
.yc_c00434{bottom:1078.857304px;}
.yb_c00434{bottom:1109.214181px;}
.ya_c00434{bottom:1139.571057px;}
.y9_c00434{bottom:1169.927934px;}
.y8_c00434{bottom:1200.284811px;}
.h5_c00434{height:55.092790px;}
.h3_c00434{height:55.127245px;}
.h4_c00434{height:56.953337px;}
.h2_c00434{height:1304.999946px;}
.h0_c00434{height:1304.999953px;}
.h1_c00434{height:1305.000000px;}
.w2_c00434{width:934.874961px;}
.w0_c00434{width:934.875000px;}
.w1_c00434{width:935.250000px;}
.x0_c00434{left:0.000000px;}
.x1_c00434{left:87.850202px;}
.x2_c00434{left:451.985828px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls1_c00434{letter-spacing:0.000000pt;}
.ls0_c00434{letter-spacing:22.861351pt;}
.ws0_c00434{word-spacing:-16.615081pt;}
.ws1_c00434{word-spacing:-16.604696pt;}
.ws2_c00434{word-spacing:0.000000pt;}
._1_c00434{width:0.922483pt;}
._0_c00434{width:2.248657pt;}
._c_c00434{width:3.335610pt;}
._8_c00434{width:4.322371pt;}
._9_c00434{width:5.221302pt;}
._6_c00434{width:6.360767pt;}
._5_c00434{width:7.762393pt;}
._4_c00434{width:10.701922pt;}
._2_c00434{width:13.023476pt;}
._b_c00434{width:17.520782pt;}
._3_c00434{width:19.732483pt;}
._7_c00434{width:21.543902pt;}
._d_c00434{width:22.848846pt;}
._a_c00434{width:27.934679pt;}
.fs2_c00434{font-size:63.921837pt;}
.fs0_c00434{font-size:63.961814pt;}
.fs1_c00434{font-size:66.080552pt;}
.y0_c00434{bottom:0.000000pt;}
.y1_c00434{bottom:0.000007pt;}
.y19_c00434{bottom:26.805533pt;}
.y7_c00434{bottom:390.573749pt;}
.y6_c00434{bottom:417.557640pt;}
.y5_c00434{bottom:444.541530pt;}
.y4_c00434{bottom:471.525421pt;}
.y3_c00434{bottom:498.509311pt;}
.y2_c00434{bottom:525.493202pt;}
.y18_c00434{bottom:560.000828pt;}
.y17_c00434{bottom:621.869119pt;}
.y16_c00434{bottom:648.853009pt;}
.y15_c00434{bottom:675.836900pt;}
.y14_c00434{bottom:702.820790pt;}
.y13_c00434{bottom:729.804681pt;}
.y12_c00434{bottom:756.788571pt;}
.y11_c00434{bottom:792.941996pt;}
.y10_c00434{bottom:851.048708pt;}
.yf_c00434{bottom:878.032599pt;}
.ye_c00434{bottom:905.016489pt;}
.yd_c00434{bottom:932.000380pt;}
.yc_c00434{bottom:958.984270pt;}
.yb_c00434{bottom:985.968161pt;}
.ya_c00434{bottom:1012.952051pt;}
.y9_c00434{bottom:1039.935941pt;}
.y8_c00434{bottom:1066.919832pt;}
.h5_c00434{height:48.971369pt;}
.h3_c00434{height:49.001996pt;}
.h4_c00434{height:50.625189pt;}
.h2_c00434{height:1159.999952pt;}
.h0_c00434{height:1159.999959pt;}
.h1_c00434{height:1160.000000pt;}
.w2_c00434{width:830.999965pt;}
.w0_c00434{width:831.000000pt;}
.w1_c00434{width:831.333333pt;}
.x0_c00434{left:0.000000pt;}
.x1_c00434{left:78.089069pt;}
.x2_c00434{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1550f079e422002ba671e7d4.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.171387;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.006348;font-style:normal;font-weight:normal;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_6b5c8daac3b11648fbf91978.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:1.171387;font-style:normal;font-weight:normal;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_4dfac744fd7d6be363b2028d.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.005371;font-style:normal;font-weight: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_bbb03cdcae6b75bc784047db.woff2')format("woff");}.ff5_c00435{font-family:ff5_c00435;line-height:1.000000;font-style:normal;font-weight: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_c00435;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff6_c00435{font-family:ff6_c00435;line-height:0.769531;font-style:normal;font-weight: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_c00435;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff7_c00435{font-family:ff7_c00435;line-height:0.743000;font-style:normal;font-weight: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_c00435;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00435{font-family:ff8_c00435;line-height:0.734863;font-style:normal;font-weight: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_c00435;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ff9_c00435{font-family:ff9_c00435;line-height:0.894000;font-style:normal;font-weight: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_c00435;src:url('chunks/assets/font_2d358f218610cf5c16549b37.woff2')format("woff");}.ffa_c00435{font-family:ffa_c00435;line-height:0.895000;font-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_c00435{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00435{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00435{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00435{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00435{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00435{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00435{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00435{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00435{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00435{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00435{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00435{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00435{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00435{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00435{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00435{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00435{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00435{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00435{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00435{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00435{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00435{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00435{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00435{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00435{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00435{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00435{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00435{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00435{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00435{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00435{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00435{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00435{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00435{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00435{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00435{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00435{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00435{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00435{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00435{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00435{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00435{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00435{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00435{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00435{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00435{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00435{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00435{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00435{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00435{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00435{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00435{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00435{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00435{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00435{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00435{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00435{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00435{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00435{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00435{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00435{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00435{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00435{vertical-align:0.000000px;}
.v1_c00435{vertical-align:26.810849px;}
.ls0_c00435{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00435{word-spacing:-18.680283px;}
.ws3_c00435{word-spacing:0.000000px;}
.ws1_c00435{word-spacing:281.470806px;}
.ws0_c00435{word-spacing:1114.343689px;}
._1_c00435{width:1.862167px;}
._0_c00435{width:4.085025px;}
._2_c00435{width:9.058998px;}
.fc3_c00435{color:rgb(9,71,81);}
.fc1_c00435{color:rgb(194,158,103);}
.fc2_c00435{color:rgb(255,255,255);}
.fc0_c00435{color:rgb(0,0,0);}
.fsd_c00435{font-size:41.974772px;}
.fs2_c00435{font-size:41.975069px;}
.fs7_c00435{font-size:47.339969px;}
.fsa_c00435{font-size:47.339970px;}
.fs6_c00435{font-size:47.339972px;}
.fs9_c00435{font-size:47.339973px;}
.fs8_c00435{font-size:47.339974px;}
.fsb_c00435{font-size:47.339975px;}
.fse_c00435{font-size:51.630774px;}
.fs10_c00435{font-size:56.388174px;}
.fs5_c00435{font-size:59.949210px;}
.fsf_c00435{font-size:71.912067px;}
.fs0_c00435{font-size:71.957041px;}
.fs1_c00435{font-size:74.379845px;}
.fsc_c00435{font-size:76.965540px;}
.fs4_c00435{font-size:89.946302px;}
.fs3_c00435{font-size:95.927731px;}
.y0_c00435{bottom:0.000000px;}
.y1_c00435{bottom:0.000008px;}
.y51_c00435{bottom:30.156225px;}
.y5_c00435{bottom:196.782054px;}
.y4_c00435{bottom:227.138931px;}
.y3_c00435{bottom:257.495808px;}
.y2_c00435{bottom:287.852685px;}
.y6_c00435{bottom:330.031259px;}
.y4f_c00435{bottom:402.064151px;}
.y1b_c00435{bottom:493.812629px;}
.y43_c00435{bottom:493.827623px;}
.y1a_c00435{bottom:494.337609px;}
.y44_c00435{bottom:494.357158px;}
.y2d_c00435{bottom:494.700737px;}
.y42_c00435{bottom:495.071586px;}
.y19_c00435{bottom:495.403002px;}
.y2e_c00435{bottom:495.533530px;}
.y2c_c00435{bottom:495.553663px;}
.y41_c00435{bottom:496.322201px;}
.y18_c00435{bottom:496.475623px;}
.y2b_c00435{bottom:496.587915px;}
.y45_c00435{bottom:496.772260px;}
.y1c_c00435{bottom:496.835884px;}
.y2f_c00435{bottom:497.713596px;}
.y40_c00435{bottom:497.966053px;}
.y17_c00435{bottom:498.126234px;}
.y2a_c00435{bottom:498.789265px;}
.y30_c00435{bottom:499.103521px;}
.y3f_c00435{bottom:499.653306px;}
.y16_c00435{bottom:499.818769px;}
.y31_c00435{bottom:500.800864px;}
.y1d_c00435{bottom:501.110605px;}
.y3e_c00435{bottom:501.517382px;}
.y15_c00435{bottom:501.687706px;}
.y46_c00435{bottom:501.869915px;}
.y29_c00435{bottom:502.578702px;}
.y32_c00435{bottom:503.241722px;}
.y1e_c00435{bottom:503.627848px;}
.y47_c00435{bottom:505.496019px;}
.y33_c00435{bottom:505.499367px;}
.y3d_c00435{bottom:506.168989px;}
.y14_c00435{bottom:506.348634px;}
.y28_c00435{bottom:508.044213px;}
.y34_c00435{bottom:508.766327px;}
.y1f_c00435{bottom:509.576794px;}
.y48_c00435{bottom:511.126534px;}
.y27_c00435{bottom:512.508085px;}
.y3c_c00435{bottom:512.566592px;}
.y13_c00435{bottom:512.754669px;}
.y20_c00435{bottom:514.322677px;}
.y35_c00435{bottom:517.158603px;}
.y49_c00435{bottom:517.780195px;}
.y26_c00435{bottom:518.929057px;}
.y3b_c00435{bottom:519.869222px;}
.y12_c00435{bottom:519.959421px;}
.y11_c00435{bottom:523.416158px;}
.y25_c00435{bottom:523.496236px;}
.y36_c00435{bottom:525.202812px;}
.y21_c00435{bottom:526.099549px;}
.y3a_c00435{bottom:527.026630px;}
.y10_c00435{bottom:529.422883px;}
.y4a_c00435{bottom:529.736175px;}
.y24_c00435{bottom:531.263725px;}
.y39_c00435{bottom:531.792993px;}
.y4c_c00435{bottom:533.728456px;}
.y4e_c00435{bottom:534.421816px;}
.y23_c00435{bottom:535.155114px;}
.yf_c00435{bottom:536.678099px;}
.y38_c00435{bottom:537.961701px;}
.y22_c00435{bottom:538.332892px;}
.y4b_c00435{bottom:538.696314px;}
.y37_c00435{bottom:545.020884px;}
.ye_c00435{bottom:546.207017px;}
.y4d_c00435{bottom:577.871130px;}
.yd_c00435{bottom:579.570490px;}
.ya_c00435{bottom:597.559761px;}
.y50_c00435{bottom:638.470702px;}
.y52_c00435{bottom:1025.167633px;}
.y8_c00435{bottom:1127.585799px;}
.yc_c00435{bottom:1129.718199px;}
.yb_c00435{bottom:1147.707459px;}
.y9_c00435{bottom:1150.017273px;}
.y7_c00435{bottom:1170.658440px;}
.hd_c00435{height:35.967282px;}
.hc_c00435{height:35.967283px;}
.he_c00435{height:35.967285px;}
.h12_c00435{height:37.437353px;}
.h10_c00435{height:39.084907px;}
.h5_c00435{height:39.085184px;}
.h14_c00435{height:40.317545px;}
.ha_c00435{height:44.080723px;}
.h9_c00435{height:44.080726px;}
.hb_c00435{height:44.080728px;}
.h8_c00435{height:55.821847px;}
.h11_c00435{height:56.261810px;}
.h4_c00435{height:56.983387px;}
.hf_c00435{height:65.895756px;}
.h13_c00435{height:66.961090px;}
.h3_c00435{height:67.002968px;}
.h7_c00435{height:68.338108px;}
.h6_c00435{height:89.323331px;}
.h2_c00435{height:1304.999946px;}
.h0_c00435{height:1304.999953px;}
.h1_c00435{height:1305.000000px;}
.w2_c00435{width:934.874961px;}
.w0_c00435{width:934.875000px;}
.w1_c00435{width:935.250000px;}
.x0_c00435{left:0.000000px;}
.x2_c00435{left:88.454210px;}
.x1_c00435{left:90.413924px;}
.x6_c00435{left:108.062661px;}
.x3_c00435{left:109.658623px;}
.x2d_c00435{left:134.894322px;}
.x2c_c00435{left:136.566734px;}
.x2e_c00435{left:139.937719px;}
.x2f_c00435{left:144.785273px;}
.x30_c00435{left:150.147890px;}
.x31_c00435{left:152.899057px;}
.x32_c00435{left:155.907145px;}
.x33_c00435{left:159.752336px;}
.x3d_c00435{left:161.347648px;}
.x34_c00435{left:163.203941px;}
.x35_c00435{left:171.483965px;}
.x36_c00435{left:179.748684px;}
.x37_c00435{left:188.175145px;}
.x38_c00435{left:196.556636px;}
.x39_c00435{left:200.721504px;}
.x3a_c00435{left:205.276922px;}
.x3b_c00435{left:209.084069px;}
.x3c_c00435{left:211.669316px;}
.x9_c00435{left:230.260919px;}
.x8_c00435{left:232.395871px;}
.xa_c00435{left:235.482735px;}
.xb_c00435{left:240.319117px;}
.xc_c00435{left:245.673577px;}
.xd_c00435{left:248.421493px;}
.xe_c00435{left:251.426626px;}
.xf_c00435{left:255.268917px;}
.x3f_c00435{left:256.468943px;}
.x10_c00435{left:258.553698px;}
.x11_c00435{left:262.988294px;}
.x12_c00435{left:271.601212px;}
.x13_c00435{left:283.434780px;}
.x14_c00435{left:290.867654px;}
.x15_c00435{left:294.260334px;}
.x4_c00435{left:295.438786px;}
.x16_c00435{left:299.596701px;}
.x17_c00435{left:302.984150px;}
.x18_c00435{left:306.993562px;}
.x19_c00435{left:325.378518px;}
.x1a_c00435{left:326.595106px;}
.x1b_c00435{left:328.015253px;}
.x1c_c00435{left:331.410444px;}
.x1d_c00435{left:334.633053px;}
.x1e_c00435{left:340.511825px;}
.x1f_c00435{left:346.695139px;}
.x20_c00435{left:352.384720px;}
.x21_c00435{left:355.792694px;}
.x22_c00435{left:363.695116px;}
.x23_c00435{left:371.679253px;}
.x24_c00435{left:378.434940px;}
.x25_c00435{left:381.453328px;}
.x26_c00435{left:384.455783px;}
.x27_c00435{left:387.851715px;}
.x28_c00435{left:390.467224px;}
.x29_c00435{left:393.779799px;}
.x2a_c00435{left:398.952070px;}
.x2b_c00435{left:401.755082px;}
.x42_c00435{left:451.985828px;}
.x5_c00435{left:465.097640px;}
.x7_c00435{left:483.086907px;}
.x41_c00435{left:676.474352px;}
.x40_c00435{left:696.904800px;}
.x3e_c00435{left:733.103068px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.v1_c00435{vertical-align:23.831865pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws2_c00435{word-spacing:-16.604696pt;}
.ws3_c00435{word-spacing:0.000000pt;}
.ws1_c00435{word-spacing:250.196272pt;}
.ws0_c00435{word-spacing:990.527723pt;}
._1_c00435{width:1.655260pt;}
._0_c00435{width:3.631133pt;}
._2_c00435{width:8.052442pt;}
.fsd_c00435{font-size:37.310908pt;}
.fs2_c00435{font-size:37.311173pt;}
.fs7_c00435{font-size:42.079973pt;}
.fsa_c00435{font-size:42.079974pt;}
.fs6_c00435{font-size:42.079975pt;}
.fs9_c00435{font-size:42.079976pt;}
.fs8_c00435{font-size:42.079977pt;}
.fsb_c00435{font-size:42.079978pt;}
.fse_c00435{font-size:45.894021pt;}
.fs10_c00435{font-size:50.122822pt;}
.fs5_c00435{font-size:53.288186pt;}
.fsf_c00435{font-size:63.921837pt;}
.fs0_c00435{font-size:63.961814pt;}
.fs1_c00435{font-size:66.115417pt;}
.fsc_c00435{font-size:68.413814pt;}
.fs4_c00435{font-size:79.952268pt;}
.fs3_c00435{font-size:85.269094pt;}
.y0_c00435{bottom:0.000000pt;}
.y1_c00435{bottom:0.000007pt;}
.y51_c00435{bottom:26.805533pt;}
.y5_c00435{bottom:174.917382pt;}
.y4_c00435{bottom:201.901272pt;}
.y3_c00435{bottom:228.885162pt;}
.y2_c00435{bottom:255.869053pt;}
.y6_c00435{bottom:293.361119pt;}
.y4f_c00435{bottom:357.390356pt;}
.y1b_c00435{bottom:438.944560pt;}
.y43_c00435{bottom:438.957887pt;}
.y1a_c00435{bottom:439.411208pt;}
.y44_c00435{bottom:439.428585pt;}
.y2d_c00435{bottom:439.733989pt;}
.y42_c00435{bottom:440.063632pt;}
.y19_c00435{bottom:440.358224pt;}
.y2e_c00435{bottom:440.474249pt;}
.y2c_c00435{bottom:440.492144pt;}
.y41_c00435{bottom:441.175290pt;}
.y18_c00435{bottom:441.311665pt;}
.y2b_c00435{bottom:441.411480pt;}
.y45_c00435{bottom:441.575343pt;}
.y1c_c00435{bottom:441.631897pt;}
.y2f_c00435{bottom:442.412085pt;}
.y40_c00435{bottom:442.636491pt;}
.y17_c00435{bottom:442.778875pt;}
.y2a_c00435{bottom:443.368235pt;}
.y30_c00435{bottom:443.647574pt;}
.y3f_c00435{bottom:444.136272pt;}
.y16_c00435{bottom:444.283350pt;}
.y31_c00435{bottom:445.156323pt;}
.y1d_c00435{bottom:445.431649pt;}
.y3e_c00435{bottom:445.793228pt;}
.y15_c00435{bottom:445.944627pt;}
.y46_c00435{bottom:446.106592pt;}
.y29_c00435{bottom:446.736624pt;}
.y32_c00435{bottom:447.325975pt;}
.y1e_c00435{bottom:447.669198pt;}
.y47_c00435{bottom:449.329795pt;}
.y33_c00435{bottom:449.332771pt;}
.y3d_c00435{bottom:449.927990pt;}
.y14_c00435{bottom:450.087675pt;}
.y28_c00435{bottom:451.594856pt;}
.y34_c00435{bottom:452.236735pt;}
.y1f_c00435{bottom:452.957150pt;}
.y48_c00435{bottom:454.334697pt;}
.y27_c00435{bottom:455.562742pt;}
.y3c_c00435{bottom:455.614749pt;}
.y13_c00435{bottom:455.781928pt;}
.y20_c00435{bottom:457.175713pt;}
.y35_c00435{bottom:459.696536pt;}
.y49_c00435{bottom:460.249062pt;}
.y26_c00435{bottom:461.270273pt;}
.y3b_c00435{bottom:462.105976pt;}
.y12_c00435{bottom:462.186152pt;}
.y11_c00435{bottom:465.258807pt;}
.y25_c00435{bottom:465.329988pt;}
.y36_c00435{bottom:466.846944pt;}
.y21_c00435{bottom:467.644044pt;}
.y3a_c00435{bottom:468.468115pt;}
.y10_c00435{bottom:470.598118pt;}
.y4a_c00435{bottom:470.876600pt;}
.y24_c00435{bottom:472.234422pt;}
.y39_c00435{bottom:472.704883pt;}
.y4c_c00435{bottom:474.425294pt;}
.y4e_c00435{bottom:475.041614pt;}
.y23_c00435{bottom:475.693435pt;}
.yf_c00435{bottom:477.047199pt;}
.y38_c00435{bottom:478.188178pt;}
.y22_c00435{bottom:478.518126pt;}
.y4b_c00435{bottom:478.841168pt;}
.y37_c00435{bottom:484.463008pt;}
.ye_c00435{bottom:485.517349pt;}
.y4d_c00435{bottom:513.663227pt;}
.yd_c00435{bottom:515.173769pt;}
.ya_c00435{bottom:531.164232pt;}
.y50_c00435{bottom:567.529513pt;}
.y52_c00435{bottom:911.260118pt;}
.y8_c00435{bottom:1002.298488pt;}
.yc_c00435{bottom:1004.193955pt;}
.yb_c00435{bottom:1020.184408pt;}
.y9_c00435{bottom:1022.237576pt;}
.y7_c00435{bottom:1040.585280pt;}
.hd_c00435{height:31.970917pt;}
.hc_c00435{height:31.970918pt;}
.he_c00435{height:31.970920pt;}
.h12_c00435{height:33.277647pt;}
.h10_c00435{height:34.742140pt;}
.h5_c00435{height:34.742386pt;}
.h14_c00435{height:35.837817pt;}
.ha_c00435{height:39.182865pt;}
.h9_c00435{height:39.182867pt;}
.hb_c00435{height:39.182869pt;}
.h8_c00435{height:49.619420pt;}
.h11_c00435{height:50.010498pt;}
.h4_c00435{height:50.651899pt;}
.hf_c00435{height:58.574005pt;}
.h13_c00435{height:59.520969pt;}
.h3_c00435{height:59.558193pt;}
.h7_c00435{height:60.744985pt;}
.h6_c00435{height:79.398517pt;}
.h2_c00435{height:1159.999952pt;}
.h0_c00435{height:1159.999959pt;}
.h1_c00435{height:1160.000000pt;}
.w2_c00435{width:830.999965pt;}
.w0_c00435{width:831.000000pt;}
.w1_c00435{width:831.333333pt;}
.x0_c00435{left:0.000000pt;}
.x2_c00435{left:78.625965pt;}
.x1_c00435{left:80.367933pt;}
.x6_c00435{left:96.055698pt;}
.x3_c00435{left:97.474332pt;}
.x2d_c00435{left:119.906064pt;}
.x2c_c00435{left:121.392652pt;}
.x2e_c00435{left:124.389083pt;}
.x2f_c00435{left:128.698021pt;}
.x30_c00435{left:133.464791pt;}
.x31_c00435{left:135.910272pt;}
.x32_c00435{left:138.584129pt;}
.x33_c00435{left:142.002076pt;}
.x3d_c00435{left:143.420132pt;}
.x34_c00435{left:145.070170pt;}
.x35_c00435{left:152.430191pt;}
.x36_c00435{left:159.776608pt;}
.x37_c00435{left:167.266795pt;}
.x38_c00435{left:174.717010pt;}
.x39_c00435{left:178.419115pt;}
.x3a_c00435{left:182.468375pt;}
.x3b_c00435{left:185.852506pt;}
.x3c_c00435{left:188.150503pt;}
.x9_c00435{left:204.676373pt;}
.x8_c00435{left:206.574107pt;}
.xa_c00435{left:209.317987pt;}
.xb_c00435{left:213.616993pt;}
.xc_c00435{left:218.376513pt;}
.xd_c00435{left:220.819105pt;}
.xe_c00435{left:223.490334pt;}
.xf_c00435{left:226.905704pt;}
.x3f_c00435{left:227.972394pt;}
.x10_c00435{left:229.825509pt;}
.x11_c00435{left:233.767373pt;}
.x12_c00435{left:241.423300pt;}
.x13_c00435{left:251.942027pt;}
.x14_c00435{left:258.549026pt;}
.x15_c00435{left:261.564741pt;}
.x4_c00435{left:262.612255pt;}
.x16_c00435{left:266.308178pt;}
.x17_c00435{left:269.319244pt;}
.x18_c00435{left:272.883167pt;}
.x19_c00435{left:289.225349pt;}
.x1a_c00435{left:290.306761pt;}
.x1b_c00435{left:291.569114pt;}
.x1c_c00435{left:294.587062pt;}
.x1d_c00435{left:297.451603pt;}
.x1e_c00435{left:302.677178pt;}
.x1f_c00435{left:308.173457pt;}
.x20_c00435{left:313.230862pt;}
.x21_c00435{left:316.260173pt;}
.x22_c00435{left:323.284548pt;}
.x23_c00435{left:330.381558pt;}
.x24_c00435{left:336.386614pt;}
.x25_c00435{left:339.069625pt;}
.x26_c00435{left:341.738474pt;}
.x27_c00435{left:344.757080pt;}
.x28_c00435{left:347.081977pt;}
.x29_c00435{left:350.026488pt;}
.x2a_c00435{left:354.624063pt;}
.x2b_c00435{left:357.115628pt;}
.x42_c00435{left:401.765180pt;}
.x5_c00435{left:413.420124pt;}
.x7_c00435{left:429.410584pt;}
.x41_c00435{left:601.310535pt;}
.x40_c00435{left:619.470933pt;}
.x3e_c00435{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.006348;font-style:normal;font-weight:normal;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_3afe8c7370bc449556c1b216.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.006348;font-style:normal;font-weight:normal;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_e42589fbcf7c9c25dcb7b265.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.005371;font-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_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);}
.v0_c00436{vertical-align:0.000000px;}
.ls0_c00436{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00436{word-spacing:-18.680283px;}
.ws2_c00436{word-spacing:0.000000px;}
._e_c00436{width:1.105738px;}
._1_c00436{width:2.259429px;}
._5_c00436{width:3.386984px;}
._2_c00436{width:4.938910px;}
._0_c00436{width:6.369501px;}
._a_c00436{width:7.550856px;}
._9_c00436{width:9.409872px;}
._3_c00436{width:10.968586px;}
._d_c00436{width:12.046393px;}
._b_c00436{width:13.124328px;}
._4_c00436{width:14.903737px;}
._7_c00436{width:17.432947px;}
._12_c00436{width:21.081022px;}
._11_c00436{width:22.205492px;}
._6_c00436{width:23.364957px;}
._f_c00436{width:25.246273px;}
._8_c00436{width:30.936606px;}
._10_c00436{width:36.745046px;}
._c_c00436{width:53.138534px;}
.fc1_c00436{color:rgb(0,0,0);}
.fc0_c00436{color:rgb(194,158,103);}
.fs3_c00436{font-size:71.912067px;}
.fs1_c00436{font-size:71.957041px;}
.fs2_c00436{font-size:74.340621px;}
.fs0_c00436{font-size:74.379845px;}
.y0_c00436{bottom:0.000000px;}
.y1_c00436{bottom:0.000008px;}
.y27_c00436{bottom:30.156225px;}
.y26_c00436{bottom:64.244760px;}
.y25_c00436{bottom:94.601636px;}
.y24_c00436{bottom:124.958513px;}
.y23_c00436{bottom:155.315390px;}
.y22_c00436{bottom:185.672267px;}
.y21_c00436{bottom:216.029143px;}
.y20_c00436{bottom:246.386020px;}
.y1f_c00436{bottom:276.742897px;}
.y1e_c00436{bottom:307.099774px;}
.y1d_c00436{bottom:337.456650px;}
.y1c_c00436{bottom:370.451346px;}
.y1b_c00436{bottom:422.623516px;}
.y1a_c00436{bottom:452.980393px;}
.y19_c00436{bottom:483.337270px;}
.y18_c00436{bottom:513.694147px;}
.y17_c00436{bottom:544.051023px;}
.y16_c00436{bottom:574.407900px;}
.y15_c00436{bottom:604.764777px;}
.y14_c00436{bottom:635.121654px;}
.y13_c00436{bottom:665.478530px;}
.y12_c00436{bottom:695.835407px;}
.y11_c00436{bottom:726.192284px;}
.y10_c00436{bottom:756.549161px;}
.yf_c00436{bottom:786.906037px;}
.ye_c00436{bottom:817.262914px;}
.yd_c00436{bottom:847.619791px;}
.yc_c00436{bottom:877.976668px;}
.yb_c00436{bottom:908.333545px;}
.ya_c00436{bottom:938.690421px;}
.y9_c00436{bottom:969.047298px;}
.y8_c00436{bottom:999.404175px;}
.y7_c00436{bottom:1032.127117px;}
.y6_c00436{bottom:1088.098615px;}
.y5_c00436{bottom:1118.455492px;}
.y4_c00436{bottom:1148.812369px;}
.y3_c00436{bottom:1179.169246px;}
.y2_c00436{bottom:1204.235045px;}
.h6_c00436{height:55.092790px;}
.h4_c00436{height:55.127245px;}
.h5_c00436{height:56.953337px;}
.h3_c00436{height:56.983387px;}
.h2_c00436{height:1304.999946px;}
.h0_c00436{height:1304.999953px;}
.h1_c00436{height:1305.000000px;}
.w2_c00436{width:934.874961px;}
.w0_c00436{width:934.875000px;}
.w1_c00436{width:935.250000px;}
.x0_c00436{left:0.000000px;}
.x1_c00436{left:87.850202px;}
.x2_c00436{left:451.985828px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls0_c00436{letter-spacing:0.000000pt;}
.ws0_c00436{word-spacing:-16.615081pt;}
.ws1_c00436{word-spacing:-16.604696pt;}
.ws2_c00436{word-spacing:0.000000pt;}
._e_c00436{width:0.982878pt;}
._1_c00436{width:2.008382pt;}
._5_c00436{width:3.010653pt;}
._2_c00436{width:4.390142pt;}
._0_c00436{width:5.661779pt;}
._a_c00436{width:6.711872pt;}
._9_c00436{width:8.364331pt;}
._3_c00436{width:9.749854pt;}
._d_c00436{width:10.707905pt;}
._b_c00436{width:11.666070pt;}
._4_c00436{width:13.247766pt;}
._7_c00436{width:15.495953pt;}
._12_c00436{width:18.738686pt;}
._11_c00436{width:19.738216pt;}
._6_c00436{width:20.768850pt;}
._f_c00436{width:22.441132pt;}
._8_c00436{width:27.499205pt;}
._10_c00436{width:32.662263pt;}
._c_c00436{width:47.234253pt;}
.fs3_c00436{font-size:63.921837pt;}
.fs1_c00436{font-size:63.961814pt;}
.fs2_c00436{font-size:66.080552pt;}
.fs0_c00436{font-size:66.115417pt;}
.y0_c00436{bottom:0.000000pt;}
.y1_c00436{bottom:0.000007pt;}
.y27_c00436{bottom:26.805533pt;}
.y26_c00436{bottom:57.106453pt;}
.y25_c00436{bottom:84.090343pt;}
.y24_c00436{bottom:111.074234pt;}
.y23_c00436{bottom:138.058124pt;}
.y22_c00436{bottom:165.042015pt;}
.y21_c00436{bottom:192.025905pt;}
.y20_c00436{bottom:219.009796pt;}
.y1f_c00436{bottom:245.993686pt;}
.y1e_c00436{bottom:272.977577pt;}
.y1d_c00436{bottom:299.961467pt;}
.y1c_c00436{bottom:329.290085pt;}
.y1b_c00436{bottom:375.665348pt;}
.y1a_c00436{bottom:402.649238pt;}
.y19_c00436{bottom:429.633129pt;}
.y18_c00436{bottom:456.617019pt;}
.y17_c00436{bottom:483.600910pt;}
.y16_c00436{bottom:510.584800pt;}
.y15_c00436{bottom:537.568691pt;}
.y14_c00436{bottom:564.552581pt;}
.y13_c00436{bottom:591.536471pt;}
.y12_c00436{bottom:618.520362pt;}
.y11_c00436{bottom:645.504252pt;}
.y10_c00436{bottom:672.488143pt;}
.yf_c00436{bottom:699.472033pt;}
.ye_c00436{bottom:726.455924pt;}
.yd_c00436{bottom:753.439814pt;}
.yc_c00436{bottom:780.423705pt;}
.yb_c00436{bottom:807.407595pt;}
.ya_c00436{bottom:834.391486pt;}
.y9_c00436{bottom:861.375376pt;}
.y8_c00436{bottom:888.359267pt;}
.y7_c00436{bottom:917.446326pt;}
.y6_c00436{bottom:967.198769pt;}
.y5_c00436{bottom:994.182660pt;}
.y4_c00436{bottom:1021.166550pt;}
.y3_c00436{bottom:1048.150441pt;}
.y2_c00436{bottom:1070.431151pt;}
.h6_c00436{height:48.971369pt;}
.h4_c00436{height:49.001996pt;}
.h5_c00436{height:50.625189pt;}
.h3_c00436{height:50.651899pt;}
.h2_c00436{height:1159.999952pt;}
.h0_c00436{height:1159.999959pt;}
.h1_c00436{height:1160.000000pt;}
.w2_c00436{width:830.999965pt;}
.w0_c00436{width:831.000000pt;}
.w1_c00436{width:831.333333pt;}
.x0_c00436{left:0.000000pt;}
.x1_c00436{left:78.089069pt;}
.x2_c00436{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_40f0cb347b1bdd9d6d77c539.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.006348;font-style:normal;font-weight:normal;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_0ebdf86397a3fb4d4b68efd8.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:0.957031;font-style:normal;font-weight:normal;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_af24c93efcc5d6409d693242.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:0.727051;font-style:normal;font-weight:normal;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_90e64c1a087bdf787665e583.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:0.965332;font-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_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);}
.v0_c00437{vertical-align:0.000000px;}
.ls0_c00437{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00437{word-spacing:-18.680283px;}
.ws0_c00437{word-spacing:-0.053968px;}
.ws2_c00437{word-spacing:0.000000px;}
._1_c00437{width:1.037793px;}
._0_c00437{width:2.529739px;}
._4_c00437{width:12.039663px;}
._2_c00437{width:14.651411px;}
._3_c00437{width:22.199043px;}
.fc1_c00437{color:rgb(194,158,103);}
.fc2_c00437{color:rgb(255,255,255);}
.fc0_c00437{color:rgb(0,0,0);}
.fs2_c00437{font-size:53.967781px;}
.fs3_c00437{font-size:71.912067px;}
.fs0_c00437{font-size:71.957041px;}
.fs1_c00437{font-size:74.340621px;}
.y0_c00437{bottom:0.000000px;}
.y1_c00437{bottom:0.000008px;}
.ya_c00437{bottom:30.156225px;}
.y9_c00437{bottom:651.604463px;}
.y7_c00437{bottom:1009.448651px;}
.y6_c00437{bottom:1039.805528px;}
.y5_c00437{bottom:1070.162405px;}
.y4_c00437{bottom:1100.519281px;}
.y3_c00437{bottom:1130.876158px;}
.y2_c00437{bottom:1161.233035px;}
.y8_c00437{bottom:1198.771323px;}
.h5_c00437{height:39.131911px;}
.h4_c00437{height:53.287125px;}
.h6_c00437{height:55.092790px;}
.h3_c00437{height:55.127245px;}
.h2_c00437{height:1304.999946px;}
.h0_c00437{height:1304.999953px;}
.h1_c00437{height:1305.000000px;}
.w2_c00437{width:934.874961px;}
.w0_c00437{width:934.875000px;}
.w1_c00437{width:935.250000px;}
.x0_c00437{left:0.000000px;}
.x1_c00437{left:87.850202px;}
.x2_c00437{left:105.627596px;}
.x3_c00437{left:451.985828px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws1_c00437{word-spacing:-16.604696pt;}
.ws0_c00437{word-spacing:-0.047971pt;}
.ws2_c00437{word-spacing:0.000000pt;}
._1_c00437{width:0.922483pt;}
._0_c00437{width:2.248657pt;}
._4_c00437{width:10.701922pt;}
._2_c00437{width:13.023476pt;}
._3_c00437{width:19.732483pt;}
.fs2_c00437{font-size:47.971361pt;}
.fs3_c00437{font-size:63.921837pt;}
.fs0_c00437{font-size:63.961814pt;}
.fs1_c00437{font-size:66.080552pt;}
.y0_c00437{bottom:0.000000pt;}
.y1_c00437{bottom:0.000007pt;}
.ya_c00437{bottom:26.805533pt;}
.y9_c00437{bottom:579.203967pt;}
.y7_c00437{bottom:897.287690pt;}
.y6_c00437{bottom:924.271580pt;}
.y5_c00437{bottom:951.255471pt;}
.y4_c00437{bottom:978.239361pt;}
.y3_c00437{bottom:1005.223252pt;}
.y2_c00437{bottom:1032.207142pt;}
.y8_c00437{bottom:1065.574509pt;}
.h5_c00437{height:34.783921pt;}
.h4_c00437{height:47.366333pt;}
.h6_c00437{height:48.971369pt;}
.h3_c00437{height:49.001996pt;}
.h2_c00437{height:1159.999952pt;}
.h0_c00437{height:1159.999959pt;}
.h1_c00437{height:1160.000000pt;}
.w2_c00437{width:830.999965pt;}
.w0_c00437{width:831.000000pt;}
.w1_c00437{width:831.333333pt;}
.x0_c00437{left:0.000000pt;}
.x1_c00437{left:78.089069pt;}
.x2_c00437{left:93.891196pt;}
.x3_c00437{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c702886237e09bfd0b7cf4e.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.006348;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.006348;font-style:normal;font-weight:normal;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_3e4d7317d19958cdb2342e92.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.171387;font-style:normal;font-weight:normal;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_0dbe012e81208b97e30238f3.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.000000;font-style:normal;font-weight: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_bbb03cdcae6b75bc784047db.woff2')format("woff");}.ff5_c00438{font-family:ff5_c00438;line-height:1.000000;font-style:normal;font-weight: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_c00438;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff6_c00438{font-family:ff6_c00438;line-height:0.769531;font-style:normal;font-weight: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_c00438;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff7_c00438{font-family:ff7_c00438;line-height:0.743000;font-style:normal;font-weight: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_c00438;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00438{font-family:ff8_c00438;line-height:0.734863;font-style:normal;font-weight: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_c00438;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ff9_c00438{font-family:ff9_c00438;line-height:0.894000;font-style:normal;font-weight: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_c00438;src:url('chunks/assets/font_2d358f218610cf5c16549b37.woff2')format("woff");}.ffa_c00438{font-family:ffa_c00438;line-height:0.895000;font-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_c00438{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00438{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00438{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00438{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00438{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00438{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00438{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00438{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00438{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00438{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00438{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00438{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00438{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00438{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00438{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00438{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00438{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00438{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00438{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00438{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00438{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00438{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00438{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00438{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00438{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00438{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00438{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00438{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00438{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00438{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00438{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00438{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00438{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00438{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00438{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00438{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00438{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00438{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00438{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00438{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00438{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00438{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00438{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00438{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00438{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00438{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00438{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00438{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00438{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00438{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00438{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00438{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00438{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00438{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00438{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00438{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00438{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00438{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00438{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00438{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00438{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00438{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00438{vertical-align:0.000000px;}
.v1_c00438{vertical-align:26.810849px;}
.ls0_c00438{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00438{word-spacing:-18.680283px;}
.ws3_c00438{word-spacing:0.000000px;}
.ws1_c00438{word-spacing:281.470806px;}
.ws0_c00438{word-spacing:1114.343689px;}
._2_c00438{width:1.003824px;}
._0_c00438{width:2.871004px;}
._1_c00438{width:4.469524px;}
._3_c00438{width:14.095076px;}
._4_c00438{width:24.977269px;}
.fc3_c00438{color:rgb(9,71,81);}
.fc1_c00438{color:rgb(194,158,103);}
.fc2_c00438{color:rgb(255,255,255);}
.fc0_c00438{color:rgb(0,0,0);}
.fsd_c00438{font-size:41.974772px;}
.fs2_c00438{font-size:41.975069px;}
.fs7_c00438{font-size:47.339969px;}
.fsa_c00438{font-size:47.339970px;}
.fs6_c00438{font-size:47.339972px;}
.fs9_c00438{font-size:47.339973px;}
.fs8_c00438{font-size:47.339974px;}
.fsb_c00438{font-size:47.339975px;}
.fse_c00438{font-size:51.630774px;}
.fs10_c00438{font-size:56.388174px;}
.fs5_c00438{font-size:59.949210px;}
.fsf_c00438{font-size:71.912067px;}
.fs0_c00438{font-size:71.957041px;}
.fs1_c00438{font-size:74.379845px;}
.fsc_c00438{font-size:76.965540px;}
.fs4_c00438{font-size:89.946302px;}
.fs3_c00438{font-size:95.927731px;}
.y0_c00438{bottom:0.000000px;}
.y1_c00438{bottom:0.000008px;}
.y53_c00438{bottom:30.156225px;}
.y7_c00438{bottom:139.441285px;}
.y6_c00438{bottom:169.798161px;}
.y5_c00438{bottom:200.155038px;}
.y4_c00438{bottom:230.511915px;}
.y3_c00438{bottom:260.868792px;}
.y2_c00438{bottom:291.225668px;}
.y8_c00438{bottom:330.031259px;}
.y51_c00438{bottom:402.064151px;}
.y1d_c00438{bottom:493.812629px;}
.y45_c00438{bottom:493.827623px;}
.y1c_c00438{bottom:494.337609px;}
.y46_c00438{bottom:494.357158px;}
.y2f_c00438{bottom:494.700737px;}
.y44_c00438{bottom:495.071586px;}
.y1b_c00438{bottom:495.403002px;}
.y30_c00438{bottom:495.533530px;}
.y2e_c00438{bottom:495.553663px;}
.y43_c00438{bottom:496.322201px;}
.y1a_c00438{bottom:496.475623px;}
.y2d_c00438{bottom:496.587915px;}
.y47_c00438{bottom:496.772260px;}
.y1e_c00438{bottom:496.835884px;}
.y31_c00438{bottom:497.713596px;}
.y42_c00438{bottom:497.966053px;}
.y19_c00438{bottom:498.126234px;}
.y2c_c00438{bottom:498.789265px;}
.y32_c00438{bottom:499.103521px;}
.y41_c00438{bottom:499.653306px;}
.y18_c00438{bottom:499.818769px;}
.y33_c00438{bottom:500.800864px;}
.y1f_c00438{bottom:501.110605px;}
.y40_c00438{bottom:501.517382px;}
.y17_c00438{bottom:501.687706px;}
.y48_c00438{bottom:501.869915px;}
.y2b_c00438{bottom:502.578702px;}
.y34_c00438{bottom:503.241722px;}
.y20_c00438{bottom:503.627848px;}
.y49_c00438{bottom:505.496019px;}
.y35_c00438{bottom:505.499367px;}
.y3f_c00438{bottom:506.168989px;}
.y16_c00438{bottom:506.348634px;}
.y2a_c00438{bottom:508.044213px;}
.y36_c00438{bottom:508.766327px;}
.y21_c00438{bottom:509.576794px;}
.y4a_c00438{bottom:511.126534px;}
.y29_c00438{bottom:512.508085px;}
.y3e_c00438{bottom:512.566592px;}
.y15_c00438{bottom:512.754669px;}
.y22_c00438{bottom:514.322677px;}
.y37_c00438{bottom:517.158603px;}
.y4b_c00438{bottom:517.780195px;}
.y28_c00438{bottom:518.929057px;}
.y3d_c00438{bottom:519.869222px;}
.y14_c00438{bottom:519.959421px;}
.y13_c00438{bottom:523.416158px;}
.y27_c00438{bottom:523.496236px;}
.y38_c00438{bottom:525.202812px;}
.y23_c00438{bottom:526.099549px;}
.y3c_c00438{bottom:527.026630px;}
.y12_c00438{bottom:529.422883px;}
.y4c_c00438{bottom:529.736175px;}
.y26_c00438{bottom:531.263725px;}
.y3b_c00438{bottom:531.792993px;}
.y4e_c00438{bottom:533.728456px;}
.y50_c00438{bottom:534.421816px;}
.y25_c00438{bottom:535.155114px;}
.y11_c00438{bottom:536.678099px;}
.y3a_c00438{bottom:537.961701px;}
.y24_c00438{bottom:538.332892px;}
.y4d_c00438{bottom:538.696314px;}
.y39_c00438{bottom:545.020884px;}
.y10_c00438{bottom:546.207017px;}
.y4f_c00438{bottom:577.871130px;}
.yf_c00438{bottom:579.570490px;}
.yc_c00438{bottom:597.559761px;}
.y52_c00438{bottom:638.470702px;}
.y54_c00438{bottom:1025.167633px;}
.ya_c00438{bottom:1127.585799px;}
.ye_c00438{bottom:1129.718199px;}
.yd_c00438{bottom:1147.707459px;}
.yb_c00438{bottom:1150.017273px;}
.y9_c00438{bottom:1170.658440px;}
.h11_c00438{height:32.157430px;}
.he_c00438{height:35.967282px;}
.hd_c00438{height:35.967283px;}
.hf_c00438{height:35.967285px;}
.hb_c00438{height:36.267779px;}
.ha_c00438{height:36.267781px;}
.hc_c00438{height:36.267783px;}
.h13_c00438{height:37.437353px;}
.h5_c00438{height:39.085184px;}
.h15_c00438{height:40.317545px;}
.h14_c00438{height:55.092790px;}
.h3_c00438{height:55.127245px;}
.h9_c00438{height:55.821847px;}
.h12_c00438{height:56.261810px;}
.h4_c00438{height:56.983387px;}
.h10_c00438{height:58.968279px;}
.h6_c00438{height:67.002968px;}
.h8_c00438{height:68.338108px;}
.h7_c00438{height:89.323331px;}
.h2_c00438{height:1304.999946px;}
.h0_c00438{height:1304.999953px;}
.h1_c00438{height:1305.000000px;}
.w2_c00438{width:934.874961px;}
.w0_c00438{width:934.875000px;}
.w1_c00438{width:935.250000px;}
.x0_c00438{left:0.000000px;}
.x2_c00438{left:88.454210px;}
.x1_c00438{left:90.413924px;}
.x6_c00438{left:108.062661px;}
.x3_c00438{left:109.658623px;}
.x2d_c00438{left:134.894322px;}
.x2c_c00438{left:136.566734px;}
.x2e_c00438{left:139.937719px;}
.x2f_c00438{left:144.785273px;}
.x30_c00438{left:150.147890px;}
.x31_c00438{left:152.899057px;}
.x32_c00438{left:155.907145px;}
.x33_c00438{left:159.752336px;}
.x3d_c00438{left:161.347648px;}
.x34_c00438{left:163.203941px;}
.x35_c00438{left:171.483965px;}
.x36_c00438{left:179.748684px;}
.x37_c00438{left:188.175145px;}
.x38_c00438{left:196.556636px;}
.x39_c00438{left:200.721504px;}
.x3a_c00438{left:205.276922px;}
.x3b_c00438{left:209.084069px;}
.x3c_c00438{left:211.669316px;}
.x9_c00438{left:230.260919px;}
.x8_c00438{left:232.395871px;}
.xa_c00438{left:235.482735px;}
.xb_c00438{left:240.319117px;}
.xc_c00438{left:245.673577px;}
.xd_c00438{left:248.421493px;}
.xe_c00438{left:251.426626px;}
.xf_c00438{left:255.268917px;}
.x3f_c00438{left:256.468943px;}
.x10_c00438{left:258.553698px;}
.x11_c00438{left:262.988294px;}
.x12_c00438{left:271.601212px;}
.x13_c00438{left:283.434780px;}
.x14_c00438{left:290.867654px;}
.x15_c00438{left:294.260334px;}
.x4_c00438{left:295.438786px;}
.x16_c00438{left:299.596701px;}
.x17_c00438{left:302.984150px;}
.x18_c00438{left:306.993562px;}
.x19_c00438{left:325.378518px;}
.x1a_c00438{left:326.595106px;}
.x1b_c00438{left:328.015253px;}
.x1c_c00438{left:331.410444px;}
.x1d_c00438{left:334.633053px;}
.x1e_c00438{left:340.511825px;}
.x1f_c00438{left:346.695139px;}
.x20_c00438{left:352.384720px;}
.x21_c00438{left:355.792694px;}
.x22_c00438{left:363.695116px;}
.x23_c00438{left:371.679253px;}
.x24_c00438{left:378.434940px;}
.x25_c00438{left:381.453328px;}
.x26_c00438{left:384.455783px;}
.x27_c00438{left:387.851715px;}
.x28_c00438{left:390.467224px;}
.x29_c00438{left:393.779799px;}
.x2a_c00438{left:398.952070px;}
.x2b_c00438{left:401.755082px;}
.x42_c00438{left:451.985828px;}
.x5_c00438{left:465.097640px;}
.x7_c00438{left:483.086907px;}
.x41_c00438{left:676.474352px;}
.x40_c00438{left:696.904800px;}
.x3e_c00438{left:733.103068px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.v1_c00438{vertical-align:23.831865pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ws2_c00438{word-spacing:-16.604696pt;}
.ws3_c00438{word-spacing:0.000000pt;}
.ws1_c00438{word-spacing:250.196272pt;}
.ws0_c00438{word-spacing:990.527723pt;}
._2_c00438{width:0.892288pt;}
._0_c00438{width:2.552004pt;}
._1_c00438{width:3.972910pt;}
._3_c00438{width:12.528956pt;}
._4_c00438{width:22.202017pt;}
.fsd_c00438{font-size:37.310908pt;}
.fs2_c00438{font-size:37.311173pt;}
.fs7_c00438{font-size:42.079973pt;}
.fsa_c00438{font-size:42.079974pt;}
.fs6_c00438{font-size:42.079975pt;}
.fs9_c00438{font-size:42.079976pt;}
.fs8_c00438{font-size:42.079977pt;}
.fsb_c00438{font-size:42.079978pt;}
.fse_c00438{font-size:45.894021pt;}
.fs10_c00438{font-size:50.122822pt;}
.fs5_c00438{font-size:53.288186pt;}
.fsf_c00438{font-size:63.921837pt;}
.fs0_c00438{font-size:63.961814pt;}
.fs1_c00438{font-size:66.115417pt;}
.fsc_c00438{font-size:68.413814pt;}
.fs4_c00438{font-size:79.952268pt;}
.fs3_c00438{font-size:85.269094pt;}
.y0_c00438{bottom:0.000000pt;}
.y1_c00438{bottom:0.000007pt;}
.y53_c00438{bottom:26.805533pt;}
.y7_c00438{bottom:123.947808pt;}
.y6_c00438{bottom:150.931699pt;}
.y5_c00438{bottom:177.915589pt;}
.y4_c00438{bottom:204.899480pt;}
.y3_c00438{bottom:231.883370pt;}
.y2_c00438{bottom:258.867261pt;}
.y8_c00438{bottom:293.361119pt;}
.y51_c00438{bottom:357.390356pt;}
.y1d_c00438{bottom:438.944560pt;}
.y45_c00438{bottom:438.957887pt;}
.y1c_c00438{bottom:439.411208pt;}
.y46_c00438{bottom:439.428585pt;}
.y2f_c00438{bottom:439.733989pt;}
.y44_c00438{bottom:440.063632pt;}
.y1b_c00438{bottom:440.358224pt;}
.y30_c00438{bottom:440.474249pt;}
.y2e_c00438{bottom:440.492144pt;}
.y43_c00438{bottom:441.175290pt;}
.y1a_c00438{bottom:441.311665pt;}
.y2d_c00438{bottom:441.411480pt;}
.y47_c00438{bottom:441.575343pt;}
.y1e_c00438{bottom:441.631897pt;}
.y31_c00438{bottom:442.412085pt;}
.y42_c00438{bottom:442.636491pt;}
.y19_c00438{bottom:442.778875pt;}
.y2c_c00438{bottom:443.368235pt;}
.y32_c00438{bottom:443.647574pt;}
.y41_c00438{bottom:444.136272pt;}
.y18_c00438{bottom:444.283350pt;}
.y33_c00438{bottom:445.156323pt;}
.y1f_c00438{bottom:445.431649pt;}
.y40_c00438{bottom:445.793228pt;}
.y17_c00438{bottom:445.944627pt;}
.y48_c00438{bottom:446.106592pt;}
.y2b_c00438{bottom:446.736624pt;}
.y34_c00438{bottom:447.325975pt;}
.y20_c00438{bottom:447.669198pt;}
.y49_c00438{bottom:449.329795pt;}
.y35_c00438{bottom:449.332771pt;}
.y3f_c00438{bottom:449.927990pt;}
.y16_c00438{bottom:450.087675pt;}
.y2a_c00438{bottom:451.594856pt;}
.y36_c00438{bottom:452.236735pt;}
.y21_c00438{bottom:452.957150pt;}
.y4a_c00438{bottom:454.334697pt;}
.y29_c00438{bottom:455.562742pt;}
.y3e_c00438{bottom:455.614749pt;}
.y15_c00438{bottom:455.781928pt;}
.y22_c00438{bottom:457.175713pt;}
.y37_c00438{bottom:459.696536pt;}
.y4b_c00438{bottom:460.249062pt;}
.y28_c00438{bottom:461.270273pt;}
.y3d_c00438{bottom:462.105976pt;}
.y14_c00438{bottom:462.186152pt;}
.y13_c00438{bottom:465.258807pt;}
.y27_c00438{bottom:465.329988pt;}
.y38_c00438{bottom:466.846944pt;}
.y23_c00438{bottom:467.644044pt;}
.y3c_c00438{bottom:468.468115pt;}
.y12_c00438{bottom:470.598118pt;}
.y4c_c00438{bottom:470.876600pt;}
.y26_c00438{bottom:472.234422pt;}
.y3b_c00438{bottom:472.704883pt;}
.y4e_c00438{bottom:474.425294pt;}
.y50_c00438{bottom:475.041614pt;}
.y25_c00438{bottom:475.693435pt;}
.y11_c00438{bottom:477.047199pt;}
.y3a_c00438{bottom:478.188178pt;}
.y24_c00438{bottom:478.518126pt;}
.y4d_c00438{bottom:478.841168pt;}
.y39_c00438{bottom:484.463008pt;}
.y10_c00438{bottom:485.517349pt;}
.y4f_c00438{bottom:513.663227pt;}
.yf_c00438{bottom:515.173769pt;}
.yc_c00438{bottom:531.164232pt;}
.y52_c00438{bottom:567.529513pt;}
.y54_c00438{bottom:911.260118pt;}
.ya_c00438{bottom:1002.298488pt;}
.ye_c00438{bottom:1004.193955pt;}
.yd_c00438{bottom:1020.184408pt;}
.yb_c00438{bottom:1022.237576pt;}
.y9_c00438{bottom:1040.585280pt;}
.h11_c00438{height:28.584382pt;}
.he_c00438{height:31.970917pt;}
.hd_c00438{height:31.970918pt;}
.hf_c00438{height:31.970920pt;}
.hb_c00438{height:32.238026pt;}
.ha_c00438{height:32.238028pt;}
.hc_c00438{height:32.238029pt;}
.h13_c00438{height:33.277647pt;}
.h5_c00438{height:34.742386pt;}
.h15_c00438{height:35.837817pt;}
.h14_c00438{height:48.971369pt;}
.h3_c00438{height:49.001996pt;}
.h9_c00438{height:49.619420pt;}
.h12_c00438{height:50.010498pt;}
.h4_c00438{height:50.651899pt;}
.h10_c00438{height:52.416248pt;}
.h6_c00438{height:59.558193pt;}
.h8_c00438{height:60.744985pt;}
.h7_c00438{height:79.398517pt;}
.h2_c00438{height:1159.999952pt;}
.h0_c00438{height:1159.999959pt;}
.h1_c00438{height:1160.000000pt;}
.w2_c00438{width:830.999965pt;}
.w0_c00438{width:831.000000pt;}
.w1_c00438{width:831.333333pt;}
.x0_c00438{left:0.000000pt;}
.x2_c00438{left:78.625965pt;}
.x1_c00438{left:80.367933pt;}
.x6_c00438{left:96.055698pt;}
.x3_c00438{left:97.474332pt;}
.x2d_c00438{left:119.906064pt;}
.x2c_c00438{left:121.392652pt;}
.x2e_c00438{left:124.389083pt;}
.x2f_c00438{left:128.698021pt;}
.x30_c00438{left:133.464791pt;}
.x31_c00438{left:135.910272pt;}
.x32_c00438{left:138.584129pt;}
.x33_c00438{left:142.002076pt;}
.x3d_c00438{left:143.420132pt;}
.x34_c00438{left:145.070170pt;}
.x35_c00438{left:152.430191pt;}
.x36_c00438{left:159.776608pt;}
.x37_c00438{left:167.266795pt;}
.x38_c00438{left:174.717010pt;}
.x39_c00438{left:178.419115pt;}
.x3a_c00438{left:182.468375pt;}
.x3b_c00438{left:185.852506pt;}
.x3c_c00438{left:188.150503pt;}
.x9_c00438{left:204.676373pt;}
.x8_c00438{left:206.574107pt;}
.xa_c00438{left:209.317987pt;}
.xb_c00438{left:213.616993pt;}
.xc_c00438{left:218.376513pt;}
.xd_c00438{left:220.819105pt;}
.xe_c00438{left:223.490334pt;}
.xf_c00438{left:226.905704pt;}
.x3f_c00438{left:227.972394pt;}
.x10_c00438{left:229.825509pt;}
.x11_c00438{left:233.767373pt;}
.x12_c00438{left:241.423300pt;}
.x13_c00438{left:251.942027pt;}
.x14_c00438{left:258.549026pt;}
.x15_c00438{left:261.564741pt;}
.x4_c00438{left:262.612255pt;}
.x16_c00438{left:266.308178pt;}
.x17_c00438{left:269.319244pt;}
.x18_c00438{left:272.883167pt;}
.x19_c00438{left:289.225349pt;}
.x1a_c00438{left:290.306761pt;}
.x1b_c00438{left:291.569114pt;}
.x1c_c00438{left:294.587062pt;}
.x1d_c00438{left:297.451603pt;}
.x1e_c00438{left:302.677178pt;}
.x1f_c00438{left:308.173457pt;}
.x20_c00438{left:313.230862pt;}
.x21_c00438{left:316.260173pt;}
.x22_c00438{left:323.284548pt;}
.x23_c00438{left:330.381558pt;}
.x24_c00438{left:336.386614pt;}
.x25_c00438{left:339.069625pt;}
.x26_c00438{left:341.738474pt;}
.x27_c00438{left:344.757080pt;}
.x28_c00438{left:347.081977pt;}
.x29_c00438{left:350.026488pt;}
.x2a_c00438{left:354.624063pt;}
.x2b_c00438{left:357.115628pt;}
.x42_c00438{left:401.765180pt;}
.x5_c00438{left:413.420124pt;}
.x7_c00438{left:429.410584pt;}
.x41_c00438{left:601.310535pt;}
.x40_c00438{left:619.470933pt;}
.x3e_c00438{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_857bac774935085cbad39967.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.006348;font-style:normal;font-weight:normal;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_a14797dc863c1249ad0c6ea9.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_2c367a18550dd296f7869f01.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.171387;font-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_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);}
.v0_c00439{vertical-align:0.000000px;}
.ls4_c00439{letter-spacing:0.000000px;}
.ls2_c00439{letter-spacing:0.000022px;}
.ls3_c00439{letter-spacing:1.756786px;}
.ls1_c00439{letter-spacing:17.497344px;}
.ls0_c00439{letter-spacing:17.497389px;}
.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:-18.691966px;}
.ws1_c00439{word-spacing:-18.680283px;}
.ws2_c00439{word-spacing:0.000000px;}
._d_c00439{width:1.003368px;}
._3_c00439{width:2.860986px;}
._4_c00439{width:5.553558px;}
._2_c00439{width:6.600354px;}
._f_c00439{width:7.926437px;}
._10_c00439{width:10.427009px;}
._12_c00439{width:15.439961px;}
._1_c00439{width:16.459504px;}
._9_c00439{width:17.577581px;}
._e_c00439{width:20.347161px;}
._5_c00439{width:23.484362px;}
._0_c00439{width:25.704949px;}
._a_c00439{width:26.835527px;}
._11_c00439{width:28.380515px;}
._b_c00439{width:29.458936px;}
._c_c00439{width:30.497417px;}
._7_c00439{width:32.558662px;}
._6_c00439{width:37.469779px;}
._8_c00439{width:39.593543px;}
.fc1_c00439{color:rgb(0,0,0);}
.fc0_c00439{color:rgb(194,158,103);}
.fs3_c00439{font-size:71.912067px;}
.fs1_c00439{font-size:71.957041px;}
.fs2_c00439{font-size:74.340621px;}
.fs0_c00439{font-size:74.379845px;}
.y0_c00439{bottom:0.000000px;}
.y1_c00439{bottom:0.000008px;}
.y1d_c00439{bottom:30.156225px;}
.y1c_c00439{bottom:324.200525px;}
.y1b_c00439{bottom:354.557402px;}
.y1a_c00439{bottom:384.914278px;}
.y19_c00439{bottom:415.271155px;}
.y18_c00439{bottom:445.628032px;}
.y17_c00439{bottom:475.984909px;}
.y16_c00439{bottom:506.341785px;}
.y15_c00439{bottom:536.698662px;}
.y14_c00439{bottom:567.055539px;}
.y13_c00439{bottom:597.412416px;}
.y12_c00439{bottom:627.769292px;}
.y11_c00439{bottom:658.126169px;}
.y10_c00439{bottom:688.483046px;}
.yf_c00439{bottom:718.839923px;}
.ye_c00439{bottom:749.196800px;}
.yd_c00439{bottom:779.553676px;}
.yc_c00439{bottom:809.910553px;}
.yb_c00439{bottom:840.267430px;}
.ya_c00439{bottom:870.624307px;}
.y9_c00439{bottom:900.981183px;}
.y8_c00439{bottom:941.846198px;}
.y7_c00439{bottom:1041.515823px;}
.y6_c00439{bottom:1071.872700px;}
.y5_c00439{bottom:1102.229577px;}
.y4_c00439{bottom:1132.586453px;}
.y3_c00439{bottom:1162.943330px;}
.y2_c00439{bottom:1204.539346px;}
.h5_c00439{height:56.953337px;}
.h3_c00439{height:56.983387px;}
.h6_c00439{height:66.961090px;}
.h4_c00439{height:67.002968px;}
.h2_c00439{height:1304.999946px;}
.h0_c00439{height:1304.999953px;}
.h1_c00439{height:1305.000000px;}
.w2_c00439{width:934.874961px;}
.w0_c00439{width:934.875000px;}
.w1_c00439{width:935.250000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:87.850202px;}
.x2_c00439{left:89.434062px;}
.x3_c00439{left:451.985828px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls4_c00439{letter-spacing:0.000000pt;}
.ls2_c00439{letter-spacing:0.000020pt;}
.ls3_c00439{letter-spacing:1.561587pt;}
.ls1_c00439{letter-spacing:15.553194pt;}
.ls0_c00439{letter-spacing:15.553234pt;}
.ws0_c00439{word-spacing:-16.615081pt;}
.ws1_c00439{word-spacing:-16.604696pt;}
.ws2_c00439{word-spacing:0.000000pt;}
._d_c00439{width:0.891882pt;}
._3_c00439{width:2.543098pt;}
._4_c00439{width:4.936496pt;}
._2_c00439{width:5.866981pt;}
._f_c00439{width:7.045722pt;}
._10_c00439{width:9.268452pt;}
._12_c00439{width:13.724410pt;}
._1_c00439{width:14.630671pt;}
._9_c00439{width:15.624516pt;}
._e_c00439{width:18.086366pt;}
._5_c00439{width:20.874988pt;}
._0_c00439{width:22.848843pt;}
._a_c00439{width:23.853801pt;}
._11_c00439{width:25.227125pt;}
._b_c00439{width:26.185721pt;}
._c_c00439{width:27.108815pt;}
._7_c00439{width:28.941033pt;}
._6_c00439{width:33.306470pt;}
._8_c00439{width:35.194260pt;}
.fs3_c00439{font-size:63.921837pt;}
.fs1_c00439{font-size:63.961814pt;}
.fs2_c00439{font-size:66.080552pt;}
.fs0_c00439{font-size:66.115417pt;}
.y0_c00439{bottom:0.000000pt;}
.y1_c00439{bottom:0.000007pt;}
.y1d_c00439{bottom:26.805533pt;}
.y1c_c00439{bottom:288.178244pt;}
.y1b_c00439{bottom:315.162135pt;}
.y1a_c00439{bottom:342.146025pt;}
.y19_c00439{bottom:369.129916pt;}
.y18_c00439{bottom:396.113806pt;}
.y17_c00439{bottom:423.097697pt;}
.y16_c00439{bottom:450.081587pt;}
.y15_c00439{bottom:477.065477pt;}
.y14_c00439{bottom:504.049368pt;}
.y13_c00439{bottom:531.033258pt;}
.y12_c00439{bottom:558.017149pt;}
.y11_c00439{bottom:585.001039pt;}
.y10_c00439{bottom:611.984930pt;}
.yf_c00439{bottom:638.968820pt;}
.ye_c00439{bottom:665.952711pt;}
.yd_c00439{bottom:692.936601pt;}
.yc_c00439{bottom:719.920492pt;}
.yb_c00439{bottom:746.904382pt;}
.ya_c00439{bottom:773.888273pt;}
.y9_c00439{bottom:800.872163pt;}
.y8_c00439{bottom:837.196621pt;}
.y7_c00439{bottom:925.791843pt;}
.y6_c00439{bottom:952.775733pt;}
.y5_c00439{bottom:979.759624pt;}
.y4_c00439{bottom:1006.743514pt;}
.y3_c00439{bottom:1033.727404pt;}
.y2_c00439{bottom:1070.701641pt;}
.h5_c00439{height:50.625189pt;}
.h3_c00439{height:50.651899pt;}
.h6_c00439{height:59.520969pt;}
.h4_c00439{height:59.558193pt;}
.h2_c00439{height:1159.999952pt;}
.h0_c00439{height:1159.999959pt;}
.h1_c00439{height:1160.000000pt;}
.w2_c00439{width:830.999965pt;}
.w0_c00439{width:831.000000pt;}
.w1_c00439{width:831.333333pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:78.089069pt;}
.x2_c00439{left:79.496944pt;}
.x3_c00439{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_84d7b4239f0a26eda78abba1.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.006348;font-style:normal;font-weight:normal;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_64793605fbe1aa03dce16398.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.005371;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.006348;font-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_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);}
.v0_c00440{vertical-align:0.000000px;}
.ls0_c00440{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00440{word-spacing:-18.680283px;}
.ws2_c00440{word-spacing:0.000000px;}
._5_c00440{width:2.951363px;}
._6_c00440{width:4.420593px;}
._8_c00440{width:5.633929px;}
._1_c00440{width:8.004940px;}
._7_c00440{width:9.914049px;}
._3_c00440{width:15.065964px;}
._0_c00440{width:16.583849px;}
._2_c00440{width:27.437424px;}
._a_c00440{width:34.392354px;}
._4_c00440{width:35.791108px;}
._9_c00440{width:37.510403px;}
._b_c00440{width:43.507486px;}
.fc1_c00440{color:rgb(194,158,103);}
.fc0_c00440{color:rgb(0,0,0);}
.fs2_c00440{font-size:71.912067px;}
.fs0_c00440{font-size:71.957041px;}
.fs1_c00440{font-size:74.340621px;}
.y0_c00440{bottom:0.000000px;}
.y1_c00440{bottom:0.000008px;}
.y15_c00440{bottom:30.156225px;}
.y7_c00440{bottom:595.296190px;}
.y6_c00440{bottom:625.653067px;}
.y5_c00440{bottom:656.009944px;}
.y4_c00440{bottom:686.366821px;}
.y3_c00440{bottom:716.723697px;}
.y2_c00440{bottom:747.080574px;}
.y14_c00440{bottom:785.005891px;}
.y13_c00440{bottom:858.779389px;}
.y12_c00440{bottom:889.136266px;}
.y11_c00440{bottom:919.493142px;}
.y10_c00440{bottom:949.850019px;}
.yf_c00440{bottom:980.206896px;}
.ye_c00440{bottom:1010.563773px;}
.yd_c00440{bottom:1040.920649px;}
.yc_c00440{bottom:1071.277526px;}
.yb_c00440{bottom:1101.634403px;}
.ya_c00440{bottom:1131.991280px;}
.y9_c00440{bottom:1162.348156px;}
.y8_c00440{bottom:1198.771323px;}
.h5_c00440{height:55.092790px;}
.h3_c00440{height:55.127245px;}
.h4_c00440{height:56.953337px;}
.h2_c00440{height:1304.999946px;}
.h0_c00440{height:1304.999953px;}
.h1_c00440{height:1305.000000px;}
.w2_c00440{width:934.874961px;}
.w0_c00440{width:934.875000px;}
.w1_c00440{width:935.250000px;}
.x0_c00440{left:0.000000px;}
.x1_c00440{left:87.850202px;}
.x2_c00440{left:89.434062px;}
.x3_c00440{left:451.985828px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws0_c00440{word-spacing:-16.615081pt;}
.ws1_c00440{word-spacing:-16.604696pt;}
.ws2_c00440{word-spacing:0.000000pt;}
._5_c00440{width:2.623434pt;}
._6_c00440{width:3.929416pt;}
._8_c00440{width:5.007937pt;}
._1_c00440{width:7.115502pt;}
._7_c00440{width:8.812488pt;}
._3_c00440{width:13.391968pt;}
._0_c00440{width:14.741199pt;}
._2_c00440{width:24.388821pt;}
._a_c00440{width:30.570982pt;}
._4_c00440{width:31.814319pt;}
._9_c00440{width:33.342581pt;}
._b_c00440{width:38.673321pt;}
.fs2_c00440{font-size:63.921837pt;}
.fs0_c00440{font-size:63.961814pt;}
.fs1_c00440{font-size:66.080552pt;}
.y0_c00440{bottom:0.000000pt;}
.y1_c00440{bottom:0.000007pt;}
.y15_c00440{bottom:26.805533pt;}
.y7_c00440{bottom:529.152169pt;}
.y6_c00440{bottom:556.136060pt;}
.y5_c00440{bottom:583.119950pt;}
.y4_c00440{bottom:610.103841pt;}
.y3_c00440{bottom:637.087731pt;}
.y2_c00440{bottom:664.071621pt;}
.y14_c00440{bottom:697.783014pt;}
.y13_c00440{bottom:763.359457pt;}
.y12_c00440{bottom:790.343347pt;}
.y11_c00440{bottom:817.327238pt;}
.y10_c00440{bottom:844.311128pt;}
.yf_c00440{bottom:871.295019pt;}
.ye_c00440{bottom:898.278909pt;}
.yd_c00440{bottom:925.262799pt;}
.yc_c00440{bottom:952.246690pt;}
.yb_c00440{bottom:979.230580pt;}
.ya_c00440{bottom:1006.214471pt;}
.y9_c00440{bottom:1033.198361pt;}
.y8_c00440{bottom:1065.574509pt;}
.h5_c00440{height:48.971369pt;}
.h3_c00440{height:49.001996pt;}
.h4_c00440{height:50.625189pt;}
.h2_c00440{height:1159.999952pt;}
.h0_c00440{height:1159.999959pt;}
.h1_c00440{height:1160.000000pt;}
.w2_c00440{width:830.999965pt;}
.w0_c00440{width:831.000000pt;}
.w1_c00440{width:831.333333pt;}
.x0_c00440{left:0.000000pt;}
.x1_c00440{left:78.089069pt;}
.x2_c00440{left:79.496944pt;}
.x3_c00440{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f8fd60088335237b711e258.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:0.734863;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff5_c00441{font-family:ff5_c00441;line-height:1.006348;font-style:normal;font-weight: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_46d0c7ee41fb60c0ba75b56b.woff2')format("woff");}.ff6_c00441{font-family:ff6_c00441;line-height:1.171387;font-style:normal;font-weight: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_c00441;src:url('chunks/assets/font_9823c70c0982ecdbbd4ee993.woff2')format("woff");}.ff7_c00441{font-family:ff7_c00441;line-height:1.000000;font-style:normal;font-weight: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_c00441;src:url('chunks/assets/font_fe9e8c692b65bbc953ab3561.woff2')format("woff");}.ff8_c00441{font-family:ff8_c00441;line-height:1.000000;font-style:normal;font-weight: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_c00441;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00441{font-family:ff9_c00441;line-height:0.940000;font-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_c00441{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00441{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00441{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00441{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00441{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00441{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00441{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00441{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00441{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00441{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00441{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00441{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00441{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00441{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00441{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00441{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00441{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00441{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00441{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00441{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00441{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00441{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00441{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00441{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00441{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00441{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00441{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00441{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00441{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00441{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00441{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00441{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00441{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00441{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00441{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00441{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00441{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00441{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00441{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00441{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00441{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00441{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00441{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00441{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00441{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00441{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00441{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00441{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00441{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00441{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00441{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00441{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00441{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00441{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00441{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00441{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00441{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00441{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00441{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00441{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00441{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00441{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00441{vertical-align:0.000000px;}
.v1_c00441{vertical-align:26.810849px;}
.ls0_c00441{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00441{word-spacing:-41.664701px;}
.ws3_c00441{word-spacing:-18.680283px;}
.ws2_c00441{word-spacing:-0.055722px;}
.ws5_c00441{word-spacing:0.000000px;}
.ws1_c00441{word-spacing:281.470806px;}
.ws0_c00441{word-spacing:1114.343689px;}
._5_c00441{width:2.068385px;}
._0_c00441{width:3.888279px;}
._6_c00441{width:9.359978px;}
._2_c00441{width:10.400041px;}
._1_c00441{width:14.616273px;}
._4_c00441{width:20.425259px;}
._3_c00441{width:26.890147px;}
.fc3_c00441{color:rgb(194,158,103);}
.fc2_c00441{color:rgb(9,71,81);}
.fc1_c00441{color:rgb(255,255,255);}
.fc0_c00441{color:rgb(0,0,0);}
.fs8_c00441{font-size:41.974772px;}
.fsb_c00441{font-size:41.975069px;}
.fs2_c00441{font-size:47.339969px;}
.fs5_c00441{font-size:47.339970px;}
.fs1_c00441{font-size:47.339972px;}
.fs4_c00441{font-size:47.339973px;}
.fs3_c00441{font-size:47.339974px;}
.fs6_c00441{font-size:47.339975px;}
.fs9_c00441{font-size:51.630774px;}
.fs10_c00441{font-size:55.721735px;}
.fse_c00441{font-size:59.949210px;}
.fs11_c00441{font-size:71.912067px;}
.fs0_c00441{font-size:71.957041px;}
.fsa_c00441{font-size:74.379845px;}
.fs7_c00441{font-size:76.965540px;}
.fsf_c00441{font-size:83.919899px;}
.fsd_c00441{font-size:89.946302px;}
.fsc_c00441{font-size:95.927731px;}
.y0_c00441{bottom:0.000000px;}
.y1_c00441{bottom:0.000008px;}
.y56_c00441{bottom:30.156225px;}
.y4c_c00441{bottom:60.424930px;}
.y4b_c00441{bottom:90.781806px;}
.y4a_c00441{bottom:121.138683px;}
.y49_c00441{bottom:151.495560px;}
.y48_c00441{bottom:181.852437px;}
.y47_c00441{bottom:212.209314px;}
.y46_c00441{bottom:242.566190px;}
.y45_c00441{bottom:272.923067px;}
.y44_c00441{bottom:303.279944px;}
.y4d_c00441{bottom:334.975391px;}
.y43_c00441{bottom:402.064151px;}
.y10_c00441{bottom:493.812629px;}
.y38_c00441{bottom:493.827623px;}
.yf_c00441{bottom:494.337609px;}
.y39_c00441{bottom:494.357158px;}
.y22_c00441{bottom:494.700737px;}
.y37_c00441{bottom:495.071586px;}
.ye_c00441{bottom:495.403002px;}
.y23_c00441{bottom:495.533530px;}
.y21_c00441{bottom:495.553663px;}
.y36_c00441{bottom:496.322201px;}
.yd_c00441{bottom:496.475623px;}
.y20_c00441{bottom:496.587915px;}
.y3a_c00441{bottom:496.772260px;}
.y11_c00441{bottom:496.835884px;}
.y24_c00441{bottom:497.713596px;}
.y35_c00441{bottom:497.966053px;}
.yc_c00441{bottom:498.126234px;}
.y1f_c00441{bottom:498.789265px;}
.y25_c00441{bottom:499.103521px;}
.y34_c00441{bottom:499.653306px;}
.yb_c00441{bottom:499.818769px;}
.y26_c00441{bottom:500.800864px;}
.y12_c00441{bottom:501.110605px;}
.y33_c00441{bottom:501.517382px;}
.ya_c00441{bottom:501.687706px;}
.y3b_c00441{bottom:501.869915px;}
.y1e_c00441{bottom:502.578702px;}
.y27_c00441{bottom:503.241722px;}
.y13_c00441{bottom:503.627848px;}
.y3c_c00441{bottom:505.496019px;}
.y28_c00441{bottom:505.499367px;}
.y32_c00441{bottom:506.168989px;}
.y9_c00441{bottom:506.348634px;}
.y1d_c00441{bottom:508.044213px;}
.y29_c00441{bottom:508.766327px;}
.y14_c00441{bottom:509.576794px;}
.y3d_c00441{bottom:511.126534px;}
.y1c_c00441{bottom:512.508085px;}
.y31_c00441{bottom:512.566592px;}
.y8_c00441{bottom:512.754669px;}
.y15_c00441{bottom:514.322677px;}
.y2a_c00441{bottom:517.158603px;}
.y3e_c00441{bottom:517.780195px;}
.y1b_c00441{bottom:518.929057px;}
.y30_c00441{bottom:519.869222px;}
.y7_c00441{bottom:519.959421px;}
.y6_c00441{bottom:523.416158px;}
.y1a_c00441{bottom:523.496236px;}
.y2b_c00441{bottom:525.202812px;}
.y16_c00441{bottom:526.099549px;}
.y2f_c00441{bottom:527.026630px;}
.y5_c00441{bottom:529.422883px;}
.y3f_c00441{bottom:529.736175px;}
.y19_c00441{bottom:531.263725px;}
.y2e_c00441{bottom:531.792993px;}
.y41_c00441{bottom:533.728456px;}
.y54_c00441{bottom:534.421816px;}
.y18_c00441{bottom:535.155114px;}
.y4_c00441{bottom:536.678099px;}
.y2d_c00441{bottom:537.961701px;}
.y17_c00441{bottom:538.332892px;}
.y40_c00441{bottom:538.696314px;}
.y2c_c00441{bottom:545.020884px;}
.y3_c00441{bottom:546.207017px;}
.y42_c00441{bottom:577.871130px;}
.y2_c00441{bottom:597.559761px;}
.y55_c00441{bottom:639.489911px;}
.y57_c00441{bottom:1021.609033px;}
.y4f_c00441{bottom:1127.585799px;}
.y52_c00441{bottom:1129.718199px;}
.y51_c00441{bottom:1147.707459px;}
.y50_c00441{bottom:1150.017273px;}
.y53_c00441{bottom:1150.672021px;}
.y4e_c00441{bottom:1170.658440px;}
.hb_c00441{height:32.157430px;}
.h8_c00441{height:35.967282px;}
.h7_c00441{height:35.967283px;}
.h9_c00441{height:35.967285px;}
.h5_c00441{height:36.267779px;}
.h4_c00441{height:36.267781px;}
.h6_c00441{height:36.267783px;}
.hc_c00441{height:37.437353px;}
.he_c00441{height:39.085184px;}
.h17_c00441{height:45.561399px;}
.h15_c00441{height:51.885424px;}
.h16_c00441{height:55.092790px;}
.h3_c00441{height:55.127245px;}
.h12_c00441{height:55.821847px;}
.h14_c00441{height:56.261810px;}
.hd_c00441{height:56.983387px;}
.ha_c00441{height:58.968279px;}
.hf_c00441{height:67.002968px;}
.h11_c00441{height:68.338108px;}
.h10_c00441{height:72.882592px;}
.h13_c00441{height:78.142211px;}
.h2_c00441{height:1304.999946px;}
.h0_c00441{height:1304.999953px;}
.h1_c00441{height:1305.000000px;}
.w2_c00441{width:934.874961px;}
.w0_c00441{width:934.875000px;}
.w1_c00441{width:935.250000px;}
.x0_c00441{left:0.000000px;}
.x3a_c00441{left:88.830061px;}
.x3d_c00441{left:108.062661px;}
.x3b_c00441{left:109.658623px;}
.x42_c00441{left:130.612669px;}
.x27_c00441{left:134.894322px;}
.x26_c00441{left:136.566734px;}
.x28_c00441{left:139.937719px;}
.x29_c00441{left:144.785273px;}
.x2a_c00441{left:150.147890px;}
.x2b_c00441{left:152.899057px;}
.x2c_c00441{left:155.907145px;}
.x2d_c00441{left:159.752336px;}
.x37_c00441{left:161.347648px;}
.x2e_c00441{left:163.203941px;}
.x2f_c00441{left:171.483965px;}
.x30_c00441{left:179.748684px;}
.x31_c00441{left:188.175145px;}
.x32_c00441{left:196.556636px;}
.x33_c00441{left:200.721504px;}
.x34_c00441{left:205.276922px;}
.x35_c00441{left:209.084069px;}
.x36_c00441{left:211.669316px;}
.x3_c00441{left:230.260919px;}
.x2_c00441{left:232.395871px;}
.x4_c00441{left:235.482735px;}
.x5_c00441{left:240.319117px;}
.x6_c00441{left:245.673577px;}
.x7_c00441{left:248.421493px;}
.x8_c00441{left:251.426626px;}
.x9_c00441{left:255.268917px;}
.x3f_c00441{left:256.468943px;}
.xa_c00441{left:258.553698px;}
.xb_c00441{left:262.988294px;}
.xc_c00441{left:271.601212px;}
.xd_c00441{left:283.434780px;}
.xe_c00441{left:290.867654px;}
.xf_c00441{left:294.260334px;}
.x3c_c00441{left:295.438786px;}
.x10_c00441{left:299.596701px;}
.x11_c00441{left:302.984150px;}
.x12_c00441{left:306.993562px;}
.x13_c00441{left:325.378518px;}
.x14_c00441{left:326.595106px;}
.x15_c00441{left:328.015253px;}
.x16_c00441{left:331.410444px;}
.x17_c00441{left:334.633053px;}
.x18_c00441{left:340.511825px;}
.x19_c00441{left:346.695139px;}
.x1a_c00441{left:352.384720px;}
.x1b_c00441{left:355.792694px;}
.x1c_c00441{left:363.695116px;}
.x1d_c00441{left:371.679253px;}
.x1e_c00441{left:378.434940px;}
.x1f_c00441{left:381.453328px;}
.x20_c00441{left:384.455783px;}
.x21_c00441{left:387.851715px;}
.x22_c00441{left:390.467224px;}
.x23_c00441{left:393.779799px;}
.x24_c00441{left:398.952070px;}
.x25_c00441{left:401.755082px;}
.x41_c00441{left:451.985828px;}
.x1_c00441{left:465.097640px;}
.x3e_c00441{left:492.459722px;}
.x40_c00441{left:676.885220px;}
.x39_c00441{left:696.904800px;}
.x38_c00441{left:733.103068px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.v1_c00441{vertical-align:23.831865pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws4_c00441{word-spacing:-37.035289pt;}
.ws3_c00441{word-spacing:-16.604696pt;}
.ws2_c00441{word-spacing:-0.049530pt;}
.ws5_c00441{word-spacing:0.000000pt;}
.ws1_c00441{word-spacing:250.196272pt;}
.ws0_c00441{word-spacing:990.527723pt;}
._5_c00441{width:1.838564pt;}
._0_c00441{width:3.456248pt;}
._6_c00441{width:8.319980pt;}
._2_c00441{width:9.244481pt;}
._1_c00441{width:12.992243pt;}
._4_c00441{width:18.155786pt;}
._3_c00441{width:23.902353pt;}
.fs8_c00441{font-size:37.310908pt;}
.fsb_c00441{font-size:37.311173pt;}
.fs2_c00441{font-size:42.079973pt;}
.fs5_c00441{font-size:42.079974pt;}
.fs1_c00441{font-size:42.079975pt;}
.fs4_c00441{font-size:42.079976pt;}
.fs3_c00441{font-size:42.079977pt;}
.fs6_c00441{font-size:42.079978pt;}
.fs9_c00441{font-size:45.894021pt;}
.fs10_c00441{font-size:49.530431pt;}
.fse_c00441{font-size:53.288186pt;}
.fs11_c00441{font-size:63.921837pt;}
.fs0_c00441{font-size:63.961814pt;}
.fsa_c00441{font-size:66.115417pt;}
.fs7_c00441{font-size:68.413814pt;}
.fsf_c00441{font-size:74.595466pt;}
.fsd_c00441{font-size:79.952268pt;}
.fsc_c00441{font-size:85.269094pt;}
.y0_c00441{bottom:0.000000pt;}
.y1_c00441{bottom:0.000007pt;}
.y56_c00441{bottom:26.805533pt;}
.y4c_c00441{bottom:53.711049pt;}
.y4b_c00441{bottom:80.694939pt;}
.y4a_c00441{bottom:107.678830pt;}
.y49_c00441{bottom:134.662720pt;}
.y48_c00441{bottom:161.646610pt;}
.y47_c00441{bottom:188.630501pt;}
.y46_c00441{bottom:215.614391pt;}
.y45_c00441{bottom:242.598282pt;}
.y44_c00441{bottom:269.582172pt;}
.y4d_c00441{bottom:297.755903pt;}
.y43_c00441{bottom:357.390356pt;}
.y10_c00441{bottom:438.944560pt;}
.y38_c00441{bottom:438.957887pt;}
.yf_c00441{bottom:439.411208pt;}
.y39_c00441{bottom:439.428585pt;}
.y22_c00441{bottom:439.733989pt;}
.y37_c00441{bottom:440.063632pt;}
.ye_c00441{bottom:440.358224pt;}
.y23_c00441{bottom:440.474249pt;}
.y21_c00441{bottom:440.492144pt;}
.y36_c00441{bottom:441.175290pt;}
.yd_c00441{bottom:441.311665pt;}
.y20_c00441{bottom:441.411480pt;}
.y3a_c00441{bottom:441.575343pt;}
.y11_c00441{bottom:441.631897pt;}
.y24_c00441{bottom:442.412085pt;}
.y35_c00441{bottom:442.636491pt;}
.yc_c00441{bottom:442.778875pt;}
.y1f_c00441{bottom:443.368235pt;}
.y25_c00441{bottom:443.647574pt;}
.y34_c00441{bottom:444.136272pt;}
.yb_c00441{bottom:444.283350pt;}
.y26_c00441{bottom:445.156323pt;}
.y12_c00441{bottom:445.431649pt;}
.y33_c00441{bottom:445.793228pt;}
.ya_c00441{bottom:445.944627pt;}
.y3b_c00441{bottom:446.106592pt;}
.y1e_c00441{bottom:446.736624pt;}
.y27_c00441{bottom:447.325975pt;}
.y13_c00441{bottom:447.669198pt;}
.y3c_c00441{bottom:449.329795pt;}
.y28_c00441{bottom:449.332771pt;}
.y32_c00441{bottom:449.927990pt;}
.y9_c00441{bottom:450.087675pt;}
.y1d_c00441{bottom:451.594856pt;}
.y29_c00441{bottom:452.236735pt;}
.y14_c00441{bottom:452.957150pt;}
.y3d_c00441{bottom:454.334697pt;}
.y1c_c00441{bottom:455.562742pt;}
.y31_c00441{bottom:455.614749pt;}
.y8_c00441{bottom:455.781928pt;}
.y15_c00441{bottom:457.175713pt;}
.y2a_c00441{bottom:459.696536pt;}
.y3e_c00441{bottom:460.249062pt;}
.y1b_c00441{bottom:461.270273pt;}
.y30_c00441{bottom:462.105976pt;}
.y7_c00441{bottom:462.186152pt;}
.y6_c00441{bottom:465.258807pt;}
.y1a_c00441{bottom:465.329988pt;}
.y2b_c00441{bottom:466.846944pt;}
.y16_c00441{bottom:467.644044pt;}
.y2f_c00441{bottom:468.468115pt;}
.y5_c00441{bottom:470.598118pt;}
.y3f_c00441{bottom:470.876600pt;}
.y19_c00441{bottom:472.234422pt;}
.y2e_c00441{bottom:472.704883pt;}
.y41_c00441{bottom:474.425294pt;}
.y54_c00441{bottom:475.041614pt;}
.y18_c00441{bottom:475.693435pt;}
.y4_c00441{bottom:477.047199pt;}
.y2d_c00441{bottom:478.188178pt;}
.y17_c00441{bottom:478.518126pt;}
.y40_c00441{bottom:478.841168pt;}
.y2c_c00441{bottom:484.463008pt;}
.y3_c00441{bottom:485.517349pt;}
.y42_c00441{bottom:513.663227pt;}
.y2_c00441{bottom:531.164232pt;}
.y55_c00441{bottom:568.435476pt;}
.y57_c00441{bottom:908.096918pt;}
.y4f_c00441{bottom:1002.298488pt;}
.y52_c00441{bottom:1004.193955pt;}
.y51_c00441{bottom:1020.184408pt;}
.y50_c00441{bottom:1022.237576pt;}
.y53_c00441{bottom:1022.819575pt;}
.y4e_c00441{bottom:1040.585280pt;}
.hb_c00441{height:28.584382pt;}
.h8_c00441{height:31.970917pt;}
.h7_c00441{height:31.970918pt;}
.h9_c00441{height:31.970920pt;}
.h5_c00441{height:32.238026pt;}
.h4_c00441{height:32.238028pt;}
.h6_c00441{height:32.238029pt;}
.hc_c00441{height:33.277647pt;}
.he_c00441{height:34.742386pt;}
.h17_c00441{height:40.499022pt;}
.h15_c00441{height:46.120377pt;}
.h16_c00441{height:48.971369pt;}
.h3_c00441{height:49.001996pt;}
.h12_c00441{height:49.619420pt;}
.h14_c00441{height:50.010498pt;}
.hd_c00441{height:50.651899pt;}
.ha_c00441{height:52.416248pt;}
.hf_c00441{height:59.558193pt;}
.h11_c00441{height:60.744985pt;}
.h10_c00441{height:64.784526pt;}
.h13_c00441{height:69.459743pt;}
.h2_c00441{height:1159.999952pt;}
.h0_c00441{height:1159.999959pt;}
.h1_c00441{height:1160.000000pt;}
.w2_c00441{width:830.999965pt;}
.w0_c00441{width:831.000000pt;}
.w1_c00441{width:831.333333pt;}
.x0_c00441{left:0.000000pt;}
.x3a_c00441{left:78.960054pt;}
.x3d_c00441{left:96.055698pt;}
.x3b_c00441{left:97.474332pt;}
.x42_c00441{left:116.100150pt;}
.x27_c00441{left:119.906064pt;}
.x26_c00441{left:121.392652pt;}
.x28_c00441{left:124.389083pt;}
.x29_c00441{left:128.698021pt;}
.x2a_c00441{left:133.464791pt;}
.x2b_c00441{left:135.910272pt;}
.x2c_c00441{left:138.584129pt;}
.x2d_c00441{left:142.002076pt;}
.x37_c00441{left:143.420132pt;}
.x2e_c00441{left:145.070170pt;}
.x2f_c00441{left:152.430191pt;}
.x30_c00441{left:159.776608pt;}
.x31_c00441{left:167.266795pt;}
.x32_c00441{left:174.717010pt;}
.x33_c00441{left:178.419115pt;}
.x34_c00441{left:182.468375pt;}
.x35_c00441{left:185.852506pt;}
.x36_c00441{left:188.150503pt;}
.x3_c00441{left:204.676373pt;}
.x2_c00441{left:206.574107pt;}
.x4_c00441{left:209.317987pt;}
.x5_c00441{left:213.616993pt;}
.x6_c00441{left:218.376513pt;}
.x7_c00441{left:220.819105pt;}
.x8_c00441{left:223.490334pt;}
.x9_c00441{left:226.905704pt;}
.x3f_c00441{left:227.972394pt;}
.xa_c00441{left:229.825509pt;}
.xb_c00441{left:233.767373pt;}
.xc_c00441{left:241.423300pt;}
.xd_c00441{left:251.942027pt;}
.xe_c00441{left:258.549026pt;}
.xf_c00441{left:261.564741pt;}
.x3c_c00441{left:262.612255pt;}
.x10_c00441{left:266.308178pt;}
.x11_c00441{left:269.319244pt;}
.x12_c00441{left:272.883167pt;}
.x13_c00441{left:289.225349pt;}
.x14_c00441{left:290.306761pt;}
.x15_c00441{left:291.569114pt;}
.x16_c00441{left:294.587062pt;}
.x17_c00441{left:297.451603pt;}
.x18_c00441{left:302.677178pt;}
.x19_c00441{left:308.173457pt;}
.x1a_c00441{left:313.230862pt;}
.x1b_c00441{left:316.260173pt;}
.x1c_c00441{left:323.284548pt;}
.x1d_c00441{left:330.381558pt;}
.x1e_c00441{left:336.386614pt;}
.x1f_c00441{left:339.069625pt;}
.x20_c00441{left:341.738474pt;}
.x21_c00441{left:344.757080pt;}
.x22_c00441{left:347.081977pt;}
.x23_c00441{left:350.026488pt;}
.x24_c00441{left:354.624063pt;}
.x25_c00441{left:357.115628pt;}
.x41_c00441{left:401.765180pt;}
.x1_c00441{left:413.420124pt;}
.x3e_c00441{left:437.741975pt;}
.x40_c00441{left:601.675751pt;}
.x39_c00441{left:619.470933pt;}
.x38_c00441{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.006348;font-style:normal;font-weight:normal;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_acc0bdec08a7c167ac06787f.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.006348;font-style:normal;font-weight:normal;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_34fc2be896da981fedf22b80.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.005371;font-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);}
.v0_c00442{vertical-align:0.000000px;}
.ls0_c00442{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00442{word-spacing:-18.680283px;}
.ws2_c00442{word-spacing:0.000000px;}
._3_c00442{width:1.274958px;}
._0_c00442{width:2.414244px;}
._2_c00442{width:4.357259px;}
._a_c00442{width:5.685942px;}
._6_c00442{width:7.848684px;}
._1_c00442{width:9.372953px;}
._f_c00442{width:10.558285px;}
._7_c00442{width:11.900766px;}
._9_c00442{width:13.762187px;}
._4_c00442{width:15.260373px;}
._b_c00442{width:19.816294px;}
._8_c00442{width:25.219301px;}
._e_c00442{width:26.886330px;}
._d_c00442{width:30.321741px;}
._5_c00442{width:34.143663px;}
._c_c00442{width:44.114257px;}
.fc1_c00442{color:rgb(0,0,0);}
.fc0_c00442{color:rgb(194,158,103);}
.fs3_c00442{font-size:71.912067px;}
.fs1_c00442{font-size:71.957041px;}
.fs2_c00442{font-size:74.340621px;}
.fs0_c00442{font-size:74.379845px;}
.y0_c00442{bottom:0.000000px;}
.y1_c00442{bottom:0.000008px;}
.y20_c00442{bottom:30.156225px;}
.y1f_c00442{bottom:198.481534px;}
.y1e_c00442{bottom:228.838411px;}
.y1d_c00442{bottom:259.195288px;}
.y1c_c00442{bottom:289.552164px;}
.y1b_c00442{bottom:319.909041px;}
.y1a_c00442{bottom:350.265918px;}
.y19_c00442{bottom:383.012861px;}
.y18_c00442{bottom:471.696322px;}
.y17_c00442{bottom:502.053199px;}
.y16_c00442{bottom:532.410075px;}
.y15_c00442{bottom:562.766952px;}
.y14_c00442{bottom:593.123829px;}
.y13_c00442{bottom:623.480706px;}
.y12_c00442{bottom:653.837583px;}
.y11_c00442{bottom:684.194459px;}
.y10_c00442{bottom:714.551336px;}
.yf_c00442{bottom:744.908213px;}
.ye_c00442{bottom:775.265090px;}
.yd_c00442{bottom:805.621966px;}
.yc_c00442{bottom:835.978843px;}
.yb_c00442{bottom:866.335720px;}
.ya_c00442{bottom:896.692597px;}
.y9_c00442{bottom:927.049473px;}
.y8_c00442{bottom:968.143337px;}
.y7_c00442{bottom:1047.955636px;}
.y6_c00442{bottom:1078.312513px;}
.y5_c00442{bottom:1108.669389px;}
.y4_c00442{bottom:1139.026266px;}
.y3_c00442{bottom:1169.383143px;}
.y2_c00442{bottom:1199.252094px;}
.h6_c00442{height:55.092790px;}
.h4_c00442{height:55.127245px;}
.h5_c00442{height:56.953337px;}
.h3_c00442{height:56.983387px;}
.h2_c00442{height:1304.999946px;}
.h0_c00442{height:1304.999953px;}
.h1_c00442{height:1305.000000px;}
.w2_c00442{width:934.874961px;}
.w0_c00442{width:934.875000px;}
.w1_c00442{width:935.250000px;}
.x0_c00442{left:0.000000px;}
.x1_c00442{left:87.850202px;}
.x2_c00442{left:451.985828px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws0_c00442{word-spacing:-16.615081pt;}
.ws1_c00442{word-spacing:-16.604696pt;}
.ws2_c00442{word-spacing:0.000000pt;}
._3_c00442{width:1.133296pt;}
._0_c00442{width:2.145994pt;}
._2_c00442{width:3.873119pt;}
._a_c00442{width:5.054170pt;}
._6_c00442{width:6.976608pt;}
._1_c00442{width:8.331513pt;}
._f_c00442{width:9.385142pt;}
._7_c00442{width:10.578459pt;}
._9_c00442{width:12.233055pt;}
._4_c00442{width:13.564776pt;}
._b_c00442{width:17.614484pt;}
._8_c00442{width:22.417157pt;}
._e_c00442{width:23.898960pt;}
._d_c00442{width:26.952659pt;}
._5_c00442{width:30.349923pt;}
._c_c00442{width:39.212673pt;}
.fs3_c00442{font-size:63.921837pt;}
.fs1_c00442{font-size:63.961814pt;}
.fs2_c00442{font-size:66.080552pt;}
.fs0_c00442{font-size:66.115417pt;}
.y0_c00442{bottom:0.000000pt;}
.y1_c00442{bottom:0.000007pt;}
.y20_c00442{bottom:26.805533pt;}
.y1f_c00442{bottom:176.428030pt;}
.y1e_c00442{bottom:203.411921pt;}
.y1d_c00442{bottom:230.395811pt;}
.y1c_c00442{bottom:257.379702pt;}
.y1b_c00442{bottom:284.363592pt;}
.y1a_c00442{bottom:311.347483pt;}
.y19_c00442{bottom:340.455877pt;}
.y18_c00442{bottom:419.285620pt;}
.y17_c00442{bottom:446.269510pt;}
.y16_c00442{bottom:473.253400pt;}
.y15_c00442{bottom:500.237291pt;}
.y14_c00442{bottom:527.221181pt;}
.y13_c00442{bottom:554.205072pt;}
.y12_c00442{bottom:581.188962pt;}
.y11_c00442{bottom:608.172853pt;}
.y10_c00442{bottom:635.156743pt;}
.yf_c00442{bottom:662.140634pt;}
.ye_c00442{bottom:689.124524pt;}
.yd_c00442{bottom:716.108415pt;}
.yc_c00442{bottom:743.092305pt;}
.yb_c00442{bottom:770.076195pt;}
.ya_c00442{bottom:797.060086pt;}
.y9_c00442{bottom:824.043976pt;}
.y8_c00442{bottom:860.571855pt;}
.y7_c00442{bottom:931.516121pt;}
.y6_c00442{bottom:958.500011pt;}
.y5_c00442{bottom:985.483902pt;}
.y4_c00442{bottom:1012.467792pt;}
.y3_c00442{bottom:1039.451683pt;}
.y2_c00442{bottom:1066.001862pt;}
.h6_c00442{height:48.971369pt;}
.h4_c00442{height:49.001996pt;}
.h5_c00442{height:50.625189pt;}
.h3_c00442{height:50.651899pt;}
.h2_c00442{height:1159.999952pt;}
.h0_c00442{height:1159.999959pt;}
.h1_c00442{height:1160.000000pt;}
.w2_c00442{width:830.999965pt;}
.w0_c00442{width:831.000000pt;}
.w1_c00442{width:831.333333pt;}
.x0_c00442{left:0.000000pt;}
.x1_c00442{left:78.089069pt;}
.x2_c00442{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c86cb7c1b39797a10b6ca33.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.006348;font-style:normal;font-weight:normal;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_0ebdf86397a3fb4d4b68efd8.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:0.957031;font-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_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);}
.v0_c00443{vertical-align:0.000000px;}
.ls0_c00443{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00443{word-spacing:0.000000px;}
._1_c00443{width:1.037793px;}
._0_c00443{width:2.529739px;}
._5_c00443{width:5.506630px;}
._4_c00443{width:12.039663px;}
._6_c00443{width:13.605451px;}
._2_c00443{width:14.651411px;}
._3_c00443{width:22.199043px;}
._7_c00443{width:27.946541px;}
.fc1_c00443{color:rgb(194,158,103);}
.fc0_c00443{color:rgb(0,0,0);}
.fs2_c00443{font-size:71.912067px;}
.fs0_c00443{font-size:71.957041px;}
.fs1_c00443{font-size:74.340621px;}
.y0_c00443{bottom:0.000000px;}
.y1_c00443{bottom:0.000008px;}
.yd_c00443{bottom:30.156225px;}
.yb_c00443{bottom:887.758186px;}
.ya_c00443{bottom:918.115062px;}
.y9_c00443{bottom:948.471939px;}
.y8_c00443{bottom:978.828816px;}
.y7_c00443{bottom:1009.185693px;}
.y6_c00443{bottom:1039.542569px;}
.y5_c00443{bottom:1069.899446px;}
.y4_c00443{bottom:1100.256323px;}
.y3_c00443{bottom:1130.613200px;}
.y2_c00443{bottom:1160.970077px;}
.yc_c00443{bottom:1193.134029px;}
.h4_c00443{height:53.287125px;}
.h5_c00443{height:55.092790px;}
.h3_c00443{height:55.127245px;}
.h2_c00443{height:1304.999946px;}
.h0_c00443{height:1304.999953px;}
.h1_c00443{height:1305.000000px;}
.w2_c00443{width:934.874961px;}
.w0_c00443{width:934.875000px;}
.w1_c00443{width:935.250000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:87.850202px;}
.x2_c00443{left:451.985828px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws0_c00443{word-spacing:-16.604696pt;}
.ws1_c00443{word-spacing:0.000000pt;}
._1_c00443{width:0.922483pt;}
._0_c00443{width:2.248657pt;}
._5_c00443{width:4.894782pt;}
._4_c00443{width:10.701922pt;}
._6_c00443{width:12.093734pt;}
._2_c00443{width:13.023476pt;}
._3_c00443{width:19.732483pt;}
._7_c00443{width:24.841369pt;}
.fs2_c00443{font-size:63.921837pt;}
.fs0_c00443{font-size:63.961814pt;}
.fs1_c00443{font-size:66.080552pt;}
.y0_c00443{bottom:0.000000pt;}
.y1_c00443{bottom:0.000007pt;}
.yd_c00443{bottom:26.805533pt;}
.yb_c00443{bottom:789.118387pt;}
.ya_c00443{bottom:816.102278pt;}
.y9_c00443{bottom:843.086168pt;}
.y8_c00443{bottom:870.070059pt;}
.y7_c00443{bottom:897.053949pt;}
.y6_c00443{bottom:924.037840pt;}
.y5_c00443{bottom:951.021730pt;}
.y4_c00443{bottom:978.005620pt;}
.y3_c00443{bottom:1004.989511pt;}
.y2_c00443{bottom:1031.973401pt;}
.yc_c00443{bottom:1060.563581pt;}
.h4_c00443{height:47.366333pt;}
.h5_c00443{height:48.971369pt;}
.h3_c00443{height:49.001996pt;}
.h2_c00443{height:1159.999952pt;}
.h0_c00443{height:1159.999959pt;}
.h1_c00443{height:1160.000000pt;}
.w2_c00443{width:830.999965pt;}
.w0_c00443{width:831.000000pt;}
.w1_c00443{width:831.333333pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:78.089069pt;}
.x2_c00443{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff498bf9b350a7f45eeadb80.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:0.769531;font-style:normal;font-weight:normal;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_6af50d622657189b80877400.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00444;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:0.734863;font-style:normal;font-weight: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_c00444;src:url('chunks/assets/font_608bbdaf313d16f590afb3f5.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;line-height:0.769531;font-style:normal;font-weight: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_c00444;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff6_c00444{font-family:ff6_c00444;line-height:1.006348;font-style:normal;font-weight: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_c00444;src:url('chunks/assets/font_7479acfc9e6e539872309d5d.woff2')format("woff");}.ff7_c00444{font-family:ff7_c00444;line-height:1.171387;font-style:normal;font-weight: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_c00444;src:url('chunks/assets/font_2ca0011d1b413dd6cad196c5.woff2')format("woff");}.ff8_c00444{font-family:ff8_c00444;line-height:0.769531;font-style:normal;font-weight: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_c00444;src:url('chunks/assets/font_fe9e8c692b65bbc953ab3561.woff2')format("woff");}.ff9_c00444{font-family:ff9_c00444;line-height:1.000000;font-style:normal;font-weight: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_c00444;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ffa_c00444{font-family:ffa_c00444;line-height:0.940000;font-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_c00444{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00444{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00444{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00444{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00444{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00444{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00444{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00444{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00444{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00444{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00444{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00444{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00444{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00444{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00444{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00444{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00444{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00444{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00444{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00444{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00444{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00444{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00444{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00444{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00444{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00444{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00444{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00444{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00444{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00444{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00444{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00444{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00444{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00444{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00444{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00444{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00444{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00444{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00444{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00444{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00444{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00444{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00444{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00444{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00444{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00444{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00444{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00444{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00444{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00444{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00444{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00444{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00444{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00444{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00444{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00444{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00444{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00444{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00444{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00444{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00444{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00444{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00444{vertical-align:0.000000px;}
.v1_c00444{vertical-align:25.486970px;}
.ls0_c00444{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00444{word-spacing:-41.664701px;}
.ws3_c00444{word-spacing:-18.680283px;}
.ws2_c00444{word-spacing:-0.055722px;}
.ws5_c00444{word-spacing:0.000000px;}
.ws1_c00444{word-spacing:281.470806px;}
.ws0_c00444{word-spacing:1109.898202px;}
._1_c00444{width:1.502651px;}
._0_c00444{width:6.848976px;}
._2_c00444{width:8.242517px;}
._3_c00444{width:9.736515px;}
.fc3_c00444{color:rgb(194,158,103);}
.fc2_c00444{color:rgb(9,71,81);}
.fc1_c00444{color:rgb(255,255,255);}
.fc0_c00444{color:rgb(0,0,0);}
.fs7_c00444{font-size:41.974772px;}
.fsa_c00444{font-size:41.975069px;}
.fs2_c00444{font-size:47.339969px;}
.fs5_c00444{font-size:47.339970px;}
.fs1_c00444{font-size:47.339972px;}
.fs4_c00444{font-size:47.339973px;}
.fs3_c00444{font-size:47.339974px;}
.fs6_c00444{font-size:47.339975px;}
.fs8_c00444{font-size:51.630774px;}
.fsf_c00444{font-size:55.721735px;}
.fsd_c00444{font-size:59.949210px;}
.fs10_c00444{font-size:71.912067px;}
.fs0_c00444{font-size:71.957041px;}
.fs9_c00444{font-size:74.379845px;}
.fse_c00444{font-size:76.965540px;}
.fsc_c00444{font-size:89.946302px;}
.fsb_c00444{font-size:95.927731px;}
.y0_c00444{bottom:0.000000px;}
.y1_c00444{bottom:0.000008px;}
.y51_c00444{bottom:30.156225px;}
.y48_c00444{bottom:176.908341px;}
.y47_c00444{bottom:207.265218px;}
.y46_c00444{bottom:237.622095px;}
.y45_c00444{bottom:267.978971px;}
.y44_c00444{bottom:298.335848px;}
.y49_c00444{bottom:330.031259px;}
.y43_c00444{bottom:402.064151px;}
.y10_c00444{bottom:493.812629px;}
.y38_c00444{bottom:493.827623px;}
.yf_c00444{bottom:494.337609px;}
.y39_c00444{bottom:494.357158px;}
.y22_c00444{bottom:494.700737px;}
.y37_c00444{bottom:495.071586px;}
.ye_c00444{bottom:495.403002px;}
.y23_c00444{bottom:495.533530px;}
.y21_c00444{bottom:495.553663px;}
.y36_c00444{bottom:496.322201px;}
.yd_c00444{bottom:496.475623px;}
.y20_c00444{bottom:496.587915px;}
.y3a_c00444{bottom:496.772260px;}
.y11_c00444{bottom:496.835884px;}
.y24_c00444{bottom:497.713596px;}
.y35_c00444{bottom:497.966053px;}
.yc_c00444{bottom:498.126234px;}
.y1f_c00444{bottom:498.789265px;}
.y25_c00444{bottom:499.103521px;}
.y34_c00444{bottom:499.653306px;}
.yb_c00444{bottom:499.818769px;}
.y26_c00444{bottom:500.800864px;}
.y12_c00444{bottom:501.110605px;}
.y33_c00444{bottom:501.517382px;}
.ya_c00444{bottom:501.687706px;}
.y3b_c00444{bottom:501.869915px;}
.y1e_c00444{bottom:502.578702px;}
.y27_c00444{bottom:503.241722px;}
.y13_c00444{bottom:503.627848px;}
.y3c_c00444{bottom:505.496019px;}
.y28_c00444{bottom:505.499367px;}
.y32_c00444{bottom:506.168989px;}
.y9_c00444{bottom:506.348634px;}
.y1d_c00444{bottom:508.044213px;}
.y29_c00444{bottom:508.766327px;}
.y14_c00444{bottom:509.576794px;}
.y3d_c00444{bottom:511.126534px;}
.y1c_c00444{bottom:512.508085px;}
.y31_c00444{bottom:512.566592px;}
.y8_c00444{bottom:512.754669px;}
.y15_c00444{bottom:514.322677px;}
.y2a_c00444{bottom:517.158603px;}
.y3e_c00444{bottom:517.780195px;}
.y1b_c00444{bottom:518.929057px;}
.y30_c00444{bottom:519.869222px;}
.y7_c00444{bottom:519.959421px;}
.y6_c00444{bottom:523.416158px;}
.y1a_c00444{bottom:523.496236px;}
.y2b_c00444{bottom:525.202812px;}
.y16_c00444{bottom:526.099549px;}
.y2f_c00444{bottom:527.026630px;}
.y5_c00444{bottom:529.422883px;}
.y3f_c00444{bottom:529.736175px;}
.y19_c00444{bottom:531.263725px;}
.y2e_c00444{bottom:531.792993px;}
.y41_c00444{bottom:534.059426px;}
.y4f_c00444{bottom:534.421816px;}
.y18_c00444{bottom:535.155114px;}
.y4_c00444{bottom:536.678099px;}
.y2d_c00444{bottom:537.961701px;}
.y17_c00444{bottom:538.332892px;}
.y40_c00444{bottom:538.696314px;}
.y2c_c00444{bottom:545.020884px;}
.y3_c00444{bottom:546.207017px;}
.y42_c00444{bottom:577.871130px;}
.y2_c00444{bottom:597.559761px;}
.y50_c00444{bottom:639.489911px;}
.y52_c00444{bottom:1021.609033px;}
.y4b_c00444{bottom:1127.585799px;}
.y4e_c00444{bottom:1129.718199px;}
.y4d_c00444{bottom:1147.707459px;}
.y4c_c00444{bottom:1150.017273px;}
.y4a_c00444{bottom:1170.658440px;}
.hb_c00444{height:32.157430px;}
.h8_c00444{height:35.967282px;}
.h7_c00444{height:35.967283px;}
.h9_c00444{height:35.967285px;}
.h5_c00444{height:36.267779px;}
.h4_c00444{height:36.267781px;}
.h6_c00444{height:36.267783px;}
.hc_c00444{height:37.437353px;}
.he_c00444{height:39.085184px;}
.h16_c00444{height:45.561399px;}
.h14_c00444{height:51.885424px;}
.h15_c00444{height:55.092790px;}
.h3_c00444{height:55.127245px;}
.h12_c00444{height:55.821847px;}
.h13_c00444{height:56.261810px;}
.hd_c00444{height:56.983387px;}
.ha_c00444{height:57.644400px;}
.hf_c00444{height:67.002968px;}
.h11_c00444{height:68.338108px;}
.h10_c00444{height:89.323331px;}
.h2_c00444{height:1304.999946px;}
.h0_c00444{height:1304.999953px;}
.h1_c00444{height:1305.000000px;}
.w2_c00444{width:934.874961px;}
.w0_c00444{width:934.875000px;}
.w1_c00444{width:935.250000px;}
.x0_c00444{left:0.000000px;}
.x3b_c00444{left:88.454210px;}
.x3a_c00444{left:90.413924px;}
.x3e_c00444{left:108.062661px;}
.x3c_c00444{left:109.658623px;}
.x42_c00444{left:130.612669px;}
.x27_c00444{left:134.894322px;}
.x26_c00444{left:136.566734px;}
.x28_c00444{left:139.937719px;}
.x29_c00444{left:144.785273px;}
.x2a_c00444{left:150.147890px;}
.x2b_c00444{left:152.899057px;}
.x2c_c00444{left:155.907145px;}
.x2d_c00444{left:159.752336px;}
.x37_c00444{left:161.347648px;}
.x2e_c00444{left:163.203941px;}
.x2f_c00444{left:171.483965px;}
.x30_c00444{left:179.748684px;}
.x31_c00444{left:188.175145px;}
.x32_c00444{left:196.556636px;}
.x33_c00444{left:200.721504px;}
.x34_c00444{left:205.276922px;}
.x35_c00444{left:209.084069px;}
.x36_c00444{left:211.669316px;}
.x3_c00444{left:230.260919px;}
.x2_c00444{left:232.395871px;}
.x4_c00444{left:235.482735px;}
.x5_c00444{left:240.319117px;}
.x6_c00444{left:245.673577px;}
.x7_c00444{left:248.421493px;}
.x8_c00444{left:251.426626px;}
.x9_c00444{left:255.268917px;}
.x3f_c00444{left:256.468943px;}
.xa_c00444{left:258.553698px;}
.xb_c00444{left:262.988294px;}
.xc_c00444{left:271.601212px;}
.xd_c00444{left:283.434780px;}
.xe_c00444{left:290.867654px;}
.xf_c00444{left:294.260334px;}
.x3d_c00444{left:295.438786px;}
.x10_c00444{left:299.596701px;}
.x11_c00444{left:302.984150px;}
.x12_c00444{left:306.993562px;}
.x13_c00444{left:325.378518px;}
.x14_c00444{left:326.595106px;}
.x15_c00444{left:328.015253px;}
.x16_c00444{left:331.410444px;}
.x17_c00444{left:334.633053px;}
.x18_c00444{left:340.511825px;}
.x19_c00444{left:346.695139px;}
.x1a_c00444{left:352.384720px;}
.x1b_c00444{left:355.792694px;}
.x1c_c00444{left:363.695116px;}
.x1d_c00444{left:371.679253px;}
.x1e_c00444{left:378.434940px;}
.x1f_c00444{left:381.453328px;}
.x20_c00444{left:384.455783px;}
.x21_c00444{left:387.851715px;}
.x22_c00444{left:390.467224px;}
.x23_c00444{left:393.779799px;}
.x24_c00444{left:398.952070px;}
.x25_c00444{left:401.755082px;}
.x41_c00444{left:451.985828px;}
.x1_c00444{left:465.097640px;}
.x40_c00444{left:676.474352px;}
.x39_c00444{left:696.904800px;}
.x38_c00444{left:733.103068px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.v1_c00444{vertical-align:22.655085pt;}
.ls0_c00444{letter-spacing:0.000000pt;}
.ws4_c00444{word-spacing:-37.035289pt;}
.ws3_c00444{word-spacing:-16.604696pt;}
.ws2_c00444{word-spacing:-0.049530pt;}
.ws5_c00444{word-spacing:0.000000pt;}
.ws1_c00444{word-spacing:250.196272pt;}
.ws0_c00444{word-spacing:986.576179pt;}
._1_c00444{width:1.335689pt;}
._0_c00444{width:6.087978pt;}
._2_c00444{width:7.326682pt;}
._3_c00444{width:8.654680pt;}
.fs7_c00444{font-size:37.310908pt;}
.fsa_c00444{font-size:37.311173pt;}
.fs2_c00444{font-size:42.079973pt;}
.fs5_c00444{font-size:42.079974pt;}
.fs1_c00444{font-size:42.079975pt;}
.fs4_c00444{font-size:42.079976pt;}
.fs3_c00444{font-size:42.079977pt;}
.fs6_c00444{font-size:42.079978pt;}
.fs8_c00444{font-size:45.894021pt;}
.fsf_c00444{font-size:49.530431pt;}
.fsd_c00444{font-size:53.288186pt;}
.fs10_c00444{font-size:63.921837pt;}
.fs0_c00444{font-size:63.961814pt;}
.fs9_c00444{font-size:66.115417pt;}
.fse_c00444{font-size:68.413814pt;}
.fsc_c00444{font-size:79.952268pt;}
.fsb_c00444{font-size:85.269094pt;}
.y0_c00444{bottom:0.000000pt;}
.y1_c00444{bottom:0.000007pt;}
.y51_c00444{bottom:26.805533pt;}
.y48_c00444{bottom:157.251859pt;}
.y47_c00444{bottom:184.235749pt;}
.y46_c00444{bottom:211.219640pt;}
.y45_c00444{bottom:238.203530pt;}
.y44_c00444{bottom:265.187421pt;}
.y49_c00444{bottom:293.361119pt;}
.y43_c00444{bottom:357.390356pt;}
.y10_c00444{bottom:438.944560pt;}
.y38_c00444{bottom:438.957887pt;}
.yf_c00444{bottom:439.411208pt;}
.y39_c00444{bottom:439.428585pt;}
.y22_c00444{bottom:439.733989pt;}
.y37_c00444{bottom:440.063632pt;}
.ye_c00444{bottom:440.358224pt;}
.y23_c00444{bottom:440.474249pt;}
.y21_c00444{bottom:440.492144pt;}
.y36_c00444{bottom:441.175290pt;}
.yd_c00444{bottom:441.311665pt;}
.y20_c00444{bottom:441.411480pt;}
.y3a_c00444{bottom:441.575343pt;}
.y11_c00444{bottom:441.631897pt;}
.y24_c00444{bottom:442.412085pt;}
.y35_c00444{bottom:442.636491pt;}
.yc_c00444{bottom:442.778875pt;}
.y1f_c00444{bottom:443.368235pt;}
.y25_c00444{bottom:443.647574pt;}
.y34_c00444{bottom:444.136272pt;}
.yb_c00444{bottom:444.283350pt;}
.y26_c00444{bottom:445.156323pt;}
.y12_c00444{bottom:445.431649pt;}
.y33_c00444{bottom:445.793228pt;}
.ya_c00444{bottom:445.944627pt;}
.y3b_c00444{bottom:446.106592pt;}
.y1e_c00444{bottom:446.736624pt;}
.y27_c00444{bottom:447.325975pt;}
.y13_c00444{bottom:447.669198pt;}
.y3c_c00444{bottom:449.329795pt;}
.y28_c00444{bottom:449.332771pt;}
.y32_c00444{bottom:449.927990pt;}
.y9_c00444{bottom:450.087675pt;}
.y1d_c00444{bottom:451.594856pt;}
.y29_c00444{bottom:452.236735pt;}
.y14_c00444{bottom:452.957150pt;}
.y3d_c00444{bottom:454.334697pt;}
.y1c_c00444{bottom:455.562742pt;}
.y31_c00444{bottom:455.614749pt;}
.y8_c00444{bottom:455.781928pt;}
.y15_c00444{bottom:457.175713pt;}
.y2a_c00444{bottom:459.696536pt;}
.y3e_c00444{bottom:460.249062pt;}
.y1b_c00444{bottom:461.270273pt;}
.y30_c00444{bottom:462.105976pt;}
.y7_c00444{bottom:462.186152pt;}
.y6_c00444{bottom:465.258807pt;}
.y1a_c00444{bottom:465.329988pt;}
.y2b_c00444{bottom:466.846944pt;}
.y16_c00444{bottom:467.644044pt;}
.y2f_c00444{bottom:468.468115pt;}
.y5_c00444{bottom:470.598118pt;}
.y3f_c00444{bottom:470.876600pt;}
.y19_c00444{bottom:472.234422pt;}
.y2e_c00444{bottom:472.704883pt;}
.y41_c00444{bottom:474.719489pt;}
.y4f_c00444{bottom:475.041614pt;}
.y18_c00444{bottom:475.693435pt;}
.y4_c00444{bottom:477.047199pt;}
.y2d_c00444{bottom:478.188178pt;}
.y17_c00444{bottom:478.518126pt;}
.y40_c00444{bottom:478.841168pt;}
.y2c_c00444{bottom:484.463008pt;}
.y3_c00444{bottom:485.517349pt;}
.y42_c00444{bottom:513.663227pt;}
.y2_c00444{bottom:531.164232pt;}
.y50_c00444{bottom:568.435476pt;}
.y52_c00444{bottom:908.096918pt;}
.y4b_c00444{bottom:1002.298488pt;}
.y4e_c00444{bottom:1004.193955pt;}
.y4d_c00444{bottom:1020.184408pt;}
.y4c_c00444{bottom:1022.237576pt;}
.y4a_c00444{bottom:1040.585280pt;}
.hb_c00444{height:28.584382pt;}
.h8_c00444{height:31.970917pt;}
.h7_c00444{height:31.970918pt;}
.h9_c00444{height:31.970920pt;}
.h5_c00444{height:32.238026pt;}
.h4_c00444{height:32.238028pt;}
.h6_c00444{height:32.238029pt;}
.hc_c00444{height:33.277647pt;}
.he_c00444{height:34.742386pt;}
.h16_c00444{height:40.499022pt;}
.h14_c00444{height:46.120377pt;}
.h15_c00444{height:48.971369pt;}
.h3_c00444{height:49.001996pt;}
.h12_c00444{height:49.619420pt;}
.h13_c00444{height:50.010498pt;}
.hd_c00444{height:50.651899pt;}
.ha_c00444{height:51.239467pt;}
.hf_c00444{height:59.558193pt;}
.h11_c00444{height:60.744985pt;}
.h10_c00444{height:79.398517pt;}
.h2_c00444{height:1159.999952pt;}
.h0_c00444{height:1159.999959pt;}
.h1_c00444{height:1160.000000pt;}
.w2_c00444{width:830.999965pt;}
.w0_c00444{width:831.000000pt;}
.w1_c00444{width:831.333333pt;}
.x0_c00444{left:0.000000pt;}
.x3b_c00444{left:78.625965pt;}
.x3a_c00444{left:80.367933pt;}
.x3e_c00444{left:96.055698pt;}
.x3c_c00444{left:97.474332pt;}
.x42_c00444{left:116.100150pt;}
.x27_c00444{left:119.906064pt;}
.x26_c00444{left:121.392652pt;}
.x28_c00444{left:124.389083pt;}
.x29_c00444{left:128.698021pt;}
.x2a_c00444{left:133.464791pt;}
.x2b_c00444{left:135.910272pt;}
.x2c_c00444{left:138.584129pt;}
.x2d_c00444{left:142.002076pt;}
.x37_c00444{left:143.420132pt;}
.x2e_c00444{left:145.070170pt;}
.x2f_c00444{left:152.430191pt;}
.x30_c00444{left:159.776608pt;}
.x31_c00444{left:167.266795pt;}
.x32_c00444{left:174.717010pt;}
.x33_c00444{left:178.419115pt;}
.x34_c00444{left:182.468375pt;}
.x35_c00444{left:185.852506pt;}
.x36_c00444{left:188.150503pt;}
.x3_c00444{left:204.676373pt;}
.x2_c00444{left:206.574107pt;}
.x4_c00444{left:209.317987pt;}
.x5_c00444{left:213.616993pt;}
.x6_c00444{left:218.376513pt;}
.x7_c00444{left:220.819105pt;}
.x8_c00444{left:223.490334pt;}
.x9_c00444{left:226.905704pt;}
.x3f_c00444{left:227.972394pt;}
.xa_c00444{left:229.825509pt;}
.xb_c00444{left:233.767373pt;}
.xc_c00444{left:241.423300pt;}
.xd_c00444{left:251.942027pt;}
.xe_c00444{left:258.549026pt;}
.xf_c00444{left:261.564741pt;}
.x3d_c00444{left:262.612255pt;}
.x10_c00444{left:266.308178pt;}
.x11_c00444{left:269.319244pt;}
.x12_c00444{left:272.883167pt;}
.x13_c00444{left:289.225349pt;}
.x14_c00444{left:290.306761pt;}
.x15_c00444{left:291.569114pt;}
.x16_c00444{left:294.587062pt;}
.x17_c00444{left:297.451603pt;}
.x18_c00444{left:302.677178pt;}
.x19_c00444{left:308.173457pt;}
.x1a_c00444{left:313.230862pt;}
.x1b_c00444{left:316.260173pt;}
.x1c_c00444{left:323.284548pt;}
.x1d_c00444{left:330.381558pt;}
.x1e_c00444{left:336.386614pt;}
.x1f_c00444{left:339.069625pt;}
.x20_c00444{left:341.738474pt;}
.x21_c00444{left:344.757080pt;}
.x22_c00444{left:347.081977pt;}
.x23_c00444{left:350.026488pt;}
.x24_c00444{left:354.624063pt;}
.x25_c00444{left:357.115628pt;}
.x41_c00444{left:401.765180pt;}
.x1_c00444{left:413.420124pt;}
.x40_c00444{left:601.310535pt;}
.x39_c00444{left:619.470933pt;}
.x38_c00444{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.006348;font-style:normal;font-weight:normal;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_7a3f5b6e5fd7ca5afba828a0.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.006348;font-style:normal;font-weight:normal;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_0a9d9f8729f5bf0c90b4f439.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:0.773926;font-style:normal;font-weight:normal;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_c03ff7b81fcdf8f61134c76e.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:0.727051;font-style:normal;font-weight: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_96ee510ece36babb992d4f0a.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;line-height:0.862793;font-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_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);}
.v0_c00445{vertical-align:0.000000px;}
.ls0_c00445{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00445{word-spacing:-18.680283px;}
.ws2_c00445{word-spacing:0.000000px;}
._2_c00445{width:1.648130px;}
._0_c00445{width:3.685977px;}
._6_c00445{width:5.062703px;}
._c_c00445{width:7.041147px;}
._9_c00445{width:8.383260px;}
._5_c00445{width:12.039663px;}
._8_c00445{width:13.614919px;}
._3_c00445{width:14.774381px;}
._7_c00445{width:16.634905px;}
._a_c00445{width:17.655198px;}
._4_c00445{width:22.199043px;}
._1_c00445{width:27.224760px;}
._b_c00445{width:48.409338px;}
.fc2_c00445{color:rgb(255,255,255);}
.fc1_c00445{color:rgb(0,0,0);}
.fc0_c00445{color:rgb(194,158,103);}
.fs3_c00445{font-size:59.949210px;}
.fs4_c00445{font-size:71.912067px;}
.fs1_c00445{font-size:71.957041px;}
.fs2_c00445{font-size:74.340621px;}
.fs0_c00445{font-size:74.379845px;}
.y0_c00445{bottom:0.000000px;}
.y1_c00445{bottom:0.000008px;}
.y1c_c00445{bottom:30.156225px;}
.y1b_c00445{bottom:361.420834px;}
.yd_c00445{bottom:436.041312px;}
.yc_c00445{bottom:466.398189px;}
.yb_c00445{bottom:496.755066px;}
.ya_c00445{bottom:527.111942px;}
.y9_c00445{bottom:557.468819px;}
.y8_c00445{bottom:587.825696px;}
.y1a_c00445{bottom:613.899896px;}
.y19_c00445{bottom:649.143311px;}
.y18_c00445{bottom:679.500188px;}
.y17_c00445{bottom:709.857065px;}
.y16_c00445{bottom:740.213942px;}
.y15_c00445{bottom:774.332939px;}
.y14_c00445{bottom:812.949286px;}
.y13_c00445{bottom:843.306163px;}
.y12_c00445{bottom:873.663040px;}
.y11_c00445{bottom:904.019917px;}
.y10_c00445{bottom:934.376793px;}
.yf_c00445{bottom:964.733670px;}
.ye_c00445{bottom:995.090547px;}
.y7_c00445{bottom:1027.739923px;}
.y6_c00445{bottom:1077.177174px;}
.y5_c00445{bottom:1107.534050px;}
.y4_c00445{bottom:1137.890927px;}
.y3_c00445{bottom:1168.247804px;}
.y2_c00445{bottom:1204.539346px;}
.h6_c00445{height:43.995929px;}
.h7_c00445{height:55.092790px;}
.h4_c00445{height:55.127245px;}
.h5_c00445{height:56.953337px;}
.h3_c00445{height:56.983387px;}
.h2_c00445{height:1304.999946px;}
.h0_c00445{height:1304.999953px;}
.h1_c00445{height:1305.000000px;}
.w2_c00445{width:934.874961px;}
.w0_c00445{width:934.875000px;}
.w1_c00445{width:935.250000px;}
.x0_c00445{left:0.000000px;}
.x1_c00445{left:87.850202px;}
.x2_c00445{left:95.387385px;}
.x3_c00445{left:451.985828px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ws0_c00445{word-spacing:-16.615081pt;}
.ws1_c00445{word-spacing:-16.604696pt;}
.ws2_c00445{word-spacing:0.000000pt;}
._2_c00445{width:1.465004pt;}
._0_c00445{width:3.276424pt;}
._6_c00445{width:4.500180pt;}
._c_c00445{width:6.258797pt;}
._9_c00445{width:7.451786pt;}
._5_c00445{width:10.701922pt;}
._8_c00445{width:12.102151pt;}
._3_c00445{width:13.132783pt;}
._7_c00445{width:14.786582pt;}
._a_c00445{width:15.693509pt;}
._4_c00445{width:19.732483pt;}
._1_c00445{width:24.199787pt;}
._b_c00445{width:43.030523pt;}
.fs3_c00445{font-size:53.288186pt;}
.fs4_c00445{font-size:63.921837pt;}
.fs1_c00445{font-size:63.961814pt;}
.fs2_c00445{font-size:66.080552pt;}
.fs0_c00445{font-size:66.115417pt;}
.y0_c00445{bottom:0.000000pt;}
.y1_c00445{bottom:0.000007pt;}
.y1c_c00445{bottom:26.805533pt;}
.y1b_c00445{bottom:321.262963pt;}
.yd_c00445{bottom:387.592277pt;}
.yc_c00445{bottom:414.576168pt;}
.yb_c00445{bottom:441.560058pt;}
.ya_c00445{bottom:468.543949pt;}
.y9_c00445{bottom:495.527839pt;}
.y8_c00445{bottom:522.511730pt;}
.y1a_c00445{bottom:545.688796pt;}
.y19_c00445{bottom:577.016277pt;}
.y18_c00445{bottom:604.000167pt;}
.y17_c00445{bottom:630.984058pt;}
.y16_c00445{bottom:657.967948pt;}
.y15_c00445{bottom:688.295945pt;}
.y14_c00445{bottom:722.621588pt;}
.y13_c00445{bottom:749.605478pt;}
.y12_c00445{bottom:776.589369pt;}
.y11_c00445{bottom:803.573259pt;}
.y10_c00445{bottom:830.557150pt;}
.yf_c00445{bottom:857.541040pt;}
.ye_c00445{bottom:884.524931pt;}
.y7_c00445{bottom:913.546598pt;}
.y6_c00445{bottom:957.490821pt;}
.y5_c00445{bottom:984.474711pt;}
.y4_c00445{bottom:1011.458602pt;}
.y3_c00445{bottom:1038.442492pt;}
.y2_c00445{bottom:1070.701641pt;}
.h6_c00445{height:39.107492pt;}
.h7_c00445{height:48.971369pt;}
.h4_c00445{height:49.001996pt;}
.h5_c00445{height:50.625189pt;}
.h3_c00445{height:50.651899pt;}
.h2_c00445{height:1159.999952pt;}
.h0_c00445{height:1159.999959pt;}
.h1_c00445{height:1160.000000pt;}
.w2_c00445{width:830.999965pt;}
.w0_c00445{width:831.000000pt;}
.w1_c00445{width:831.333333pt;}
.x0_c00445{left:0.000000pt;}
.x1_c00445{left:78.089069pt;}
.x2_c00445{left:84.788787pt;}
.x3_c00445{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bbb03cdcae6b75bc784047db.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.000000;font-style:normal;font-weight:normal;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_c249dc1f8a0225d32873db4b.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.171387;font-style:normal;font-weight:normal;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_7f75682a24f9cb4ce8254d5c.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.171387;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:1.006348;font-style:normal;font-weight: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_4e29db64d0634d77a5f71e51.woff2')format("woff");}.ff5_c00446{font-family:ff5_c00446;line-height:1.000000;font-style:normal;font-weight: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_c00446;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff6_c00446{font-family:ff6_c00446;line-height:0.769531;font-style:normal;font-weight: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_c00446;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff7_c00446{font-family:ff7_c00446;line-height:0.743000;font-style:normal;font-weight: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_c00446;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00446{font-family:ff8_c00446;line-height:0.734863;font-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_c00446{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00446{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00446{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00446{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00446{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00446{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00446{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00446{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00446{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00446{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00446{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00446{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00446{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00446{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00446{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00446{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00446{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00446{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00446{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00446{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00446{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00446{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00446{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00446{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00446{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00446{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00446{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00446{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00446{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00446{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00446{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00446{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00446{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00446{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00446{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00446{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00446{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00446{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00446{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00446{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00446{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00446{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00446{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00446{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00446{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00446{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00446{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00446{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00446{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00446{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00446{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00446{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00446{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00446{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00446{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00446{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00446{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00446{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00446{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00446{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00446{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00446{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00446{vertical-align:0.000000px;}
.v1_c00446{vertical-align:26.810849px;}
.ls0_c00446{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00446{word-spacing:-18.680283px;}
.ws3_c00446{word-spacing:0.000000px;}
.ws1_c00446{word-spacing:281.470806px;}
.ws0_c00446{word-spacing:1114.343689px;}
._1_c00446{width:3.642949px;}
._0_c00446{width:4.712793px;}
._2_c00446{width:10.687505px;}
.fc3_c00446{color:rgb(9,71,81);}
.fc2_c00446{color:rgb(194,158,103);}
.fc1_c00446{color:rgb(0,0,0);}
.fc0_c00446{color:rgb(255,255,255);}
.fsd_c00446{font-size:41.974772px;}
.fs3_c00446{font-size:41.975069px;}
.fs7_c00446{font-size:47.339969px;}
.fsa_c00446{font-size:47.339970px;}
.fs6_c00446{font-size:47.339972px;}
.fs9_c00446{font-size:47.339973px;}
.fs8_c00446{font-size:47.339974px;}
.fsb_c00446{font-size:47.339975px;}
.fse_c00446{font-size:51.630774px;}
.fs0_c00446{font-size:59.949210px;}
.fsf_c00446{font-size:71.912067px;}
.fs1_c00446{font-size:71.957041px;}
.fs2_c00446{font-size:74.379845px;}
.fsc_c00446{font-size:76.965540px;}
.fs5_c00446{font-size:89.946302px;}
.fs4_c00446{font-size:95.927731px;}
.y0_c00446{bottom:0.000000px;}
.y1_c00446{bottom:0.000008px;}
.y50_c00446{bottom:30.156225px;}
.y6_c00446{bottom:210.274062px;}
.y5_c00446{bottom:240.630938px;}
.y4_c00446{bottom:270.987815px;}
.y3_c00446{bottom:301.344692px;}
.y7_c00446{bottom:337.901615px;}
.y4f_c00446{bottom:402.064151px;}
.y1b_c00446{bottom:493.812629px;}
.y43_c00446{bottom:493.827623px;}
.y1a_c00446{bottom:494.337609px;}
.y44_c00446{bottom:494.357158px;}
.y2d_c00446{bottom:494.700737px;}
.y42_c00446{bottom:495.071586px;}
.y19_c00446{bottom:495.403002px;}
.y2e_c00446{bottom:495.533530px;}
.y2c_c00446{bottom:495.553663px;}
.y41_c00446{bottom:496.322201px;}
.y18_c00446{bottom:496.475623px;}
.y2b_c00446{bottom:496.587915px;}
.y45_c00446{bottom:496.772260px;}
.y1c_c00446{bottom:496.835884px;}
.y2f_c00446{bottom:497.713596px;}
.y40_c00446{bottom:497.966053px;}
.y17_c00446{bottom:498.126234px;}
.y2a_c00446{bottom:498.789265px;}
.y30_c00446{bottom:499.103521px;}
.y3f_c00446{bottom:499.653306px;}
.y16_c00446{bottom:499.818769px;}
.y31_c00446{bottom:500.800864px;}
.y1d_c00446{bottom:501.110605px;}
.y3e_c00446{bottom:501.517382px;}
.y15_c00446{bottom:501.687706px;}
.y46_c00446{bottom:501.869915px;}
.y29_c00446{bottom:502.578702px;}
.y32_c00446{bottom:503.241722px;}
.y1e_c00446{bottom:503.627848px;}
.y47_c00446{bottom:505.496019px;}
.y33_c00446{bottom:505.499367px;}
.y3d_c00446{bottom:506.168989px;}
.y14_c00446{bottom:506.348634px;}
.y28_c00446{bottom:508.044213px;}
.y34_c00446{bottom:508.766327px;}
.y1f_c00446{bottom:509.576794px;}
.y48_c00446{bottom:511.126534px;}
.y27_c00446{bottom:512.508085px;}
.y3c_c00446{bottom:512.566592px;}
.y13_c00446{bottom:512.754669px;}
.y20_c00446{bottom:514.322677px;}
.y35_c00446{bottom:517.158603px;}
.y49_c00446{bottom:517.780195px;}
.y26_c00446{bottom:518.929057px;}
.y3b_c00446{bottom:519.869222px;}
.y12_c00446{bottom:519.959421px;}
.y11_c00446{bottom:523.416158px;}
.y25_c00446{bottom:523.496236px;}
.y36_c00446{bottom:525.202812px;}
.y21_c00446{bottom:526.099549px;}
.y3a_c00446{bottom:527.026630px;}
.y10_c00446{bottom:529.422883px;}
.y4a_c00446{bottom:529.736175px;}
.y24_c00446{bottom:531.263725px;}
.y39_c00446{bottom:531.792993px;}
.y4c_c00446{bottom:533.728456px;}
.y4e_c00446{bottom:534.421816px;}
.y23_c00446{bottom:535.155114px;}
.yf_c00446{bottom:536.678099px;}
.y38_c00446{bottom:537.961701px;}
.y22_c00446{bottom:538.332892px;}
.y4b_c00446{bottom:538.696314px;}
.y37_c00446{bottom:545.020884px;}
.ye_c00446{bottom:546.207017px;}
.y4d_c00446{bottom:577.871130px;}
.yb_c00446{bottom:597.559761px;}
.y2_c00446{bottom:638.470702px;}
.y9_c00446{bottom:1127.585799px;}
.yd_c00446{bottom:1129.718199px;}
.yc_c00446{bottom:1147.707459px;}
.ya_c00446{bottom:1150.017273px;}
.y8_c00446{bottom:1170.658440px;}
.hd_c00446{height:35.967282px;}
.hc_c00446{height:35.967283px;}
.he_c00446{height:35.967285px;}
.h12_c00446{height:37.437353px;}
.h10_c00446{height:39.084907px;}
.h6_c00446{height:39.085184px;}
.ha_c00446{height:44.080723px;}
.h9_c00446{height:44.080726px;}
.hb_c00446{height:44.080728px;}
.h3_c00446{height:55.821847px;}
.h11_c00446{height:56.261810px;}
.h5_c00446{height:56.983387px;}
.hf_c00446{height:65.895756px;}
.h13_c00446{height:66.961090px;}
.h4_c00446{height:67.002968px;}
.h8_c00446{height:68.338108px;}
.h7_c00446{height:89.323331px;}
.h2_c00446{height:1304.999946px;}
.h0_c00446{height:1304.999953px;}
.h1_c00446{height:1305.000000px;}
.w2_c00446{width:934.874961px;}
.w0_c00446{width:934.875000px;}
.w1_c00446{width:935.250000px;}
.x0_c00446{left:0.000000px;}
.x3_c00446{left:88.454210px;}
.x2_c00446{left:90.413924px;}
.x7_c00446{left:108.062661px;}
.x4_c00446{left:109.658623px;}
.x2d_c00446{left:134.894322px;}
.x2c_c00446{left:136.566734px;}
.x2e_c00446{left:139.937719px;}
.x2f_c00446{left:144.785273px;}
.x30_c00446{left:150.147890px;}
.x31_c00446{left:152.899057px;}
.x32_c00446{left:155.907145px;}
.x33_c00446{left:159.752336px;}
.x3d_c00446{left:161.347648px;}
.x34_c00446{left:163.203941px;}
.x35_c00446{left:171.483965px;}
.x36_c00446{left:179.748684px;}
.x37_c00446{left:188.175145px;}
.x38_c00446{left:196.556636px;}
.x39_c00446{left:200.721504px;}
.x3a_c00446{left:205.276922px;}
.x3b_c00446{left:209.084069px;}
.x3c_c00446{left:211.669316px;}
.x9_c00446{left:230.260919px;}
.x8_c00446{left:232.395871px;}
.xa_c00446{left:235.482735px;}
.xb_c00446{left:240.319117px;}
.xc_c00446{left:245.673577px;}
.xd_c00446{left:248.421493px;}
.xe_c00446{left:251.426626px;}
.xf_c00446{left:255.268917px;}
.x3f_c00446{left:256.468943px;}
.x10_c00446{left:258.553698px;}
.x11_c00446{left:262.988294px;}
.x12_c00446{left:271.601212px;}
.x13_c00446{left:283.434780px;}
.x14_c00446{left:290.867654px;}
.x15_c00446{left:294.260334px;}
.x5_c00446{left:295.438786px;}
.x16_c00446{left:299.596701px;}
.x17_c00446{left:302.984150px;}
.x18_c00446{left:306.993562px;}
.x19_c00446{left:325.378518px;}
.x1a_c00446{left:326.595106px;}
.x1b_c00446{left:328.015253px;}
.x1c_c00446{left:331.410444px;}
.x1d_c00446{left:334.633053px;}
.x1e_c00446{left:340.511825px;}
.x1f_c00446{left:346.695139px;}
.x20_c00446{left:352.384720px;}
.x21_c00446{left:355.792694px;}
.x22_c00446{left:363.695116px;}
.x23_c00446{left:371.679253px;}
.x24_c00446{left:378.434940px;}
.x25_c00446{left:381.453328px;}
.x26_c00446{left:384.455783px;}
.x27_c00446{left:387.851715px;}
.x28_c00446{left:390.467224px;}
.x29_c00446{left:393.779799px;}
.x2a_c00446{left:398.952070px;}
.x2b_c00446{left:401.755082px;}
.x41_c00446{left:451.985828px;}
.x6_c00446{left:465.097640px;}
.x1_c00446{left:664.047008px;}
.x40_c00446{left:696.904800px;}
.x3e_c00446{left:733.103068px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.v1_c00446{vertical-align:23.831865pt;}
.ls0_c00446{letter-spacing:0.000000pt;}
.ws2_c00446{word-spacing:-16.604696pt;}
.ws3_c00446{word-spacing:0.000000pt;}
.ws1_c00446{word-spacing:250.196272pt;}
.ws0_c00446{word-spacing:990.527723pt;}
._1_c00446{width:3.238177pt;}
._0_c00446{width:4.189149pt;}
._2_c00446{width:9.500004pt;}
.fsd_c00446{font-size:37.310908pt;}
.fs3_c00446{font-size:37.311173pt;}
.fs7_c00446{font-size:42.079973pt;}
.fsa_c00446{font-size:42.079974pt;}
.fs6_c00446{font-size:42.079975pt;}
.fs9_c00446{font-size:42.079976pt;}
.fs8_c00446{font-size:42.079977pt;}
.fsb_c00446{font-size:42.079978pt;}
.fse_c00446{font-size:45.894021pt;}
.fs0_c00446{font-size:53.288186pt;}
.fsf_c00446{font-size:63.921837pt;}
.fs1_c00446{font-size:63.961814pt;}
.fs2_c00446{font-size:66.115417pt;}
.fsc_c00446{font-size:68.413814pt;}
.fs5_c00446{font-size:79.952268pt;}
.fs4_c00446{font-size:85.269094pt;}
.y0_c00446{bottom:0.000000pt;}
.y1_c00446{bottom:0.000007pt;}
.y50_c00446{bottom:26.805533pt;}
.y6_c00446{bottom:186.910277pt;}
.y5_c00446{bottom:213.894167pt;}
.y4_c00446{bottom:240.878058pt;}
.y3_c00446{bottom:267.861948pt;}
.y7_c00446{bottom:300.356991pt;}
.y4f_c00446{bottom:357.390356pt;}
.y1b_c00446{bottom:438.944560pt;}
.y43_c00446{bottom:438.957887pt;}
.y1a_c00446{bottom:439.411208pt;}
.y44_c00446{bottom:439.428585pt;}
.y2d_c00446{bottom:439.733989pt;}
.y42_c00446{bottom:440.063632pt;}
.y19_c00446{bottom:440.358224pt;}
.y2e_c00446{bottom:440.474249pt;}
.y2c_c00446{bottom:440.492144pt;}
.y41_c00446{bottom:441.175290pt;}
.y18_c00446{bottom:441.311665pt;}
.y2b_c00446{bottom:441.411480pt;}
.y45_c00446{bottom:441.575343pt;}
.y1c_c00446{bottom:441.631897pt;}
.y2f_c00446{bottom:442.412085pt;}
.y40_c00446{bottom:442.636491pt;}
.y17_c00446{bottom:442.778875pt;}
.y2a_c00446{bottom:443.368235pt;}
.y30_c00446{bottom:443.647574pt;}
.y3f_c00446{bottom:444.136272pt;}
.y16_c00446{bottom:444.283350pt;}
.y31_c00446{bottom:445.156323pt;}
.y1d_c00446{bottom:445.431649pt;}
.y3e_c00446{bottom:445.793228pt;}
.y15_c00446{bottom:445.944627pt;}
.y46_c00446{bottom:446.106592pt;}
.y29_c00446{bottom:446.736624pt;}
.y32_c00446{bottom:447.325975pt;}
.y1e_c00446{bottom:447.669198pt;}
.y47_c00446{bottom:449.329795pt;}
.y33_c00446{bottom:449.332771pt;}
.y3d_c00446{bottom:449.927990pt;}
.y14_c00446{bottom:450.087675pt;}
.y28_c00446{bottom:451.594856pt;}
.y34_c00446{bottom:452.236735pt;}
.y1f_c00446{bottom:452.957150pt;}
.y48_c00446{bottom:454.334697pt;}
.y27_c00446{bottom:455.562742pt;}
.y3c_c00446{bottom:455.614749pt;}
.y13_c00446{bottom:455.781928pt;}
.y20_c00446{bottom:457.175713pt;}
.y35_c00446{bottom:459.696536pt;}
.y49_c00446{bottom:460.249062pt;}
.y26_c00446{bottom:461.270273pt;}
.y3b_c00446{bottom:462.105976pt;}
.y12_c00446{bottom:462.186152pt;}
.y11_c00446{bottom:465.258807pt;}
.y25_c00446{bottom:465.329988pt;}
.y36_c00446{bottom:466.846944pt;}
.y21_c00446{bottom:467.644044pt;}
.y3a_c00446{bottom:468.468115pt;}
.y10_c00446{bottom:470.598118pt;}
.y4a_c00446{bottom:470.876600pt;}
.y24_c00446{bottom:472.234422pt;}
.y39_c00446{bottom:472.704883pt;}
.y4c_c00446{bottom:474.425294pt;}
.y4e_c00446{bottom:475.041614pt;}
.y23_c00446{bottom:475.693435pt;}
.yf_c00446{bottom:477.047199pt;}
.y38_c00446{bottom:478.188178pt;}
.y22_c00446{bottom:478.518126pt;}
.y4b_c00446{bottom:478.841168pt;}
.y37_c00446{bottom:484.463008pt;}
.ye_c00446{bottom:485.517349pt;}
.y4d_c00446{bottom:513.663227pt;}
.yb_c00446{bottom:531.164232pt;}
.y2_c00446{bottom:567.529513pt;}
.y9_c00446{bottom:1002.298488pt;}
.yd_c00446{bottom:1004.193955pt;}
.yc_c00446{bottom:1020.184408pt;}
.ya_c00446{bottom:1022.237576pt;}
.y8_c00446{bottom:1040.585280pt;}
.hd_c00446{height:31.970917pt;}
.hc_c00446{height:31.970918pt;}
.he_c00446{height:31.970920pt;}
.h12_c00446{height:33.277647pt;}
.h10_c00446{height:34.742140pt;}
.h6_c00446{height:34.742386pt;}
.ha_c00446{height:39.182865pt;}
.h9_c00446{height:39.182867pt;}
.hb_c00446{height:39.182869pt;}
.h3_c00446{height:49.619420pt;}
.h11_c00446{height:50.010498pt;}
.h5_c00446{height:50.651899pt;}
.hf_c00446{height:58.574005pt;}
.h13_c00446{height:59.520969pt;}
.h4_c00446{height:59.558193pt;}
.h8_c00446{height:60.744985pt;}
.h7_c00446{height:79.398517pt;}
.h2_c00446{height:1159.999952pt;}
.h0_c00446{height:1159.999959pt;}
.h1_c00446{height:1160.000000pt;}
.w2_c00446{width:830.999965pt;}
.w0_c00446{width:831.000000pt;}
.w1_c00446{width:831.333333pt;}
.x0_c00446{left:0.000000pt;}
.x3_c00446{left:78.625965pt;}
.x2_c00446{left:80.367933pt;}
.x7_c00446{left:96.055698pt;}
.x4_c00446{left:97.474332pt;}
.x2d_c00446{left:119.906064pt;}
.x2c_c00446{left:121.392652pt;}
.x2e_c00446{left:124.389083pt;}
.x2f_c00446{left:128.698021pt;}
.x30_c00446{left:133.464791pt;}
.x31_c00446{left:135.910272pt;}
.x32_c00446{left:138.584129pt;}
.x33_c00446{left:142.002076pt;}
.x3d_c00446{left:143.420132pt;}
.x34_c00446{left:145.070170pt;}
.x35_c00446{left:152.430191pt;}
.x36_c00446{left:159.776608pt;}
.x37_c00446{left:167.266795pt;}
.x38_c00446{left:174.717010pt;}
.x39_c00446{left:178.419115pt;}
.x3a_c00446{left:182.468375pt;}
.x3b_c00446{left:185.852506pt;}
.x3c_c00446{left:188.150503pt;}
.x9_c00446{left:204.676373pt;}
.x8_c00446{left:206.574107pt;}
.xa_c00446{left:209.317987pt;}
.xb_c00446{left:213.616993pt;}
.xc_c00446{left:218.376513pt;}
.xd_c00446{left:220.819105pt;}
.xe_c00446{left:223.490334pt;}
.xf_c00446{left:226.905704pt;}
.x3f_c00446{left:227.972394pt;}
.x10_c00446{left:229.825509pt;}
.x11_c00446{left:233.767373pt;}
.x12_c00446{left:241.423300pt;}
.x13_c00446{left:251.942027pt;}
.x14_c00446{left:258.549026pt;}
.x15_c00446{left:261.564741pt;}
.x5_c00446{left:262.612255pt;}
.x16_c00446{left:266.308178pt;}
.x17_c00446{left:269.319244pt;}
.x18_c00446{left:272.883167pt;}
.x19_c00446{left:289.225349pt;}
.x1a_c00446{left:290.306761pt;}
.x1b_c00446{left:291.569114pt;}
.x1c_c00446{left:294.587062pt;}
.x1d_c00446{left:297.451603pt;}
.x1e_c00446{left:302.677178pt;}
.x1f_c00446{left:308.173457pt;}
.x20_c00446{left:313.230862pt;}
.x21_c00446{left:316.260173pt;}
.x22_c00446{left:323.284548pt;}
.x23_c00446{left:330.381558pt;}
.x24_c00446{left:336.386614pt;}
.x25_c00446{left:339.069625pt;}
.x26_c00446{left:341.738474pt;}
.x27_c00446{left:344.757080pt;}
.x28_c00446{left:347.081977pt;}
.x29_c00446{left:350.026488pt;}
.x2a_c00446{left:354.624063pt;}
.x2b_c00446{left:357.115628pt;}
.x41_c00446{left:401.765180pt;}
.x6_c00446{left:413.420124pt;}
.x1_c00446{left:590.264007pt;}
.x40_c00446{left:619.470933pt;}
.x3e_c00446{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.006348;font-style:normal;font-weight:normal;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_a8830ff89fa8dcafa72476c4.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_d8bf90d5829b5cfd93bd3f1c.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00447;src:url('chunks/assets/font_c03ff7b81fcdf8f61134c76e.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:0.727051;font-style:normal;font-weight: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_c00447;src:url('chunks/assets/font_c505dd030d830023959c37e1.woff2')format("woff");}.ff5_c00447{font-family:ff5_c00447;line-height:0.888672;font-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.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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;}
.ls0_c00447{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00447{word-spacing:-18.680283px;}
.ws2_c00447{word-spacing:0.000000px;}
._4_c00447{width:1.037793px;}
._3_c00447{width:2.529739px;}
._0_c00447{width:3.967059px;}
._9_c00447{width:6.248657px;}
._1_c00447{width:9.049803px;}
._2_c00447{width:11.002347px;}
._7_c00447{width:12.039663px;}
._c_c00447{width:13.042669px;}
._5_c00447{width:14.651411px;}
._b_c00447{width:16.034311px;}
._8_c00447{width:17.306594px;}
._6_c00447{width:22.199043px;}
._a_c00447{width:23.604453px;}
.fc2_c00447{color:rgb(255,255,255);}
.fc1_c00447{color:rgb(0,0,0);}
.fc0_c00447{color:rgb(194,158,103);}
.fs3_c00447{font-size:59.949210px;}
.fs4_c00447{font-size:71.912067px;}
.fs1_c00447{font-size:71.957041px;}
.fs2_c00447{font-size:74.340621px;}
.fs0_c00447{font-size:74.379845px;}
.y0_c00447{bottom:0.000000px;}
.y1_c00447{bottom:0.000008px;}
.y1d_c00447{bottom:30.156225px;}
.y1c_c00447{bottom:339.362914px;}
.yd_c00447{bottom:399.843854px;}
.yc_c00447{bottom:430.200730px;}
.yb_c00447{bottom:460.557607px;}
.ya_c00447{bottom:490.914484px;}
.y9_c00447{bottom:521.271361px;}
.y8_c00447{bottom:551.628238px;}
.y1b_c00447{bottom:580.373493px;}
.y1a_c00447{bottom:624.644226px;}
.y19_c00447{bottom:655.001102px;}
.y18_c00447{bottom:685.357979px;}
.y17_c00447{bottom:717.531777px;}
.y16_c00447{bottom:758.148882px;}
.y15_c00447{bottom:788.505759px;}
.y14_c00447{bottom:818.862635px;}
.y13_c00447{bottom:849.219512px;}
.y12_c00447{bottom:879.576389px;}
.y11_c00447{bottom:909.933266px;}
.y10_c00447{bottom:940.290142px;}
.yf_c00447{bottom:970.647019px;}
.ye_c00447{bottom:1001.003896px;}
.y7_c00447{bottom:1033.653225px;}
.y6_c00447{bottom:1079.542939px;}
.y5_c00447{bottom:1109.899815px;}
.y4_c00447{bottom:1140.256692px;}
.y3_c00447{bottom:1170.613569px;}
.y2_c00447{bottom:1204.539346px;}
.h6_c00447{height:45.547349px;}
.h7_c00447{height:55.092790px;}
.h4_c00447{height:55.127245px;}
.h5_c00447{height:56.953337px;}
.h3_c00447{height:56.983387px;}
.h2_c00447{height:1304.999946px;}
.h0_c00447{height:1304.999953px;}
.h1_c00447{height:1305.000000px;}
.w2_c00447{width:934.874961px;}
.w0_c00447{width:934.875000px;}
.w1_c00447{width:935.250000px;}
.x0_c00447{left:0.000000px;}
.x1_c00447{left:87.850202px;}
.x2_c00447{left:451.985828px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws0_c00447{word-spacing:-16.615081pt;}
.ws1_c00447{word-spacing:-16.604696pt;}
.ws2_c00447{word-spacing:0.000000pt;}
._4_c00447{width:0.922483pt;}
._3_c00447{width:2.248657pt;}
._0_c00447{width:3.526275pt;}
._9_c00447{width:5.554362pt;}
._1_c00447{width:8.044269pt;}
._2_c00447{width:9.779864pt;}
._7_c00447{width:10.701922pt;}
._c_c00447{width:11.593483pt;}
._5_c00447{width:13.023476pt;}
._b_c00447{width:14.252721pt;}
._8_c00447{width:15.383639pt;}
._6_c00447{width:19.732483pt;}
._a_c00447{width:20.981736pt;}
.fs3_c00447{font-size:53.288186pt;}
.fs4_c00447{font-size:63.921837pt;}
.fs1_c00447{font-size:63.961814pt;}
.fs2_c00447{font-size:66.080552pt;}
.fs0_c00447{font-size:66.115417pt;}
.y0_c00447{bottom:0.000000pt;}
.y1_c00447{bottom:0.000007pt;}
.y1d_c00447{bottom:26.805533pt;}
.y1c_c00447{bottom:301.655924pt;}
.yd_c00447{bottom:355.416759pt;}
.yc_c00447{bottom:382.400649pt;}
.yb_c00447{bottom:409.384540pt;}
.ya_c00447{bottom:436.368430pt;}
.y9_c00447{bottom:463.352321pt;}
.y8_c00447{bottom:490.336211pt;}
.y1b_c00447{bottom:515.887549pt;}
.y1a_c00447{bottom:555.239312pt;}
.y19_c00447{bottom:582.223202pt;}
.y18_c00447{bottom:609.207093pt;}
.y17_c00447{bottom:637.806024pt;}
.y16_c00447{bottom:673.910117pt;}
.y15_c00447{bottom:700.894008pt;}
.y14_c00447{bottom:727.877898pt;}
.y13_c00447{bottom:754.861789pt;}
.y12_c00447{bottom:781.845679pt;}
.y11_c00447{bottom:808.829569pt;}
.y10_c00447{bottom:835.813460pt;}
.yf_c00447{bottom:862.797350pt;}
.ye_c00447{bottom:889.781241pt;}
.y7_c00447{bottom:918.802867pt;}
.y6_c00447{bottom:959.593723pt;}
.y5_c00447{bottom:986.577614pt;}
.y4_c00447{bottom:1013.561504pt;}
.y3_c00447{bottom:1040.545395pt;}
.y2_c00447{bottom:1070.701641pt;}
.h6_c00447{height:40.486532pt;}
.h7_c00447{height:48.971369pt;}
.h4_c00447{height:49.001996pt;}
.h5_c00447{height:50.625189pt;}
.h3_c00447{height:50.651899pt;}
.h2_c00447{height:1159.999952pt;}
.h0_c00447{height:1159.999959pt;}
.h1_c00447{height:1160.000000pt;}
.w2_c00447{width:830.999965pt;}
.w0_c00447{width:831.000000pt;}
.w1_c00447{width:831.333333pt;}
.x0_c00447{left:0.000000pt;}
.x1_c00447{left:78.089069pt;}
.x2_c00447{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dad15c790f4445ea5bcc9d4d.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.006348;font-style:normal;font-weight:normal;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_8a99241378b46b8f3a21e5ec.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:0.769531;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.006348;font-style:normal;font-weight:normal;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_38d4d6b98b915b46828d18b3.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:1.119141;font-style:normal;font-weight: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_01815ad4f26e1a26de7393e1.woff2')format("woff");}.ff5_c00448{font-family:ff5_c00448;line-height:0.769531;font-style:normal;font-weight: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_e602acbb2a3ff8b3603df1b8.woff2')format("woff");}.ff6_c00448{font-family:ff6_c00448;line-height:1.000000;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00448{font-family:ff7_c00448;line-height:0.769531;font-style:normal;font-weight: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_c00448;src:url('chunks/assets/font_a97e3e502ef57b893b58724b.woff2')format("woff");}.ff8_c00448{font-family:ff8_c00448;line-height:0.719000;font-style:normal;font-weight: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_c00448;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00448{font-family:ff9_c00448;line-height:0.734863;font-style:normal;font-weight: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_c00448;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ffa_c00448{font-family:ffa_c00448;line-height:0.894000;font-style:normal;font-weight: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_c00448;src:url('chunks/assets/font_4fb6c80ed135b7d7a484078a.woff2')format("woff");}.ffb_c00448{font-family:ffb_c00448;line-height:0.940000;font-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_c00448{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00448{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00448{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00448{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00448{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00448{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00448{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00448{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00448{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00448{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00448{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00448{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00448{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00448{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00448{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00448{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00448{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00448{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00448{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00448{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00448{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00448{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00448{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00448{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00448{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00448{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00448{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00448{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00448{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00448{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00448{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00448{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00448{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00448{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00448{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00448{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00448{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00448{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00448{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00448{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00448{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00448{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00448{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00448{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00448{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00448{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00448{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00448{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00448{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00448{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00448{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00448{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00448{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00448{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00448{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00448{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00448{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00448{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00448{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00448{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00448{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00448{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00448{vertical-align:0.000000px;}
.v2_c00448{vertical-align:24.037409px;}
.v1_c00448{vertical-align:42.785343px;}
.ls0_c00448{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00448{word-spacing:-18.680283px;}
.ws3_c00448{word-spacing:-16.905677px;}
.ws4_c00448{word-spacing:0.000000px;}
.ws1_c00448{word-spacing:271.423534px;}
.ws0_c00448{word-spacing:1106.218643px;}
._2_c00448{width:1.345913px;}
._0_c00448{width:11.441268px;}
._1_c00448{width:12.478235px;}
._4_c00448{width:16.008851px;}
._3_c00448{width:24.294397px;}
._5_c00448{width:456.525402px;}
.fc3_c00448{color:rgb(9,71,81);}
.fc1_c00448{color:rgb(194,158,103);}
.fc2_c00448{color:rgb(255,255,255);}
.fc0_c00448{color:rgb(0,0,0);}
.fsd_c00448{font-size:41.974772px;}
.fs2_c00448{font-size:41.975069px;}
.fs7_c00448{font-size:47.339969px;}
.fsa_c00448{font-size:47.339970px;}
.fs6_c00448{font-size:47.339972px;}
.fs9_c00448{font-size:47.339973px;}
.fs8_c00448{font-size:47.339974px;}
.fsb_c00448{font-size:47.339975px;}
.fse_c00448{font-size:51.630774px;}
.fs10_c00448{font-size:56.388174px;}
.fs5_c00448{font-size:59.949210px;}
.fsf_c00448{font-size:71.912067px;}
.fs0_c00448{font-size:71.957041px;}
.fs1_c00448{font-size:74.379845px;}
.fsc_c00448{font-size:76.965540px;}
.fs4_c00448{font-size:89.946302px;}
.fs3_c00448{font-size:95.927731px;}
.y0_c00448{bottom:0.000000px;}
.y1_c00448{bottom:0.000008px;}
.y52_c00448{bottom:30.156225px;}
.y7_c00448{bottom:154.421712px;}
.y6_c00448{bottom:184.778589px;}
.y5_c00448{bottom:215.135465px;}
.y4_c00448{bottom:245.492342px;}
.y3_c00448{bottom:275.849219px;}
.y2_c00448{bottom:306.206096px;}
.y8_c00448{bottom:337.901615px;}
.y50_c00448{bottom:402.064151px;}
.y1c_c00448{bottom:493.812629px;}
.y44_c00448{bottom:493.827623px;}
.y1b_c00448{bottom:494.337609px;}
.y45_c00448{bottom:494.357158px;}
.y2e_c00448{bottom:494.700737px;}
.y43_c00448{bottom:495.071586px;}
.y1a_c00448{bottom:495.403002px;}
.y2f_c00448{bottom:495.533530px;}
.y2d_c00448{bottom:495.553663px;}
.y42_c00448{bottom:496.322201px;}
.y19_c00448{bottom:496.475623px;}
.y2c_c00448{bottom:496.587915px;}
.y46_c00448{bottom:496.772260px;}
.y1d_c00448{bottom:496.835884px;}
.y30_c00448{bottom:497.713596px;}
.y41_c00448{bottom:497.966053px;}
.y18_c00448{bottom:498.126234px;}
.y2b_c00448{bottom:498.789265px;}
.y31_c00448{bottom:499.103521px;}
.y40_c00448{bottom:499.653306px;}
.y17_c00448{bottom:499.818769px;}
.y32_c00448{bottom:500.800864px;}
.y1e_c00448{bottom:501.110605px;}
.y3f_c00448{bottom:501.517382px;}
.y16_c00448{bottom:501.687706px;}
.y47_c00448{bottom:501.869915px;}
.y2a_c00448{bottom:502.578702px;}
.y33_c00448{bottom:503.241722px;}
.y1f_c00448{bottom:503.627848px;}
.y48_c00448{bottom:505.496019px;}
.y34_c00448{bottom:505.499367px;}
.y3e_c00448{bottom:506.168989px;}
.y15_c00448{bottom:506.348634px;}
.y29_c00448{bottom:508.044213px;}
.y35_c00448{bottom:508.766327px;}
.y20_c00448{bottom:509.576794px;}
.y49_c00448{bottom:511.126534px;}
.y28_c00448{bottom:512.508085px;}
.y3d_c00448{bottom:512.566592px;}
.y14_c00448{bottom:512.754669px;}
.y21_c00448{bottom:514.322677px;}
.y36_c00448{bottom:517.158603px;}
.y4a_c00448{bottom:517.780195px;}
.y27_c00448{bottom:518.929057px;}
.y3c_c00448{bottom:519.869222px;}
.y13_c00448{bottom:519.959421px;}
.y12_c00448{bottom:523.416158px;}
.y26_c00448{bottom:523.496236px;}
.y37_c00448{bottom:525.202812px;}
.y22_c00448{bottom:526.099549px;}
.y3b_c00448{bottom:527.026630px;}
.y11_c00448{bottom:529.422883px;}
.y4b_c00448{bottom:529.736175px;}
.y25_c00448{bottom:531.263725px;}
.y3a_c00448{bottom:531.792993px;}
.y4f_c00448{bottom:532.181392px;}
.y4d_c00448{bottom:534.421816px;}
.y24_c00448{bottom:535.155114px;}
.y10_c00448{bottom:536.678099px;}
.y39_c00448{bottom:537.961701px;}
.y23_c00448{bottom:538.332892px;}
.y4c_c00448{bottom:538.696314px;}
.y38_c00448{bottom:545.020884px;}
.yf_c00448{bottom:546.207017px;}
.y4e_c00448{bottom:577.871130px;}
.yc_c00448{bottom:597.559761px;}
.y51_c00448{bottom:638.470702px;}
.y54_c00448{bottom:968.712370px;}
.y53_c00448{bottom:1025.167633px;}
.ya_c00448{bottom:1113.651348px;}
.ye_c00448{bottom:1129.718199px;}
.yd_c00448{bottom:1147.707459px;}
.yb_c00448{bottom:1159.889113px;}
.y9_c00448{bottom:1170.658440px;}
.h11_c00448{height:32.157430px;}
.he_c00448{height:35.967282px;}
.hd_c00448{height:35.967283px;}
.hf_c00448{height:35.967285px;}
.hb_c00448{height:36.267779px;}
.ha_c00448{height:36.267781px;}
.hc_c00448{height:36.267783px;}
.h13_c00448{height:37.437353px;}
.h5_c00448{height:39.085184px;}
.h16_c00448{height:42.855013px;}
.h17_c00448{height:45.561399px;}
.h15_c00448{height:55.092790px;}
.h3_c00448{height:55.127245px;}
.h12_c00448{height:55.338224px;}
.h14_c00448{height:55.821847px;}
.h10_c00448{height:56.194839px;}
.h4_c00448{height:56.983387px;}
.h6_c00448{height:67.002968px;}
.h8_c00448{height:68.338108px;}
.h7_c00448{height:72.882592px;}
.h9_c00448{height:109.788311px;}
.h2_c00448{height:1304.999946px;}
.h0_c00448{height:1304.999953px;}
.h1_c00448{height:1305.000000px;}
.w2_c00448{width:934.874961px;}
.w0_c00448{width:934.875000px;}
.w1_c00448{width:935.250000px;}
.x0_c00448{left:0.000000px;}
.x2_c00448{left:88.454210px;}
.x1_c00448{left:90.413924px;}
.x6_c00448{left:108.062661px;}
.x3_c00448{left:109.658623px;}
.x2c_c00448{left:134.894322px;}
.x2b_c00448{left:136.566734px;}
.x2d_c00448{left:139.937719px;}
.x2e_c00448{left:144.785273px;}
.x2f_c00448{left:150.147890px;}
.x30_c00448{left:152.899057px;}
.x31_c00448{left:155.907145px;}
.x32_c00448{left:159.752336px;}
.x33_c00448{left:163.203941px;}
.x34_c00448{left:171.483965px;}
.x35_c00448{left:179.748684px;}
.x36_c00448{left:188.175145px;}
.x37_c00448{left:196.556636px;}
.x38_c00448{left:200.721504px;}
.x39_c00448{left:205.276922px;}
.x3a_c00448{left:209.084069px;}
.x3b_c00448{left:211.669316px;}
.x8_c00448{left:230.260919px;}
.x7_c00448{left:232.395871px;}
.x9_c00448{left:235.482735px;}
.xa_c00448{left:240.319117px;}
.xb_c00448{left:245.673577px;}
.xc_c00448{left:248.421493px;}
.xd_c00448{left:251.426626px;}
.xe_c00448{left:255.268917px;}
.xf_c00448{left:258.553698px;}
.x10_c00448{left:262.988294px;}
.x11_c00448{left:271.601212px;}
.x12_c00448{left:283.434780px;}
.x13_c00448{left:290.867654px;}
.x14_c00448{left:294.260334px;}
.x4_c00448{left:295.438786px;}
.x15_c00448{left:299.596701px;}
.x16_c00448{left:302.984150px;}
.x17_c00448{left:306.993562px;}
.x18_c00448{left:325.378518px;}
.x19_c00448{left:326.595106px;}
.x1a_c00448{left:328.015253px;}
.x1b_c00448{left:331.410444px;}
.x1c_c00448{left:334.633053px;}
.x1d_c00448{left:340.511825px;}
.x1e_c00448{left:346.695139px;}
.x1f_c00448{left:352.384720px;}
.x20_c00448{left:355.792694px;}
.x21_c00448{left:363.695116px;}
.x22_c00448{left:371.679253px;}
.x23_c00448{left:378.434940px;}
.x24_c00448{left:381.453328px;}
.x25_c00448{left:384.455783px;}
.x26_c00448{left:387.851715px;}
.x27_c00448{left:390.467224px;}
.x28_c00448{left:393.779799px;}
.x29_c00448{left:398.952070px;}
.x2a_c00448{left:401.755082px;}
.x3f_c00448{left:451.985828px;}
.x5_c00448{left:465.097640px;}
.x3e_c00448{left:676.474352px;}
.x3d_c00448{left:696.904800px;}
.x3c_c00448{left:733.103068px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.v2_c00448{vertical-align:21.366585pt;}
.v1_c00448{vertical-align:38.031416pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws2_c00448{word-spacing:-16.604696pt;}
.ws3_c00448{word-spacing:-15.027269pt;}
.ws4_c00448{word-spacing:0.000000pt;}
.ws1_c00448{word-spacing:241.265364pt;}
.ws0_c00448{word-spacing:983.305461pt;}
._2_c00448{width:1.196367pt;}
._0_c00448{width:10.170016pt;}
._1_c00448{width:11.091764pt;}
._4_c00448{width:14.230090pt;}
._3_c00448{width:21.595019pt;}
._5_c00448{width:405.800357pt;}
.fsd_c00448{font-size:37.310908pt;}
.fs2_c00448{font-size:37.311173pt;}
.fs7_c00448{font-size:42.079973pt;}
.fsa_c00448{font-size:42.079974pt;}
.fs6_c00448{font-size:42.079975pt;}
.fs9_c00448{font-size:42.079976pt;}
.fs8_c00448{font-size:42.079977pt;}
.fsb_c00448{font-size:42.079978pt;}
.fse_c00448{font-size:45.894021pt;}
.fs10_c00448{font-size:50.122822pt;}
.fs5_c00448{font-size:53.288186pt;}
.fsf_c00448{font-size:63.921837pt;}
.fs0_c00448{font-size:63.961814pt;}
.fs1_c00448{font-size:66.115417pt;}
.fsc_c00448{font-size:68.413814pt;}
.fs4_c00448{font-size:79.952268pt;}
.fs3_c00448{font-size:85.269094pt;}
.y0_c00448{bottom:0.000000pt;}
.y1_c00448{bottom:0.000007pt;}
.y52_c00448{bottom:26.805533pt;}
.y7_c00448{bottom:137.263744pt;}
.y6_c00448{bottom:164.247634pt;}
.y5_c00448{bottom:191.231525pt;}
.y4_c00448{bottom:218.215415pt;}
.y3_c00448{bottom:245.199306pt;}
.y2_c00448{bottom:272.183196pt;}
.y8_c00448{bottom:300.356991pt;}
.y50_c00448{bottom:357.390356pt;}
.y1c_c00448{bottom:438.944560pt;}
.y44_c00448{bottom:438.957887pt;}
.y1b_c00448{bottom:439.411208pt;}
.y45_c00448{bottom:439.428585pt;}
.y2e_c00448{bottom:439.733989pt;}
.y43_c00448{bottom:440.063632pt;}
.y1a_c00448{bottom:440.358224pt;}
.y2f_c00448{bottom:440.474249pt;}
.y2d_c00448{bottom:440.492144pt;}
.y42_c00448{bottom:441.175290pt;}
.y19_c00448{bottom:441.311665pt;}
.y2c_c00448{bottom:441.411480pt;}
.y46_c00448{bottom:441.575343pt;}
.y1d_c00448{bottom:441.631897pt;}
.y30_c00448{bottom:442.412085pt;}
.y41_c00448{bottom:442.636491pt;}
.y18_c00448{bottom:442.778875pt;}
.y2b_c00448{bottom:443.368235pt;}
.y31_c00448{bottom:443.647574pt;}
.y40_c00448{bottom:444.136272pt;}
.y17_c00448{bottom:444.283350pt;}
.y32_c00448{bottom:445.156323pt;}
.y1e_c00448{bottom:445.431649pt;}
.y3f_c00448{bottom:445.793228pt;}
.y16_c00448{bottom:445.944627pt;}
.y47_c00448{bottom:446.106592pt;}
.y2a_c00448{bottom:446.736624pt;}
.y33_c00448{bottom:447.325975pt;}
.y1f_c00448{bottom:447.669198pt;}
.y48_c00448{bottom:449.329795pt;}
.y34_c00448{bottom:449.332771pt;}
.y3e_c00448{bottom:449.927990pt;}
.y15_c00448{bottom:450.087675pt;}
.y29_c00448{bottom:451.594856pt;}
.y35_c00448{bottom:452.236735pt;}
.y20_c00448{bottom:452.957150pt;}
.y49_c00448{bottom:454.334697pt;}
.y28_c00448{bottom:455.562742pt;}
.y3d_c00448{bottom:455.614749pt;}
.y14_c00448{bottom:455.781928pt;}
.y21_c00448{bottom:457.175713pt;}
.y36_c00448{bottom:459.696536pt;}
.y4a_c00448{bottom:460.249062pt;}
.y27_c00448{bottom:461.270273pt;}
.y3c_c00448{bottom:462.105976pt;}
.y13_c00448{bottom:462.186152pt;}
.y12_c00448{bottom:465.258807pt;}
.y26_c00448{bottom:465.329988pt;}
.y37_c00448{bottom:466.846944pt;}
.y22_c00448{bottom:467.644044pt;}
.y3b_c00448{bottom:468.468115pt;}
.y11_c00448{bottom:470.598118pt;}
.y4b_c00448{bottom:470.876600pt;}
.y25_c00448{bottom:472.234422pt;}
.y3a_c00448{bottom:472.704883pt;}
.y4f_c00448{bottom:473.050126pt;}
.y4d_c00448{bottom:475.041614pt;}
.y24_c00448{bottom:475.693435pt;}
.y10_c00448{bottom:477.047199pt;}
.y39_c00448{bottom:478.188178pt;}
.y23_c00448{bottom:478.518126pt;}
.y4c_c00448{bottom:478.841168pt;}
.y38_c00448{bottom:484.463008pt;}
.yf_c00448{bottom:485.517349pt;}
.y4e_c00448{bottom:513.663227pt;}
.yc_c00448{bottom:531.164232pt;}
.y51_c00448{bottom:567.529513pt;}
.y54_c00448{bottom:861.077662pt;}
.y53_c00448{bottom:911.260118pt;}
.ya_c00448{bottom:989.912309pt;}
.ye_c00448{bottom:1004.193955pt;}
.yd_c00448{bottom:1020.184408pt;}
.yb_c00448{bottom:1031.012545pt;}
.y9_c00448{bottom:1040.585280pt;}
.h11_c00448{height:28.584382pt;}
.he_c00448{height:31.970917pt;}
.hd_c00448{height:31.970918pt;}
.hf_c00448{height:31.970920pt;}
.hb_c00448{height:32.238026pt;}
.ha_c00448{height:32.238028pt;}
.hc_c00448{height:32.238029pt;}
.h13_c00448{height:33.277647pt;}
.h5_c00448{height:34.742386pt;}
.h16_c00448{height:38.093344pt;}
.h17_c00448{height:40.499022pt;}
.h15_c00448{height:48.971369pt;}
.h3_c00448{height:49.001996pt;}
.h12_c00448{height:49.189532pt;}
.h14_c00448{height:49.619420pt;}
.h10_c00448{height:49.950968pt;}
.h4_c00448{height:50.651899pt;}
.h6_c00448{height:59.558193pt;}
.h8_c00448{height:60.744985pt;}
.h7_c00448{height:64.784526pt;}
.h9_c00448{height:97.589610pt;}
.h2_c00448{height:1159.999952pt;}
.h0_c00448{height:1159.999959pt;}
.h1_c00448{height:1160.000000pt;}
.w2_c00448{width:830.999965pt;}
.w0_c00448{width:831.000000pt;}
.w1_c00448{width:831.333333pt;}
.x0_c00448{left:0.000000pt;}
.x2_c00448{left:78.625965pt;}
.x1_c00448{left:80.367933pt;}
.x6_c00448{left:96.055698pt;}
.x3_c00448{left:97.474332pt;}
.x2c_c00448{left:119.906064pt;}
.x2b_c00448{left:121.392652pt;}
.x2d_c00448{left:124.389083pt;}
.x2e_c00448{left:128.698021pt;}
.x2f_c00448{left:133.464791pt;}
.x30_c00448{left:135.910272pt;}
.x31_c00448{left:138.584129pt;}
.x32_c00448{left:142.002076pt;}
.x33_c00448{left:145.070170pt;}
.x34_c00448{left:152.430191pt;}
.x35_c00448{left:159.776608pt;}
.x36_c00448{left:167.266795pt;}
.x37_c00448{left:174.717010pt;}
.x38_c00448{left:178.419115pt;}
.x39_c00448{left:182.468375pt;}
.x3a_c00448{left:185.852506pt;}
.x3b_c00448{left:188.150503pt;}
.x8_c00448{left:204.676373pt;}
.x7_c00448{left:206.574107pt;}
.x9_c00448{left:209.317987pt;}
.xa_c00448{left:213.616993pt;}
.xb_c00448{left:218.376513pt;}
.xc_c00448{left:220.819105pt;}
.xd_c00448{left:223.490334pt;}
.xe_c00448{left:226.905704pt;}
.xf_c00448{left:229.825509pt;}
.x10_c00448{left:233.767373pt;}
.x11_c00448{left:241.423300pt;}
.x12_c00448{left:251.942027pt;}
.x13_c00448{left:258.549026pt;}
.x14_c00448{left:261.564741pt;}
.x4_c00448{left:262.612255pt;}
.x15_c00448{left:266.308178pt;}
.x16_c00448{left:269.319244pt;}
.x17_c00448{left:272.883167pt;}
.x18_c00448{left:289.225349pt;}
.x19_c00448{left:290.306761pt;}
.x1a_c00448{left:291.569114pt;}
.x1b_c00448{left:294.587062pt;}
.x1c_c00448{left:297.451603pt;}
.x1d_c00448{left:302.677178pt;}
.x1e_c00448{left:308.173457pt;}
.x1f_c00448{left:313.230862pt;}
.x20_c00448{left:316.260173pt;}
.x21_c00448{left:323.284548pt;}
.x22_c00448{left:330.381558pt;}
.x23_c00448{left:336.386614pt;}
.x24_c00448{left:339.069625pt;}
.x25_c00448{left:341.738474pt;}
.x26_c00448{left:344.757080pt;}
.x27_c00448{left:347.081977pt;}
.x28_c00448{left:350.026488pt;}
.x29_c00448{left:354.624063pt;}
.x2a_c00448{left:357.115628pt;}
.x3f_c00448{left:401.765180pt;}
.x5_c00448{left:413.420124pt;}
.x3e_c00448{left:601.310535pt;}
.x3d_c00448{left:619.470933pt;}
.x3c_c00448{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.006348;font-style:normal;font-weight:normal;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_abd13ca7b3a1429235339b3b.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.171387;font-style:normal;font-weight:normal;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_8a99241378b46b8f3a21e5ec.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:0.769531;font-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_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);}
.v0_c00449{vertical-align:0.000000px;}
.ls0_c00449{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00449{word-spacing:-18.680283px;}
.ws2_c00449{word-spacing:0.000000px;}
._a_c00449{width:1.059272px;}
._1_c00449{width:2.145927px;}
._0_c00449{width:7.694625px;}
._4_c00449{width:9.006297px;}
._2_c00449{width:10.145929px;}
._9_c00449{width:11.415053px;}
._5_c00449{width:13.351403px;}
._3_c00449{width:14.691896px;}
._7_c00449{width:19.859385px;}
._6_c00449{width:20.875705px;}
._8_c00449{width:32.104855px;}
.fc1_c00449{color:rgb(0,0,0);}
.fc0_c00449{color:rgb(194,158,103);}
.fs3_c00449{font-size:71.912067px;}
.fs1_c00449{font-size:71.957041px;}
.fs2_c00449{font-size:74.340621px;}
.fs0_c00449{font-size:74.379845px;}
.y0_c00449{bottom:0.000000px;}
.y1_c00449{bottom:0.000008px;}
.y16_c00449{bottom:30.156225px;}
.ya_c00449{bottom:483.578202px;}
.y9_c00449{bottom:513.935079px;}
.y8_c00449{bottom:544.291956px;}
.y7_c00449{bottom:574.648833px;}
.y15_c00449{bottom:607.937612px;}
.y14_c00449{bottom:685.312274px;}
.y13_c00449{bottom:717.485985px;}
.y12_c00449{bottom:792.461428px;}
.y11_c00449{bottom:822.818304px;}
.y10_c00449{bottom:853.175181px;}
.yf_c00449{bottom:883.532058px;}
.ye_c00449{bottom:913.888935px;}
.yd_c00449{bottom:944.245811px;}
.yc_c00449{bottom:974.602688px;}
.yb_c00449{bottom:1004.959565px;}
.y6_c00449{bottom:1037.608898px;}
.y5_c00449{bottom:1109.899815px;}
.y4_c00449{bottom:1140.256692px;}
.y3_c00449{bottom:1170.613569px;}
.y2_c00449{bottom:1204.539346px;}
.h5_c00449{height:56.953337px;}
.h3_c00449{height:56.983387px;}
.h6_c00449{height:66.961090px;}
.h4_c00449{height:67.002968px;}
.h2_c00449{height:1304.999946px;}
.h0_c00449{height:1304.999953px;}
.h1_c00449{height:1305.000000px;}
.w2_c00449{width:934.874961px;}
.w0_c00449{width:934.875000px;}
.w1_c00449{width:935.250000px;}
.x0_c00449{left:0.000000px;}
.x1_c00449{left:87.850202px;}
.x2_c00449{left:451.985828px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws0_c00449{word-spacing:-16.615081pt;}
.ws1_c00449{word-spacing:-16.604696pt;}
.ws2_c00449{word-spacing:0.000000pt;}
._a_c00449{width:0.941575pt;}
._1_c00449{width:1.907491pt;}
._0_c00449{width:6.839666pt;}
._4_c00449{width:8.005597pt;}
._2_c00449{width:9.018604pt;}
._9_c00449{width:10.146714pt;}
._5_c00449{width:11.867914pt;}
._3_c00449{width:13.059463pt;}
._7_c00449{width:17.652787pt;}
._6_c00449{width:18.556183pt;}
._8_c00449{width:28.537649pt;}
.fs3_c00449{font-size:63.921837pt;}
.fs1_c00449{font-size:63.961814pt;}
.fs2_c00449{font-size:66.080552pt;}
.fs0_c00449{font-size:66.115417pt;}
.y0_c00449{bottom:0.000000pt;}
.y1_c00449{bottom:0.000007pt;}
.y16_c00449{bottom:26.805533pt;}
.ya_c00449{bottom:429.847291pt;}
.y9_c00449{bottom:456.831181pt;}
.y8_c00449{bottom:483.815072pt;}
.y7_c00449{bottom:510.798962pt;}
.y15_c00449{bottom:540.388988pt;}
.y14_c00449{bottom:609.166465pt;}
.y13_c00449{bottom:637.765320pt;}
.y12_c00449{bottom:704.410158pt;}
.y11_c00449{bottom:731.394048pt;}
.y10_c00449{bottom:758.377939pt;}
.yf_c00449{bottom:785.361829pt;}
.ye_c00449{bottom:812.345720pt;}
.yd_c00449{bottom:839.329610pt;}
.yc_c00449{bottom:866.313501pt;}
.yb_c00449{bottom:893.297391pt;}
.y6_c00449{bottom:922.319021pt;}
.y5_c00449{bottom:986.577614pt;}
.y4_c00449{bottom:1013.561504pt;}
.y3_c00449{bottom:1040.545395pt;}
.y2_c00449{bottom:1070.701641pt;}
.h5_c00449{height:50.625189pt;}
.h3_c00449{height:50.651899pt;}
.h6_c00449{height:59.520969pt;}
.h4_c00449{height:59.558193pt;}
.h2_c00449{height:1159.999952pt;}
.h0_c00449{height:1159.999959pt;}
.h1_c00449{height:1160.000000pt;}
.w2_c00449{width:830.999965pt;}
.w0_c00449{width:831.000000pt;}
.w1_c00449{width:831.333333pt;}
.x0_c00449{left:0.000000pt;}
.x1_c00449{left:78.089069pt;}
.x2_c00449{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2d5224eaa2ec56d38d2406e.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.006348;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.006348;font-style:normal;font-weight:normal;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_7f6600937573bcb014fa862a.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.171387;font-style:normal;font-weight:normal;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_eec2f20319776337e6ebcd6a.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:1.000000;font-style:normal;font-weight: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_290f09fa47fa5165ce21a655.woff2')format("woff");}.ff5_c00450{font-family:ff5_c00450;line-height:1.000000;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff6_c00450{font-family:ff6_c00450;line-height:0.769531;font-style:normal;font-weight: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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff7_c00450{font-family:ff7_c00450;line-height:0.743000;font-style:normal;font-weight: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_c00450;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00450{font-family:ff8_c00450;line-height:0.734863;font-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_c00450{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00450{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00450{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00450{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00450{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00450{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00450{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00450{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00450{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00450{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00450{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00450{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00450{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00450{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00450{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00450{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00450{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00450{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00450{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00450{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00450{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00450{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00450{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00450{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00450{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00450{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00450{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00450{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00450{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00450{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00450{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00450{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00450{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00450{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00450{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00450{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00450{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00450{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00450{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00450{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00450{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00450{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00450{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00450{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00450{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00450{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00450{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00450{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00450{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00450{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00450{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00450{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00450{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00450{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00450{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00450{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00450{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00450{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00450{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00450{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00450{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00450{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00450{vertical-align:0.000000px;}
.v1_c00450{vertical-align:26.810849px;}
.ls0_c00450{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00450{word-spacing:-18.680283px;}
.ws3_c00450{word-spacing:0.000000px;}
.ws1_c00450{word-spacing:281.470806px;}
.ws0_c00450{word-spacing:1114.343689px;}
._4_c00450{width:1.081781px;}
._1_c00450{width:2.165898px;}
._0_c00450{width:3.403041px;}
._2_c00450{width:6.565219px;}
._3_c00450{width:7.579128px;}
.fc3_c00450{color:rgb(9,71,81);}
.fc1_c00450{color:rgb(194,158,103);}
.fc2_c00450{color:rgb(255,255,255);}
.fc0_c00450{color:rgb(0,0,0);}
.fsd_c00450{font-size:41.974772px;}
.fs2_c00450{font-size:41.975069px;}
.fs7_c00450{font-size:47.339969px;}
.fsa_c00450{font-size:47.339970px;}
.fs6_c00450{font-size:47.339972px;}
.fs9_c00450{font-size:47.339973px;}
.fs8_c00450{font-size:47.339974px;}
.fsb_c00450{font-size:47.339975px;}
.fse_c00450{font-size:51.630774px;}
.fs5_c00450{font-size:59.949210px;}
.fsf_c00450{font-size:71.912067px;}
.fs0_c00450{font-size:71.957041px;}
.fs1_c00450{font-size:74.379845px;}
.fsc_c00450{font-size:76.965540px;}
.fs4_c00450{font-size:89.946302px;}
.fs3_c00450{font-size:95.927731px;}
.y0_c00450{bottom:0.000000px;}
.y1_c00450{bottom:0.000008px;}
.y54_c00450{bottom:30.156225px;}
.y8_c00450{bottom:121.138683px;}
.y7_c00450{bottom:151.495560px;}
.y6_c00450{bottom:181.852437px;}
.y5_c00450{bottom:212.209314px;}
.y4_c00450{bottom:242.566190px;}
.y3_c00450{bottom:272.923067px;}
.y2_c00450{bottom:303.279944px;}
.y9_c00450{bottom:334.975391px;}
.y52_c00450{bottom:402.064151px;}
.y1e_c00450{bottom:493.812629px;}
.y46_c00450{bottom:493.827623px;}
.y1d_c00450{bottom:494.337609px;}
.y47_c00450{bottom:494.357158px;}
.y30_c00450{bottom:494.700737px;}
.y45_c00450{bottom:495.071586px;}
.y1c_c00450{bottom:495.403002px;}
.y31_c00450{bottom:495.533530px;}
.y2f_c00450{bottom:495.553663px;}
.y44_c00450{bottom:496.322201px;}
.y1b_c00450{bottom:496.475623px;}
.y2e_c00450{bottom:496.587915px;}
.y48_c00450{bottom:496.772260px;}
.y1f_c00450{bottom:496.835884px;}
.y32_c00450{bottom:497.713596px;}
.y43_c00450{bottom:497.966053px;}
.y1a_c00450{bottom:498.126234px;}
.y2d_c00450{bottom:498.789265px;}
.y33_c00450{bottom:499.103521px;}
.y42_c00450{bottom:499.653306px;}
.y19_c00450{bottom:499.818769px;}
.y34_c00450{bottom:500.800864px;}
.y20_c00450{bottom:501.110605px;}
.y41_c00450{bottom:501.517382px;}
.y18_c00450{bottom:501.687706px;}
.y49_c00450{bottom:501.869915px;}
.y2c_c00450{bottom:502.578702px;}
.y35_c00450{bottom:503.241722px;}
.y21_c00450{bottom:503.627848px;}
.y4a_c00450{bottom:505.496019px;}
.y36_c00450{bottom:505.499367px;}
.y40_c00450{bottom:506.168989px;}
.y17_c00450{bottom:506.348634px;}
.y2b_c00450{bottom:508.044213px;}
.y37_c00450{bottom:508.766327px;}
.y22_c00450{bottom:509.576794px;}
.y4b_c00450{bottom:511.126534px;}
.y2a_c00450{bottom:512.508085px;}
.y3f_c00450{bottom:512.566592px;}
.y16_c00450{bottom:512.754669px;}
.y23_c00450{bottom:514.322677px;}
.y38_c00450{bottom:517.158603px;}
.y4c_c00450{bottom:517.780195px;}
.y29_c00450{bottom:518.929057px;}
.y3e_c00450{bottom:519.869222px;}
.y15_c00450{bottom:519.959421px;}
.y14_c00450{bottom:523.416158px;}
.y28_c00450{bottom:523.496236px;}
.y39_c00450{bottom:525.202812px;}
.y24_c00450{bottom:526.099549px;}
.y3d_c00450{bottom:527.026630px;}
.y13_c00450{bottom:529.422883px;}
.y4d_c00450{bottom:529.736175px;}
.y27_c00450{bottom:531.263725px;}
.y3c_c00450{bottom:531.792993px;}
.y4f_c00450{bottom:533.728456px;}
.y51_c00450{bottom:534.421816px;}
.y26_c00450{bottom:535.155114px;}
.y12_c00450{bottom:536.678099px;}
.y3b_c00450{bottom:537.961701px;}
.y25_c00450{bottom:538.332892px;}
.y4e_c00450{bottom:538.696314px;}
.y3a_c00450{bottom:545.020884px;}
.y11_c00450{bottom:546.207017px;}
.y50_c00450{bottom:577.871130px;}
.yb_c00450{bottom:597.559761px;}
.y53_c00450{bottom:638.470702px;}
.yc_c00450{bottom:1127.585799px;}
.yf_c00450{bottom:1129.718199px;}
.ye_c00450{bottom:1147.707459px;}
.y10_c00450{bottom:1148.980619px;}
.yd_c00450{bottom:1150.017273px;}
.ya_c00450{bottom:1170.658440px;}
.h11_c00450{height:32.157430px;}
.he_c00450{height:35.967282px;}
.hd_c00450{height:35.967283px;}
.hf_c00450{height:35.967285px;}
.hb_c00450{height:36.267779px;}
.ha_c00450{height:36.267781px;}
.hc_c00450{height:36.267783px;}
.h13_c00450{height:37.437353px;}
.h5_c00450{height:39.085184px;}
.h14_c00450{height:55.092790px;}
.h3_c00450{height:55.127245px;}
.h9_c00450{height:55.821847px;}
.h12_c00450{height:56.261810px;}
.h4_c00450{height:56.983387px;}
.h10_c00450{height:58.968279px;}
.h6_c00450{height:67.002968px;}
.h8_c00450{height:68.338108px;}
.h7_c00450{height:72.882592px;}
.h2_c00450{height:1304.999946px;}
.h0_c00450{height:1304.999953px;}
.h1_c00450{height:1305.000000px;}
.w2_c00450{width:934.874961px;}
.w0_c00450{width:934.875000px;}
.w1_c00450{width:935.250000px;}
.x0_c00450{left:0.000000px;}
.x2_c00450{left:88.454210px;}
.x1_c00450{left:90.413924px;}
.x6_c00450{left:108.062661px;}
.x3_c00450{left:109.658623px;}
.x2d_c00450{left:134.894322px;}
.x2c_c00450{left:136.566734px;}
.x2e_c00450{left:139.937719px;}
.x2f_c00450{left:144.785273px;}
.x30_c00450{left:150.147890px;}
.x31_c00450{left:152.899057px;}
.x32_c00450{left:155.907145px;}
.x33_c00450{left:159.752336px;}
.x3d_c00450{left:161.347648px;}
.x34_c00450{left:163.203941px;}
.x35_c00450{left:171.483965px;}
.x36_c00450{left:179.748684px;}
.x37_c00450{left:188.175145px;}
.x38_c00450{left:196.556636px;}
.x39_c00450{left:200.721504px;}
.x3a_c00450{left:205.276922px;}
.x3b_c00450{left:209.084069px;}
.x3c_c00450{left:211.669316px;}
.x9_c00450{left:230.260919px;}
.x8_c00450{left:232.395871px;}
.xa_c00450{left:235.482735px;}
.xb_c00450{left:240.319117px;}
.xc_c00450{left:245.673577px;}
.xd_c00450{left:248.421493px;}
.xe_c00450{left:251.426626px;}
.xf_c00450{left:255.268917px;}
.x3f_c00450{left:256.468943px;}
.x10_c00450{left:258.553698px;}
.x11_c00450{left:262.988294px;}
.x12_c00450{left:271.601212px;}
.x13_c00450{left:283.434780px;}
.x14_c00450{left:290.867654px;}
.x15_c00450{left:294.260334px;}
.x5_c00450{left:295.438786px;}
.x16_c00450{left:299.596701px;}
.x17_c00450{left:302.984150px;}
.x18_c00450{left:306.993562px;}
.x19_c00450{left:325.378518px;}
.x1a_c00450{left:326.595106px;}
.x1b_c00450{left:328.015253px;}
.x1c_c00450{left:331.410444px;}
.x1d_c00450{left:334.633053px;}
.x1e_c00450{left:340.511825px;}
.x1f_c00450{left:346.695139px;}
.x20_c00450{left:352.384720px;}
.x21_c00450{left:355.792694px;}
.x22_c00450{left:363.695116px;}
.x23_c00450{left:371.679253px;}
.x24_c00450{left:378.434940px;}
.x25_c00450{left:381.453328px;}
.x26_c00450{left:384.455783px;}
.x27_c00450{left:387.851715px;}
.x28_c00450{left:390.467224px;}
.x29_c00450{left:393.779799px;}
.x2a_c00450{left:398.952070px;}
.x2b_c00450{left:401.755082px;}
.x42_c00450{left:451.985828px;}
.x4_c00450{left:465.097640px;}
.x7_c00450{left:667.420028px;}
.x41_c00450{left:676.474352px;}
.x40_c00450{left:696.904800px;}
.x3e_c00450{left:733.103068px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.v1_c00450{vertical-align:23.831865pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws2_c00450{word-spacing:-16.604696pt;}
.ws3_c00450{word-spacing:0.000000pt;}
.ws1_c00450{word-spacing:250.196272pt;}
.ws0_c00450{word-spacing:990.527723pt;}
._4_c00450{width:0.961583pt;}
._1_c00450{width:1.925243pt;}
._0_c00450{width:3.024925pt;}
._2_c00450{width:5.835750pt;}
._3_c00450{width:6.737003pt;}
.fsd_c00450{font-size:37.310908pt;}
.fs2_c00450{font-size:37.311173pt;}
.fs7_c00450{font-size:42.079973pt;}
.fsa_c00450{font-size:42.079974pt;}
.fs6_c00450{font-size:42.079975pt;}
.fs9_c00450{font-size:42.079976pt;}
.fs8_c00450{font-size:42.079977pt;}
.fsb_c00450{font-size:42.079978pt;}
.fse_c00450{font-size:45.894021pt;}
.fs5_c00450{font-size:53.288186pt;}
.fsf_c00450{font-size:63.921837pt;}
.fs0_c00450{font-size:63.961814pt;}
.fs1_c00450{font-size:66.115417pt;}
.fsc_c00450{font-size:68.413814pt;}
.fs4_c00450{font-size:79.952268pt;}
.fs3_c00450{font-size:85.269094pt;}
.y0_c00450{bottom:0.000000pt;}
.y1_c00450{bottom:0.000007pt;}
.y54_c00450{bottom:26.805533pt;}
.y8_c00450{bottom:107.678830pt;}
.y7_c00450{bottom:134.662720pt;}
.y6_c00450{bottom:161.646610pt;}
.y5_c00450{bottom:188.630501pt;}
.y4_c00450{bottom:215.614391pt;}
.y3_c00450{bottom:242.598282pt;}
.y2_c00450{bottom:269.582172pt;}
.y9_c00450{bottom:297.755903pt;}
.y52_c00450{bottom:357.390356pt;}
.y1e_c00450{bottom:438.944560pt;}
.y46_c00450{bottom:438.957887pt;}
.y1d_c00450{bottom:439.411208pt;}
.y47_c00450{bottom:439.428585pt;}
.y30_c00450{bottom:439.733989pt;}
.y45_c00450{bottom:440.063632pt;}
.y1c_c00450{bottom:440.358224pt;}
.y31_c00450{bottom:440.474249pt;}
.y2f_c00450{bottom:440.492144pt;}
.y44_c00450{bottom:441.175290pt;}
.y1b_c00450{bottom:441.311665pt;}
.y2e_c00450{bottom:441.411480pt;}
.y48_c00450{bottom:441.575343pt;}
.y1f_c00450{bottom:441.631897pt;}
.y32_c00450{bottom:442.412085pt;}
.y43_c00450{bottom:442.636491pt;}
.y1a_c00450{bottom:442.778875pt;}
.y2d_c00450{bottom:443.368235pt;}
.y33_c00450{bottom:443.647574pt;}
.y42_c00450{bottom:444.136272pt;}
.y19_c00450{bottom:444.283350pt;}
.y34_c00450{bottom:445.156323pt;}
.y20_c00450{bottom:445.431649pt;}
.y41_c00450{bottom:445.793228pt;}
.y18_c00450{bottom:445.944627pt;}
.y49_c00450{bottom:446.106592pt;}
.y2c_c00450{bottom:446.736624pt;}
.y35_c00450{bottom:447.325975pt;}
.y21_c00450{bottom:447.669198pt;}
.y4a_c00450{bottom:449.329795pt;}
.y36_c00450{bottom:449.332771pt;}
.y40_c00450{bottom:449.927990pt;}
.y17_c00450{bottom:450.087675pt;}
.y2b_c00450{bottom:451.594856pt;}
.y37_c00450{bottom:452.236735pt;}
.y22_c00450{bottom:452.957150pt;}
.y4b_c00450{bottom:454.334697pt;}
.y2a_c00450{bottom:455.562742pt;}
.y3f_c00450{bottom:455.614749pt;}
.y16_c00450{bottom:455.781928pt;}
.y23_c00450{bottom:457.175713pt;}
.y38_c00450{bottom:459.696536pt;}
.y4c_c00450{bottom:460.249062pt;}
.y29_c00450{bottom:461.270273pt;}
.y3e_c00450{bottom:462.105976pt;}
.y15_c00450{bottom:462.186152pt;}
.y14_c00450{bottom:465.258807pt;}
.y28_c00450{bottom:465.329988pt;}
.y39_c00450{bottom:466.846944pt;}
.y24_c00450{bottom:467.644044pt;}
.y3d_c00450{bottom:468.468115pt;}
.y13_c00450{bottom:470.598118pt;}
.y4d_c00450{bottom:470.876600pt;}
.y27_c00450{bottom:472.234422pt;}
.y3c_c00450{bottom:472.704883pt;}
.y4f_c00450{bottom:474.425294pt;}
.y51_c00450{bottom:475.041614pt;}
.y26_c00450{bottom:475.693435pt;}
.y12_c00450{bottom:477.047199pt;}
.y3b_c00450{bottom:478.188178pt;}
.y25_c00450{bottom:478.518126pt;}
.y4e_c00450{bottom:478.841168pt;}
.y3a_c00450{bottom:484.463008pt;}
.y11_c00450{bottom:485.517349pt;}
.y50_c00450{bottom:513.663227pt;}
.yb_c00450{bottom:531.164232pt;}
.y53_c00450{bottom:567.529513pt;}
.yc_c00450{bottom:1002.298488pt;}
.yf_c00450{bottom:1004.193955pt;}
.ye_c00450{bottom:1020.184408pt;}
.y10_c00450{bottom:1021.316106pt;}
.yd_c00450{bottom:1022.237576pt;}
.ya_c00450{bottom:1040.585280pt;}
.h11_c00450{height:28.584382pt;}
.he_c00450{height:31.970917pt;}
.hd_c00450{height:31.970918pt;}
.hf_c00450{height:31.970920pt;}
.hb_c00450{height:32.238026pt;}
.ha_c00450{height:32.238028pt;}
.hc_c00450{height:32.238029pt;}
.h13_c00450{height:33.277647pt;}
.h5_c00450{height:34.742386pt;}
.h14_c00450{height:48.971369pt;}
.h3_c00450{height:49.001996pt;}
.h9_c00450{height:49.619420pt;}
.h12_c00450{height:50.010498pt;}
.h4_c00450{height:50.651899pt;}
.h10_c00450{height:52.416248pt;}
.h6_c00450{height:59.558193pt;}
.h8_c00450{height:60.744985pt;}
.h7_c00450{height:64.784526pt;}
.h2_c00450{height:1159.999952pt;}
.h0_c00450{height:1159.999959pt;}
.h1_c00450{height:1160.000000pt;}
.w2_c00450{width:830.999965pt;}
.w0_c00450{width:831.000000pt;}
.w1_c00450{width:831.333333pt;}
.x0_c00450{left:0.000000pt;}
.x2_c00450{left:78.625965pt;}
.x1_c00450{left:80.367933pt;}
.x6_c00450{left:96.055698pt;}
.x3_c00450{left:97.474332pt;}
.x2d_c00450{left:119.906064pt;}
.x2c_c00450{left:121.392652pt;}
.x2e_c00450{left:124.389083pt;}
.x2f_c00450{left:128.698021pt;}
.x30_c00450{left:133.464791pt;}
.x31_c00450{left:135.910272pt;}
.x32_c00450{left:138.584129pt;}
.x33_c00450{left:142.002076pt;}
.x3d_c00450{left:143.420132pt;}
.x34_c00450{left:145.070170pt;}
.x35_c00450{left:152.430191pt;}
.x36_c00450{left:159.776608pt;}
.x37_c00450{left:167.266795pt;}
.x38_c00450{left:174.717010pt;}
.x39_c00450{left:178.419115pt;}
.x3a_c00450{left:182.468375pt;}
.x3b_c00450{left:185.852506pt;}
.x3c_c00450{left:188.150503pt;}
.x9_c00450{left:204.676373pt;}
.x8_c00450{left:206.574107pt;}
.xa_c00450{left:209.317987pt;}
.xb_c00450{left:213.616993pt;}
.xc_c00450{left:218.376513pt;}
.xd_c00450{left:220.819105pt;}
.xe_c00450{left:223.490334pt;}
.xf_c00450{left:226.905704pt;}
.x3f_c00450{left:227.972394pt;}
.x10_c00450{left:229.825509pt;}
.x11_c00450{left:233.767373pt;}
.x12_c00450{left:241.423300pt;}
.x13_c00450{left:251.942027pt;}
.x14_c00450{left:258.549026pt;}
.x15_c00450{left:261.564741pt;}
.x5_c00450{left:262.612255pt;}
.x16_c00450{left:266.308178pt;}
.x17_c00450{left:269.319244pt;}
.x18_c00450{left:272.883167pt;}
.x19_c00450{left:289.225349pt;}
.x1a_c00450{left:290.306761pt;}
.x1b_c00450{left:291.569114pt;}
.x1c_c00450{left:294.587062pt;}
.x1d_c00450{left:297.451603pt;}
.x1e_c00450{left:302.677178pt;}
.x1f_c00450{left:308.173457pt;}
.x20_c00450{left:313.230862pt;}
.x21_c00450{left:316.260173pt;}
.x22_c00450{left:323.284548pt;}
.x23_c00450{left:330.381558pt;}
.x24_c00450{left:336.386614pt;}
.x25_c00450{left:339.069625pt;}
.x26_c00450{left:341.738474pt;}
.x27_c00450{left:344.757080pt;}
.x28_c00450{left:347.081977pt;}
.x29_c00450{left:350.026488pt;}
.x2a_c00450{left:354.624063pt;}
.x2b_c00450{left:357.115628pt;}
.x42_c00450{left:401.765180pt;}
.x4_c00450{left:413.420124pt;}
.x7_c00450{left:593.262247pt;}
.x41_c00450{left:601.310535pt;}
.x40_c00450{left:619.470933pt;}
.x3e_c00450{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.006348;font-style:normal;font-weight:normal;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_9d3641168845559a39298d87.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.000000;font-style:normal;font-weight:normal;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_8a387c9a6ee30361c28bf3d8.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.006348;font-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_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);}
.v0_c00451{vertical-align:0.000000px;}
.ls0_c00451{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00451{word-spacing:0.000000px;}
._4_c00451{width:1.037793px;}
._0_c00451{width:2.553141px;}
._2_c00451{width:4.335638px;}
._7_c00451{width:5.659935px;}
._5_c00451{width:8.004940px;}
._3_c00451{width:16.789239px;}
._6_c00451{width:27.437424px;}
._1_c00451{width:36.202095px;}
.fc1_c00451{color:rgb(0,0,0);}
.fc0_c00451{color:rgb(194,158,103);}
.fs3_c00451{font-size:71.912067px;}
.fs1_c00451{font-size:71.957041px;}
.fs2_c00451{font-size:74.340621px;}
.fs0_c00451{font-size:74.379845px;}
.y0_c00451{bottom:0.000000px;}
.y1_c00451{bottom:0.000008px;}
.y18_c00451{bottom:30.156225px;}
.ye_c00451{bottom:414.442609px;}
.yd_c00451{bottom:444.799486px;}
.yc_c00451{bottom:475.156363px;}
.yb_c00451{bottom:505.513239px;}
.ya_c00451{bottom:535.870116px;}
.y9_c00451{bottom:566.226993px;}
.y17_c00451{bottom:606.275888px;}
.y16_c00451{bottom:685.823419px;}
.y15_c00451{bottom:716.180296px;}
.y14_c00451{bottom:748.354008px;}
.y13_c00451{bottom:829.549311px;}
.y12_c00451{bottom:859.906188px;}
.y11_c00451{bottom:890.263065px;}
.y10_c00451{bottom:920.619942px;}
.yf_c00451{bottom:950.976818px;}
.y8_c00451{bottom:976.471897px;}
.y7_c00451{bottom:1054.397393px;}
.y6_c00451{bottom:1084.754270px;}
.y5_c00451{bottom:1115.111146px;}
.y4_c00451{bottom:1145.468023px;}
.y3_c00451{bottom:1175.824900px;}
.y2_c00451{bottom:1204.539346px;}
.h6_c00451{height:55.092790px;}
.h4_c00451{height:55.127245px;}
.h5_c00451{height:56.953337px;}
.h3_c00451{height:56.983387px;}
.h2_c00451{height:1304.999946px;}
.h0_c00451{height:1304.999953px;}
.h1_c00451{height:1305.000000px;}
.w2_c00451{width:934.874961px;}
.w0_c00451{width:934.875000px;}
.w1_c00451{width:935.250000px;}
.x0_c00451{left:0.000000px;}
.x1_c00451{left:87.850202px;}
.x2_c00451{left:451.985828px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ws0_c00451{word-spacing:-16.604696pt;}
.ws1_c00451{word-spacing:0.000000pt;}
._4_c00451{width:0.922483pt;}
._0_c00451{width:2.269458pt;}
._2_c00451{width:3.853900pt;}
._7_c00451{width:5.031053pt;}
._5_c00451{width:7.115502pt;}
._3_c00451{width:14.923768pt;}
._6_c00451{width:24.388821pt;}
._1_c00451{width:32.179640pt;}
.fs3_c00451{font-size:63.921837pt;}
.fs1_c00451{font-size:63.961814pt;}
.fs2_c00451{font-size:66.080552pt;}
.fs0_c00451{font-size:66.115417pt;}
.y0_c00451{bottom:0.000000pt;}
.y1_c00451{bottom:0.000007pt;}
.y18_c00451{bottom:26.805533pt;}
.ye_c00451{bottom:368.393430pt;}
.yd_c00451{bottom:395.377321pt;}
.yc_c00451{bottom:422.361211pt;}
.yb_c00451{bottom:449.345102pt;}
.ya_c00451{bottom:476.328992pt;}
.y9_c00451{bottom:503.312883pt;}
.y17_c00451{bottom:538.911900pt;}
.y16_c00451{bottom:609.620817pt;}
.y15_c00451{bottom:636.604707pt;}
.y14_c00451{bottom:665.203562pt;}
.y13_c00451{bottom:737.377166pt;}
.y12_c00451{bottom:764.361056pt;}
.y11_c00451{bottom:791.344947pt;}
.y10_c00451{bottom:818.328837pt;}
.yf_c00451{bottom:845.312728pt;}
.y8_c00451{bottom:867.975020pt;}
.y7_c00451{bottom:937.242127pt;}
.y6_c00451{bottom:964.226017pt;}
.y5_c00451{bottom:991.209908pt;}
.y4_c00451{bottom:1018.193798pt;}
.y3_c00451{bottom:1045.177689pt;}
.y2_c00451{bottom:1070.701641pt;}
.h6_c00451{height:48.971369pt;}
.h4_c00451{height:49.001996pt;}
.h5_c00451{height:50.625189pt;}
.h3_c00451{height:50.651899pt;}
.h2_c00451{height:1159.999952pt;}
.h0_c00451{height:1159.999959pt;}
.h1_c00451{height:1160.000000pt;}
.w2_c00451{width:830.999965pt;}
.w0_c00451{width:831.000000pt;}
.w1_c00451{width:831.333333pt;}
.x0_c00451{left:0.000000pt;}
.x1_c00451{left:78.089069pt;}
.x2_c00451{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20a8d9c81be7c595f113fe02.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:0.734863;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:1.006348;font-style:normal;font-weight: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_d51f40015ec8593d951a9f2d.woff2')format("woff");}.ff6_c00452{font-family:ff6_c00452;line-height:1.171387;font-style:normal;font-weight: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_2402db41555efe0632676842.woff2')format("woff");}.ff7_c00452{font-family:ff7_c00452;line-height:1.000000;font-style:normal;font-weight: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_c00452;src:url('chunks/assets/font_dc29bdae14d44d276c8bf086.woff2')format("woff");}.ff8_c00452{font-family:ff8_c00452;line-height:1.000000;font-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_c00452{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00452{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00452{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00452{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00452{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00452{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00452{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00452{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00452{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00452{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00452{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00452{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00452{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00452{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00452{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00452{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00452{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00452{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00452{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00452{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00452{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00452{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00452{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00452{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00452{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00452{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00452{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00452{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00452{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00452{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00452{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00452{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00452{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00452{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00452{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00452{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00452{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00452{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00452{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00452{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00452{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00452{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00452{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00452{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00452{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00452{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00452{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00452{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00452{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00452{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00452{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00452{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00452{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00452{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00452{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00452{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00452{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00452{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00452{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00452{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00452{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00452{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m0_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);}
.v0_c00452{vertical-align:0.000000px;}
.v1_c00452{vertical-align:26.810849px;}
.ls0_c00452{letter-spacing:0.000000px;}
.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;}
}
.ws3_c00452{word-spacing:-18.680283px;}
.ws1_c00452{word-spacing:-0.059949px;}
.ws4_c00452{word-spacing:0.000000px;}
.ws2_c00452{word-spacing:281.470806px;}
.ws0_c00452{word-spacing:1114.343689px;}
._0_c00452{width:8.332892px;}
._3_c00452{width:15.620101px;}
._2_c00452{width:20.456413px;}
._1_c00452{width:36.083926px;}
.fc3_c00452{color:rgb(194,158,103);}
.fc2_c00452{color:rgb(9,71,81);}
.fc1_c00452{color:rgb(255,255,255);}
.fc0_c00452{color:rgb(0,0,0);}
.fs8_c00452{font-size:41.974772px;}
.fsb_c00452{font-size:41.975069px;}
.fs2_c00452{font-size:47.339969px;}
.fs5_c00452{font-size:47.339970px;}
.fs1_c00452{font-size:47.339972px;}
.fs4_c00452{font-size:47.339973px;}
.fs3_c00452{font-size:47.339974px;}
.fs6_c00452{font-size:47.339975px;}
.fs9_c00452{font-size:51.630774px;}
.fsc_c00452{font-size:59.949210px;}
.fsf_c00452{font-size:64.334775px;}
.fs10_c00452{font-size:71.912067px;}
.fs0_c00452{font-size:71.957041px;}
.fsa_c00452{font-size:74.379845px;}
.fs7_c00452{font-size:76.965540px;}
.fse_c00452{font-size:89.946302px;}
.fsd_c00452{font-size:95.927731px;}
.y0_c00452{bottom:0.000000px;}
.y1_c00452{bottom:0.000008px;}
.y53_c00452{bottom:30.156225px;}
.y49_c00452{bottom:148.435920px;}
.y48_c00452{bottom:178.792797px;}
.y47_c00452{bottom:209.149674px;}
.y46_c00452{bottom:239.506550px;}
.y45_c00452{bottom:269.863427px;}
.y44_c00452{bottom:300.220304px;}
.y4a_c00452{bottom:336.777299px;}
.y43_c00452{bottom:402.064151px;}
.y10_c00452{bottom:493.812629px;}
.y38_c00452{bottom:493.827623px;}
.yf_c00452{bottom:494.337609px;}
.y39_c00452{bottom:494.357158px;}
.y22_c00452{bottom:494.700737px;}
.y37_c00452{bottom:495.071586px;}
.ye_c00452{bottom:495.403002px;}
.y23_c00452{bottom:495.533530px;}
.y21_c00452{bottom:495.553663px;}
.y36_c00452{bottom:496.322201px;}
.yd_c00452{bottom:496.475623px;}
.y20_c00452{bottom:496.587915px;}
.y3a_c00452{bottom:496.772260px;}
.y11_c00452{bottom:496.835884px;}
.y24_c00452{bottom:497.713596px;}
.y35_c00452{bottom:497.966053px;}
.yc_c00452{bottom:498.126234px;}
.y1f_c00452{bottom:498.789265px;}
.y25_c00452{bottom:499.103521px;}
.y34_c00452{bottom:499.653306px;}
.yb_c00452{bottom:499.818769px;}
.y26_c00452{bottom:500.800864px;}
.y12_c00452{bottom:501.110605px;}
.y33_c00452{bottom:501.517382px;}
.ya_c00452{bottom:501.687706px;}
.y3b_c00452{bottom:501.869915px;}
.y1e_c00452{bottom:502.578702px;}
.y27_c00452{bottom:503.241722px;}
.y13_c00452{bottom:503.627848px;}
.y3c_c00452{bottom:505.496019px;}
.y28_c00452{bottom:505.499367px;}
.y32_c00452{bottom:506.168989px;}
.y9_c00452{bottom:506.348634px;}
.y1d_c00452{bottom:508.044213px;}
.y29_c00452{bottom:508.766327px;}
.y14_c00452{bottom:509.576794px;}
.y3d_c00452{bottom:511.126534px;}
.y1c_c00452{bottom:512.508085px;}
.y31_c00452{bottom:512.566592px;}
.y8_c00452{bottom:512.754669px;}
.y15_c00452{bottom:514.322677px;}
.y2a_c00452{bottom:517.158603px;}
.y3e_c00452{bottom:517.780195px;}
.y1b_c00452{bottom:518.929057px;}
.y30_c00452{bottom:519.869222px;}
.y7_c00452{bottom:519.959421px;}
.y6_c00452{bottom:523.416158px;}
.y1a_c00452{bottom:523.496236px;}
.y2b_c00452{bottom:525.202812px;}
.y16_c00452{bottom:526.099549px;}
.y2f_c00452{bottom:527.026630px;}
.y5_c00452{bottom:529.422883px;}
.y3f_c00452{bottom:529.736175px;}
.y19_c00452{bottom:531.263725px;}
.y2e_c00452{bottom:531.792993px;}
.y41_c00452{bottom:533.728456px;}
.y52_c00452{bottom:534.421816px;}
.y18_c00452{bottom:535.155114px;}
.y4_c00452{bottom:536.678099px;}
.y2d_c00452{bottom:537.961701px;}
.y17_c00452{bottom:538.332892px;}
.y40_c00452{bottom:538.696314px;}
.y2c_c00452{bottom:545.020884px;}
.y3_c00452{bottom:546.207017px;}
.y42_c00452{bottom:577.871130px;}
.y2_c00452{bottom:597.559761px;}
.y4c_c00452{bottom:638.470702px;}
.y4d_c00452{bottom:1127.585799px;}
.y50_c00452{bottom:1129.718199px;}
.y4f_c00452{bottom:1147.707459px;}
.y4e_c00452{bottom:1150.017273px;}
.y51_c00452{bottom:1152.415141px;}
.y4b_c00452{bottom:1170.658440px;}
.hb_c00452{height:32.157430px;}
.h8_c00452{height:35.967282px;}
.h7_c00452{height:35.967283px;}
.h9_c00452{height:35.967285px;}
.h5_c00452{height:36.267779px;}
.h4_c00452{height:36.267781px;}
.h6_c00452{height:36.267783px;}
.hc_c00452{height:37.437353px;}
.he_c00452{height:39.085184px;}
.h15_c00452{height:55.092790px;}
.h3_c00452{height:55.127245px;}
.hf_c00452{height:55.821847px;}
.h14_c00452{height:56.261810px;}
.hd_c00452{height:56.983387px;}
.ha_c00452{height:58.968279px;}
.h13_c00452{height:59.905477px;}
.h10_c00452{height:67.002968px;}
.h12_c00452{height:68.338108px;}
.h11_c00452{height:72.882592px;}
.h2_c00452{height:1304.999946px;}
.h0_c00452{height:1304.999953px;}
.h1_c00452{height:1305.000000px;}
.w2_c00452{width:934.874961px;}
.w0_c00452{width:934.875000px;}
.w1_c00452{width:935.250000px;}
.x0_c00452{left:0.000000px;}
.x3b_c00452{left:88.454210px;}
.x3a_c00452{left:90.413924px;}
.x3f_c00452{left:108.062661px;}
.x3c_c00452{left:109.658623px;}
.x27_c00452{left:134.894322px;}
.x26_c00452{left:136.566734px;}
.x28_c00452{left:139.937719px;}
.x29_c00452{left:144.785273px;}
.x2a_c00452{left:150.147890px;}
.x2b_c00452{left:152.899057px;}
.x2c_c00452{left:155.907145px;}
.x2d_c00452{left:159.752336px;}
.x37_c00452{left:161.347648px;}
.x2e_c00452{left:163.203941px;}
.x2f_c00452{left:171.483965px;}
.x30_c00452{left:179.748684px;}
.x31_c00452{left:188.175145px;}
.x32_c00452{left:196.556636px;}
.x33_c00452{left:200.721504px;}
.x34_c00452{left:205.276922px;}
.x35_c00452{left:209.084069px;}
.x36_c00452{left:211.669316px;}
.x3_c00452{left:230.260919px;}
.x2_c00452{left:232.395871px;}
.x4_c00452{left:235.482735px;}
.x5_c00452{left:240.319117px;}
.x6_c00452{left:245.673577px;}
.x7_c00452{left:248.421493px;}
.x8_c00452{left:251.426626px;}
.x9_c00452{left:255.268917px;}
.x41_c00452{left:256.468943px;}
.xa_c00452{left:258.553698px;}
.xb_c00452{left:262.988294px;}
.xc_c00452{left:271.601212px;}
.xd_c00452{left:283.434780px;}
.xe_c00452{left:290.867654px;}
.xf_c00452{left:294.260334px;}
.x3e_c00452{left:295.438786px;}
.x10_c00452{left:299.596701px;}
.x11_c00452{left:302.984150px;}
.x12_c00452{left:306.993562px;}
.x13_c00452{left:325.378518px;}
.x14_c00452{left:326.595106px;}
.x15_c00452{left:328.015253px;}
.x16_c00452{left:331.410444px;}
.x17_c00452{left:334.633053px;}
.x18_c00452{left:340.511825px;}
.x19_c00452{left:346.695139px;}
.x1a_c00452{left:352.384720px;}
.x1b_c00452{left:355.792694px;}
.x1c_c00452{left:363.695116px;}
.x1d_c00452{left:371.679253px;}
.x1e_c00452{left:378.434940px;}
.x1f_c00452{left:381.453328px;}
.x20_c00452{left:384.455783px;}
.x21_c00452{left:387.851715px;}
.x22_c00452{left:390.467224px;}
.x23_c00452{left:393.779799px;}
.x24_c00452{left:398.952070px;}
.x25_c00452{left:401.755082px;}
.x42_c00452{left:451.985828px;}
.x1_c00452{left:465.097640px;}
.x40_c00452{left:643.898529px;}
.x3d_c00452{left:676.474352px;}
.x39_c00452{left:696.904800px;}
.x38_c00452{left:733.103068px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.v1_c00452{vertical-align:23.831865pt;}
.ls0_c00452{letter-spacing:0.000000pt;}
.ws3_c00452{word-spacing:-16.604696pt;}
.ws1_c00452{word-spacing:-0.053288pt;}
.ws4_c00452{word-spacing:0.000000pt;}
.ws2_c00452{word-spacing:250.196272pt;}
.ws0_c00452{word-spacing:990.527723pt;}
._0_c00452{width:7.407015pt;}
._3_c00452{width:13.884534pt;}
._2_c00452{width:18.183478pt;}
._1_c00452{width:32.074601pt;}
.fs8_c00452{font-size:37.310908pt;}
.fsb_c00452{font-size:37.311173pt;}
.fs2_c00452{font-size:42.079973pt;}
.fs5_c00452{font-size:42.079974pt;}
.fs1_c00452{font-size:42.079975pt;}
.fs4_c00452{font-size:42.079976pt;}
.fs3_c00452{font-size:42.079977pt;}
.fs6_c00452{font-size:42.079978pt;}
.fs9_c00452{font-size:45.894021pt;}
.fsc_c00452{font-size:53.288186pt;}
.fsf_c00452{font-size:57.186467pt;}
.fs10_c00452{font-size:63.921837pt;}
.fs0_c00452{font-size:63.961814pt;}
.fsa_c00452{font-size:66.115417pt;}
.fs7_c00452{font-size:68.413814pt;}
.fse_c00452{font-size:79.952268pt;}
.fsd_c00452{font-size:85.269094pt;}
.y0_c00452{bottom:0.000000pt;}
.y1_c00452{bottom:0.000007pt;}
.y53_c00452{bottom:26.805533pt;}
.y49_c00452{bottom:131.943040pt;}
.y48_c00452{bottom:158.926931pt;}
.y47_c00452{bottom:185.910821pt;}
.y46_c00452{bottom:212.894712pt;}
.y45_c00452{bottom:239.878602pt;}
.y44_c00452{bottom:266.862492pt;}
.y4a_c00452{bottom:299.357599pt;}
.y43_c00452{bottom:357.390356pt;}
.y10_c00452{bottom:438.944560pt;}
.y38_c00452{bottom:438.957887pt;}
.yf_c00452{bottom:439.411208pt;}
.y39_c00452{bottom:439.428585pt;}
.y22_c00452{bottom:439.733989pt;}
.y37_c00452{bottom:440.063632pt;}
.ye_c00452{bottom:440.358224pt;}
.y23_c00452{bottom:440.474249pt;}
.y21_c00452{bottom:440.492144pt;}
.y36_c00452{bottom:441.175290pt;}
.yd_c00452{bottom:441.311665pt;}
.y20_c00452{bottom:441.411480pt;}
.y3a_c00452{bottom:441.575343pt;}
.y11_c00452{bottom:441.631897pt;}
.y24_c00452{bottom:442.412085pt;}
.y35_c00452{bottom:442.636491pt;}
.yc_c00452{bottom:442.778875pt;}
.y1f_c00452{bottom:443.368235pt;}
.y25_c00452{bottom:443.647574pt;}
.y34_c00452{bottom:444.136272pt;}
.yb_c00452{bottom:444.283350pt;}
.y26_c00452{bottom:445.156323pt;}
.y12_c00452{bottom:445.431649pt;}
.y33_c00452{bottom:445.793228pt;}
.ya_c00452{bottom:445.944627pt;}
.y3b_c00452{bottom:446.106592pt;}
.y1e_c00452{bottom:446.736624pt;}
.y27_c00452{bottom:447.325975pt;}
.y13_c00452{bottom:447.669198pt;}
.y3c_c00452{bottom:449.329795pt;}
.y28_c00452{bottom:449.332771pt;}
.y32_c00452{bottom:449.927990pt;}
.y9_c00452{bottom:450.087675pt;}
.y1d_c00452{bottom:451.594856pt;}
.y29_c00452{bottom:452.236735pt;}
.y14_c00452{bottom:452.957150pt;}
.y3d_c00452{bottom:454.334697pt;}
.y1c_c00452{bottom:455.562742pt;}
.y31_c00452{bottom:455.614749pt;}
.y8_c00452{bottom:455.781928pt;}
.y15_c00452{bottom:457.175713pt;}
.y2a_c00452{bottom:459.696536pt;}
.y3e_c00452{bottom:460.249062pt;}
.y1b_c00452{bottom:461.270273pt;}
.y30_c00452{bottom:462.105976pt;}
.y7_c00452{bottom:462.186152pt;}
.y6_c00452{bottom:465.258807pt;}
.y1a_c00452{bottom:465.329988pt;}
.y2b_c00452{bottom:466.846944pt;}
.y16_c00452{bottom:467.644044pt;}
.y2f_c00452{bottom:468.468115pt;}
.y5_c00452{bottom:470.598118pt;}
.y3f_c00452{bottom:470.876600pt;}
.y19_c00452{bottom:472.234422pt;}
.y2e_c00452{bottom:472.704883pt;}
.y41_c00452{bottom:474.425294pt;}
.y52_c00452{bottom:475.041614pt;}
.y18_c00452{bottom:475.693435pt;}
.y4_c00452{bottom:477.047199pt;}
.y2d_c00452{bottom:478.188178pt;}
.y17_c00452{bottom:478.518126pt;}
.y40_c00452{bottom:478.841168pt;}
.y2c_c00452{bottom:484.463008pt;}
.y3_c00452{bottom:485.517349pt;}
.y42_c00452{bottom:513.663227pt;}
.y2_c00452{bottom:531.164232pt;}
.y4c_c00452{bottom:567.529513pt;}
.y4d_c00452{bottom:1002.298488pt;}
.y50_c00452{bottom:1004.193955pt;}
.y4f_c00452{bottom:1020.184408pt;}
.y4e_c00452{bottom:1022.237576pt;}
.y51_c00452{bottom:1024.369014pt;}
.y4b_c00452{bottom:1040.585280pt;}
.hb_c00452{height:28.584382pt;}
.h8_c00452{height:31.970917pt;}
.h7_c00452{height:31.970918pt;}
.h9_c00452{height:31.970920pt;}
.h5_c00452{height:32.238026pt;}
.h4_c00452{height:32.238028pt;}
.h6_c00452{height:32.238029pt;}
.hc_c00452{height:33.277647pt;}
.he_c00452{height:34.742386pt;}
.h15_c00452{height:48.971369pt;}
.h3_c00452{height:49.001996pt;}
.hf_c00452{height:49.619420pt;}
.h14_c00452{height:50.010498pt;}
.hd_c00452{height:50.651899pt;}
.ha_c00452{height:52.416248pt;}
.h13_c00452{height:53.249313pt;}
.h10_c00452{height:59.558193pt;}
.h12_c00452{height:60.744985pt;}
.h11_c00452{height:64.784526pt;}
.h2_c00452{height:1159.999952pt;}
.h0_c00452{height:1159.999959pt;}
.h1_c00452{height:1160.000000pt;}
.w2_c00452{width:830.999965pt;}
.w0_c00452{width:831.000000pt;}
.w1_c00452{width:831.333333pt;}
.x0_c00452{left:0.000000pt;}
.x3b_c00452{left:78.625965pt;}
.x3a_c00452{left:80.367933pt;}
.x3f_c00452{left:96.055698pt;}
.x3c_c00452{left:97.474332pt;}
.x27_c00452{left:119.906064pt;}
.x26_c00452{left:121.392652pt;}
.x28_c00452{left:124.389083pt;}
.x29_c00452{left:128.698021pt;}
.x2a_c00452{left:133.464791pt;}
.x2b_c00452{left:135.910272pt;}
.x2c_c00452{left:138.584129pt;}
.x2d_c00452{left:142.002076pt;}
.x37_c00452{left:143.420132pt;}
.x2e_c00452{left:145.070170pt;}
.x2f_c00452{left:152.430191pt;}
.x30_c00452{left:159.776608pt;}
.x31_c00452{left:167.266795pt;}
.x32_c00452{left:174.717010pt;}
.x33_c00452{left:178.419115pt;}
.x34_c00452{left:182.468375pt;}
.x35_c00452{left:185.852506pt;}
.x36_c00452{left:188.150503pt;}
.x3_c00452{left:204.676373pt;}
.x2_c00452{left:206.574107pt;}
.x4_c00452{left:209.317987pt;}
.x5_c00452{left:213.616993pt;}
.x6_c00452{left:218.376513pt;}
.x7_c00452{left:220.819105pt;}
.x8_c00452{left:223.490334pt;}
.x9_c00452{left:226.905704pt;}
.x41_c00452{left:227.972394pt;}
.xa_c00452{left:229.825509pt;}
.xb_c00452{left:233.767373pt;}
.xc_c00452{left:241.423300pt;}
.xd_c00452{left:251.942027pt;}
.xe_c00452{left:258.549026pt;}
.xf_c00452{left:261.564741pt;}
.x3e_c00452{left:262.612255pt;}
.x10_c00452{left:266.308178pt;}
.x11_c00452{left:269.319244pt;}
.x12_c00452{left:272.883167pt;}
.x13_c00452{left:289.225349pt;}
.x14_c00452{left:290.306761pt;}
.x15_c00452{left:291.569114pt;}
.x16_c00452{left:294.587062pt;}
.x17_c00452{left:297.451603pt;}
.x18_c00452{left:302.677178pt;}
.x19_c00452{left:308.173457pt;}
.x1a_c00452{left:313.230862pt;}
.x1b_c00452{left:316.260173pt;}
.x1c_c00452{left:323.284548pt;}
.x1d_c00452{left:330.381558pt;}
.x1e_c00452{left:336.386614pt;}
.x1f_c00452{left:339.069625pt;}
.x20_c00452{left:341.738474pt;}
.x21_c00452{left:344.757080pt;}
.x22_c00452{left:347.081977pt;}
.x23_c00452{left:350.026488pt;}
.x24_c00452{left:354.624063pt;}
.x25_c00452{left:357.115628pt;}
.x42_c00452{left:401.765180pt;}
.x1_c00452{left:413.420124pt;}
.x40_c00452{left:572.354248pt;}
.x3d_c00452{left:601.310535pt;}
.x39_c00452{left:619.470933pt;}
.x38_c00452{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.006348;font-style:normal;font-weight:normal;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_38d3cc8c2b9cf9b0f5537d85.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.171387;font-style:normal;font-weight:normal;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_6901d516fbc0351170fa8bfb.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.000000;font-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_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);}
.v0_c00453{vertical-align:0.000000px;}
.ls0_c00453{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00453{word-spacing:0.000000px;}
._3_c00453{width:1.037793px;}
._2_c00453{width:2.529739px;}
._0_c00453{width:4.627014px;}
._7_c00453{width:6.828454px;}
._5_c00453{width:8.004940px;}
._4_c00453{width:15.891026px;}
._1_c00453{width:17.070253px;}
._6_c00453{width:27.437424px;}
._8_c00453{width:57.911715px;}
.fc1_c00453{color:rgb(0,0,0);}
.fc0_c00453{color:rgb(194,158,103);}
.fs3_c00453{font-size:71.912067px;}
.fs1_c00453{font-size:71.957041px;}
.fs2_c00453{font-size:74.340621px;}
.fs0_c00453{font-size:74.379845px;}
.y0_c00453{bottom:0.000000px;}
.y1_c00453{bottom:0.000008px;}
.y14_c00453{bottom:30.156225px;}
.yc_c00453{bottom:572.476576px;}
.yb_c00453{bottom:602.833453px;}
.ya_c00453{bottom:633.190330px;}
.y9_c00453{bottom:663.547206px;}
.y8_c00453{bottom:693.904083px;}
.y7_c00453{bottom:724.260960px;}
.y13_c00453{bottom:757.549783px;}
.y12_c00453{bottom:824.274352px;}
.y11_c00453{bottom:854.631228px;}
.y10_c00453{bottom:886.804984px;}
.yf_c00453{bottom:953.529524px;}
.ye_c00453{bottom:983.886400px;}
.yd_c00453{bottom:1014.243277px;}
.y6_c00453{bottom:1046.892610px;}
.y5_c00453{bottom:1109.899815px;}
.y4_c00453{bottom:1140.256692px;}
.y3_c00453{bottom:1170.613569px;}
.y2_c00453{bottom:1204.539346px;}
.h6_c00453{height:54.670486px;}
.h5_c00453{height:56.953337px;}
.h3_c00453{height:56.983387px;}
.h7_c00453{height:66.961090px;}
.h4_c00453{height:67.002968px;}
.h2_c00453{height:1304.999946px;}
.h0_c00453{height:1304.999953px;}
.h1_c00453{height:1305.000000px;}
.w2_c00453{width:934.874961px;}
.w0_c00453{width:934.875000px;}
.w1_c00453{width:935.250000px;}
.x0_c00453{left:0.000000px;}
.x1_c00453{left:87.850202px;}
.x2_c00453{left:451.985828px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ws0_c00453{word-spacing:-16.604696pt;}
.ws1_c00453{word-spacing:0.000000pt;}
._3_c00453{width:0.922483pt;}
._2_c00453{width:2.248657pt;}
._0_c00453{width:4.112901pt;}
._7_c00453{width:6.069737pt;}
._5_c00453{width:7.115502pt;}
._4_c00453{width:14.125356pt;}
._1_c00453{width:15.173559pt;}
._6_c00453{width:24.388821pt;}
._8_c00453{width:51.477080pt;}
.fs3_c00453{font-size:63.921837pt;}
.fs1_c00453{font-size:63.961814pt;}
.fs2_c00453{font-size:66.080552pt;}
.fs0_c00453{font-size:66.115417pt;}
.y0_c00453{bottom:0.000000pt;}
.y1_c00453{bottom:0.000007pt;}
.y14_c00453{bottom:26.805533pt;}
.yc_c00453{bottom:508.868068pt;}
.yb_c00453{bottom:535.851958pt;}
.ya_c00453{bottom:562.835849pt;}
.y9_c00453{bottom:589.819739pt;}
.y8_c00453{bottom:616.803629pt;}
.y7_c00453{bottom:643.787520pt;}
.y13_c00453{bottom:673.377584pt;}
.y12_c00453{bottom:732.688313pt;}
.y11_c00453{bottom:759.672203pt;}
.y10_c00453{bottom:788.271096pt;}
.yf_c00453{bottom:847.581799pt;}
.ye_c00453{bottom:874.565689pt;}
.yd_c00453{bottom:901.549580pt;}
.y6_c00453{bottom:930.571209pt;}
.y5_c00453{bottom:986.577614pt;}
.y4_c00453{bottom:1013.561504pt;}
.y3_c00453{bottom:1040.545395pt;}
.y2_c00453{bottom:1070.701641pt;}
.h6_c00453{height:48.595988pt;}
.h5_c00453{height:50.625189pt;}
.h3_c00453{height:50.651899pt;}
.h7_c00453{height:59.520969pt;}
.h4_c00453{height:59.558193pt;}
.h2_c00453{height:1159.999952pt;}
.h0_c00453{height:1159.999959pt;}
.h1_c00453{height:1160.000000pt;}
.w2_c00453{width:830.999965pt;}
.w0_c00453{width:831.000000pt;}
.w1_c00453{width:831.333333pt;}
.x0_c00453{left:0.000000pt;}
.x1_c00453{left:78.089069pt;}
.x2_c00453{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_764176687b3823eb8220856a.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.006348;font-style:normal;font-weight:normal;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_fd746ed1f46240d43eb29aac.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:0.769531;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.006348;font-style:normal;font-weight:normal;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_44b2f1943d59c6aabb7d5b43.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:1.171387;font-style:normal;font-weight: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_c00454;src:url('chunks/assets/font_9690349179f8b0383c9b8512.woff2')format("woff");}.ff5_c00454{font-family:ff5_c00454;line-height:0.769531;font-style:normal;font-weight: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_c00454;src:url('chunks/assets/font_0ab6281c8e87bc74395db031.woff2')format("woff");}.ff6_c00454{font-family:ff6_c00454;line-height:1.000000;font-style:normal;font-weight: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_c00454;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00454{font-family:ff7_c00454;line-height:0.769531;font-style:normal;font-weight: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_c00454;src:url('chunks/assets/font_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff8_c00454{font-family:ff8_c00454;line-height:0.743000;font-style:normal;font-weight: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_c00454;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00454{font-family:ff9_c00454;line-height:0.734863;font-style:normal;font-weight: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_c00454;src:url('chunks/assets/font_9e8bf77b6896b4bed3912c4a.woff2')format("woff");}.ffa_c00454{font-family:ffa_c00454;line-height:0.894000;font-style:normal;font-weight: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_c00454;src:url('chunks/assets/font_2d358f218610cf5c16549b37.woff2')format("woff");}.ffb_c00454{font-family:ffb_c00454;line-height:0.895000;font-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_c00454{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00454{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00454{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00454{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00454{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00454{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00454{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00454{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00454{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00454{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00454{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00454{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00454{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00454{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00454{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00454{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00454{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00454{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00454{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00454{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00454{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00454{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00454{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00454{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00454{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00454{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00454{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00454{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00454{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00454{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00454{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00454{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00454{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00454{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00454{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00454{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00454{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00454{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00454{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00454{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00454{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00454{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00454{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00454{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00454{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00454{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00454{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00454{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00454{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00454{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00454{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00454{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00454{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00454{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00454{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00454{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00454{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00454{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00454{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00454{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00454{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00454{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00454{vertical-align:0.000000px;}
.v1_c00454{vertical-align:2.773440px;}
.ls0_c00454{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00454{word-spacing:-18.680283px;}
.ws3_c00454{word-spacing:0.000000px;}
.ws1_c00454{word-spacing:281.470806px;}
.ws0_c00454{word-spacing:281.744147px;}
._0_c00454{width:5.225067px;}
._1_c00454{width:6.234870px;}
._2_c00454{width:15.810873px;}
._3_c00454{width:17.019467px;}
._4_c00454{width:22.288526px;}
.fc3_c00454{color:rgb(9,71,81);}
.fc1_c00454{color:rgb(194,158,103);}
.fc2_c00454{color:rgb(255,255,255);}
.fc0_c00454{color:rgb(0,0,0);}
.fsd_c00454{font-size:41.974772px;}
.fs2_c00454{font-size:41.975069px;}
.fs7_c00454{font-size:47.339969px;}
.fsa_c00454{font-size:47.339970px;}
.fs6_c00454{font-size:47.339972px;}
.fs9_c00454{font-size:47.339973px;}
.fs8_c00454{font-size:47.339974px;}
.fsb_c00454{font-size:47.339975px;}
.fse_c00454{font-size:51.630774px;}
.fs10_c00454{font-size:56.388174px;}
.fs5_c00454{font-size:59.949210px;}
.fsf_c00454{font-size:71.912067px;}
.fs0_c00454{font-size:71.957041px;}
.fs1_c00454{font-size:74.379845px;}
.fsc_c00454{font-size:76.965540px;}
.fs4_c00454{font-size:89.946302px;}
.fs3_c00454{font-size:95.927731px;}
.y0_c00454{bottom:0.000000px;}
.y1_c00454{bottom:0.000008px;}
.y54_c00454{bottom:30.156225px;}
.y8_c00454{bottom:115.276552px;}
.y7_c00454{bottom:145.633428px;}
.y6_c00454{bottom:175.990305px;}
.y5_c00454{bottom:206.347182px;}
.y4_c00454{bottom:236.704059px;}
.y3_c00454{bottom:267.060935px;}
.y2_c00454{bottom:297.417812px;}
.y9_c00454{bottom:333.974735px;}
.y52_c00454{bottom:402.064151px;}
.y4f_c00454{bottom:487.376458px;}
.y1d_c00454{bottom:493.812629px;}
.y45_c00454{bottom:493.827623px;}
.y1c_c00454{bottom:494.337609px;}
.y46_c00454{bottom:494.357158px;}
.y2f_c00454{bottom:494.700737px;}
.y44_c00454{bottom:495.071586px;}
.y1b_c00454{bottom:495.403002px;}
.y30_c00454{bottom:495.533530px;}
.y2e_c00454{bottom:495.553663px;}
.y43_c00454{bottom:496.322201px;}
.y1a_c00454{bottom:496.475623px;}
.y2d_c00454{bottom:496.587915px;}
.y47_c00454{bottom:496.772260px;}
.y1e_c00454{bottom:496.835884px;}
.y31_c00454{bottom:497.713596px;}
.y42_c00454{bottom:497.966053px;}
.y19_c00454{bottom:498.126234px;}
.y2c_c00454{bottom:498.789265px;}
.y32_c00454{bottom:499.103521px;}
.y41_c00454{bottom:499.653306px;}
.y18_c00454{bottom:499.818769px;}
.y33_c00454{bottom:500.800864px;}
.y1f_c00454{bottom:501.110605px;}
.y40_c00454{bottom:501.517382px;}
.y17_c00454{bottom:501.687706px;}
.y48_c00454{bottom:501.869915px;}
.y2b_c00454{bottom:502.578702px;}
.y34_c00454{bottom:503.241722px;}
.y20_c00454{bottom:503.627848px;}
.y49_c00454{bottom:505.496019px;}
.y35_c00454{bottom:505.499367px;}
.y3f_c00454{bottom:506.168989px;}
.y16_c00454{bottom:506.348634px;}
.y2a_c00454{bottom:508.044213px;}
.y36_c00454{bottom:508.766327px;}
.y21_c00454{bottom:509.576794px;}
.y4a_c00454{bottom:511.126534px;}
.y29_c00454{bottom:512.508085px;}
.y3e_c00454{bottom:512.566592px;}
.y15_c00454{bottom:512.754669px;}
.y22_c00454{bottom:514.322677px;}
.y37_c00454{bottom:517.158603px;}
.y4b_c00454{bottom:517.780195px;}
.y28_c00454{bottom:518.929057px;}
.y3d_c00454{bottom:519.869222px;}
.y14_c00454{bottom:519.959421px;}
.y13_c00454{bottom:523.416158px;}
.y27_c00454{bottom:523.496236px;}
.y38_c00454{bottom:525.202812px;}
.y23_c00454{bottom:526.099549px;}
.y3c_c00454{bottom:527.026630px;}
.y12_c00454{bottom:529.422883px;}
.y4c_c00454{bottom:529.736175px;}
.y26_c00454{bottom:531.263725px;}
.y3b_c00454{bottom:531.792993px;}
.y4e_c00454{bottom:533.728456px;}
.y25_c00454{bottom:535.155114px;}
.y11_c00454{bottom:536.678099px;}
.y3a_c00454{bottom:537.961701px;}
.y24_c00454{bottom:538.332892px;}
.y4d_c00454{bottom:538.696314px;}
.y50_c00454{bottom:540.431168px;}
.y39_c00454{bottom:545.020884px;}
.y10_c00454{bottom:546.207017px;}
.y51_c00454{bottom:577.871130px;}
.yb_c00454{bottom:597.559761px;}
.y53_c00454{bottom:638.470702px;}
.y55_c00454{bottom:1025.167633px;}
.yc_c00454{bottom:1127.585799px;}
.yf_c00454{bottom:1129.718199px;}
.ye_c00454{bottom:1147.707459px;}
.yd_c00454{bottom:1150.017273px;}
.ya_c00454{bottom:1170.658440px;}
.h11_c00454{height:32.157430px;}
.he_c00454{height:35.967282px;}
.hd_c00454{height:35.967283px;}
.hf_c00454{height:35.967285px;}
.hb_c00454{height:36.267779px;}
.ha_c00454{height:36.267781px;}
.hc_c00454{height:36.267783px;}
.h12_c00454{height:37.437353px;}
.h5_c00454{height:39.085184px;}
.h14_c00454{height:40.317545px;}
.h13_c00454{height:55.092790px;}
.h3_c00454{height:55.127245px;}
.h9_c00454{height:55.821847px;}
.h4_c00454{height:56.983387px;}
.h10_c00454{height:59.035250px;}
.h6_c00454{height:67.002968px;}
.h8_c00454{height:68.338108px;}
.h7_c00454{height:89.323331px;}
.h2_c00454{height:1304.999946px;}
.h0_c00454{height:1304.999953px;}
.h1_c00454{height:1305.000000px;}
.w2_c00454{width:934.874961px;}
.w0_c00454{width:934.875000px;}
.w1_c00454{width:935.250000px;}
.x0_c00454{left:0.000000px;}
.x2_c00454{left:88.454210px;}
.x1_c00454{left:90.413924px;}
.x6_c00454{left:108.062661px;}
.x3_c00454{left:109.658623px;}
.x2c_c00454{left:134.894322px;}
.x2b_c00454{left:136.566734px;}
.x2d_c00454{left:139.937719px;}
.x2e_c00454{left:144.785273px;}
.x2f_c00454{left:150.147890px;}
.x30_c00454{left:152.899057px;}
.x31_c00454{left:155.907145px;}
.x32_c00454{left:159.752336px;}
.x3c_c00454{left:161.347648px;}
.x33_c00454{left:163.203941px;}
.x34_c00454{left:171.483965px;}
.x35_c00454{left:179.748684px;}
.x36_c00454{left:188.175145px;}
.x37_c00454{left:196.556636px;}
.x38_c00454{left:200.721504px;}
.x39_c00454{left:205.276922px;}
.x3a_c00454{left:209.084069px;}
.x3b_c00454{left:211.669316px;}
.x8_c00454{left:230.260919px;}
.x7_c00454{left:232.395871px;}
.x9_c00454{left:235.482735px;}
.xa_c00454{left:240.319117px;}
.xb_c00454{left:245.673577px;}
.xc_c00454{left:248.421493px;}
.xd_c00454{left:251.426626px;}
.xe_c00454{left:255.268917px;}
.xf_c00454{left:258.553698px;}
.x10_c00454{left:262.988294px;}
.x11_c00454{left:271.601212px;}
.x12_c00454{left:283.434780px;}
.x13_c00454{left:290.867654px;}
.x14_c00454{left:294.260334px;}
.x5_c00454{left:295.438786px;}
.x15_c00454{left:299.596701px;}
.x16_c00454{left:302.984150px;}
.x17_c00454{left:306.993562px;}
.x18_c00454{left:325.378518px;}
.x19_c00454{left:326.595106px;}
.x1a_c00454{left:328.015253px;}
.x1b_c00454{left:331.410444px;}
.x1c_c00454{left:334.633053px;}
.x1d_c00454{left:340.511825px;}
.x1e_c00454{left:346.695139px;}
.x1f_c00454{left:352.384720px;}
.x20_c00454{left:355.792694px;}
.x21_c00454{left:363.695116px;}
.x22_c00454{left:371.679253px;}
.x23_c00454{left:378.434940px;}
.x24_c00454{left:381.453328px;}
.x25_c00454{left:384.455783px;}
.x26_c00454{left:387.851715px;}
.x27_c00454{left:390.467224px;}
.x28_c00454{left:393.779799px;}
.x29_c00454{left:398.952070px;}
.x2a_c00454{left:401.755082px;}
.x41_c00454{left:451.985828px;}
.x4_c00454{left:465.097640px;}
.x40_c00454{left:676.474352px;}
.x3f_c00454{left:696.904800px;}
.x3e_c00454{left:733.103068px;}
.x3d_c00454{left:756.637341px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.v1_c00454{vertical-align:2.465280pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws2_c00454{word-spacing:-16.604696pt;}
.ws3_c00454{word-spacing:0.000000pt;}
.ws1_c00454{word-spacing:250.196272pt;}
.ws0_c00454{word-spacing:250.439242pt;}
._0_c00454{width:4.644504pt;}
._1_c00454{width:5.542107pt;}
._2_c00454{width:14.054109pt;}
._3_c00454{width:15.128415pt;}
._4_c00454{width:19.812023pt;}
.fsd_c00454{font-size:37.310908pt;}
.fs2_c00454{font-size:37.311173pt;}
.fs7_c00454{font-size:42.079973pt;}
.fsa_c00454{font-size:42.079974pt;}
.fs6_c00454{font-size:42.079975pt;}
.fs9_c00454{font-size:42.079976pt;}
.fs8_c00454{font-size:42.079977pt;}
.fsb_c00454{font-size:42.079978pt;}
.fse_c00454{font-size:45.894021pt;}
.fs10_c00454{font-size:50.122822pt;}
.fs5_c00454{font-size:53.288186pt;}
.fsf_c00454{font-size:63.921837pt;}
.fs0_c00454{font-size:63.961814pt;}
.fs1_c00454{font-size:66.115417pt;}
.fsc_c00454{font-size:68.413814pt;}
.fs4_c00454{font-size:79.952268pt;}
.fs3_c00454{font-size:85.269094pt;}
.y0_c00454{bottom:0.000000pt;}
.y1_c00454{bottom:0.000007pt;}
.y54_c00454{bottom:26.805533pt;}
.y8_c00454{bottom:102.468046pt;}
.y7_c00454{bottom:129.451936pt;}
.y6_c00454{bottom:156.435827pt;}
.y5_c00454{bottom:183.419717pt;}
.y4_c00454{bottom:210.403608pt;}
.y3_c00454{bottom:237.387498pt;}
.y2_c00454{bottom:264.371389pt;}
.y9_c00454{bottom:296.866431pt;}
.y52_c00454{bottom:357.390356pt;}
.y4f_c00454{bottom:433.223518pt;}
.y1d_c00454{bottom:438.944560pt;}
.y45_c00454{bottom:438.957887pt;}
.y1c_c00454{bottom:439.411208pt;}
.y46_c00454{bottom:439.428585pt;}
.y2f_c00454{bottom:439.733989pt;}
.y44_c00454{bottom:440.063632pt;}
.y1b_c00454{bottom:440.358224pt;}
.y30_c00454{bottom:440.474249pt;}
.y2e_c00454{bottom:440.492144pt;}
.y43_c00454{bottom:441.175290pt;}
.y1a_c00454{bottom:441.311665pt;}
.y2d_c00454{bottom:441.411480pt;}
.y47_c00454{bottom:441.575343pt;}
.y1e_c00454{bottom:441.631897pt;}
.y31_c00454{bottom:442.412085pt;}
.y42_c00454{bottom:442.636491pt;}
.y19_c00454{bottom:442.778875pt;}
.y2c_c00454{bottom:443.368235pt;}
.y32_c00454{bottom:443.647574pt;}
.y41_c00454{bottom:444.136272pt;}
.y18_c00454{bottom:444.283350pt;}
.y33_c00454{bottom:445.156323pt;}
.y1f_c00454{bottom:445.431649pt;}
.y40_c00454{bottom:445.793228pt;}
.y17_c00454{bottom:445.944627pt;}
.y48_c00454{bottom:446.106592pt;}
.y2b_c00454{bottom:446.736624pt;}
.y34_c00454{bottom:447.325975pt;}
.y20_c00454{bottom:447.669198pt;}
.y49_c00454{bottom:449.329795pt;}
.y35_c00454{bottom:449.332771pt;}
.y3f_c00454{bottom:449.927990pt;}
.y16_c00454{bottom:450.087675pt;}
.y2a_c00454{bottom:451.594856pt;}
.y36_c00454{bottom:452.236735pt;}
.y21_c00454{bottom:452.957150pt;}
.y4a_c00454{bottom:454.334697pt;}
.y29_c00454{bottom:455.562742pt;}
.y3e_c00454{bottom:455.614749pt;}
.y15_c00454{bottom:455.781928pt;}
.y22_c00454{bottom:457.175713pt;}
.y37_c00454{bottom:459.696536pt;}
.y4b_c00454{bottom:460.249062pt;}
.y28_c00454{bottom:461.270273pt;}
.y3d_c00454{bottom:462.105976pt;}
.y14_c00454{bottom:462.186152pt;}
.y13_c00454{bottom:465.258807pt;}
.y27_c00454{bottom:465.329988pt;}
.y38_c00454{bottom:466.846944pt;}
.y23_c00454{bottom:467.644044pt;}
.y3c_c00454{bottom:468.468115pt;}
.y12_c00454{bottom:470.598118pt;}
.y4c_c00454{bottom:470.876600pt;}
.y26_c00454{bottom:472.234422pt;}
.y3b_c00454{bottom:472.704883pt;}
.y4e_c00454{bottom:474.425294pt;}
.y25_c00454{bottom:475.693435pt;}
.y11_c00454{bottom:477.047199pt;}
.y3a_c00454{bottom:478.188178pt;}
.y24_c00454{bottom:478.518126pt;}
.y4d_c00454{bottom:478.841168pt;}
.y50_c00454{bottom:480.383260pt;}
.y39_c00454{bottom:484.463008pt;}
.y10_c00454{bottom:485.517349pt;}
.y51_c00454{bottom:513.663227pt;}
.yb_c00454{bottom:531.164232pt;}
.y53_c00454{bottom:567.529513pt;}
.y55_c00454{bottom:911.260118pt;}
.yc_c00454{bottom:1002.298488pt;}
.yf_c00454{bottom:1004.193955pt;}
.ye_c00454{bottom:1020.184408pt;}
.yd_c00454{bottom:1022.237576pt;}
.ya_c00454{bottom:1040.585280pt;}
.h11_c00454{height:28.584382pt;}
.he_c00454{height:31.970917pt;}
.hd_c00454{height:31.970918pt;}
.hf_c00454{height:31.970920pt;}
.hb_c00454{height:32.238026pt;}
.ha_c00454{height:32.238028pt;}
.hc_c00454{height:32.238029pt;}
.h12_c00454{height:33.277647pt;}
.h5_c00454{height:34.742386pt;}
.h14_c00454{height:35.837817pt;}
.h13_c00454{height:48.971369pt;}
.h3_c00454{height:49.001996pt;}
.h9_c00454{height:49.619420pt;}
.h4_c00454{height:50.651899pt;}
.h10_c00454{height:52.475778pt;}
.h6_c00454{height:59.558193pt;}
.h8_c00454{height:60.744985pt;}
.h7_c00454{height:79.398517pt;}
.h2_c00454{height:1159.999952pt;}
.h0_c00454{height:1159.999959pt;}
.h1_c00454{height:1160.000000pt;}
.w2_c00454{width:830.999965pt;}
.w0_c00454{width:831.000000pt;}
.w1_c00454{width:831.333333pt;}
.x0_c00454{left:0.000000pt;}
.x2_c00454{left:78.625965pt;}
.x1_c00454{left:80.367933pt;}
.x6_c00454{left:96.055698pt;}
.x3_c00454{left:97.474332pt;}
.x2c_c00454{left:119.906064pt;}
.x2b_c00454{left:121.392652pt;}
.x2d_c00454{left:124.389083pt;}
.x2e_c00454{left:128.698021pt;}
.x2f_c00454{left:133.464791pt;}
.x30_c00454{left:135.910272pt;}
.x31_c00454{left:138.584129pt;}
.x32_c00454{left:142.002076pt;}
.x3c_c00454{left:143.420132pt;}
.x33_c00454{left:145.070170pt;}
.x34_c00454{left:152.430191pt;}
.x35_c00454{left:159.776608pt;}
.x36_c00454{left:167.266795pt;}
.x37_c00454{left:174.717010pt;}
.x38_c00454{left:178.419115pt;}
.x39_c00454{left:182.468375pt;}
.x3a_c00454{left:185.852506pt;}
.x3b_c00454{left:188.150503pt;}
.x8_c00454{left:204.676373pt;}
.x7_c00454{left:206.574107pt;}
.x9_c00454{left:209.317987pt;}
.xa_c00454{left:213.616993pt;}
.xb_c00454{left:218.376513pt;}
.xc_c00454{left:220.819105pt;}
.xd_c00454{left:223.490334pt;}
.xe_c00454{left:226.905704pt;}
.xf_c00454{left:229.825509pt;}
.x10_c00454{left:233.767373pt;}
.x11_c00454{left:241.423300pt;}
.x12_c00454{left:251.942027pt;}
.x13_c00454{left:258.549026pt;}
.x14_c00454{left:261.564741pt;}
.x5_c00454{left:262.612255pt;}
.x15_c00454{left:266.308178pt;}
.x16_c00454{left:269.319244pt;}
.x17_c00454{left:272.883167pt;}
.x18_c00454{left:289.225349pt;}
.x19_c00454{left:290.306761pt;}
.x1a_c00454{left:291.569114pt;}
.x1b_c00454{left:294.587062pt;}
.x1c_c00454{left:297.451603pt;}
.x1d_c00454{left:302.677178pt;}
.x1e_c00454{left:308.173457pt;}
.x1f_c00454{left:313.230862pt;}
.x20_c00454{left:316.260173pt;}
.x21_c00454{left:323.284548pt;}
.x22_c00454{left:330.381558pt;}
.x23_c00454{left:336.386614pt;}
.x24_c00454{left:339.069625pt;}
.x25_c00454{left:341.738474pt;}
.x26_c00454{left:344.757080pt;}
.x27_c00454{left:347.081977pt;}
.x28_c00454{left:350.026488pt;}
.x29_c00454{left:354.624063pt;}
.x2a_c00454{left:357.115628pt;}
.x41_c00454{left:401.765180pt;}
.x4_c00454{left:413.420124pt;}
.x40_c00454{left:601.310535pt;}
.x3f_c00454{left:619.470933pt;}
.x3e_c00454{left:651.647171pt;}
.x3d_c00454{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.006348;font-style:normal;font-weight:normal;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_6898b3bb59fde4fcf3d71dcd.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.171387;font-style:normal;font-weight:normal;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_075798adce9931b035e568b5.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:0.954102;font-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_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);}
.v0_c00455{vertical-align:0.000000px;}
.ls0_c00455{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00455{word-spacing:-18.680283px;}
.ws0_c00455{word-spacing:-0.071957px;}
.ws2_c00455{word-spacing:0.000000px;}
._5_c00455{width:1.877196px;}
._a_c00455{width:3.182285px;}
._2_c00455{width:4.703392px;}
._4_c00455{width:6.610783px;}
._6_c00455{width:8.102729px;}
._b_c00455{width:12.077618px;}
._3_c00455{width:13.557821px;}
._8_c00455{width:14.721136px;}
._1_c00455{width:17.532500px;}
._c_c00455{width:19.844294px;}
._0_c00455{width:21.332944px;}
._7_c00455{width:24.070817px;}
._9_c00455{width:34.579494px;}
._d_c00455{width:79.064386px;}
.fc1_c00455{color:rgb(0,0,0);}
.fc0_c00455{color:rgb(194,158,103);}
.fs3_c00455{font-size:71.912067px;}
.fs1_c00455{font-size:71.957041px;}
.fs2_c00455{font-size:74.340621px;}
.fs0_c00455{font-size:74.379845px;}
.y0_c00455{bottom:0.000000px;}
.y1_c00455{bottom:0.000008px;}
.y1d_c00455{bottom:30.156225px;}
.y1b_c00455{bottom:281.261097px;}
.y1a_c00455{bottom:311.617973px;}
.y19_c00455{bottom:341.974850px;}
.y18_c00455{bottom:372.331727px;}
.y17_c00455{bottom:402.688604px;}
.y16_c00455{bottom:433.045480px;}
.y15_c00455{bottom:463.402357px;}
.y1c_c00455{bottom:499.770036px;}
.y14_c00455{bottom:569.253771px;}
.y13_c00455{bottom:599.610647px;}
.y12_c00455{bottom:629.967524px;}
.y11_c00455{bottom:660.324401px;}
.y10_c00455{bottom:693.319143px;}
.yf_c00455{bottom:761.681260px;}
.ye_c00455{bottom:792.038137px;}
.yd_c00455{bottom:822.395014px;}
.yc_c00455{bottom:852.751890px;}
.yb_c00455{bottom:883.108767px;}
.ya_c00455{bottom:913.465644px;}
.y9_c00455{bottom:943.822521px;}
.y8_c00455{bottom:980.721319px;}
.y7_c00455{bottom:1048.509359px;}
.y6_c00455{bottom:1078.866236px;}
.y5_c00455{bottom:1109.223113px;}
.y4_c00455{bottom:1139.579989px;}
.y3_c00455{bottom:1169.936866px;}
.y2_c00455{bottom:1203.501516px;}
.h5_c00455{height:56.953337px;}
.h3_c00455{height:56.983387px;}
.h6_c00455{height:66.961090px;}
.h4_c00455{height:67.002968px;}
.h2_c00455{height:1304.999946px;}
.h0_c00455{height:1304.999953px;}
.h1_c00455{height:1305.000000px;}
.w2_c00455{width:934.874961px;}
.w0_c00455{width:934.875000px;}
.w1_c00455{width:935.250000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:87.850202px;}
.x2_c00455{left:89.434062px;}
.x3_c00455{left:451.985828px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ws1_c00455{word-spacing:-16.604696pt;}
.ws0_c00455{word-spacing:-0.063962pt;}
.ws2_c00455{word-spacing:0.000000pt;}
._5_c00455{width:1.668619pt;}
._a_c00455{width:2.828698pt;}
._2_c00455{width:4.180793pt;}
._4_c00455{width:5.876252pt;}
._6_c00455{width:7.202426pt;}
._b_c00455{width:10.735661pt;}
._3_c00455{width:12.051397pt;}
._8_c00455{width:13.085455pt;}
._1_c00455{width:15.584444pt;}
._c_c00455{width:17.639372pt;}
._0_c00455{width:18.962617pt;}
._7_c00455{width:21.396282pt;}
._9_c00455{width:30.737328pt;}
._d_c00455{width:70.279454pt;}
.fs3_c00455{font-size:63.921837pt;}
.fs1_c00455{font-size:63.961814pt;}
.fs2_c00455{font-size:66.080552pt;}
.fs0_c00455{font-size:66.115417pt;}
.y0_c00455{bottom:0.000000pt;}
.y1_c00455{bottom:0.000007pt;}
.y1d_c00455{bottom:26.805533pt;}
.y1b_c00455{bottom:250.009864pt;}
.y1a_c00455{bottom:276.993754pt;}
.y19_c00455{bottom:303.977645pt;}
.y18_c00455{bottom:330.961535pt;}
.y17_c00455{bottom:357.945425pt;}
.y16_c00455{bottom:384.929316pt;}
.y15_c00455{bottom:411.913206pt;}
.y1c_c00455{bottom:444.240032pt;}
.y14_c00455{bottom:506.003352pt;}
.y13_c00455{bottom:532.987242pt;}
.y12_c00455{bottom:559.971133pt;}
.y11_c00455{bottom:586.955023pt;}
.y10_c00455{bottom:616.283683pt;}
.yf_c00455{bottom:677.050009pt;}
.ye_c00455{bottom:704.033899pt;}
.yd_c00455{bottom:731.017790pt;}
.yc_c00455{bottom:758.001680pt;}
.yb_c00455{bottom:784.985571pt;}
.ya_c00455{bottom:811.969461pt;}
.y9_c00455{bottom:838.953352pt;}
.y8_c00455{bottom:871.752283pt;}
.y7_c00455{bottom:932.008319pt;}
.y6_c00455{bottom:958.992210pt;}
.y5_c00455{bottom:985.976100pt;}
.y4_c00455{bottom:1012.959991pt;}
.y3_c00455{bottom:1039.943881pt;}
.y2_c00455{bottom:1069.779125pt;}
.h5_c00455{height:50.625189pt;}
.h3_c00455{height:50.651899pt;}
.h6_c00455{height:59.520969pt;}
.h4_c00455{height:59.558193pt;}
.h2_c00455{height:1159.999952pt;}
.h0_c00455{height:1159.999959pt;}
.h1_c00455{height:1160.000000pt;}
.w2_c00455{width:830.999965pt;}
.w0_c00455{width:831.000000pt;}
.w1_c00455{width:831.333333pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:78.089069pt;}
.x2_c00455{left:79.496944pt;}
.x3_c00455{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f3001c8854ab01dbc91a432.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.006348;font-style:normal;font-weight:normal;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_a97e3e502ef57b893b58724b.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00456;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00456{font-family:ff4_c00456;line-height:0.734863;font-style:normal;font-weight: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_c00456;src:url('chunks/assets/font_e9e9a39174caabc4985742e0.woff2')format("woff");}.ff5_c00456{font-family:ff5_c00456;line-height:0.769531;font-style:normal;font-weight: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_c00456;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff6_c00456{font-family:ff6_c00456;line-height:1.006348;font-style:normal;font-weight: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_c00456;src:url('chunks/assets/font_b21ad9415905dad8fe8143dd.woff2')format("woff");}.ff7_c00456{font-family:ff7_c00456;line-height:1.171387;font-style:normal;font-weight: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_c00456;src:url('chunks/assets/font_0ab6281c8e87bc74395db031.woff2')format("woff");}.ff8_c00456{font-family:ff8_c00456;line-height:1.000000;font-style:normal;font-weight: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_c00456;src:url('chunks/assets/font_8ac05b6f65f1c425e9362f55.woff2')format("woff");}.ff9_c00456{font-family:ff9_c00456;line-height:0.769531;font-style:normal;font-weight: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_c00456;src:url('chunks/assets/font_84fc5eff5714ef80a017c08a.woff2')format("woff");}.ffa_c00456{font-family:ffa_c00456;line-height:0.894000;font-style:normal;font-weight: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_c00456;src:url('chunks/assets/font_0120fee5f9a08de76c4a1442.woff2')format("woff");}.ffb_c00456{font-family:ffb_c00456;line-height:0.895000;font-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_c00456{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00456{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00456{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00456{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00456{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00456{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00456{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00456{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00456{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00456{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00456{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00456{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00456{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00456{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00456{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00456{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00456{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00456{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00456{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00456{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00456{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00456{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00456{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00456{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00456{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00456{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00456{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00456{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00456{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00456{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00456{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00456{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00456{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00456{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00456{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00456{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00456{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00456{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00456{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00456{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00456{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00456{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00456{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00456{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00456{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00456{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00456{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00456{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00456{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00456{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00456{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00456{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00456{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00456{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00456{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00456{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00456{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00456{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00456{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00456{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00456{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00456{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v2_c00456{vertical-align:-6.073200px;}
.v1_c00456{vertical-align:-3.036528px;}
.v0_c00456{vertical-align:0.000000px;}
.ls0_c00456{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00456{word-spacing:-18.680283px;}
.ws5_c00456{word-spacing:-16.683099px;}
.ws2_c00456{word-spacing:-15.162211px;}
.ws6_c00456{word-spacing:0.000000px;}
.ws1_c00456{word-spacing:271.173924px;}
.ws0_c00456{word-spacing:271.173939px;}
.ws3_c00456{word-spacing:271.298873px;}
._2_c00456{width:1.660896px;}
._0_c00456{width:2.799088px;}
._1_c00456{width:11.891918px;}
._4_c00456{width:17.388595px;}
._3_c00456{width:50.485476px;}
.fc3_c00456{color:rgb(194,158,103);}
.fc2_c00456{color:rgb(9,71,81);}
.fc1_c00456{color:rgb(255,255,255);}
.fc0_c00456{color:rgb(0,0,0);}
.fs8_c00456{font-size:41.974772px;}
.fsb_c00456{font-size:41.975069px;}
.fs3_c00456{font-size:47.339969px;}
.fs6_c00456{font-size:47.339970px;}
.fs2_c00456{font-size:47.339972px;}
.fs5_c00456{font-size:47.339973px;}
.fs4_c00456{font-size:47.339974px;}
.fs7_c00456{font-size:47.339975px;}
.fs9_c00456{font-size:51.630774px;}
.fs10_c00456{font-size:56.388174px;}
.fs11_c00456{font-size:59.159925px;}
.fsc_c00456{font-size:59.949210px;}
.fsf_c00456{font-size:71.912067px;}
.fs0_c00456{font-size:71.957041px;}
.fsa_c00456{font-size:74.379845px;}
.fs1_c00456{font-size:76.965540px;}
.fse_c00456{font-size:89.946302px;}
.fsd_c00456{font-size:95.927731px;}
.y0_c00456{bottom:0.000000px;}
.y1_c00456{bottom:0.000008px;}
.y54_c00456{bottom:30.156225px;}
.y4b_c00456{bottom:123.700695px;}
.y4a_c00456{bottom:154.057572px;}
.y49_c00456{bottom:184.414449px;}
.y48_c00456{bottom:214.771325px;}
.y47_c00456{bottom:245.128202px;}
.y46_c00456{bottom:275.485079px;}
.y45_c00456{bottom:305.841956px;}
.y4c_c00456{bottom:339.025895px;}
.y44_c00456{bottom:402.064151px;}
.y11_c00456{bottom:493.812629px;}
.y39_c00456{bottom:493.827623px;}
.y10_c00456{bottom:494.337609px;}
.y3a_c00456{bottom:494.357158px;}
.y23_c00456{bottom:494.700737px;}
.y38_c00456{bottom:495.071586px;}
.yf_c00456{bottom:495.403002px;}
.y24_c00456{bottom:495.533530px;}
.y22_c00456{bottom:495.553663px;}
.y37_c00456{bottom:496.322201px;}
.ye_c00456{bottom:496.475623px;}
.y21_c00456{bottom:496.587915px;}
.y3b_c00456{bottom:496.772260px;}
.y12_c00456{bottom:496.835884px;}
.y25_c00456{bottom:497.713596px;}
.y36_c00456{bottom:497.966053px;}
.yd_c00456{bottom:498.126234px;}
.y20_c00456{bottom:498.789265px;}
.y26_c00456{bottom:499.103521px;}
.y35_c00456{bottom:499.653306px;}
.yc_c00456{bottom:499.818769px;}
.y27_c00456{bottom:500.800864px;}
.y13_c00456{bottom:501.110605px;}
.y34_c00456{bottom:501.517382px;}
.yb_c00456{bottom:501.687706px;}
.y3c_c00456{bottom:501.869915px;}
.y1f_c00456{bottom:502.578702px;}
.y28_c00456{bottom:503.241722px;}
.y14_c00456{bottom:503.627848px;}
.y3d_c00456{bottom:505.496019px;}
.y29_c00456{bottom:505.499367px;}
.y33_c00456{bottom:506.168989px;}
.ya_c00456{bottom:506.348634px;}
.y1e_c00456{bottom:508.044213px;}
.y2a_c00456{bottom:508.766327px;}
.y15_c00456{bottom:509.576794px;}
.y3e_c00456{bottom:511.126534px;}
.y1d_c00456{bottom:512.508085px;}
.y32_c00456{bottom:512.566592px;}
.y9_c00456{bottom:512.754669px;}
.y16_c00456{bottom:514.322677px;}
.y2b_c00456{bottom:517.158603px;}
.y3f_c00456{bottom:517.780195px;}
.y1c_c00456{bottom:518.929057px;}
.y31_c00456{bottom:519.869222px;}
.y8_c00456{bottom:519.959421px;}
.y7_c00456{bottom:523.416158px;}
.y1b_c00456{bottom:523.496236px;}
.y2c_c00456{bottom:525.202812px;}
.y17_c00456{bottom:526.099549px;}
.y30_c00456{bottom:527.026630px;}
.y6_c00456{bottom:529.422883px;}
.y40_c00456{bottom:529.736175px;}
.y1a_c00456{bottom:531.263725px;}
.y2f_c00456{bottom:531.792993px;}
.y53_c00456{bottom:532.181392px;}
.y19_c00456{bottom:535.155114px;}
.y5_c00456{bottom:536.678099px;}
.y2e_c00456{bottom:537.961701px;}
.y18_c00456{bottom:538.332892px;}
.y41_c00456{bottom:538.696314px;}
.y42_c00456{bottom:540.431168px;}
.y2d_c00456{bottom:545.020884px;}
.y4_c00456{bottom:546.207017px;}
.y3_c00456{bottom:552.637887px;}
.y43_c00456{bottom:577.871130px;}
.y2_c00456{bottom:597.559761px;}
.y4e_c00456{bottom:638.470702px;}
.y56_c00456{bottom:981.952025px;}
.y55_c00456{bottom:1025.167633px;}
.y4f_c00456{bottom:1127.585799px;}
.y52_c00456{bottom:1129.718199px;}
.y51_c00456{bottom:1147.707459px;}
.y50_c00456{bottom:1150.017273px;}
.y4d_c00456{bottom:1170.658440px;}
.hb_c00456{height:32.157430px;}
.h9_c00456{height:35.967282px;}
.h8_c00456{height:35.967283px;}
.ha_c00456{height:35.967285px;}
.h6_c00456{height:36.267779px;}
.h5_c00456{height:36.267781px;}
.h7_c00456{height:36.267783px;}
.hc_c00456{height:37.437353px;}
.he_c00456{height:39.085184px;}
.h14_c00456{height:40.317545px;}
.h15_c00456{height:42.299347px;}
.h13_c00456{height:55.092790px;}
.h3_c00456{height:55.127245px;}
.h4_c00456{height:55.338224px;}
.hf_c00456{height:55.821847px;}
.hd_c00456{height:56.983387px;}
.h10_c00456{height:67.002968px;}
.h12_c00456{height:68.338108px;}
.h11_c00456{height:89.323331px;}
.h2_c00456{height:1304.999946px;}
.h0_c00456{height:1304.999953px;}
.h1_c00456{height:1305.000000px;}
.w2_c00456{width:934.874961px;}
.w0_c00456{width:934.875000px;}
.w1_c00456{width:935.250000px;}
.x0_c00456{left:0.000000px;}
.x3a_c00456{left:88.454210px;}
.x39_c00456{left:90.413924px;}
.x3e_c00456{left:108.062661px;}
.x3b_c00456{left:109.658623px;}
.x40_c00456{left:133.720722px;}
.x28_c00456{left:134.894322px;}
.x27_c00456{left:136.566734px;}
.x29_c00456{left:139.937719px;}
.x2a_c00456{left:144.785273px;}
.x2b_c00456{left:150.147890px;}
.x2c_c00456{left:152.899057px;}
.x2d_c00456{left:155.907145px;}
.x2_c00456{left:160.442659px;}
.x2e_c00456{left:163.203941px;}
.x2f_c00456{left:171.483965px;}
.x30_c00456{left:179.748684px;}
.x31_c00456{left:188.175145px;}
.x32_c00456{left:196.556636px;}
.x33_c00456{left:200.721504px;}
.x34_c00456{left:205.276922px;}
.x35_c00456{left:209.084069px;}
.x36_c00456{left:211.669316px;}
.x4_c00456{left:230.260919px;}
.x3_c00456{left:232.395871px;}
.x5_c00456{left:235.482735px;}
.x6_c00456{left:240.319117px;}
.x7_c00456{left:245.673577px;}
.x8_c00456{left:248.421493px;}
.x9_c00456{left:251.426626px;}
.xa_c00456{left:255.268917px;}
.xb_c00456{left:258.553698px;}
.xc_c00456{left:262.988294px;}
.xd_c00456{left:271.601212px;}
.xe_c00456{left:283.434780px;}
.xf_c00456{left:290.867654px;}
.x10_c00456{left:294.260334px;}
.x3d_c00456{left:295.438786px;}
.x11_c00456{left:299.596701px;}
.x12_c00456{left:302.984150px;}
.x13_c00456{left:306.993562px;}
.x14_c00456{left:325.378518px;}
.x15_c00456{left:326.595106px;}
.x16_c00456{left:328.015253px;}
.x17_c00456{left:331.410444px;}
.x18_c00456{left:334.633053px;}
.x19_c00456{left:340.511825px;}
.x1a_c00456{left:346.695139px;}
.x1b_c00456{left:352.384720px;}
.x1c_c00456{left:355.792694px;}
.x1d_c00456{left:363.695116px;}
.x1e_c00456{left:371.679253px;}
.x1f_c00456{left:378.434940px;}
.x20_c00456{left:381.453328px;}
.x21_c00456{left:384.455783px;}
.x22_c00456{left:387.851715px;}
.x23_c00456{left:390.467224px;}
.x24_c00456{left:393.779799px;}
.x25_c00456{left:398.952070px;}
.x26_c00456{left:401.755082px;}
.x3f_c00456{left:451.985828px;}
.x1_c00456{left:465.097640px;}
.x3c_c00456{left:676.474352px;}
.x38_c00456{left:696.904800px;}
.x37_c00456{left:733.103068px;}
@media print{
.v2_c00456{vertical-align:-5.398400pt;}
.v1_c00456{vertical-align:-2.699136pt;}
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws4_c00456{word-spacing:-16.604696pt;}
.ws5_c00456{word-spacing:-14.829421pt;}
.ws2_c00456{word-spacing:-13.477521pt;}
.ws6_c00456{word-spacing:0.000000pt;}
.ws1_c00456{word-spacing:241.043488pt;}
.ws0_c00456{word-spacing:241.043501pt;}
.ws3_c00456{word-spacing:241.154554pt;}
._2_c00456{width:1.476352pt;}
._0_c00456{width:2.488078pt;}
._1_c00456{width:10.570594pt;}
._4_c00456{width:15.456529pt;}
._3_c00456{width:44.875979pt;}
.fs8_c00456{font-size:37.310908pt;}
.fsb_c00456{font-size:37.311173pt;}
.fs3_c00456{font-size:42.079973pt;}
.fs6_c00456{font-size:42.079974pt;}
.fs2_c00456{font-size:42.079975pt;}
.fs5_c00456{font-size:42.079976pt;}
.fs4_c00456{font-size:42.079977pt;}
.fs7_c00456{font-size:42.079978pt;}
.fs9_c00456{font-size:45.894021pt;}
.fs10_c00456{font-size:50.122822pt;}
.fs11_c00456{font-size:52.586600pt;}
.fsc_c00456{font-size:53.288186pt;}
.fsf_c00456{font-size:63.921837pt;}
.fs0_c00456{font-size:63.961814pt;}
.fsa_c00456{font-size:66.115417pt;}
.fs1_c00456{font-size:68.413814pt;}
.fse_c00456{font-size:79.952268pt;}
.fsd_c00456{font-size:85.269094pt;}
.y0_c00456{bottom:0.000000pt;}
.y1_c00456{bottom:0.000007pt;}
.y54_c00456{bottom:26.805533pt;}
.y4b_c00456{bottom:109.956173pt;}
.y4a_c00456{bottom:136.940064pt;}
.y49_c00456{bottom:163.923954pt;}
.y48_c00456{bottom:190.907845pt;}
.y47_c00456{bottom:217.891735pt;}
.y46_c00456{bottom:244.875626pt;}
.y45_c00456{bottom:271.859516pt;}
.y4c_c00456{bottom:301.356351pt;}
.y44_c00456{bottom:357.390356pt;}
.y11_c00456{bottom:438.944560pt;}
.y39_c00456{bottom:438.957887pt;}
.y10_c00456{bottom:439.411208pt;}
.y3a_c00456{bottom:439.428585pt;}
.y23_c00456{bottom:439.733989pt;}
.y38_c00456{bottom:440.063632pt;}
.yf_c00456{bottom:440.358224pt;}
.y24_c00456{bottom:440.474249pt;}
.y22_c00456{bottom:440.492144pt;}
.y37_c00456{bottom:441.175290pt;}
.ye_c00456{bottom:441.311665pt;}
.y21_c00456{bottom:441.411480pt;}
.y3b_c00456{bottom:441.575343pt;}
.y12_c00456{bottom:441.631897pt;}
.y25_c00456{bottom:442.412085pt;}
.y36_c00456{bottom:442.636491pt;}
.yd_c00456{bottom:442.778875pt;}
.y20_c00456{bottom:443.368235pt;}
.y26_c00456{bottom:443.647574pt;}
.y35_c00456{bottom:444.136272pt;}
.yc_c00456{bottom:444.283350pt;}
.y27_c00456{bottom:445.156323pt;}
.y13_c00456{bottom:445.431649pt;}
.y34_c00456{bottom:445.793228pt;}
.yb_c00456{bottom:445.944627pt;}
.y3c_c00456{bottom:446.106592pt;}
.y1f_c00456{bottom:446.736624pt;}
.y28_c00456{bottom:447.325975pt;}
.y14_c00456{bottom:447.669198pt;}
.y3d_c00456{bottom:449.329795pt;}
.y29_c00456{bottom:449.332771pt;}
.y33_c00456{bottom:449.927990pt;}
.ya_c00456{bottom:450.087675pt;}
.y1e_c00456{bottom:451.594856pt;}
.y2a_c00456{bottom:452.236735pt;}
.y15_c00456{bottom:452.957150pt;}
.y3e_c00456{bottom:454.334697pt;}
.y1d_c00456{bottom:455.562742pt;}
.y32_c00456{bottom:455.614749pt;}
.y9_c00456{bottom:455.781928pt;}
.y16_c00456{bottom:457.175713pt;}
.y2b_c00456{bottom:459.696536pt;}
.y3f_c00456{bottom:460.249062pt;}
.y1c_c00456{bottom:461.270273pt;}
.y31_c00456{bottom:462.105976pt;}
.y8_c00456{bottom:462.186152pt;}
.y7_c00456{bottom:465.258807pt;}
.y1b_c00456{bottom:465.329988pt;}
.y2c_c00456{bottom:466.846944pt;}
.y17_c00456{bottom:467.644044pt;}
.y30_c00456{bottom:468.468115pt;}
.y6_c00456{bottom:470.598118pt;}
.y40_c00456{bottom:470.876600pt;}
.y1a_c00456{bottom:472.234422pt;}
.y2f_c00456{bottom:472.704883pt;}
.y53_c00456{bottom:473.050126pt;}
.y19_c00456{bottom:475.693435pt;}
.y5_c00456{bottom:477.047199pt;}
.y2e_c00456{bottom:478.188178pt;}
.y18_c00456{bottom:478.518126pt;}
.y41_c00456{bottom:478.841168pt;}
.y42_c00456{bottom:480.383260pt;}
.y2d_c00456{bottom:484.463008pt;}
.y4_c00456{bottom:485.517349pt;}
.y3_c00456{bottom:491.233677pt;}
.y43_c00456{bottom:513.663227pt;}
.y2_c00456{bottom:531.164232pt;}
.y4e_c00456{bottom:567.529513pt;}
.y56_c00456{bottom:872.846244pt;}
.y55_c00456{bottom:911.260118pt;}
.y4f_c00456{bottom:1002.298488pt;}
.y52_c00456{bottom:1004.193955pt;}
.y51_c00456{bottom:1020.184408pt;}
.y50_c00456{bottom:1022.237576pt;}
.y4d_c00456{bottom:1040.585280pt;}
.hb_c00456{height:28.584382pt;}
.h9_c00456{height:31.970917pt;}
.h8_c00456{height:31.970918pt;}
.ha_c00456{height:31.970920pt;}
.h6_c00456{height:32.238026pt;}
.h5_c00456{height:32.238028pt;}
.h7_c00456{height:32.238029pt;}
.hc_c00456{height:33.277647pt;}
.he_c00456{height:34.742386pt;}
.h14_c00456{height:35.837817pt;}
.h15_c00456{height:37.599419pt;}
.h13_c00456{height:48.971369pt;}
.h3_c00456{height:49.001996pt;}
.h4_c00456{height:49.189532pt;}
.hf_c00456{height:49.619420pt;}
.hd_c00456{height:50.651899pt;}
.h10_c00456{height:59.558193pt;}
.h12_c00456{height:60.744985pt;}
.h11_c00456{height:79.398517pt;}
.h2_c00456{height:1159.999952pt;}
.h0_c00456{height:1159.999959pt;}
.h1_c00456{height:1160.000000pt;}
.w2_c00456{width:830.999965pt;}
.w0_c00456{width:831.000000pt;}
.w1_c00456{width:831.333333pt;}
.x0_c00456{left:0.000000pt;}
.x3a_c00456{left:78.625965pt;}
.x39_c00456{left:80.367933pt;}
.x3e_c00456{left:96.055698pt;}
.x3b_c00456{left:97.474332pt;}
.x40_c00456{left:118.862864pt;}
.x28_c00456{left:119.906064pt;}
.x27_c00456{left:121.392652pt;}
.x29_c00456{left:124.389083pt;}
.x2a_c00456{left:128.698021pt;}
.x2b_c00456{left:133.464791pt;}
.x2c_c00456{left:135.910272pt;}
.x2d_c00456{left:138.584129pt;}
.x2_c00456{left:142.615696pt;}
.x2e_c00456{left:145.070170pt;}
.x2f_c00456{left:152.430191pt;}
.x30_c00456{left:159.776608pt;}
.x31_c00456{left:167.266795pt;}
.x32_c00456{left:174.717010pt;}
.x33_c00456{left:178.419115pt;}
.x34_c00456{left:182.468375pt;}
.x35_c00456{left:185.852506pt;}
.x36_c00456{left:188.150503pt;}
.x4_c00456{left:204.676373pt;}
.x3_c00456{left:206.574107pt;}
.x5_c00456{left:209.317987pt;}
.x6_c00456{left:213.616993pt;}
.x7_c00456{left:218.376513pt;}
.x8_c00456{left:220.819105pt;}
.x9_c00456{left:223.490334pt;}
.xa_c00456{left:226.905704pt;}
.xb_c00456{left:229.825509pt;}
.xc_c00456{left:233.767373pt;}
.xd_c00456{left:241.423300pt;}
.xe_c00456{left:251.942027pt;}
.xf_c00456{left:258.549026pt;}
.x10_c00456{left:261.564741pt;}
.x3d_c00456{left:262.612255pt;}
.x11_c00456{left:266.308178pt;}
.x12_c00456{left:269.319244pt;}
.x13_c00456{left:272.883167pt;}
.x14_c00456{left:289.225349pt;}
.x15_c00456{left:290.306761pt;}
.x16_c00456{left:291.569114pt;}
.x17_c00456{left:294.587062pt;}
.x18_c00456{left:297.451603pt;}
.x19_c00456{left:302.677178pt;}
.x1a_c00456{left:308.173457pt;}
.x1b_c00456{left:313.230862pt;}
.x1c_c00456{left:316.260173pt;}
.x1d_c00456{left:323.284548pt;}
.x1e_c00456{left:330.381558pt;}
.x1f_c00456{left:336.386614pt;}
.x20_c00456{left:339.069625pt;}
.x21_c00456{left:341.738474pt;}
.x22_c00456{left:344.757080pt;}
.x23_c00456{left:347.081977pt;}
.x24_c00456{left:350.026488pt;}
.x25_c00456{left:354.624063pt;}
.x26_c00456{left:357.115628pt;}
.x3f_c00456{left:401.765180pt;}
.x1_c00456{left:413.420124pt;}
.x3c_c00456{left:601.310535pt;}
.x38_c00456{left:619.470933pt;}
.x37_c00456{left:651.647171pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_493ab5c59ee0c9f876c75d5a.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.006348;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.006348;font-style:normal;font-weight:normal;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_e9e9a39174caabc4985742e0.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:0.769531;font-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_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);}
.v0_c00457{vertical-align:0.000000px;}
.ls0_c00457{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00457{word-spacing:0.000000px;}
._9_c00457{margin-left:-18.691964px;}
._7_c00457{width:1.762594px;}
._10_c00457{width:2.929674px;}
._e_c00457{width:3.938582px;}
._8_c00457{width:4.945287px;}
._c_c00457{width:6.316379px;}
._6_c00457{width:7.512499px;}
._5_c00457{width:9.461406px;}
._2_c00457{width:10.591638px;}
._4_c00457{width:12.302356px;}
._3_c00457{width:13.962703px;}
._f_c00457{width:16.910083px;}
._a_c00457{width:26.840945px;}
._1_c00457{width:28.728919px;}
._b_c00457{width:30.890903px;}
._0_c00457{width:34.796684px;}
._d_c00457{width:37.840692px;}
.fc1_c00457{color:rgb(194,158,103);}
.fc0_c00457{color:rgb(0,0,0);}
.fs3_c00457{font-size:71.912067px;}
.fs0_c00457{font-size:71.957041px;}
.fs2_c00457{font-size:74.340621px;}
.fs1_c00457{font-size:74.379845px;}
.y0_c00457{bottom:0.000000px;}
.y1_c00457{bottom:0.000008px;}
.y23_c00457{bottom:30.156225px;}
.y22_c00457{bottom:63.570119px;}
.y21_c00457{bottom:97.299982px;}
.y20_c00457{bottom:131.029845px;}
.y1f_c00457{bottom:164.759708px;}
.y1e_c00457{bottom:198.489571px;}
.y1d_c00457{bottom:232.219434px;}
.y1c_c00457{bottom:265.949297px;}
.y1b_c00457{bottom:299.679160px;}
.y1a_c00457{bottom:333.409023px;}
.y19_c00457{bottom:367.138886px;}
.y18_c00457{bottom:400.868749px;}
.y17_c00457{bottom:434.598613px;}
.y16_c00457{bottom:468.328476px;}
.y15_c00457{bottom:502.058339px;}
.y14_c00457{bottom:535.788202px;}
.y13_c00457{bottom:569.518065px;}
.y12_c00457{bottom:603.247928px;}
.y11_c00457{bottom:636.977791px;}
.y10_c00457{bottom:670.707654px;}
.yf_c00457{bottom:704.437517px;}
.ye_c00457{bottom:746.200203px;}
.yd_c00457{bottom:805.504199px;}
.yc_c00457{bottom:839.234063px;}
.yb_c00457{bottom:872.963926px;}
.ya_c00457{bottom:906.693789px;}
.y9_c00457{bottom:945.677825px;}
.y8_c00457{bottom:997.455898px;}
.y7_c00457{bottom:1031.185761px;}
.y6_c00457{bottom:1064.915625px;}
.y5_c00457{bottom:1098.645488px;}
.y4_c00457{bottom:1132.375351px;}
.y3_c00457{bottom:1166.105214px;}
.y2_c00457{bottom:1199.835077px;}
.h6_c00457{height:55.092790px;}
.h3_c00457{height:55.127245px;}
.h5_c00457{height:56.953337px;}
.h4_c00457{height:56.983387px;}
.h2_c00457{height:1304.999946px;}
.h0_c00457{height:1304.999953px;}
.h1_c00457{height:1305.000000px;}
.w2_c00457{width:934.874961px;}
.w0_c00457{width:934.875000px;}
.w1_c00457{width:935.250000px;}
.x0_c00457{left:0.000000px;}
.x1_c00457{left:87.850202px;}
.x2_c00457{left:451.985828px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws0_c00457{word-spacing:-16.604696pt;}
.ws1_c00457{word-spacing:0.000000pt;}
._9_c00457{margin-left:-16.615079pt;}
._7_c00457{width:1.566750pt;}
._10_c00457{width:2.604154pt;}
._e_c00457{width:3.500962pt;}
._8_c00457{width:4.395811pt;}
._c_c00457{width:5.614559pt;}
._6_c00457{width:6.677777pt;}
._5_c00457{width:8.410138pt;}
._2_c00457{width:9.414789pt;}
._4_c00457{width:10.935428pt;}
._3_c00457{width:12.411291pt;}
._f_c00457{width:15.031185pt;}
._a_c00457{width:23.858618pt;}
._1_c00457{width:25.536817pt;}
._b_c00457{width:27.458580pt;}
._0_c00457{width:30.930386pt;}
._d_c00457{width:33.636171pt;}
.fs3_c00457{font-size:63.921837pt;}
.fs0_c00457{font-size:63.961814pt;}
.fs2_c00457{font-size:66.080552pt;}
.fs1_c00457{font-size:66.115417pt;}
.y0_c00457{bottom:0.000000pt;}
.y1_c00457{bottom:0.000007pt;}
.y23_c00457{bottom:26.805533pt;}
.y22_c00457{bottom:56.506772pt;}
.y21_c00457{bottom:86.488873pt;}
.y20_c00457{bottom:116.470973pt;}
.y1f_c00457{bottom:146.453074pt;}
.y1e_c00457{bottom:176.435174pt;}
.y1d_c00457{bottom:206.417275pt;}
.y1c_c00457{bottom:236.399375pt;}
.y1b_c00457{bottom:266.381476pt;}
.y1a_c00457{bottom:296.363576pt;}
.y19_c00457{bottom:326.345677pt;}
.y18_c00457{bottom:356.327777pt;}
.y17_c00457{bottom:386.309878pt;}
.y16_c00457{bottom:416.291978pt;}
.y15_c00457{bottom:446.274079pt;}
.y14_c00457{bottom:476.256179pt;}
.y13_c00457{bottom:506.238280pt;}
.y12_c00457{bottom:536.220380pt;}
.y11_c00457{bottom:566.202481pt;}
.y10_c00457{bottom:596.184581pt;}
.yf_c00457{bottom:626.166682pt;}
.ye_c00457{bottom:663.289070pt;}
.yd_c00457{bottom:716.003733pt;}
.yc_c00457{bottom:745.985833pt;}
.yb_c00457{bottom:775.967934pt;}
.ya_c00457{bottom:805.950034pt;}
.y9_c00457{bottom:840.602511pt;}
.y8_c00457{bottom:886.627465pt;}
.y7_c00457{bottom:916.609566pt;}
.y6_c00457{bottom:946.591666pt;}
.y5_c00457{bottom:976.573767pt;}
.y4_c00457{bottom:1006.555867pt;}
.y3_c00457{bottom:1036.537968pt;}
.y2_c00457{bottom:1066.520068pt;}
.h6_c00457{height:48.971369pt;}
.h3_c00457{height:49.001996pt;}
.h5_c00457{height:50.625189pt;}
.h4_c00457{height:50.651899pt;}
.h2_c00457{height:1159.999952pt;}
.h0_c00457{height:1159.999959pt;}
.h1_c00457{height:1160.000000pt;}
.w2_c00457{width:830.999965pt;}
.w0_c00457{width:831.000000pt;}
.w1_c00457{width:831.333333pt;}
.x0_c00457{left:0.000000pt;}
.x1_c00457{left:78.089069pt;}
.x2_c00457{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6fc2f1054389c0284d0b05a.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.006348;font-style:normal;font-weight:normal;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_f82c88f0152c43bf6f17db9d.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.006348;font-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_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);}
.v0_c00458{vertical-align:0.000000px;}
.ls0_c00458{letter-spacing:0.000000px;}
.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:-18.691966px;}
.ws1_c00458{word-spacing:-18.680283px;}
.ws2_c00458{word-spacing:0.000000px;}
._3_c00458{width:1.870268px;}
._c_c00458{width:3.545436px;}
._e_c00458{width:5.311612px;}
._b_c00458{width:6.312613px;}
._0_c00458{width:8.125787px;}
._8_c00458{width:9.586029px;}
._2_c00458{width:11.443255px;}
._f_c00458{width:14.743984px;}
._7_c00458{width:16.487778px;}
._5_c00458{width:17.511363px;}
._1_c00458{width:22.156289px;}
._6_c00458{width:24.058879px;}
._d_c00458{width:25.297399px;}
._9_c00458{width:27.603492px;}
._10_c00458{width:30.995785px;}
._4_c00458{width:32.126403px;}
._11_c00458{width:33.592135px;}
._a_c00458{width:42.568304px;}
._12_c00458{width:64.940006px;}
.fc1_c00458{color:rgb(194,158,103);}
.fc0_c00458{color:rgb(0,0,0);}
.fs2_c00458{font-size:71.912067px;}
.fs0_c00458{font-size:71.957041px;}
.fs1_c00458{font-size:74.340621px;}
.y0_c00458{bottom:0.000000px;}
.y1_c00458{bottom:0.000008px;}
.y1c_c00458{bottom:30.156225px;}
.y14_c00458{bottom:71.458690px;}
.y13_c00458{bottom:105.188553px;}
.y12_c00458{bottom:138.918416px;}
.y11_c00458{bottom:172.648279px;}
.y10_c00458{bottom:206.378142px;}
.yf_c00458{bottom:240.108005px;}
.ye_c00458{bottom:273.837868px;}
.yd_c00458{bottom:307.567731px;}
.yc_c00458{bottom:341.297594px;}
.yb_c00458{bottom:375.027457px;}
.ya_c00458{bottom:408.757320px;}
.y9_c00458{bottom:442.487183px;}
.y8_c00458{bottom:476.217047px;}
.y7_c00458{bottom:509.946910px;}
.y6_c00458{bottom:543.676773px;}
.y5_c00458{bottom:577.406636px;}
.y4_c00458{bottom:611.136499px;}
.y3_c00458{bottom:644.866362px;}
.y2_c00458{bottom:678.596225px;}
.y1b_c00458{bottom:732.227618px;}
.y1a_c00458{bottom:787.034257px;}
.y19_c00458{bottom:820.764120px;}
.y18_c00458{bottom:854.493983px;}
.y17_c00458{bottom:888.223846px;}
.y16_c00458{bottom:921.953709px;}
.y15_c00458{bottom:977.668703px;}
.y22_c00458{bottom:1025.548471px;}
.y21_c00458{bottom:1059.278334px;}
.y20_c00458{bottom:1093.008197px;}
.y1f_c00458{bottom:1126.738061px;}
.y1e_c00458{bottom:1160.467924px;}
.y1d_c00458{bottom:1194.197787px;}
.h5_c00458{height:55.092790px;}
.h3_c00458{height:55.127245px;}
.h4_c00458{height:56.953337px;}
.h2_c00458{height:1304.999946px;}
.h0_c00458{height:1304.999953px;}
.h1_c00458{height:1305.000000px;}
.w2_c00458{width:934.874961px;}
.w0_c00458{width:934.875000px;}
.w1_c00458{width:935.250000px;}
.x0_c00458{left:0.000000px;}
.x1_c00458{left:93.487496px;}
.x2_c00458{left:451.985828px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws0_c00458{word-spacing:-16.615081pt;}
.ws1_c00458{word-spacing:-16.604696pt;}
.ws2_c00458{word-spacing:0.000000pt;}
._3_c00458{width:1.662461pt;}
._c_c00458{width:3.151499pt;}
._e_c00458{width:4.721433pt;}
._b_c00458{width:5.611212pt;}
._0_c00458{width:7.222922pt;}
._8_c00458{width:8.520915pt;}
._2_c00458{width:10.171782pt;}
._f_c00458{width:13.105764pt;}
._7_c00458{width:14.655803pt;}
._5_c00458{width:15.565656pt;}
._1_c00458{width:19.694479pt;}
._6_c00458{width:21.385670pt;}
._d_c00458{width:22.486577pt;}
._9_c00458{width:24.536437pt;}
._10_c00458{width:27.551809pt;}
._4_c00458{width:28.556803pt;}
._11_c00458{width:29.859675pt;}
._a_c00458{width:37.838493pt;}
._12_c00458{width:57.724449pt;}
.fs2_c00458{font-size:63.921837pt;}
.fs0_c00458{font-size:63.961814pt;}
.fs1_c00458{font-size:66.080552pt;}
.y0_c00458{bottom:0.000000pt;}
.y1_c00458{bottom:0.000007pt;}
.y1c_c00458{bottom:26.805533pt;}
.y14_c00458{bottom:63.518835pt;}
.y13_c00458{bottom:93.500936pt;}
.y12_c00458{bottom:123.483036pt;}
.y11_c00458{bottom:153.465137pt;}
.y10_c00458{bottom:183.447237pt;}
.yf_c00458{bottom:213.429338pt;}
.ye_c00458{bottom:243.411438pt;}
.yd_c00458{bottom:273.393539pt;}
.yc_c00458{bottom:303.375639pt;}
.yb_c00458{bottom:333.357740pt;}
.ya_c00458{bottom:363.339840pt;}
.y9_c00458{bottom:393.321941pt;}
.y8_c00458{bottom:423.304041pt;}
.y7_c00458{bottom:453.286142pt;}
.y6_c00458{bottom:483.268242pt;}
.y5_c00458{bottom:513.250343pt;}
.y4_c00458{bottom:543.232443pt;}
.y3_c00458{bottom:573.214544pt;}
.y2_c00458{bottom:603.196644pt;}
.y1b_c00458{bottom:650.868993pt;}
.y1a_c00458{bottom:699.586006pt;}
.y19_c00458{bottom:729.568107pt;}
.y18_c00458{bottom:759.550207pt;}
.y17_c00458{bottom:789.532308pt;}
.y16_c00458{bottom:819.514408pt;}
.y15_c00458{bottom:869.038847pt;}
.y22_c00458{bottom:911.598641pt;}
.y21_c00458{bottom:941.580742pt;}
.y20_c00458{bottom:971.562842pt;}
.y1f_c00458{bottom:1001.544943pt;}
.y1e_c00458{bottom:1031.527043pt;}
.y1d_c00458{bottom:1061.509144pt;}
.h5_c00458{height:48.971369pt;}
.h3_c00458{height:49.001996pt;}
.h4_c00458{height:50.625189pt;}
.h2_c00458{height:1159.999952pt;}
.h0_c00458{height:1159.999959pt;}
.h1_c00458{height:1160.000000pt;}
.w2_c00458{width:830.999965pt;}
.w0_c00458{width:831.000000pt;}
.w1_c00458{width:831.333333pt;}
.x0_c00458{left:0.000000pt;}
.x1_c00458{left:83.099997pt;}
.x2_c00458{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44cab8874ba3e717472a70fd.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:0.775879;font-style:normal;font-weight:normal;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_18db5514819a101f0c51b705.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.006348;font-style:normal;font-weight:normal;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_c09df13aa7854b6da7d83294.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:0.929688;font-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_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);}
.v0_c00459{vertical-align:0.000000px;}
.ls0_c00459{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00459{word-spacing:0.000000px;}
._0_c00459{width:4.764327px;}
.fc1_c00459{color:rgb(0,0,0);}
.fc0_c00459{color:rgb(194,158,103);}
.fs1_c00459{font-size:71.912067px;}
.fs0_c00459{font-size:71.957041px;}
.y0_c00459{bottom:0.000000px;}
.y1_c00459{bottom:0.000008px;}
.y3_c00459{bottom:30.156225px;}
.y5_c00459{bottom:1113.346162px;}
.y4_c00459{bottom:1142.578710px;}
.y2_c00459{bottom:1199.835078px;}
.h4_c00459{height:55.092790px;}
.h3_c00459{height:55.127245px;}
.h2_c00459{height:1304.999946px;}
.h0_c00459{height:1304.999953px;}
.h1_c00459{height:1305.000000px;}
.w2_c00459{width:934.874961px;}
.w0_c00459{width:934.875000px;}
.w1_c00459{width:935.250000px;}
.x0_c00459{left:0.000000px;}
.x1_c00459{left:128.097383px;}
.x2_c00459{left:451.985828px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ws0_c00459{word-spacing:-16.604696pt;}
.ws1_c00459{word-spacing:0.000000pt;}
._0_c00459{width:4.234958pt;}
.fs1_c00459{font-size:63.921837pt;}
.fs0_c00459{font-size:63.961814pt;}
.y0_c00459{bottom:0.000000pt;}
.y1_c00459{bottom:0.000007pt;}
.y3_c00459{bottom:26.805533pt;}
.y5_c00459{bottom:989.641033pt;}
.y4_c00459{bottom:1015.625520pt;}
.y2_c00459{bottom:1066.520069pt;}
.h4_c00459{height:48.971369pt;}
.h3_c00459{height:49.001996pt;}
.h2_c00459{height:1159.999952pt;}
.h0_c00459{height:1159.999959pt;}
.h1_c00459{height:1160.000000pt;}
.w2_c00459{width:830.999965pt;}
.w0_c00459{width:831.000000pt;}
.w1_c00459{width:831.333333pt;}
.x0_c00459{left:0.000000pt;}
.x1_c00459{left:113.864341pt;}
.x2_c00459{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9783c5d9119bead748a2a0c2.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:0.710938;font-style:normal;font-weight:normal;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_08915ab9c2e5c1b7280ba0b2.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.151475;font-style:normal;font-weight:normal;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_c0fb52c1b0f5e4c7a180f5b1.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:0.769531;font-style:normal;font-weight:normal;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_7f37a1d446d172fe59f7e1e6.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:0.917969;font-style:normal;font-weight: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_c03ff7b81fcdf8f61134c76e.woff2')format("woff");}.ff5_c00460{font-family:ff5_c00460;line-height:0.727051;font-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_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);}
.v0_c00460{vertical-align:0.000000px;}
.ls0_c00460{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00460{word-spacing:-0.384790px;}
.ws1_c00460{word-spacing:0.000000px;}
._0_c00460{margin-left:-6.183953px;}
.fc0_c00460{color:rgb(255,255,255);}
.fs1_c00460{font-size:59.949210px;}
.fs0_c00460{font-size:384.790016px;}
.y0_c00460{bottom:0.000000px;}
.y1_c00460{bottom:0.000008px;}
.y7_c00460{bottom:92.996864px;}
.y6_c00460{bottom:114.359110px;}
.y5_c00460{bottom:135.721357px;}
.y4_c00460{bottom:157.083603px;}
.y3_c00460{bottom:178.445850px;}
.y2_c00460{bottom:520.780119px;}
.y9_c00460{bottom:1220.147955px;}
.y8_c00460{bottom:1240.385873px;}
.h5_c00460{height:45.547349px;}
.h4_c00460{height:57.003372px;}
.h3_c00460{height:269.803937px;}
.h2_c00460{height:1304.999946px;}
.h0_c00460{height:1304.999953px;}
.h1_c00460{height:1305.000000px;}
.w2_c00460{width:934.874961px;}
.w0_c00460{width:934.875000px;}
.w1_c00460{width:935.250000px;}
.x0_c00460{left:0.000000px;}
.x2_c00460{left:87.850202px;}
.x1_c00460{left:93.487496px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws0_c00460{word-spacing:-0.342036pt;}
.ws1_c00460{word-spacing:0.000000pt;}
._0_c00460{margin-left:-5.496848pt;}
.fs1_c00460{font-size:53.288186pt;}
.fs0_c00460{font-size:342.035570pt;}
.y0_c00460{bottom:0.000000pt;}
.y1_c00460{bottom:0.000007pt;}
.y7_c00460{bottom:82.663879pt;}
.y6_c00460{bottom:101.652542pt;}
.y5_c00460{bottom:120.641206pt;}
.y4_c00460{bottom:139.629870pt;}
.y3_c00460{bottom:158.618533pt;}
.y2_c00460{bottom:462.915662pt;}
.y9_c00460{bottom:1084.575960pt;}
.y8_c00460{bottom:1102.565220pt;}
.h5_c00460{height:40.486532pt;}
.h4_c00460{height:50.669664pt;}
.h3_c00460{height:239.825722pt;}
.h2_c00460{height:1159.999952pt;}
.h0_c00460{height:1159.999959pt;}
.h1_c00460{height:1160.000000pt;}
.w2_c00460{width:830.999965pt;}
.w0_c00460{width:831.000000pt;}
.w1_c00460{width:831.333333pt;}
.x0_c00460{left:0.000000pt;}
.x2_c00460{left:78.089069pt;}
.x1_c00460{left:83.099997pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00461{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
}
.y0_c00461{bottom:0.000000px;}
.h0_c00461{height:1304.999953px;}
.h1_c00461{height:1305.000000px;}
.w0_c00461{width:934.875000px;}
.w1_c00461{width:935.250000px;}
.x0_c00461{left:0.000000px;}
@media print{
.y0_c00461{bottom:0.000000pt;}
.h0_c00461{height:1159.999959pt;}
.h1_c00461{height:1160.000000pt;}
.w0_c00461{width:831.000000pt;}
.w1_c00461{width:831.333333pt;}
.x0_c00461{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_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_fc623c3a628fbe156c7c549e.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.171387;font-style:normal;font-weight:normal;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_7bcc92841d574a670a23d6d7.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.000000;font-style:normal;font-weight:normal;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_ef75ac09ec0bee8008350615.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:0.713867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_a00b792601d2e173ba267749.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:1.000000;font-style:normal;font-weight: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_c00462;src:url('chunks/assets/font_0c1d1798fedc7e3a00207613.woff2')format("woff");}.ff5_c00462{font-family:ff5_c00462;line-height:0.733887;font-style:normal;font-weight: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_c00462;src:url('chunks/assets/font_3e8d617f9503c2593b8d8a45.woff2')format("woff");}.ff6_c00462{font-family:ff6_c00462;line-height:0.769531;font-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_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);}
.v0_c00462{vertical-align:0.000000px;}
.ls1_c00462{letter-spacing:0.000000px;}
.ls0_c00462{letter-spacing:4.708104px;}
.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;}
}
.ws2_c00462{word-spacing:-18.680283px;}
.ws0_c00462{word-spacing:-15.572744px;}
.ws1_c00462{word-spacing:-0.059949px;}
.ws3_c00462{word-spacing:0.000000px;}
._4_c00462{width:1.791899px;}
._17_c00462{width:2.939553px;}
._2_c00462{width:4.684658px;}
._5_c00462{width:5.807902px;}
._13_c00462{width:6.875930px;}
._1b_c00462{width:8.646018px;}
._1_c00462{width:10.064884px;}
._e_c00462{width:11.461711px;}
._f_c00462{width:12.914557px;}
._9_c00462{width:14.206316px;}
._1a_c00462{width:16.239492px;}
._3_c00462{width:17.546501px;}
._19_c00462{width:19.792823px;}
._16_c00462{width:21.904104px;}
._14_c00462{width:23.048740px;}
._15_c00462{width:24.243341px;}
._12_c00462{width:30.930704px;}
._10_c00462{width:34.994735px;}
._11_c00462{width:39.351506px;}
._18_c00462{width:44.393417px;}
._0_c00462{width:49.681277px;}
._8_c00462{width:51.188188px;}
._d_c00462{width:57.779957px;}
._6_c00462{width:61.852329px;}
._b_c00462{width:68.893202px;}
._c_c00462{width:72.554340px;}
._a_c00462{width:98.642280px;}
._7_c00462{width:123.202105px;}
.fc3_c00462{color:rgb(71,69,47);}
.fc2_c00462{color:rgb(76,74,37);}
.fc5_c00462{color:rgb(80,78,51);}
.fc1_c00462{color:rgb(50,44,18);}
.fc4_c00462{color:rgb(255,255,255);}
.fc0_c00462{color:rgb(0,0,0);}
.fs1_c00462{font-size:59.949210px;}
.fs3_c00462{font-size:71.912067px;}
.fs0_c00462{font-size:71.957041px;}
.fs2_c00462{font-size:112.252782px;}
.y0_c00462{bottom:0.000000px;}
.y1_c00462{bottom:0.000008px;}
.y2c_c00462{bottom:30.156225px;}
.y2b_c00462{bottom:154.140840px;}
.yd_c00462{bottom:164.449540px;}
.y2a_c00462{bottom:183.373388px;}
.yc_c00462{bottom:189.184773px;}
.y29_c00462{bottom:212.605936px;}
.yb_c00462{bottom:213.920006px;}
.ya_c00462{bottom:238.655239px;}
.y28_c00462{bottom:241.838484px;}
.y9_c00462{bottom:263.390472px;}
.y27_c00462{bottom:271.071032px;}
.y26_c00462{bottom:300.303580px;}
.y25_c00462{bottom:329.536128px;}
.y24_c00462{bottom:358.768676px;}
.y23_c00462{bottom:388.001224px;}
.y22_c00462{bottom:431.424556px;}
.y21_c00462{bottom:460.657104px;}
.y11_c00462{bottom:463.335524px;}
.y20_c00462{bottom:489.889652px;}
.y1f_c00462{bottom:519.122200px;}
.y1e_c00462{bottom:548.354748px;}
.y1d_c00462{bottom:577.587296px;}
.y1c_c00462{bottom:606.819844px;}
.y1b_c00462{bottom:636.052392px;}
.y8_c00462{bottom:659.012849px;}
.y1a_c00462{bottom:665.284940px;}
.y10_c00462{bottom:678.527585px;}
.y19_c00462{bottom:694.517488px;}
.y18_c00462{bottom:723.750036px;}
.y17_c00462{bottom:752.982584px;}
.y16_c00462{bottom:782.215132px;}
.y15_c00462{bottom:811.447680px;}
.y14_c00462{bottom:840.680228px;}
.y13_c00462{bottom:869.912776px;}
.yf_c00462{bottom:894.148021px;}
.y12_c00462{bottom:899.145324px;}
.y7_c00462{bottom:984.673509px;}
.y6_c00462{bottom:1013.906057px;}
.y5_c00462{bottom:1043.138605px;}
.y4_c00462{bottom:1072.371153px;}
.y3_c00462{bottom:1101.603701px;}
.y2_c00462{bottom:1130.836249px;}
.ye_c00462{bottom:1200.662313px;}
.h6_c00462{height:45.547349px;}
.h4_c00462{height:52.105611px;}
.h5_c00462{height:55.821847px;}
.h8_c00462{height:66.961090px;}
.h3_c00462{height:67.002968px;}
.h7_c00462{height:81.284607px;}
.h2_c00462{height:1304.999946px;}
.h0_c00462{height:1304.999953px;}
.h1_c00462{height:1305.000000px;}
.w2_c00462{width:934.874961px;}
.w0_c00462{width:934.875000px;}
.w1_c00462{width:935.250000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:87.850202px;}
.x2_c00462{left:108.062661px;}
.x8_c00462{left:451.985828px;}
.x3_c00462{left:520.550618px;}
.x4_c00462{left:753.884154px;}
.x5_c00462{left:783.570387px;}
.x6_c00462{left:786.833125px;}
.x7_c00462{left:787.872103px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls1_c00462{letter-spacing:0.000000pt;}
.ls0_c00462{letter-spacing:4.184981pt;}
.ws2_c00462{word-spacing:-16.604696pt;}
.ws0_c00462{word-spacing:-13.842439pt;}
.ws1_c00462{word-spacing:-0.053288pt;}
.ws3_c00462{word-spacing:0.000000pt;}
._4_c00462{width:1.592799pt;}
._17_c00462{width:2.612936pt;}
._2_c00462{width:4.164141pt;}
._5_c00462{width:5.162580pt;}
._13_c00462{width:6.111938pt;}
._1b_c00462{width:7.685350pt;}
._1_c00462{width:8.946564pt;}
._e_c00462{width:10.188188pt;}
._f_c00462{width:11.479606pt;}
._9_c00462{width:12.627837pt;}
._1a_c00462{width:14.435104pt;}
._3_c00462{width:15.596890pt;}
._19_c00462{width:17.593621pt;}
._16_c00462{width:19.470315pt;}
._14_c00462{width:20.487769pt;}
._15_c00462{width:21.549636pt;}
._12_c00462{width:27.493960pt;}
._10_c00462{width:31.106431pt;}
._11_c00462{width:34.979117pt;}
._18_c00462{width:39.460815pt;}
._0_c00462{width:44.161135pt;}
._8_c00462{width:45.500612pt;}
._d_c00462{width:51.359961pt;}
._6_c00462{width:54.979848pt;}
._b_c00462{width:61.238402pt;}
._c_c00462{width:64.492747pt;}
._a_c00462{width:87.682027pt;}
._7_c00462{width:109.512982pt;}
.fs1_c00462{font-size:53.288186pt;}
.fs3_c00462{font-size:63.921837pt;}
.fs0_c00462{font-size:63.961814pt;}
.fs2_c00462{font-size:99.780251pt;}
.y0_c00462{bottom:0.000000pt;}
.y1_c00462{bottom:0.000007pt;}
.y2c_c00462{bottom:26.805533pt;}
.y2b_c00462{bottom:137.014080pt;}
.yd_c00462{bottom:146.177369pt;}
.y2a_c00462{bottom:162.998567pt;}
.yc_c00462{bottom:168.164243pt;}
.y29_c00462{bottom:188.983055pt;}
.yb_c00462{bottom:190.151117pt;}
.ya_c00462{bottom:212.137990pt;}
.y28_c00462{bottom:214.967542pt;}
.y9_c00462{bottom:234.124864pt;}
.y27_c00462{bottom:240.952029pt;}
.y26_c00462{bottom:266.936516pt;}
.y25_c00462{bottom:292.921003pt;}
.y24_c00462{bottom:318.905490pt;}
.y23_c00462{bottom:344.889977pt;}
.y22_c00462{bottom:383.488494pt;}
.y21_c00462{bottom:409.472981pt;}
.y11_c00462{bottom:411.853799pt;}
.y20_c00462{bottom:435.457468pt;}
.y1f_c00462{bottom:461.441955pt;}
.y1e_c00462{bottom:487.426443pt;}
.y1d_c00462{bottom:513.410930pt;}
.y1c_c00462{bottom:539.395417pt;}
.y1b_c00462{bottom:565.379904pt;}
.y8_c00462{bottom:585.789199pt;}
.y1a_c00462{bottom:591.364391pt;}
.y10_c00462{bottom:603.135631pt;}
.y19_c00462{bottom:617.348878pt;}
.y18_c00462{bottom:643.333365pt;}
.y17_c00462{bottom:669.317852pt;}
.y16_c00462{bottom:695.302339pt;}
.y15_c00462{bottom:721.286827pt;}
.y14_c00462{bottom:747.271314pt;}
.y13_c00462{bottom:773.255801pt;}
.yf_c00462{bottom:794.798241pt;}
.y12_c00462{bottom:799.240288pt;}
.y7_c00462{bottom:875.265341pt;}
.y6_c00462{bottom:901.249828pt;}
.y5_c00462{bottom:927.234316pt;}
.y4_c00462{bottom:953.218803pt;}
.y3_c00462{bottom:979.203290pt;}
.y2_c00462{bottom:1005.187777pt;}
.ye_c00462{bottom:1067.255390pt;}
.h6_c00462{height:40.486532pt;}
.h4_c00462{height:46.316099pt;}
.h5_c00462{height:49.619420pt;}
.h8_c00462{height:59.520969pt;}
.h3_c00462{height:59.558193pt;}
.h7_c00462{height:72.252984pt;}
.h2_c00462{height:1159.999952pt;}
.h0_c00462{height:1159.999959pt;}
.h1_c00462{height:1160.000000pt;}
.w2_c00462{width:830.999965pt;}
.w0_c00462{width:831.000000pt;}
.w1_c00462{width:831.333333pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:78.089069pt;}
.x2_c00462{left:96.055698pt;}
.x8_c00462{left:401.765180pt;}
.x3_c00462{left:462.711661pt;}
.x4_c00462{left:670.119248pt;}
.x5_c00462{left:696.507011pt;}
.x6_c00462{left:699.407223pt;}
.x7_c00462{left:700.330758pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04c2aa5c7271165461b5a14e.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.006348;font-style:normal;font-weight:normal;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_ec4d5f89f2ed70110510cf54.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.006348;font-style:normal;font-weight:normal;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_905c70506879542e750a29b9.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.000000;font-style:normal;font-weight:normal;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_49a82c01cf0287b3b717616e.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.000000;font-style:normal;font-weight: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_5493186958926ad8cf3e25b2.woff2')format("woff");}.ff5_c00463{font-family:ff5_c00463;line-height:0.769531;font-style:normal;font-weight: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_2d7deaa08558454454a2b37f.woff2')format("woff");}.ff6_c00463{font-family:ff6_c00463;line-height:0.713867;font-style:normal;font-weight: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_c00463;src:url('chunks/assets/font_0c1d1798fedc7e3a00207613.woff2')format("woff");}.ff7_c00463{font-family:ff7_c00463;line-height:0.733887;font-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_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);}
.v0_c00463{vertical-align:0.000000px;}
.ls7_c00463{letter-spacing:0.000000px;}
.ls5_c00463{letter-spacing:0.027120px;}
.ls4_c00463{letter-spacing:0.027911px;}
.ls0_c00463{letter-spacing:0.035135px;}
.ls3_c00463{letter-spacing:0.039571px;}
.ls6_c00463{letter-spacing:0.056919px;}
.ls1_c00463{letter-spacing:13.870615px;}
.ls2_c00463{letter-spacing:13.870638px;}
.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;}
}
.ws0_c00463{word-spacing:-18.691966px;}
.ws3_c00463{word-spacing:-18.680283px;}
.ws1_c00463{word-spacing:-15.572744px;}
.ws4_c00463{word-spacing:0.000000px;}
.ws2_c00463{word-spacing:959.090601px;}
._7_c00463{width:1.019155px;}
._2_c00463{width:2.088008px;}
._4_c00463{width:3.794609px;}
._9_c00463{width:4.968071px;}
._c_c00463{width:5.971401px;}
._a_c00463{width:7.000019px;}
._5_c00463{width:10.606117px;}
._8_c00463{width:13.820615px;}
._0_c00463{width:15.248711px;}
._1_c00463{width:17.442604px;}
._b_c00463{width:20.132512px;}
._3_c00463{width:25.361216px;}
._6_c00463{width:32.091954px;}
._d_c00463{width:987.907288px;}
.fc3_c00463{color:rgb(71,69,47);}
.fc2_c00463{color:rgb(50,44,18);}
.fc1_c00463{color:rgb(76,74,37);}
.fc4_c00463{color:rgb(255,255,255);}
.fc0_c00463{color:rgb(0,0,0);}
.fs1_c00463{font-size:59.949210px;}
.fs3_c00463{font-size:71.912067px;}
.fs0_c00463{font-size:71.957041px;}
.fs2_c00463{font-size:89.901328px;}
.y0_c00463{bottom:0.000000px;}
.y1_c00463{bottom:0.000008px;}
.y1a_c00463{bottom:30.156225px;}
.yc_c00463{bottom:191.175188px;}
.yb_c00463{bottom:221.532065px;}
.ya_c00463{bottom:251.888942px;}
.y9_c00463{bottom:282.245819px;}
.y8_c00463{bottom:312.602695px;}
.y7_c00463{bottom:342.959572px;}
.y6_c00463{bottom:373.316449px;}
.y5_c00463{bottom:403.673326px;}
.y4_c00463{bottom:434.030202px;}
.y3_c00463{bottom:464.387079px;}
.y2_c00463{bottom:494.743956px;}
.y17_c00463{bottom:544.103540px;}
.y16_c00463{bottom:574.460417px;}
.y15_c00463{bottom:604.817294px;}
.y14_c00463{bottom:635.174170px;}
.y13_c00463{bottom:665.531047px;}
.y12_c00463{bottom:695.887924px;}
.y11_c00463{bottom:726.244801px;}
.y10_c00463{bottom:756.601677px;}
.yf_c00463{bottom:810.240012px;}
.ye_c00463{bottom:834.975245px;}
.yd_c00463{bottom:859.710478px;}
.y18_c00463{bottom:1097.001871px;}
.y19_c00463{bottom:1200.662313px;}
.h6_c00463{height:45.547349px;}
.h4_c00463{height:45.927886px;}
.h7_c00463{height:55.092790px;}
.h3_c00463{height:55.127245px;}
.h5_c00463{height:65.099448px;}
.h2_c00463{height:1304.999946px;}
.h0_c00463{height:1304.999953px;}
.h1_c00463{height:1305.000000px;}
.w2_c00463{width:934.874961px;}
.w0_c00463{width:934.875000px;}
.w1_c00463{width:935.250000px;}
.x0_c00463{left:0.000000px;}
.x1_c00463{left:87.850202px;}
.x2_c00463{left:92.007857px;}
.x3_c00463{left:98.097919px;}
.x5_c00463{left:451.985828px;}
.x4_c00463{left:753.884154px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls7_c00463{letter-spacing:0.000000pt;}
.ls5_c00463{letter-spacing:0.024107pt;}
.ls4_c00463{letter-spacing:0.024809pt;}
.ls0_c00463{letter-spacing:0.031231pt;}
.ls3_c00463{letter-spacing:0.035174pt;}
.ls6_c00463{letter-spacing:0.050595pt;}
.ls1_c00463{letter-spacing:12.329436pt;}
.ls2_c00463{letter-spacing:12.329456pt;}
.ws0_c00463{word-spacing:-16.615081pt;}
.ws3_c00463{word-spacing:-16.604696pt;}
.ws1_c00463{word-spacing:-13.842439pt;}
.ws4_c00463{word-spacing:0.000000pt;}
.ws2_c00463{word-spacing:852.524979pt;}
._7_c00463{width:0.905916pt;}
._2_c00463{width:1.856007pt;}
._4_c00463{width:3.372985pt;}
._9_c00463{width:4.416063pt;}
._c_c00463{width:5.307912pt;}
._a_c00463{width:6.222239pt;}
._5_c00463{width:9.427659pt;}
._8_c00463{width:12.284991pt;}
._0_c00463{width:13.554410pt;}
._1_c00463{width:15.504537pt;}
._b_c00463{width:17.895566pt;}
._3_c00463{width:22.543303pt;}
._6_c00463{width:28.526182pt;}
._d_c00463{width:878.139811pt;}
.fs1_c00463{font-size:53.288186pt;}
.fs3_c00463{font-size:63.921837pt;}
.fs0_c00463{font-size:63.961814pt;}
.fs2_c00463{font-size:79.912292pt;}
.y0_c00463{bottom:0.000000pt;}
.y1_c00463{bottom:0.000007pt;}
.y1a_c00463{bottom:26.805533pt;}
.yc_c00463{bottom:169.933501pt;}
.yb_c00463{bottom:196.917391pt;}
.ya_c00463{bottom:223.901282pt;}
.y9_c00463{bottom:250.885172pt;}
.y8_c00463{bottom:277.869062pt;}
.y7_c00463{bottom:304.852953pt;}
.y6_c00463{bottom:331.836843pt;}
.y5_c00463{bottom:358.820734pt;}
.y4_c00463{bottom:385.804624pt;}
.y3_c00463{bottom:412.788515pt;}
.y2_c00463{bottom:439.772405pt;}
.y17_c00463{bottom:483.647591pt;}
.y16_c00463{bottom:510.631482pt;}
.y15_c00463{bottom:537.615372pt;}
.y14_c00463{bottom:564.599262pt;}
.y13_c00463{bottom:591.583153pt;}
.y12_c00463{bottom:618.567043pt;}
.y11_c00463{bottom:645.550934pt;}
.y10_c00463{bottom:672.534824pt;}
.yf_c00463{bottom:720.213344pt;}
.ye_c00463{bottom:742.200218pt;}
.yd_c00463{bottom:764.187091pt;}
.y18_c00463{bottom:975.112774pt;}
.y19_c00463{bottom:1067.255390pt;}
.h6_c00463{height:40.486532pt;}
.h4_c00463{height:40.824787pt;}
.h7_c00463{height:48.971369pt;}
.h3_c00463{height:49.001996pt;}
.h5_c00463{height:57.866176pt;}
.h2_c00463{height:1159.999952pt;}
.h0_c00463{height:1159.999959pt;}
.h1_c00463{height:1160.000000pt;}
.w2_c00463{width:830.999965pt;}
.w0_c00463{width:831.000000pt;}
.w1_c00463{width:831.333333pt;}
.x0_c00463{left:0.000000pt;}
.x1_c00463{left:78.089069pt;}
.x2_c00463{left:81.784761pt;}
.x3_c00463{left:87.198150pt;}
.x5_c00463{left:401.765180pt;}
.x4_c00463{left:670.119248pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_742ee97e6276f8d3469aff80.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.006348;font-style:normal;font-weight:normal;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_d2949408ba36295d658470f1.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.000000;font-style:normal;font-weight:normal;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_773293fecb81370cf2fc4eab.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:0.713867;font-style:normal;font-weight:normal;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_87f7741db0f068c0e28d247e.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:0.713867;font-style:normal;font-weight: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_faa6f3a0660700836cc9410d.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;line-height:1.000000;font-style:normal;font-weight: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_c00464;src:url('chunks/assets/font_08427c47df53740ae27e01c4.woff2')format("woff");}.ff6_c00464{font-family:ff6_c00464;line-height:1.006348;font-style:normal;font-weight: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_c00464;src:url('chunks/assets/font_3e8d617f9503c2593b8d8a45.woff2')format("woff");}.ff7_c00464{font-family:ff7_c00464;line-height:0.769531;font-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_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);}
.v0_c00464{vertical-align:0.000000px;}
.ls1_c00464{letter-spacing:0.000000px;}
.ls0_c00464{letter-spacing:13.632486px;}
.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;}
}
.ws0_c00464{word-spacing:-18.691966px;}
.ws4_c00464{word-spacing:-18.680283px;}
.ws1_c00464{word-spacing:-15.596110px;}
.ws2_c00464{word-spacing:-15.572744px;}
.ws3_c00464{word-spacing:-0.059949px;}
.ws5_c00464{word-spacing:0.000000px;}
._7_c00464{width:1.208596px;}
._8_c00464{width:2.893858px;}
._9_c00464{width:6.211253px;}
._3_c00464{width:7.621129px;}
._5_c00464{width:9.470258px;}
._6_c00464{width:10.832439px;}
._2_c00464{width:12.182331px;}
._1_c00464{width:13.657513px;}
._b_c00464{width:15.585742px;}
._0_c00464{width:17.184305px;}
._a_c00464{width:20.680606px;}
._4_c00464{width:22.346034px;}
._c_c00464{width:33.638454px;}
.fc2_c00464{color:rgb(76,74,37);}
.fc1_c00464{color:rgb(50,44,18);}
.fc0_c00464{color:rgb(0,0,0);}
.fs2_c00464{font-size:59.949210px;}
.fs1_c00464{font-size:60.039158px;}
.fs3_c00464{font-size:71.912067px;}
.fs0_c00464{font-size:71.957041px;}
.y0_c00464{bottom:0.000000px;}
.y1_c00464{bottom:0.000008px;}
.y20_c00464{bottom:30.156225px;}
.y1a_c00464{bottom:76.026363px;}
.y19_c00464{bottom:106.383240px;}
.y18_c00464{bottom:136.740117px;}
.y17_c00464{bottom:167.096993px;}
.y16_c00464{bottom:197.453870px;}
.y15_c00464{bottom:227.810747px;}
.y14_c00464{bottom:258.167624px;}
.y13_c00464{bottom:288.524500px;}
.y12_c00464{bottom:318.881377px;}
.y11_c00464{bottom:349.238254px;}
.y10_c00464{bottom:379.595131px;}
.yf_c00464{bottom:409.952007px;}
.y1c_c00464{bottom:463.238707px;}
.y1e_c00464{bottom:480.019134px;}
.y1b_c00464{bottom:480.103638px;}
.y1d_c00464{bottom:496.884066px;}
.ye_c00464{bottom:766.709943px;}
.yd_c00464{bottom:797.066819px;}
.yc_c00464{bottom:827.423696px;}
.yb_c00464{bottom:857.780573px;}
.ya_c00464{bottom:888.137450px;}
.y9_c00464{bottom:918.494326px;}
.y8_c00464{bottom:948.851203px;}
.y7_c00464{bottom:979.208080px;}
.y6_c00464{bottom:1009.564957px;}
.y5_c00464{bottom:1039.921833px;}
.y4_c00464{bottom:1070.278710px;}
.y3_c00464{bottom:1100.635587px;}
.y2_c00464{bottom:1130.992464px;}
.y1f_c00464{bottom:1200.662313px;}
.h7_c00464{height:45.547349px;}
.h5_c00464{height:45.615688px;}
.h6_c00464{height:45.927886px;}
.h4_c00464{height:45.996796px;}
.h8_c00464{height:55.092790px;}
.h3_c00464{height:55.127245px;}
.h2_c00464{height:1304.999946px;}
.h0_c00464{height:1304.999953px;}
.h1_c00464{height:1305.000000px;}
.w2_c00464{width:934.874961px;}
.w0_c00464{width:934.875000px;}
.w1_c00464{width:935.250000px;}
.x0_c00464{left:0.000000px;}
.x1_c00464{left:90.978163px;}
.x2_c00464{left:140.676686px;}
.x3_c00464{left:171.226807px;}
.x7_c00464{left:451.985828px;}
.x5_c00464{left:538.425415px;}
.x4_c00464{left:577.882328px;}
.x6_c00464{left:753.884154px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls1_c00464{letter-spacing:0.000000pt;}
.ls0_c00464{letter-spacing:12.117765pt;}
.ws0_c00464{word-spacing:-16.615081pt;}
.ws4_c00464{word-spacing:-16.604696pt;}
.ws1_c00464{word-spacing:-13.863209pt;}
.ws2_c00464{word-spacing:-13.842439pt;}
.ws3_c00464{word-spacing:-0.053288pt;}
.ws5_c00464{word-spacing:0.000000pt;}
._7_c00464{width:1.074308pt;}
._8_c00464{width:2.572318pt;}
._9_c00464{width:5.521113pt;}
._3_c00464{width:6.774337pt;}
._5_c00464{width:8.418008pt;}
._6_c00464{width:9.628835pt;}
._2_c00464{width:10.828739pt;}
._1_c00464{width:12.140011pt;}
._b_c00464{width:13.853993pt;}
._0_c00464{width:15.274938pt;}
._a_c00464{width:18.382761pt;}
._4_c00464{width:19.863141pt;}
._c_c00464{width:29.900848pt;}
.fs2_c00464{font-size:53.288186pt;}
.fs1_c00464{font-size:53.368141pt;}
.fs3_c00464{font-size:63.921837pt;}
.fs0_c00464{font-size:63.961814pt;}
.y0_c00464{bottom:0.000000pt;}
.y1_c00464{bottom:0.000007pt;}
.y20_c00464{bottom:26.805533pt;}
.y1a_c00464{bottom:67.578989pt;}
.y19_c00464{bottom:94.562880pt;}
.y18_c00464{bottom:121.546770pt;}
.y17_c00464{bottom:148.530661pt;}
.y16_c00464{bottom:175.514551pt;}
.y15_c00464{bottom:202.498442pt;}
.y14_c00464{bottom:229.482332pt;}
.y13_c00464{bottom:256.466223pt;}
.y12_c00464{bottom:283.450113pt;}
.y11_c00464{bottom:310.434003pt;}
.y10_c00464{bottom:337.417894pt;}
.yf_c00464{bottom:364.401784pt;}
.y1c_c00464{bottom:411.767739pt;}
.y1e_c00464{bottom:426.683675pt;}
.y1b_c00464{bottom:426.758790pt;}
.y1d_c00464{bottom:441.674725pt;}
.ye_c00464{bottom:681.519949pt;}
.yd_c00464{bottom:708.503839pt;}
.yc_c00464{bottom:735.487730pt;}
.yb_c00464{bottom:762.471620pt;}
.ya_c00464{bottom:789.455511pt;}
.y9_c00464{bottom:816.439401pt;}
.y8_c00464{bottom:843.423292pt;}
.y7_c00464{bottom:870.407182pt;}
.y6_c00464{bottom:897.391073pt;}
.y5_c00464{bottom:924.374963pt;}
.y4_c00464{bottom:951.358854pt;}
.y3_c00464{bottom:978.342744pt;}
.y2_c00464{bottom:1005.326634pt;}
.y1f_c00464{bottom:1067.255390pt;}
.h7_c00464{height:40.486532pt;}
.h5_c00464{height:40.547279pt;}
.h6_c00464{height:40.824787pt;}
.h4_c00464{height:40.886041pt;}
.h8_c00464{height:48.971369pt;}
.h3_c00464{height:49.001996pt;}
.h2_c00464{height:1159.999952pt;}
.h0_c00464{height:1159.999959pt;}
.h1_c00464{height:1160.000000pt;}
.w2_c00464{width:830.999965pt;}
.w0_c00464{width:831.000000pt;}
.w1_c00464{width:831.333333pt;}
.x0_c00464{left:0.000000pt;}
.x1_c00464{left:80.869478pt;}
.x2_c00464{left:125.045944pt;}
.x3_c00464{left:152.201606pt;}
.x7_c00464{left:401.765180pt;}
.x5_c00464{left:478.600369pt;}
.x4_c00464{left:513.673181pt;}
.x6_c00464{left:670.119248pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c18fc9939f9ffc4d31b1955.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.171387;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:0.769531;font-style:normal;font-weight:normal;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_053e0ccd90a0f6d8924867f2.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:0.743000;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4_c00465{font-family:ff4_c00465;line-height:0.734863;font-style:normal;font-weight: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_58a93de6c2c0f58e8604101c.woff2')format("woff");}.ff5_c00465{font-family:ff5_c00465;line-height:0.894000;font-style:normal;font-weight: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_c00465;src:url('chunks/assets/font_6e2905414da2f4c29a41e484.woff2')format("woff");}.ff6_c00465{font-family:ff6_c00465;line-height:1.119000;font-style:normal;font-weight: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_c00465;src:url('chunks/assets/font_e6908968db145e7911351ca9.woff2')format("woff");}.ff7_c00465{font-family:ff7_c00465;line-height:0.769531;font-style:normal;font-weight: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_c00465;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff8_c00465{font-family:ff8_c00465;line-height:1.006348;font-style:normal;font-weight: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_c00465;src:url('chunks/assets/font_352f8553b4dbe09ebae48f4c.woff2')format("woff");}.ff9_c00465{font-family:ff9_c00465;line-height:1.000000;font-style:normal;font-weight: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_c00465;src:url('chunks/assets/font_427dcf9acf74d9e729951faf.woff2')format("woff");}.ffa_c00465{font-family:ffa_c00465;line-height:1.171387;font-style:normal;font-weight: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_c00465;src:url('chunks/assets/font_3da1b40cd6e4066bda3da4cb.woff2')format("woff");}.ffb_c00465{font-family:ffb_c00465;line-height:0.769531;font-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_c00465{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3d_c00465{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m29_c00465{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00465{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2a_c00465{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3c_c00465{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00465{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m15_c00465{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00465{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2b_c00465{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m28_c00465{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m16_c00465{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00465{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2c_c00465{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3b_c00465{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00465{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m17_c00465{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m27_c00465{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00465{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00465{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2d_c00465{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m18_c00465{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3a_c00465{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m26_c00465{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00465{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00465{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m19_c00465{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2e_c00465{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m39_c00465{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00465{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m25_c00465{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1a_c00465{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00465{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m2f_c00465{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m38_c00465{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m24_c00465{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00465{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m23_c00465{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00465{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m30_c00465{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1b_c00465{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m37_c00465{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m22_c00465{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00465{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m31_c00465{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00465{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m21_c00465{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00465{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m32_c00465{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1c_c00465{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00465{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m33_c00465{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m20_c00465{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m36_c00465{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1d_c00465{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00465{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00465{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m34_c00465{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1e_c00465{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m1f_c00465{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m35_c00465{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00465{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m3e_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);}
.v0_c00465{vertical-align:0.000000px;}
.ls0_c00465{letter-spacing:0.000000px;}
.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;}
}
.ws6_c00465{word-spacing:-41.664701px;}
.ws1_c00465{word-spacing:-39.102529px;}
.ws5_c00465{word-spacing:-18.680283px;}
.ws0_c00465{word-spacing:-15.162211px;}
.ws4_c00465{word-spacing:-14.474592px;}
.ws2_c00465{word-spacing:-0.071957px;}
.ws7_c00465{word-spacing:0.000000px;}
.ws3_c00465{word-spacing:281.470806px;}
._1_c00465{width:1.147655px;}
._4_c00465{width:4.005421px;}
._7_c00465{width:5.367529px;}
._5_c00465{width:8.720406px;}
._3_c00465{width:9.881112px;}
._6_c00465{width:11.000904px;}
._0_c00465{width:15.027053px;}
._2_c00465{width:45.956937px;}
.fc3_c00465{color:rgb(50,44,18);}
.fc2_c00465{color:rgb(9,71,81);}
.fc1_c00465{color:rgb(255,255,255);}
.fc0_c00465{color:rgb(0,0,0);}
.fs7_c00465{font-size:41.974772px;}
.fsd_c00465{font-size:41.975069px;}
.fs1_c00465{font-size:47.339969px;}
.fs4_c00465{font-size:47.339970px;}
.fs0_c00465{font-size:47.339972px;}
.fs3_c00465{font-size:47.339973px;}
.fs2_c00465{font-size:47.339974px;}
.fs5_c00465{font-size:47.339975px;}
.fs8_c00465{font-size:51.630774px;}
.fsf_c00465{font-size:55.721735px;}
.fs9_c00465{font-size:56.262632px;}
.fsc_c00465{font-size:59.949210px;}
.fs10_c00465{font-size:71.912067px;}
.fsa_c00465{font-size:71.957041px;}
.fs6_c00465{font-size:76.965540px;}
.fsb_c00465{font-size:89.946302px;}
.fse_c00465{font-size:95.927731px;}
.y0_c00465{bottom:0.000000px;}
.y1_c00465{bottom:0.000008px;}
.y57_c00465{bottom:30.156225px;}
.y4e_c00465{bottom:62.415154px;}
.y4d_c00465{bottom:92.772030px;}
.y4c_c00465{bottom:123.128907px;}
.y4b_c00465{bottom:153.485784px;}
.y4a_c00465{bottom:183.842661px;}
.y49_c00465{bottom:214.199537px;}
.y48_c00465{bottom:244.556414px;}
.y47_c00465{bottom:274.913291px;}
.y46_c00465{bottom:305.270168px;}
.y4f_c00465{bottom:337.548584px;}
.y44_c00465{bottom:402.064151px;}
.y41_c00465{bottom:487.376458px;}
.yf_c00465{bottom:493.812629px;}
.y37_c00465{bottom:493.827623px;}
.ye_c00465{bottom:494.337609px;}
.y38_c00465{bottom:494.357158px;}
.y21_c00465{bottom:494.700737px;}
.y36_c00465{bottom:495.071586px;}
.yd_c00465{bottom:495.403002px;}
.y22_c00465{bottom:495.533530px;}
.y20_c00465{bottom:495.553663px;}
.y35_c00465{bottom:496.322201px;}
.yc_c00465{bottom:496.475623px;}
.y1f_c00465{bottom:496.587915px;}
.y39_c00465{bottom:496.772260px;}
.y10_c00465{bottom:496.835884px;}
.y23_c00465{bottom:497.713596px;}
.y34_c00465{bottom:497.966053px;}
.yb_c00465{bottom:498.126234px;}
.y1e_c00465{bottom:498.789265px;}
.y24_c00465{bottom:499.103521px;}
.y33_c00465{bottom:499.653306px;}
.ya_c00465{bottom:499.818769px;}
.y25_c00465{bottom:500.800864px;}
.y11_c00465{bottom:501.110605px;}
.y32_c00465{bottom:501.517382px;}
.y9_c00465{bottom:501.687706px;}
.y3a_c00465{bottom:501.869915px;}
.y1d_c00465{bottom:502.578702px;}
.y26_c00465{bottom:503.241722px;}
.y12_c00465{bottom:503.627848px;}
.y3b_c00465{bottom:505.496019px;}
.y27_c00465{bottom:505.499367px;}
.y31_c00465{bottom:506.168989px;}
.y8_c00465{bottom:506.348634px;}
.y1c_c00465{bottom:508.044213px;}
.y28_c00465{bottom:508.766327px;}
.y13_c00465{bottom:509.576794px;}
.y3c_c00465{bottom:511.126534px;}
.y1b_c00465{bottom:512.508085px;}
.y30_c00465{bottom:512.566592px;}
.y7_c00465{bottom:512.754669px;}
.y14_c00465{bottom:514.322677px;}
.y29_c00465{bottom:517.158603px;}
.y3d_c00465{bottom:517.780195px;}
.y1a_c00465{bottom:518.929057px;}
.y2f_c00465{bottom:519.869222px;}
.y6_c00465{bottom:519.959421px;}
.y5_c00465{bottom:523.416158px;}
.y19_c00465{bottom:523.496236px;}
.y2a_c00465{bottom:525.202812px;}
.y15_c00465{bottom:526.099549px;}
.y2e_c00465{bottom:527.026630px;}
.y4_c00465{bottom:529.422883px;}
.y3e_c00465{bottom:529.736175px;}
.y18_c00465{bottom:531.263725px;}
.y2d_c00465{bottom:531.792993px;}
.y40_c00465{bottom:533.728456px;}
.y55_c00465{bottom:534.421816px;}
.y17_c00465{bottom:535.155114px;}
.y3_c00465{bottom:536.678099px;}
.y2c_c00465{bottom:537.961701px;}
.y16_c00465{bottom:538.332892px;}
.y3f_c00465{bottom:538.696314px;}
.y42_c00465{bottom:540.431168px;}
.y2b_c00465{bottom:545.020884px;}
.y2_c00465{bottom:546.207017px;}
.y43_c00465{bottom:577.871130px;}
.y56_c00465{bottom:639.489911px;}
.y58_c00465{bottom:969.483037px;}
.y45_c00465{bottom:1027.380534px;}
.y51_c00465{bottom:1129.718199px;}
.y53_c00465{bottom:1130.692613px;}
.y50_c00465{bottom:1147.707459px;}
.y54_c00465{bottom:1153.707733px;}
.y52_c00465{bottom:1170.658440px;}
.h7_c00465{height:35.967282px;}
.h6_c00465{height:35.967283px;}
.h8_c00465{height:35.967285px;}
.hb_c00465{height:37.437353px;}
.ha_c00465{height:39.084907px;}
.h11_c00465{height:39.085184px;}
.h4_c00465{height:44.080723px;}
.h3_c00465{height:44.080726px;}
.h5_c00465{height:44.080728px;}
.h13_c00465{height:51.885424px;}
.hc_c00465{height:52.830612px;}
.he_c00465{height:55.127245px;}
.h10_c00465{height:55.821847px;}
.h9_c00465{height:56.261810px;}
.h15_c00465{height:56.292308px;}
.h14_c00465{height:66.961090px;}
.hd_c00465{height:67.002968px;}
.hf_c00465{height:68.338108px;}
.h12_c00465{height:89.323331px;}
.h2_c00465{height:1304.999946px;}
.h0_c00465{height:1304.999953px;}
.h1_c00465{height:1305.000000px;}
.w2_c00465{width:934.874961px;}
.w0_c00465{width:934.875000px;}
.w1_c00465{width:935.250000px;}
.x0_c00465{left:0.000000px;}
.x3c_c00465{left:89.434062px;}
.x3d_c00465{left:108.062661px;}
.x3e_c00465{left:109.658623px;}
.x3b_c00465{left:111.067973px;}
.x42_c00465{left:131.272077px;}
.x26_c00465{left:134.894322px;}
.x25_c00465{left:136.566734px;}
.x27_c00465{left:139.937719px;}
.x28_c00465{left:144.785273px;}
.x29_c00465{left:150.147890px;}
.x2a_c00465{left:152.899057px;}
.x2b_c00465{left:155.907145px;}
.x2c_c00465{left:159.752336px;}
.x36_c00465{left:161.347648px;}
.x2d_c00465{left:163.203941px;}
.x2e_c00465{left:171.483965px;}
.x2f_c00465{left:179.748684px;}
.x30_c00465{left:188.175145px;}
.x31_c00465{left:196.556636px;}
.x32_c00465{left:200.721504px;}
.x33_c00465{left:205.276922px;}
.x34_c00465{left:209.084069px;}
.x35_c00465{left:211.669316px;}
.x2_c00465{left:230.260919px;}
.x1_c00465{left:232.395871px;}
.x3_c00465{left:235.482735px;}
.x4_c00465{left:240.319117px;}
.x5_c00465{left:245.673577px;}
.x6_c00465{left:248.421493px;}
.x7_c00465{left:251.426626px;}
.x8_c00465{left:255.268917px;}
.x3f_c00465{left:256.468943px;}
.x9_c00465{left:258.553698px;}
.xa_c00465{left:262.988294px;}
.xb_c00465{left:271.601212px;}
.xc_c00465{left:283.434780px;}
.xd_c00465{left:290.867654px;}
.xe_c00465{left:294.260334px;}
.xf_c00465{left:299.596701px;}
.x10_c00465{left:302.984150px;}
.x11_c00465{left:306.993562px;}
.x12_c00465{left:325.378518px;}
.x13_c00465{left:326.595106px;}
.x14_c00465{left:328.015253px;}
.x15_c00465{left:331.410444px;}
.x16_c00465{left:334.633053px;}
.x17_c00465{left:340.511825px;}
.x18_c00465{left:346.695139px;}
.x19_c00465{left:352.384720px;}
.x1a_c00465{left:355.792694px;}
.x1b_c00465{left:363.695116px;}
.x1c_c00465{left:371.679253px;}
.x1d_c00465{left:378.434940px;}
.x1e_c00465{left:381.453328px;}
.x1f_c00465{left:384.455783px;}
.x20_c00465{left:387.851715px;}
.x21_c00465{left:390.467224px;}
.x22_c00465{left:393.779799px;}
.x23_c00465{left:398.952070px;}
.x24_c00465{left:401.755082px;}
.x41_c00465{left:451.985828px;}
.x38_c00465{left:464.618828px;}
.x40_c00465{left:661.177232px;}
.x3a_c00465{left:696.904800px;}
.x39_c00465{left:733.103068px;}
.x37_c00465{left:756.637341px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws6_c00465{word-spacing:-37.035289pt;}
.ws1_c00465{word-spacing:-34.757804pt;}
.ws5_c00465{word-spacing:-16.604696pt;}
.ws0_c00465{word-spacing:-13.477521pt;}
.ws4_c00465{word-spacing:-12.866304pt;}
.ws2_c00465{word-spacing:-0.063962pt;}
.ws7_c00465{word-spacing:0.000000pt;}
.ws3_c00465{word-spacing:250.196272pt;}
._1_c00465{width:1.020138pt;}
._4_c00465{width:3.560374pt;}
._7_c00465{width:4.771137pt;}
._5_c00465{width:7.751472pt;}
._3_c00465{width:8.783210pt;}
._6_c00465{width:9.778581pt;}
._0_c00465{width:13.357381pt;}
._2_c00465{width:40.850611pt;}
.fs7_c00465{font-size:37.310908pt;}
.fsd_c00465{font-size:37.311173pt;}
.fs1_c00465{font-size:42.079973pt;}
.fs4_c00465{font-size:42.079974pt;}
.fs0_c00465{font-size:42.079975pt;}
.fs3_c00465{font-size:42.079976pt;}
.fs2_c00465{font-size:42.079977pt;}
.fs5_c00465{font-size:42.079978pt;}
.fs8_c00465{font-size:45.894021pt;}
.fsf_c00465{font-size:49.530431pt;}
.fs9_c00465{font-size:50.011229pt;}
.fsc_c00465{font-size:53.288186pt;}
.fs10_c00465{font-size:63.921837pt;}
.fsa_c00465{font-size:63.961814pt;}
.fs6_c00465{font-size:68.413814pt;}
.fsb_c00465{font-size:79.952268pt;}
.fse_c00465{font-size:85.269094pt;}
.y0_c00465{bottom:0.000000pt;}
.y1_c00465{bottom:0.000007pt;}
.y57_c00465{bottom:26.805533pt;}
.y4e_c00465{bottom:55.480137pt;}
.y4d_c00465{bottom:82.464027pt;}
.y4c_c00465{bottom:109.447917pt;}
.y4b_c00465{bottom:136.431808pt;}
.y4a_c00465{bottom:163.415698pt;}
.y49_c00465{bottom:190.399589pt;}
.y48_c00465{bottom:217.383479pt;}
.y47_c00465{bottom:244.367370pt;}
.y46_c00465{bottom:271.351260pt;}
.y4f_c00465{bottom:300.043186pt;}
.y44_c00465{bottom:357.390356pt;}
.y41_c00465{bottom:433.223518pt;}
.yf_c00465{bottom:438.944560pt;}
.y37_c00465{bottom:438.957887pt;}
.ye_c00465{bottom:439.411208pt;}
.y38_c00465{bottom:439.428585pt;}
.y21_c00465{bottom:439.733989pt;}
.y36_c00465{bottom:440.063632pt;}
.yd_c00465{bottom:440.358224pt;}
.y22_c00465{bottom:440.474249pt;}
.y20_c00465{bottom:440.492144pt;}
.y35_c00465{bottom:441.175290pt;}
.yc_c00465{bottom:441.311665pt;}
.y1f_c00465{bottom:441.411480pt;}
.y39_c00465{bottom:441.575343pt;}
.y10_c00465{bottom:441.631897pt;}
.y23_c00465{bottom:442.412085pt;}
.y34_c00465{bottom:442.636491pt;}
.yb_c00465{bottom:442.778875pt;}
.y1e_c00465{bottom:443.368235pt;}
.y24_c00465{bottom:443.647574pt;}
.y33_c00465{bottom:444.136272pt;}
.ya_c00465{bottom:444.283350pt;}
.y25_c00465{bottom:445.156323pt;}
.y11_c00465{bottom:445.431649pt;}
.y32_c00465{bottom:445.793228pt;}
.y9_c00465{bottom:445.944627pt;}
.y3a_c00465{bottom:446.106592pt;}
.y1d_c00465{bottom:446.736624pt;}
.y26_c00465{bottom:447.325975pt;}
.y12_c00465{bottom:447.669198pt;}
.y3b_c00465{bottom:449.329795pt;}
.y27_c00465{bottom:449.332771pt;}
.y31_c00465{bottom:449.927990pt;}
.y8_c00465{bottom:450.087675pt;}
.y1c_c00465{bottom:451.594856pt;}
.y28_c00465{bottom:452.236735pt;}
.y13_c00465{bottom:452.957150pt;}
.y3c_c00465{bottom:454.334697pt;}
.y1b_c00465{bottom:455.562742pt;}
.y30_c00465{bottom:455.614749pt;}
.y7_c00465{bottom:455.781928pt;}
.y14_c00465{bottom:457.175713pt;}
.y29_c00465{bottom:459.696536pt;}
.y3d_c00465{bottom:460.249062pt;}
.y1a_c00465{bottom:461.270273pt;}
.y2f_c00465{bottom:462.105976pt;}
.y6_c00465{bottom:462.186152pt;}
.y5_c00465{bottom:465.258807pt;}
.y19_c00465{bottom:465.329988pt;}
.y2a_c00465{bottom:466.846944pt;}
.y15_c00465{bottom:467.644044pt;}
.y2e_c00465{bottom:468.468115pt;}
.y4_c00465{bottom:470.598118pt;}
.y3e_c00465{bottom:470.876600pt;}
.y18_c00465{bottom:472.234422pt;}
.y2d_c00465{bottom:472.704883pt;}
.y40_c00465{bottom:474.425294pt;}
.y55_c00465{bottom:475.041614pt;}
.y17_c00465{bottom:475.693435pt;}
.y3_c00465{bottom:477.047199pt;}
.y2c_c00465{bottom:478.188178pt;}
.y16_c00465{bottom:478.518126pt;}
.y3f_c00465{bottom:478.841168pt;}
.y42_c00465{bottom:480.383260pt;}
.y2b_c00465{bottom:484.463008pt;}
.y2_c00465{bottom:485.517349pt;}
.y43_c00465{bottom:513.663227pt;}
.y56_c00465{bottom:568.435476pt;}
.y58_c00465{bottom:861.762699pt;}
.y45_c00465{bottom:913.227141pt;}
.y51_c00465{bottom:1004.193955pt;}
.y53_c00465{bottom:1005.060100pt;}
.y50_c00465{bottom:1020.184408pt;}
.y54_c00465{bottom:1025.517985pt;}
.y52_c00465{bottom:1040.585280pt;}
.h7_c00465{height:31.970917pt;}
.h6_c00465{height:31.970918pt;}
.h8_c00465{height:31.970920pt;}
.hb_c00465{height:33.277647pt;}
.ha_c00465{height:34.742140pt;}
.h11_c00465{height:34.742386pt;}
.h4_c00465{height:39.182865pt;}
.h3_c00465{height:39.182867pt;}
.h5_c00465{height:39.182869pt;}
.h13_c00465{height:46.120377pt;}
.hc_c00465{height:46.960544pt;}
.he_c00465{height:49.001996pt;}
.h10_c00465{height:49.619420pt;}
.h9_c00465{height:50.010498pt;}
.h15_c00465{height:50.037607pt;}
.h14_c00465{height:59.520969pt;}
.hd_c00465{height:59.558193pt;}
.hf_c00465{height:60.744985pt;}
.h12_c00465{height:79.398517pt;}
.h2_c00465{height:1159.999952pt;}
.h0_c00465{height:1159.999959pt;}
.h1_c00465{height:1160.000000pt;}
.w2_c00465{width:830.999965pt;}
.w0_c00465{width:831.000000pt;}
.w1_c00465{width:831.333333pt;}
.x0_c00465{left:0.000000pt;}
.x3c_c00465{left:79.496944pt;}
.x3d_c00465{left:96.055698pt;}
.x3e_c00465{left:97.474332pt;}
.x3b_c00465{left:98.727087pt;}
.x42_c00465{left:116.686291pt;}
.x26_c00465{left:119.906064pt;}
.x25_c00465{left:121.392652pt;}
.x27_c00465{left:124.389083pt;}
.x28_c00465{left:128.698021pt;}
.x29_c00465{left:133.464791pt;}
.x2a_c00465{left:135.910272pt;}
.x2b_c00465{left:138.584129pt;}
.x2c_c00465{left:142.002076pt;}
.x36_c00465{left:143.420132pt;}
.x2d_c00465{left:145.070170pt;}
.x2e_c00465{left:152.430191pt;}
.x2f_c00465{left:159.776608pt;}
.x30_c00465{left:167.266795pt;}
.x31_c00465{left:174.717010pt;}
.x32_c00465{left:178.419115pt;}
.x33_c00465{left:182.468375pt;}
.x34_c00465{left:185.852506pt;}
.x35_c00465{left:188.150503pt;}
.x2_c00465{left:204.676373pt;}
.x1_c00465{left:206.574107pt;}
.x3_c00465{left:209.317987pt;}
.x4_c00465{left:213.616993pt;}
.x5_c00465{left:218.376513pt;}
.x6_c00465{left:220.819105pt;}
.x7_c00465{left:223.490334pt;}
.x8_c00465{left:226.905704pt;}
.x3f_c00465{left:227.972394pt;}
.x9_c00465{left:229.825509pt;}
.xa_c00465{left:233.767373pt;}
.xb_c00465{left:241.423300pt;}
.xc_c00465{left:251.942027pt;}
.xd_c00465{left:258.549026pt;}
.xe_c00465{left:261.564741pt;}
.xf_c00465{left:266.308178pt;}
.x10_c00465{left:269.319244pt;}
.x11_c00465{left:272.883167pt;}
.x12_c00465{left:289.225349pt;}
.x13_c00465{left:290.306761pt;}
.x14_c00465{left:291.569114pt;}
.x15_c00465{left:294.587062pt;}
.x16_c00465{left:297.451603pt;}
.x17_c00465{left:302.677178pt;}
.x18_c00465{left:308.173457pt;}
.x19_c00465{left:313.230862pt;}
.x1a_c00465{left:316.260173pt;}
.x1b_c00465{left:323.284548pt;}
.x1c_c00465{left:330.381558pt;}
.x1d_c00465{left:336.386614pt;}
.x1e_c00465{left:339.069625pt;}
.x1f_c00465{left:341.738474pt;}
.x20_c00465{left:344.757080pt;}
.x21_c00465{left:347.081977pt;}
.x22_c00465{left:350.026488pt;}
.x23_c00465{left:354.624063pt;}
.x24_c00465{left:357.115628pt;}
.x41_c00465{left:401.765180pt;}
.x38_c00465{left:412.994514pt;}
.x40_c00465{left:587.713096pt;}
.x3a_c00465{left:619.470933pt;}
.x39_c00465{left:651.647171pt;}
.x37_c00465{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_857bac774935085cbad39967.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.006348;font-style:normal;font-weight:normal;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_53d67d72fffb35206c7b43e7.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.006348;font-style:normal;font-weight:normal;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_c0fb52c1b0f5e4c7a180f5b1.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:0.769531;font-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_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);}
.v0_c00466{vertical-align:0.000000px;}
.ls0_c00466{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00466{word-spacing:-18.680283px;}
.ws1_c00466{word-spacing:0.000000px;}
._4_c00466{width:1.482681px;}
._9_c00466{width:2.773287px;}
._5_c00466{width:4.103757px;}
._13_c00466{width:6.443752px;}
._8_c00466{width:8.807221px;}
._e_c00466{width:10.435178px;}
._7_c00466{width:11.639311px;}
._d_c00466{width:13.596434px;}
._6_c00466{width:14.667126px;}
._0_c00466{width:15.992380px;}
._2_c00466{width:17.660760px;}
._c_c00466{width:19.736553px;}
._3_c00466{width:20.923056px;}
._a_c00466{width:22.221690px;}
._12_c00466{width:23.758572px;}
._f_c00466{width:24.985022px;}
._10_c00466{width:32.375507px;}
._b_c00466{width:33.501483px;}
._14_c00466{width:34.760863px;}
._1_c00466{width:36.020654px;}
._11_c00466{width:42.849388px;}
.fc1_c00466{color:rgb(0,0,0);}
.fc0_c00466{color:rgb(50,44,18);}
.fs1_c00466{font-size:71.912067px;}
.fs0_c00466{font-size:71.957041px;}
.y0_c00466{bottom:0.000000px;}
.y1_c00466{bottom:0.000008px;}
.y27_c00466{bottom:30.156225px;}
.y25_c00466{bottom:71.357973px;}
.y24_c00466{bottom:101.714850px;}
.y23_c00466{bottom:132.071726px;}
.y22_c00466{bottom:162.428603px;}
.y21_c00466{bottom:192.785480px;}
.y20_c00466{bottom:223.142357px;}
.y1f_c00466{bottom:253.499233px;}
.y1e_c00466{bottom:283.856110px;}
.y1d_c00466{bottom:314.212987px;}
.y1c_c00466{bottom:344.569864px;}
.y1b_c00466{bottom:374.926741px;}
.y1a_c00466{bottom:405.283617px;}
.y19_c00466{bottom:435.640494px;}
.y18_c00466{bottom:465.997371px;}
.y17_c00466{bottom:496.354248px;}
.y16_c00466{bottom:526.711124px;}
.y15_c00466{bottom:557.068001px;}
.y14_c00466{bottom:587.424878px;}
.y13_c00466{bottom:617.781755px;}
.y12_c00466{bottom:648.138631px;}
.y11_c00466{bottom:678.495508px;}
.y26_c00466{bottom:717.172424px;}
.y10_c00466{bottom:766.017997px;}
.yf_c00466{bottom:796.374874px;}
.ye_c00466{bottom:826.731750px;}
.yd_c00466{bottom:857.088627px;}
.yc_c00466{bottom:887.445504px;}
.yb_c00466{bottom:917.802381px;}
.ya_c00466{bottom:948.159258px;}
.y9_c00466{bottom:978.516134px;}
.y8_c00466{bottom:1008.873011px;}
.y7_c00466{bottom:1039.229888px;}
.y6_c00466{bottom:1069.586765px;}
.y5_c00466{bottom:1099.943641px;}
.y4_c00466{bottom:1130.300518px;}
.y3_c00466{bottom:1160.657395px;}
.y2_c00466{bottom:1199.835078px;}
.h4_c00466{height:55.092790px;}
.h3_c00466{height:55.127245px;}
.h2_c00466{height:1304.999946px;}
.h0_c00466{height:1304.999953px;}
.h1_c00466{height:1305.000000px;}
.w2_c00466{width:934.874961px;}
.w0_c00466{width:934.875000px;}
.w1_c00466{width:935.250000px;}
.x0_c00466{left:0.000000px;}
.x1_c00466{left:87.850202px;}
.x2_c00466{left:451.985828px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws0_c00466{word-spacing:-16.604696pt;}
.ws1_c00466{word-spacing:0.000000pt;}
._4_c00466{width:1.317938pt;}
._9_c00466{width:2.465144pt;}
._5_c00466{width:3.647784pt;}
._13_c00466{width:5.727779pt;}
._8_c00466{width:7.828641pt;}
._e_c00466{width:9.275714pt;}
._7_c00466{width:10.346054pt;}
._d_c00466{width:12.085719pt;}
._6_c00466{width:13.037445pt;}
._0_c00466{width:14.215449pt;}
._2_c00466{width:15.698453pt;}
._c_c00466{width:17.543603pt;}
._3_c00466{width:18.598272pt;}
._a_c00466{width:19.752613pt;}
._12_c00466{width:21.118731pt;}
._f_c00466{width:22.208909pt;}
._10_c00466{width:28.778228pt;}
._b_c00466{width:29.779096pt;}
._14_c00466{width:30.898545pt;}
._1_c00466{width:32.018359pt;}
._11_c00466{width:38.088345pt;}
.fs1_c00466{font-size:63.921837pt;}
.fs0_c00466{font-size:63.961814pt;}
.y0_c00466{bottom:0.000000pt;}
.y1_c00466{bottom:0.000007pt;}
.y27_c00466{bottom:26.805533pt;}
.y25_c00466{bottom:63.429309pt;}
.y24_c00466{bottom:90.413200pt;}
.y23_c00466{bottom:117.397090pt;}
.y22_c00466{bottom:144.380981pt;}
.y21_c00466{bottom:171.364871pt;}
.y20_c00466{bottom:198.348762pt;}
.y1f_c00466{bottom:225.332652pt;}
.y1e_c00466{bottom:252.316542pt;}
.y1d_c00466{bottom:279.300433pt;}
.y1c_c00466{bottom:306.284323pt;}
.y1b_c00466{bottom:333.268214pt;}
.y1a_c00466{bottom:360.252104pt;}
.y19_c00466{bottom:387.235995pt;}
.y18_c00466{bottom:414.219885pt;}
.y17_c00466{bottom:441.203776pt;}
.y16_c00466{bottom:468.187666pt;}
.y15_c00466{bottom:495.171557pt;}
.y14_c00466{bottom:522.155447pt;}
.y13_c00466{bottom:549.139338pt;}
.y12_c00466{bottom:576.123228pt;}
.y11_c00466{bottom:603.107118pt;}
.y26_c00466{bottom:637.486599pt;}
.y10_c00466{bottom:680.904886pt;}
.yf_c00466{bottom:707.888777pt;}
.ye_c00466{bottom:734.872667pt;}
.yd_c00466{bottom:761.856558pt;}
.yc_c00466{bottom:788.840448pt;}
.yb_c00466{bottom:815.824338pt;}
.ya_c00466{bottom:842.808229pt;}
.y9_c00466{bottom:869.792119pt;}
.y8_c00466{bottom:896.776010pt;}
.y7_c00466{bottom:923.759900pt;}
.y6_c00466{bottom:950.743791pt;}
.y5_c00466{bottom:977.727681pt;}
.y4_c00466{bottom:1004.711572pt;}
.y3_c00466{bottom:1031.695462pt;}
.y2_c00466{bottom:1066.520069pt;}
.h4_c00466{height:48.971369pt;}
.h3_c00466{height:49.001996pt;}
.h2_c00466{height:1159.999952pt;}
.h0_c00466{height:1159.999959pt;}
.h1_c00466{height:1160.000000pt;}
.w2_c00466{width:830.999965pt;}
.w0_c00466{width:831.000000pt;}
.w1_c00466{width:831.333333pt;}
.x0_c00466{left:0.000000pt;}
.x1_c00466{left:78.089069pt;}
.x2_c00466{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4bee9651e0036aa53a0cf968.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.006348;font-style:normal;font-weight:normal;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_821ed099ca3287beb5c55fd0.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.006348;font-style:normal;font-weight:normal;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_29f3b631e8e029c22b3eb622.woff2')format("woff");}.ff4_c00467{font-family:ff4_c00467;line-height:1.005371;font-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_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);}
.v0_c00467{vertical-align:0.000000px;}
.ls1_c00467{letter-spacing:0.000000px;}
.ls0_c00467{letter-spacing:0.000045px;}
.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;}
}
.ws0_c00467{word-spacing:-18.680283px;}
.ws1_c00467{word-spacing:0.000000px;}
._6_c00467{width:2.078812px;}
._4_c00467{width:4.186240px;}
._0_c00467{width:5.562148px;}
._a_c00467{width:6.623057px;}
._2_c00467{width:8.268455px;}
._d_c00467{width:9.523988px;}
._1_c00467{width:10.732590px;}
._3_c00467{width:12.024019px;}
._7_c00467{width:13.382147px;}
._5_c00467{width:14.412462px;}
._e_c00467{width:17.017136px;}
._b_c00467{width:21.726362px;}
._8_c00467{width:26.351457px;}
._9_c00467{width:28.468355px;}
._c_c00467{width:32.127640px;}
.fc1_c00467{color:rgb(50,44,18);}
.fc0_c00467{color:rgb(0,0,0);}
.fs1_c00467{font-size:71.912067px;}
.fs0_c00467{font-size:71.957041px;}
.y0_c00467{bottom:0.000000px;}
.y1_c00467{bottom:0.000008px;}
.y27_c00467{bottom:30.156225px;}
.y25_c00467{bottom:59.747433px;}
.y24_c00467{bottom:90.104310px;}
.y23_c00467{bottom:120.461186px;}
.y22_c00467{bottom:150.818063px;}
.y21_c00467{bottom:181.174940px;}
.y20_c00467{bottom:211.531817px;}
.y1f_c00467{bottom:241.888694px;}
.y1e_c00467{bottom:272.245570px;}
.y1d_c00467{bottom:302.602447px;}
.y1c_c00467{bottom:332.959324px;}
.y1b_c00467{bottom:363.316201px;}
.y1a_c00467{bottom:393.673077px;}
.y19_c00467{bottom:424.029954px;}
.y18_c00467{bottom:454.386831px;}
.y17_c00467{bottom:484.743708px;}
.y16_c00467{bottom:515.100584px;}
.y15_c00467{bottom:545.457461px;}
.y14_c00467{bottom:575.814338px;}
.y13_c00467{bottom:606.171215px;}
.y12_c00467{bottom:636.528092px;}
.y11_c00467{bottom:666.884968px;}
.y10_c00467{bottom:697.241845px;}
.y26_c00467{bottom:735.843866px;}
.yf_c00467{bottom:784.836982px;}
.ye_c00467{bottom:815.193859px;}
.yd_c00467{bottom:845.550736px;}
.yc_c00467{bottom:875.907613px;}
.yb_c00467{bottom:909.709751px;}
.ya_c00467{bottom:966.244531px;}
.y9_c00467{bottom:995.477079px;}
.y8_c00467{bottom:1024.709627px;}
.y7_c00467{bottom:1053.942175px;}
.y6_c00467{bottom:1083.174723px;}
.y5_c00467{bottom:1112.407271px;}
.y4_c00467{bottom:1141.639819px;}
.y3_c00467{bottom:1170.872367px;}
.y2_c00467{bottom:1200.104915px;}
.h4_c00467{height:55.092790px;}
.h3_c00467{height:55.127245px;}
.h2_c00467{height:1304.999946px;}
.h0_c00467{height:1304.999953px;}
.h1_c00467{height:1305.000000px;}
.w2_c00467{width:934.874961px;}
.w0_c00467{width:934.875000px;}
.w1_c00467{width:935.250000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:87.850202px;}
.x2_c00467{left:451.985828px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls1_c00467{letter-spacing:0.000000pt;}
.ls0_c00467{letter-spacing:0.000040pt;}
.ws0_c00467{word-spacing:-16.604696pt;}
.ws1_c00467{word-spacing:0.000000pt;}
._6_c00467{width:1.847833pt;}
._4_c00467{width:3.721102pt;}
._0_c00467{width:4.944132pt;}
._a_c00467{width:5.887162pt;}
._2_c00467{width:7.349738pt;}
._d_c00467{width:8.465767pt;}
._1_c00467{width:9.540080pt;}
._3_c00467{width:10.688017pt;}
._7_c00467{width:11.895242pt;}
._5_c00467{width:12.811077pt;}
._e_c00467{width:15.126343pt;}
._b_c00467{width:19.312322pt;}
._8_c00467{width:23.423517pt;}
._9_c00467{width:25.305204pt;}
._c_c00467{width:28.557902pt;}
.fs1_c00467{font-size:63.921837pt;}
.fs0_c00467{font-size:63.961814pt;}
.y0_c00467{bottom:0.000000pt;}
.y1_c00467{bottom:0.000007pt;}
.y27_c00467{bottom:26.805533pt;}
.y25_c00467{bottom:53.108829pt;}
.y24_c00467{bottom:80.092720pt;}
.y23_c00467{bottom:107.076610pt;}
.y22_c00467{bottom:134.060501pt;}
.y21_c00467{bottom:161.044391pt;}
.y20_c00467{bottom:188.028282pt;}
.y1f_c00467{bottom:215.012172pt;}
.y1e_c00467{bottom:241.996062pt;}
.y1d_c00467{bottom:268.979953pt;}
.y1c_c00467{bottom:295.963843pt;}
.y1b_c00467{bottom:322.947734pt;}
.y1a_c00467{bottom:349.931624pt;}
.y19_c00467{bottom:376.915515pt;}
.y18_c00467{bottom:403.899405pt;}
.y17_c00467{bottom:430.883296pt;}
.y16_c00467{bottom:457.867186pt;}
.y15_c00467{bottom:484.851077pt;}
.y14_c00467{bottom:511.834967pt;}
.y13_c00467{bottom:538.818858pt;}
.y12_c00467{bottom:565.802748pt;}
.y11_c00467{bottom:592.786638pt;}
.y10_c00467{bottom:619.770529pt;}
.y26_c00467{bottom:654.083437pt;}
.yf_c00467{bottom:697.632873pt;}
.ye_c00467{bottom:724.616764pt;}
.yd_c00467{bottom:751.600654pt;}
.yc_c00467{bottom:778.584545pt;}
.yb_c00467{bottom:808.630889pt;}
.ya_c00467{bottom:858.884028pt;}
.y9_c00467{bottom:884.868515pt;}
.y8_c00467{bottom:910.853002pt;}
.y7_c00467{bottom:936.837489pt;}
.y6_c00467{bottom:962.821976pt;}
.y5_c00467{bottom:988.806463pt;}
.y4_c00467{bottom:1014.790950pt;}
.y3_c00467{bottom:1040.775438pt;}
.y2_c00467{bottom:1066.759925pt;}
.h4_c00467{height:48.971369pt;}
.h3_c00467{height:49.001996pt;}
.h2_c00467{height:1159.999952pt;}
.h0_c00467{height:1159.999959pt;}
.h1_c00467{height:1160.000000pt;}
.w2_c00467{width:830.999965pt;}
.w0_c00467{width:831.000000pt;}
.w1_c00467{width:831.333333pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:78.089069pt;}
.x2_c00467{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_352f8553b4dbe09ebae48f4c.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.000000;font-style:normal;font-weight:normal;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_00f82c448de55fafb84c9242.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.171387;font-style:normal;font-weight:normal;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_782224098baedc3131a92ac9.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.006348;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff4_c00468{font-family:ff4_c00468;line-height:1.006348;font-style:normal;font-weight: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_fc8fcfe46241b3d87fcf26df.woff2')format("woff");}.ff5_c00468{font-family:ff5_c00468;line-height:1.000000;font-style:normal;font-weight: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_c00468;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff6_c00468{font-family:ff6_c00468;line-height:0.769531;font-style:normal;font-weight: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_c00468;src:url('chunks/assets/font_248cc758d20b04c8c43c7e5e.woff2')format("woff");}.ff7_c00468{font-family:ff7_c00468;line-height:0.743000;font-style:normal;font-weight: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_c00468;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff8_c00468{font-family:ff8_c00468;line-height:0.734863;font-style:normal;font-weight: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_c00468;src:url('chunks/assets/font_81d27993d5e6fe0afe10261e.woff2')format("woff");}.ff9_c00468{font-family:ff9_c00468;line-height:0.940000;font-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_c00468{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00468{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00468{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00468{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00468{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00468{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00468{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00468{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00468{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00468{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00468{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00468{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00468{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00468{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00468{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00468{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00468{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00468{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00468{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00468{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00468{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00468{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00468{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00468{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00468{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00468{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00468{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00468{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00468{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00468{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00468{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00468{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00468{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00468{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00468{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00468{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00468{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00468{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00468{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00468{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00468{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00468{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00468{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00468{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00468{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00468{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00468{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00468{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00468{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00468{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00468{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00468{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00468{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00468{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00468{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00468{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00468{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00468{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00468{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00468{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00468{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00468{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00468{vertical-align:0.000000px;}
.v1_c00468{vertical-align:8.961696px;}
.v2_c00468{vertical-align:32.998816px;}
.ls0_c00468{letter-spacing:0.000000px;}
.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:-41.664701px;}
.ws4_c00468{word-spacing:-18.680283px;}
.ws0_c00468{word-spacing:-14.474592px;}
.ws6_c00468{word-spacing:0.000000px;}
.ws1_c00468{word-spacing:268.728473px;}
.ws2_c00468{word-spacing:285.968171px;}
.ws3_c00468{word-spacing:349.149306px;}
._3_c00468{width:1.217927px;}
._1_c00468{width:3.490056px;}
._2_c00468{width:8.514399px;}
._5_c00468{width:10.847192px;}
._0_c00468{width:19.746026px;}
._4_c00468{width:36.962310px;}
.fc3_c00468{color:rgb(9,71,81);}
.fc2_c00468{color:rgb(50,44,18);}
.fc1_c00468{color:rgb(0,0,0);}
.fc0_c00468{color:rgb(255,255,255);}
.fsd_c00468{font-size:41.974772px;}
.fs4_c00468{font-size:41.975069px;}
.fs7_c00468{font-size:47.339969px;}
.fsa_c00468{font-size:47.339970px;}
.fs6_c00468{font-size:47.339972px;}
.fs9_c00468{font-size:47.339973px;}
.fs8_c00468{font-size:47.339974px;}
.fsb_c00468{font-size:47.339975px;}
.fse_c00468{font-size:51.630774px;}
.fs0_c00468{font-size:55.721735px;}
.fs3_c00468{font-size:59.949210px;}
.fsf_c00468{font-size:71.912067px;}
.fs1_c00468{font-size:71.957041px;}
.fsc_c00468{font-size:76.965540px;}
.fs2_c00468{font-size:89.946302px;}
.fs5_c00468{font-size:95.927731px;}
.y0_c00468{bottom:0.000000px;}
.y1_c00468{bottom:0.000008px;}
.y50_c00468{bottom:30.156225px;}
.y9_c00468{bottom:126.239955px;}
.y8_c00468{bottom:156.596832px;}
.y7_c00468{bottom:186.953709px;}
.y6_c00468{bottom:217.310585px;}
.y5_c00468{bottom:247.667462px;}
.y4_c00468{bottom:278.024339px;}
.y3_c00468{bottom:308.381216px;}
.ya_c00468{bottom:339.608900px;}
.y4f_c00468{bottom:402.064151px;}
.y1d_c00468{bottom:493.812629px;}
.y45_c00468{bottom:493.827623px;}
.y1c_c00468{bottom:494.337609px;}
.y46_c00468{bottom:494.357158px;}
.y2f_c00468{bottom:494.700737px;}
.y44_c00468{bottom:495.071586px;}
.y1b_c00468{bottom:495.403002px;}
.y30_c00468{bottom:495.533530px;}
.y2e_c00468{bottom:495.553663px;}
.y43_c00468{bottom:496.322201px;}
.y1a_c00468{bottom:496.475623px;}
.y2d_c00468{bottom:496.587915px;}
.y47_c00468{bottom:496.772260px;}
.y1e_c00468{bottom:496.835884px;}
.y31_c00468{bottom:497.713596px;}
.y42_c00468{bottom:497.966053px;}
.y19_c00468{bottom:498.126234px;}
.y2c_c00468{bottom:498.789265px;}
.y32_c00468{bottom:499.103521px;}
.y41_c00468{bottom:499.653306px;}
.y18_c00468{bottom:499.818769px;}
.y33_c00468{bottom:500.800864px;}
.y1f_c00468{bottom:501.110605px;}
.y40_c00468{bottom:501.517382px;}
.y17_c00468{bottom:501.687706px;}
.y48_c00468{bottom:501.869915px;}
.y2b_c00468{bottom:502.578702px;}
.y34_c00468{bottom:503.241722px;}
.y20_c00468{bottom:503.627848px;}
.y49_c00468{bottom:505.496019px;}
.y35_c00468{bottom:505.499367px;}
.y3f_c00468{bottom:506.168989px;}
.y16_c00468{bottom:506.348634px;}
.y2a_c00468{bottom:508.044213px;}
.y36_c00468{bottom:508.766327px;}
.y21_c00468{bottom:509.576794px;}
.y4a_c00468{bottom:511.126534px;}
.y29_c00468{bottom:512.508085px;}
.y3e_c00468{bottom:512.566592px;}
.y15_c00468{bottom:512.754669px;}
.y22_c00468{bottom:514.322677px;}
.y37_c00468{bottom:517.158603px;}
.y4b_c00468{bottom:517.780195px;}
.y28_c00468{bottom:518.929057px;}
.y3d_c00468{bottom:519.869222px;}
.y14_c00468{bottom:519.959421px;}
.y13_c00468{bottom:523.416158px;}
.y27_c00468{bottom:523.496236px;}
.y38_c00468{bottom:525.202812px;}
.y23_c00468{bottom:526.099549px;}
.y3c_c00468{bottom:527.026630px;}
.y12_c00468{bottom:529.422883px;}
.y4c_c00468{bottom:529.736175px;}
.y26_c00468{bottom:531.263725px;}
.y3b_c00468{bottom:531.792993px;}
.y4e_c00468{bottom:532.181392px;}
.y25_c00468{bottom:535.155114px;}
.y11_c00468{bottom:536.678099px;}
.y3a_c00468{bottom:537.961701px;}
.y24_c00468{bottom:538.332892px;}
.y4d_c00468{bottom:538.696314px;}
.y39_c00468{bottom:545.020884px;}
.y10_c00468{bottom:546.207017px;}
.y2_c00468{bottom:639.489911px;}
.y51_c00468{bottom:1021.609033px;}
.yc_c00468{bottom:1129.718199px;}
.ye_c00468{bottom:1134.751073px;}
.yb_c00468{bottom:1147.707459px;}
.yf_c00468{bottom:1157.766171px;}
.yd_c00468{bottom:1170.658440px;}
.he_c00468{height:35.967282px;}
.hd_c00468{height:35.967283px;}
.hf_c00468{height:35.967285px;}
.hb_c00468{height:36.267779px;}
.ha_c00468{height:36.267781px;}
.hc_c00468{height:36.267783px;}
.h11_c00468{height:37.437353px;}
.h7_c00468{height:39.085184px;}
.h13_c00468{height:45.561399px;}
.h3_c00468{height:51.885424px;}
.h12_c00468{height:55.092790px;}
.h4_c00468{height:55.127245px;}
.h6_c00468{height:55.821847px;}
.h10_c00468{height:65.223506px;}
.h8_c00468{height:67.002968px;}
.h5_c00468{height:68.338108px;}
.h9_c00468{height:89.323331px;}
.h2_c00468{height:1304.999946px;}
.h0_c00468{height:1304.999953px;}
.h1_c00468{height:1305.000000px;}
.w2_c00468{width:934.874961px;}
.w0_c00468{width:934.875000px;}
.w1_c00468{width:935.250000px;}
.x0_c00468{left:0.000000px;}
.x3_c00468{left:88.642134px;}
.x2_c00468{left:90.225997px;}
.x4_c00468{left:108.062661px;}
.x5_c00468{left:109.658623px;}
.x3d_c00468{left:130.612669px;}
.x2b_c00468{left:134.894322px;}
.x2a_c00468{left:136.566734px;}
.x2c_c00468{left:139.937719px;}
.x2d_c00468{left:144.785273px;}
.x2e_c00468{left:150.147890px;}
.x2f_c00468{left:152.899057px;}
.x30_c00468{left:155.907145px;}
.x31_c00468{left:159.752336px;}
.x32_c00468{left:163.203941px;}
.x33_c00468{left:171.483965px;}
.x34_c00468{left:179.748684px;}
.x35_c00468{left:188.175145px;}
.x36_c00468{left:196.556636px;}
.x37_c00468{left:200.721504px;}
.x38_c00468{left:205.276922px;}
.x39_c00468{left:209.084069px;}
.x3a_c00468{left:211.669316px;}
.x8_c00468{left:230.260919px;}
.x7_c00468{left:232.395871px;}
.x9_c00468{left:235.482735px;}
.xa_c00468{left:240.319117px;}
.xb_c00468{left:245.673577px;}
.xc_c00468{left:248.421493px;}
.xd_c00468{left:251.426626px;}
.xe_c00468{left:255.268917px;}
.xf_c00468{left:258.553698px;}
.x10_c00468{left:262.988294px;}
.x11_c00468{left:271.601212px;}
.x12_c00468{left:283.434780px;}
.x13_c00468{left:290.867654px;}
.x6_c00468{left:295.000980px;}
.x14_c00468{left:299.596701px;}
.x15_c00468{left:302.984150px;}
.x16_c00468{left:306.993562px;}
.x17_c00468{left:325.378518px;}
.x18_c00468{left:326.595106px;}
.x19_c00468{left:328.015253px;}
.x1a_c00468{left:331.410444px;}
.x1b_c00468{left:334.633053px;}
.x1c_c00468{left:340.511825px;}
.x1d_c00468{left:346.695139px;}
.x1e_c00468{left:352.384720px;}
.x1f_c00468{left:355.792694px;}
.x20_c00468{left:363.695116px;}
.x21_c00468{left:371.679253px;}
.x22_c00468{left:378.434940px;}
.x23_c00468{left:381.453328px;}
.x24_c00468{left:384.455783px;}
.x25_c00468{left:387.851715px;}
.x26_c00468{left:390.467224px;}
.x27_c00468{left:393.779799px;}
.x28_c00468{left:398.952070px;}
.x29_c00468{left:401.755082px;}
.x3c_c00468{left:451.985828px;}
.x1_c00468{left:676.474352px;}
.x3b_c00468{left:696.904800px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.v1_c00468{vertical-align:7.965952pt;}
.v2_c00468{vertical-align:29.332281pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ws5_c00468{word-spacing:-37.035289pt;}
.ws4_c00468{word-spacing:-16.604696pt;}
.ws0_c00468{word-spacing:-12.866304pt;}
.ws6_c00468{word-spacing:0.000000pt;}
.ws1_c00468{word-spacing:238.869754pt;}
.ws2_c00468{word-spacing:254.193930pt;}
.ws3_c00468{word-spacing:310.354939pt;}
._3_c00468{width:1.082602pt;}
._1_c00468{width:3.102272pt;}
._2_c00468{width:7.568355pt;}
._5_c00468{width:9.641948pt;}
._0_c00468{width:17.552023pt;}
._4_c00468{width:32.855387pt;}
.fsd_c00468{font-size:37.310908pt;}
.fs4_c00468{font-size:37.311173pt;}
.fs7_c00468{font-size:42.079973pt;}
.fsa_c00468{font-size:42.079974pt;}
.fs6_c00468{font-size:42.079975pt;}
.fs9_c00468{font-size:42.079976pt;}
.fs8_c00468{font-size:42.079977pt;}
.fsb_c00468{font-size:42.079978pt;}
.fse_c00468{font-size:45.894021pt;}
.fs0_c00468{font-size:49.530431pt;}
.fs3_c00468{font-size:53.288186pt;}
.fsf_c00468{font-size:63.921837pt;}
.fs1_c00468{font-size:63.961814pt;}
.fsc_c00468{font-size:68.413814pt;}
.fs2_c00468{font-size:79.952268pt;}
.fs5_c00468{font-size:85.269094pt;}
.y0_c00468{bottom:0.000000pt;}
.y1_c00468{bottom:0.000007pt;}
.y50_c00468{bottom:26.805533pt;}
.y9_c00468{bottom:112.213293pt;}
.y8_c00468{bottom:139.197184pt;}
.y7_c00468{bottom:166.181074pt;}
.y6_c00468{bottom:193.164965pt;}
.y5_c00468{bottom:220.148855pt;}
.y4_c00468{bottom:247.132746pt;}
.y3_c00468{bottom:274.116636pt;}
.ya_c00468{bottom:301.874578pt;}
.y4f_c00468{bottom:357.390356pt;}
.y1d_c00468{bottom:438.944560pt;}
.y45_c00468{bottom:438.957887pt;}
.y1c_c00468{bottom:439.411208pt;}
.y46_c00468{bottom:439.428585pt;}
.y2f_c00468{bottom:439.733989pt;}
.y44_c00468{bottom:440.063632pt;}
.y1b_c00468{bottom:440.358224pt;}
.y30_c00468{bottom:440.474249pt;}
.y2e_c00468{bottom:440.492144pt;}
.y43_c00468{bottom:441.175290pt;}
.y1a_c00468{bottom:441.311665pt;}
.y2d_c00468{bottom:441.411480pt;}
.y47_c00468{bottom:441.575343pt;}
.y1e_c00468{bottom:441.631897pt;}
.y31_c00468{bottom:442.412085pt;}
.y42_c00468{bottom:442.636491pt;}
.y19_c00468{bottom:442.778875pt;}
.y2c_c00468{bottom:443.368235pt;}
.y32_c00468{bottom:443.647574pt;}
.y41_c00468{bottom:444.136272pt;}
.y18_c00468{bottom:444.283350pt;}
.y33_c00468{bottom:445.156323pt;}
.y1f_c00468{bottom:445.431649pt;}
.y40_c00468{bottom:445.793228pt;}
.y17_c00468{bottom:445.944627pt;}
.y48_c00468{bottom:446.106592pt;}
.y2b_c00468{bottom:446.736624pt;}
.y34_c00468{bottom:447.325975pt;}
.y20_c00468{bottom:447.669198pt;}
.y49_c00468{bottom:449.329795pt;}
.y35_c00468{bottom:449.332771pt;}
.y3f_c00468{bottom:449.927990pt;}
.y16_c00468{bottom:450.087675pt;}
.y2a_c00468{bottom:451.594856pt;}
.y36_c00468{bottom:452.236735pt;}
.y21_c00468{bottom:452.957150pt;}
.y4a_c00468{bottom:454.334697pt;}
.y29_c00468{bottom:455.562742pt;}
.y3e_c00468{bottom:455.614749pt;}
.y15_c00468{bottom:455.781928pt;}
.y22_c00468{bottom:457.175713pt;}
.y37_c00468{bottom:459.696536pt;}
.y4b_c00468{bottom:460.249062pt;}
.y28_c00468{bottom:461.270273pt;}
.y3d_c00468{bottom:462.105976pt;}
.y14_c00468{bottom:462.186152pt;}
.y13_c00468{bottom:465.258807pt;}
.y27_c00468{bottom:465.329988pt;}
.y38_c00468{bottom:466.846944pt;}
.y23_c00468{bottom:467.644044pt;}
.y3c_c00468{bottom:468.468115pt;}
.y12_c00468{bottom:470.598118pt;}
.y4c_c00468{bottom:470.876600pt;}
.y26_c00468{bottom:472.234422pt;}
.y3b_c00468{bottom:472.704883pt;}
.y4e_c00468{bottom:473.050126pt;}
.y25_c00468{bottom:475.693435pt;}
.y11_c00468{bottom:477.047199pt;}
.y3a_c00468{bottom:478.188178pt;}
.y24_c00468{bottom:478.518126pt;}
.y4d_c00468{bottom:478.841168pt;}
.y39_c00468{bottom:484.463008pt;}
.y10_c00468{bottom:485.517349pt;}
.y2_c00468{bottom:568.435476pt;}
.y51_c00468{bottom:908.096918pt;}
.yc_c00468{bottom:1004.193955pt;}
.ye_c00468{bottom:1008.667620pt;}
.yb_c00468{bottom:1020.184408pt;}
.yf_c00468{bottom:1029.125486pt;}
.yd_c00468{bottom:1040.585280pt;}
.he_c00468{height:31.970917pt;}
.hd_c00468{height:31.970918pt;}
.hf_c00468{height:31.970920pt;}
.hb_c00468{height:32.238026pt;}
.ha_c00468{height:32.238028pt;}
.hc_c00468{height:32.238029pt;}
.h11_c00468{height:33.277647pt;}
.h7_c00468{height:34.742386pt;}
.h13_c00468{height:40.499022pt;}
.h3_c00468{height:46.120377pt;}
.h12_c00468{height:48.971369pt;}
.h4_c00468{height:49.001996pt;}
.h6_c00468{height:49.619420pt;}
.h10_c00468{height:57.976449pt;}
.h8_c00468{height:59.558193pt;}
.h5_c00468{height:60.744985pt;}
.h9_c00468{height:79.398517pt;}
.h2_c00468{height:1159.999952pt;}
.h0_c00468{height:1159.999959pt;}
.h1_c00468{height:1160.000000pt;}
.w2_c00468{width:830.999965pt;}
.w0_c00468{width:831.000000pt;}
.w1_c00468{width:831.333333pt;}
.x0_c00468{left:0.000000pt;}
.x3_c00468{left:78.793008pt;}
.x2_c00468{left:80.200886pt;}
.x4_c00468{left:96.055698pt;}
.x5_c00468{left:97.474332pt;}
.x3d_c00468{left:116.100150pt;}
.x2b_c00468{left:119.906064pt;}
.x2a_c00468{left:121.392652pt;}
.x2c_c00468{left:124.389083pt;}
.x2d_c00468{left:128.698021pt;}
.x2e_c00468{left:133.464791pt;}
.x2f_c00468{left:135.910272pt;}
.x30_c00468{left:138.584129pt;}
.x31_c00468{left:142.002076pt;}
.x32_c00468{left:145.070170pt;}
.x33_c00468{left:152.430191pt;}
.x34_c00468{left:159.776608pt;}
.x35_c00468{left:167.266795pt;}
.x36_c00468{left:174.717010pt;}
.x37_c00468{left:178.419115pt;}
.x38_c00468{left:182.468375pt;}
.x39_c00468{left:185.852506pt;}
.x3a_c00468{left:188.150503pt;}
.x8_c00468{left:204.676373pt;}
.x7_c00468{left:206.574107pt;}
.x9_c00468{left:209.317987pt;}
.xa_c00468{left:213.616993pt;}
.xb_c00468{left:218.376513pt;}
.xc_c00468{left:220.819105pt;}
.xd_c00468{left:223.490334pt;}
.xe_c00468{left:226.905704pt;}
.xf_c00468{left:229.825509pt;}
.x10_c00468{left:233.767373pt;}
.x11_c00468{left:241.423300pt;}
.x12_c00468{left:251.942027pt;}
.x13_c00468{left:258.549026pt;}
.x6_c00468{left:262.223093pt;}
.x14_c00468{left:266.308178pt;}
.x15_c00468{left:269.319244pt;}
.x16_c00468{left:272.883167pt;}
.x17_c00468{left:289.225349pt;}
.x18_c00468{left:290.306761pt;}
.x19_c00468{left:291.569114pt;}
.x1a_c00468{left:294.587062pt;}
.x1b_c00468{left:297.451603pt;}
.x1c_c00468{left:302.677178pt;}
.x1d_c00468{left:308.173457pt;}
.x1e_c00468{left:313.230862pt;}
.x1f_c00468{left:316.260173pt;}
.x20_c00468{left:323.284548pt;}
.x21_c00468{left:330.381558pt;}
.x22_c00468{left:336.386614pt;}
.x23_c00468{left:339.069625pt;}
.x24_c00468{left:341.738474pt;}
.x25_c00468{left:344.757080pt;}
.x26_c00468{left:347.081977pt;}
.x27_c00468{left:350.026488pt;}
.x28_c00468{left:354.624063pt;}
.x29_c00468{left:357.115628pt;}
.x3c_c00468{left:401.765180pt;}
.x1_c00468{left:601.310535pt;}
.x3b_c00468{left:619.470933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_857bac774935085cbad39967.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.006348;font-style:normal;font-weight:normal;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_ca0c63a28f46b1ee507bf827.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.171387;font-style:normal;font-weight:normal;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_09f4f83bbe4ed25cb6799320.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.000000;font-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_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);}
.v0_c00469{vertical-align:0.000000px;}
.ls1_c00469{letter-spacing:0.000000px;}
.ls0_c00469{letter-spacing:0.000022px;}
.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;}
}
.ws1_c00469{word-spacing:-18.680283px;}
.ws0_c00469{word-spacing:-0.071957px;}
.ws2_c00469{word-spacing:0.000000px;}
._1_c00469{width:1.352569px;}
._2_c00469{width:2.822487px;}
._7_c00469{width:4.708129px;}
._8_c00469{width:6.029200px;}
._d_c00469{width:7.362142px;}
._5_c00469{width:9.607850px;}
._9_c00469{width:10.842452px;}
._b_c00469{width:11.853932px;}
._6_c00469{width:13.216969px;}
._3_c00469{width:14.318929px;}
._4_c00469{width:15.680896px;}
._0_c00469{width:16.870283px;}
._a_c00469{width:20.308186px;}
._c_c00469{width:24.063750px;}
._e_c00469{width:29.028734px;}
.fc1_c00469{color:rgb(0,0,0);}
.fc0_c00469{color:rgb(50,44,18);}
.fs1_c00469{font-size:71.912067px;}
.fs0_c00469{font-size:71.957041px;}
.y0_c00469{bottom:0.000000px;}
.y1_c00469{bottom:0.000008px;}
.y24_c00469{bottom:30.156225px;}
.y22_c00469{bottom:158.609925px;}
.y21_c00469{bottom:188.966802px;}
.y20_c00469{bottom:219.323679px;}
.y1f_c00469{bottom:249.680556px;}
.y1e_c00469{bottom:280.037432px;}
.y1d_c00469{bottom:310.394309px;}
.y1c_c00469{bottom:340.751186px;}
.y1b_c00469{bottom:371.108063px;}
.y1a_c00469{bottom:401.464940px;}
.y19_c00469{bottom:431.821816px;}
.y18_c00469{bottom:462.178693px;}
.y17_c00469{bottom:492.535570px;}
.y16_c00469{bottom:522.892447px;}
.y15_c00469{bottom:553.249323px;}
.y14_c00469{bottom:583.606200px;}
.y13_c00469{bottom:613.963077px;}
.y12_c00469{bottom:644.319954px;}
.y23_c00469{bottom:678.499530px;}
.y11_c00469{bottom:745.617294px;}
.y10_c00469{bottom:775.974171px;}
.yf_c00469{bottom:806.331048px;}
.ye_c00469{bottom:836.687924px;}
.yd_c00469{bottom:867.044801px;}
.yc_c00469{bottom:897.401678px;}
.yb_c00469{bottom:927.758555px;}
.ya_c00469{bottom:958.115432px;}
.y9_c00469{bottom:988.472308px;}
.y8_c00469{bottom:1018.829185px;}
.y7_c00469{bottom:1049.186062px;}
.y6_c00469{bottom:1079.542939px;}
.y5_c00469{bottom:1109.899815px;}
.y4_c00469{bottom:1140.256692px;}
.y3_c00469{bottom:1170.613569px;}
.y2_c00469{bottom:1205.122336px;}
.h3_c00469{height:55.127245px;}
.h5_c00469{height:66.961090px;}
.h4_c00469{height:67.002968px;}
.h2_c00469{height:1304.999946px;}
.h0_c00469{height:1304.999953px;}
.h1_c00469{height:1305.000000px;}
.w2_c00469{width:934.874961px;}
.w0_c00469{width:934.875000px;}
.w1_c00469{width:935.250000px;}
.x0_c00469{left:0.000000px;}
.x1_c00469{left:87.850202px;}
.x2_c00469{left:451.985828px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls1_c00469{letter-spacing:0.000000pt;}
.ls0_c00469{letter-spacing:0.000020pt;}
.ws1_c00469{word-spacing:-16.604696pt;}
.ws0_c00469{word-spacing:-0.063962pt;}
.ws2_c00469{word-spacing:0.000000pt;}
._1_c00469{width:1.202284pt;}
._2_c00469{width:2.508877pt;}
._7_c00469{width:4.185004pt;}
._8_c00469{width:5.359289pt;}
._d_c00469{width:6.544126pt;}
._5_c00469{width:8.540311pt;}
._9_c00469{width:9.637735pt;}
._b_c00469{width:10.536829pt;}
._6_c00469{width:11.748416pt;}
._3_c00469{width:12.727937pt;}
._4_c00469{width:13.938574pt;}
._0_c00469{width:14.995807pt;}
._a_c00469{width:18.051721pt;}
._c_c00469{width:21.390000pt;}
._e_c00469{width:25.803319pt;}
.fs1_c00469{font-size:63.921837pt;}
.fs0_c00469{font-size:63.961814pt;}
.y0_c00469{bottom:0.000000pt;}
.y1_c00469{bottom:0.000007pt;}
.y24_c00469{bottom:26.805533pt;}
.y22_c00469{bottom:140.986600pt;}
.y21_c00469{bottom:167.970491pt;}
.y20_c00469{bottom:194.954381pt;}
.y1f_c00469{bottom:221.938272pt;}
.y1e_c00469{bottom:248.922162pt;}
.y1d_c00469{bottom:275.906053pt;}
.y1c_c00469{bottom:302.889943pt;}
.y1b_c00469{bottom:329.873834pt;}
.y1a_c00469{bottom:356.857724pt;}
.y19_c00469{bottom:383.841614pt;}
.y18_c00469{bottom:410.825505pt;}
.y17_c00469{bottom:437.809395pt;}
.y16_c00469{bottom:464.793286pt;}
.y15_c00469{bottom:491.777176pt;}
.y14_c00469{bottom:518.761067pt;}
.y13_c00469{bottom:545.744957pt;}
.y12_c00469{bottom:572.728848pt;}
.y23_c00469{bottom:603.110693pt;}
.y11_c00469{bottom:662.770928pt;}
.y10_c00469{bottom:689.754819pt;}
.yf_c00469{bottom:716.738709pt;}
.ye_c00469{bottom:743.722600pt;}
.yd_c00469{bottom:770.706490pt;}
.yc_c00469{bottom:797.690380pt;}
.yb_c00469{bottom:824.674271pt;}
.ya_c00469{bottom:851.658161pt;}
.y9_c00469{bottom:878.642052pt;}
.y8_c00469{bottom:905.625942pt;}
.y7_c00469{bottom:932.609833pt;}
.y6_c00469{bottom:959.593723pt;}
.y5_c00469{bottom:986.577614pt;}
.y4_c00469{bottom:1013.561504pt;}
.y3_c00469{bottom:1040.545395pt;}
.y2_c00469{bottom:1071.219855pt;}
.h3_c00469{height:49.001996pt;}
.h5_c00469{height:59.520969pt;}
.h4_c00469{height:59.558193pt;}
.h2_c00469{height:1159.999952pt;}
.h0_c00469{height:1159.999959pt;}
.h1_c00469{height:1160.000000pt;}
.w2_c00469{width:830.999965pt;}
.w0_c00469{width:831.000000pt;}
.w1_c00469{width:831.333333pt;}
.x0_c00469{left:0.000000pt;}
.x1_c00469{left:78.089069pt;}
.x2_c00469{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.006348;font-style:normal;font-weight:normal;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_acb7b83fd694237387644723.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.006348;font-style:normal;font-weight:normal;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_8d46833eb5a76d10167d312f.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.000000;font-style:normal;font-weight:normal;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_90a95b7011f85d8dd58932da.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:1.000000;font-style:normal;font-weight: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_c00470;src:url('chunks/assets/font_8b49daacc1ec6a4d26695666.woff2')format("woff");}.ff5_c00470{font-family:ff5_c00470;line-height:0.917969;font-style:normal;font-weight: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_c00470;src:url('chunks/assets/font_c03ff7b81fcdf8f61134c76e.woff2')format("woff");}.ff6_c00470{font-family:ff6_c00470;line-height:0.727051;font-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_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);}
.v0_c00470{vertical-align:0.000000px;}
.ls0_c00470{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws0_c00470{word-spacing:-14.018975px;}
.ws2_c00470{word-spacing:0.000000px;}
._0_c00470{width:1.535109px;}
._5_c00470{width:5.218749px;}
._1_c00470{width:6.914582px;}
._2_c00470{width:11.956768px;}
._3_c00470{width:15.125733px;}
._4_c00470{width:47.292079px;}
.fc2_c00470{color:rgb(255,255,255);}
.fc1_c00470{color:rgb(0,0,0);}
.fc0_c00470{color:rgb(50,44,18);}
.fs1_c00470{font-size:53.967781px;}
.fs2_c00470{font-size:71.912067px;}
.fs0_c00470{font-size:71.957041px;}
.y0_c00470{bottom:0.000000px;}
.y1_c00470{bottom:0.000008px;}
.y11_c00470{bottom:30.156225px;}
.yd_c00470{bottom:628.891787px;}
.yc_c00470{bottom:646.881047px;}
.yb_c00470{bottom:791.664848px;}
.ya_c00470{bottom:822.021725px;}
.y9_c00470{bottom:852.378602px;}
.y8_c00470{bottom:882.735478px;}
.y7_c00470{bottom:913.092355px;}
.y6_c00470{bottom:943.449232px;}
.y5_c00470{bottom:973.806109px;}
.y4_c00470{bottom:1004.162985px;}
.y3_c00470{bottom:1034.519862px;}
.y2_c00470{bottom:1074.509763px;}
.y10_c00470{bottom:1134.710716px;}
.yf_c00470{bottom:1165.067593px;}
.ye_c00470{bottom:1199.835078px;}
.h4_c00470{height:41.002865px;}
.h5_c00470{height:55.092790px;}
.h3_c00470{height:55.127245px;}
.h2_c00470{height:1304.999946px;}
.h0_c00470{height:1304.999953px;}
.h1_c00470{height:1305.000000px;}
.w2_c00470{width:934.874961px;}
.w0_c00470{width:934.875000px;}
.w1_c00470{width:935.250000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:87.850202px;}
.x2_c00470{left:451.985828px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls0_c00470{letter-spacing:0.000000pt;}
.ws1_c00470{word-spacing:-16.604696pt;}
.ws0_c00470{word-spacing:-12.461311pt;}
.ws2_c00470{word-spacing:0.000000pt;}
._0_c00470{width:1.364541pt;}
._5_c00470{width:4.638888pt;}
._1_c00470{width:6.146295pt;}
._2_c00470{width:10.628238pt;}
._3_c00470{width:13.445096pt;}
._4_c00470{width:42.037403pt;}
.fs1_c00470{font-size:47.971361pt;}
.fs2_c00470{font-size:63.921837pt;}
.fs0_c00470{font-size:63.961814pt;}
.y0_c00470{bottom:0.000000pt;}
.y1_c00470{bottom:0.000007pt;}
.y11_c00470{bottom:26.805533pt;}
.yd_c00470{bottom:559.014922pt;}
.yc_c00470{bottom:575.005375pt;}
.yb_c00470{bottom:703.702087pt;}
.ya_c00470{bottom:730.685978pt;}
.y9_c00470{bottom:757.669868pt;}
.y8_c00470{bottom:784.653759pt;}
.y7_c00470{bottom:811.637649pt;}
.y6_c00470{bottom:838.621539pt;}
.y5_c00470{bottom:865.605430pt;}
.y4_c00470{bottom:892.589320pt;}
.y3_c00470{bottom:919.573211pt;}
.y2_c00470{bottom:955.119789pt;}
.y10_c00470{bottom:1008.631748pt;}
.yf_c00470{bottom:1035.615638pt;}
.ye_c00470{bottom:1066.520069pt;}
.h4_c00470{height:36.446991pt;}
.h5_c00470{height:48.971369pt;}
.h3_c00470{height:49.001996pt;}
.h2_c00470{height:1159.999952pt;}
.h0_c00470{height:1159.999959pt;}
.h1_c00470{height:1160.000000pt;}
.w2_c00470{width:830.999965pt;}
.w0_c00470{width:831.000000pt;}
.w1_c00470{width:831.333333pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:78.089069pt;}
.x2_c00470{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44cab8874ba3e717472a70fd.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:0.775879;font-style:normal;font-weight:normal;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_1564c5afc49e8a6c5a32f200.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.006348;font-style:normal;font-weight:normal;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_c09df13aa7854b6da7d83294.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:0.929688;font-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_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);}
.v0_c00471{vertical-align:0.000000px;}
.ls0_c00471{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00471{word-spacing:-18.680283px;}
.ws1_c00471{word-spacing:0.000000px;}
._0_c00471{width:4.764327px;}
.fc1_c00471{color:rgb(0,0,0);}
.fc0_c00471{color:rgb(41,34,6);}
.fs1_c00471{font-size:71.912067px;}
.fs0_c00471{font-size:71.957041px;}
.y0_c00471{bottom:0.000000px;}
.y1_c00471{bottom:0.000008px;}
.y5_c00471{bottom:30.156225px;}
.y4_c00471{bottom:1113.346162px;}
.y3_c00471{bottom:1142.578710px;}
.y2_c00471{bottom:1199.835078px;}
.h4_c00471{height:55.092790px;}
.h3_c00471{height:55.127245px;}
.h2_c00471{height:1304.999946px;}
.h0_c00471{height:1304.999953px;}
.h1_c00471{height:1305.000000px;}
.w2_c00471{width:934.874961px;}
.w0_c00471{width:934.875000px;}
.w1_c00471{width:935.250000px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:128.097383px;}
.x2_c00471{left:451.985828px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws0_c00471{word-spacing:-16.604696pt;}
.ws1_c00471{word-spacing:0.000000pt;}
._0_c00471{width:4.234958pt;}
.fs1_c00471{font-size:63.921837pt;}
.fs0_c00471{font-size:63.961814pt;}
.y0_c00471{bottom:0.000000pt;}
.y1_c00471{bottom:0.000007pt;}
.y5_c00471{bottom:26.805533pt;}
.y4_c00471{bottom:989.641033pt;}
.y3_c00471{bottom:1015.625520pt;}
.y2_c00471{bottom:1066.520069pt;}
.h4_c00471{height:48.971369pt;}
.h3_c00471{height:49.001996pt;}
.h2_c00471{height:1159.999952pt;}
.h0_c00471{height:1159.999959pt;}
.h1_c00471{height:1160.000000pt;}
.w2_c00471{width:830.999965pt;}
.w0_c00471{width:831.000000pt;}
.w1_c00471{width:831.333333pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:113.864341pt;}
.x2_c00471{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_abccc96cefdad4766a921fea.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:0.710938;font-style:normal;font-weight:normal;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_6f02f5afae20b9ac6384883a.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.131000;font-style:normal;font-weight:normal;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_c94f2523c6209efc6ad7647c.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.171387;font-style:normal;font-weight:normal;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_32accd76c7a86b37b8de0638.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:0.769531;font-style:normal;font-weight: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_11d1a962eb30f8fe331fa733.woff2')format("woff");}.ff5_c00472{font-family:ff5_c00472;line-height:0.723633;font-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_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);}
.v0_c00472{vertical-align:0.000000px;}
.ls0_c00472{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00472{word-spacing:-14.474592px;}
.ws0_c00472{word-spacing:-0.384790px;}
.ws2_c00472{word-spacing:-0.055722px;}
.ws3_c00472{word-spacing:0.000000px;}
._0_c00472{margin-left:-6.208721px;}
.fc0_c00472{color:rgb(255,255,255);}
.fs2_c00472{font-size:55.721735px;}
.fs1_c00472{font-size:59.949210px;}
.fs0_c00472{font-size:384.790269px;}
.y0_c00472{bottom:0.000000px;}
.y1_c00472{bottom:0.000008px;}
.ya_c00472{bottom:88.747449px;}
.y9_c00472{bottom:110.109696px;}
.y8_c00472{bottom:131.471942px;}
.y7_c00472{bottom:152.834189px;}
.y6_c00472{bottom:174.196436px;}
.y5_c00472{bottom:195.558682px;}
.y4_c00472{bottom:216.920929px;}
.y3_c00472{bottom:238.283175px;}
.y2_c00472{bottom:519.924756px;}
.yc_c00472{bottom:1214.615815px;}
.yb_c00472{bottom:1233.729404px;}
.h5_c00472{height:51.885424px;}
.h4_c00472{height:57.011698px;}
.h3_c00472{height:269.804114px;}
.h2_c00472{height:1304.999946px;}
.h0_c00472{height:1304.999953px;}
.h1_c00472{height:1305.000000px;}
.w2_c00472{width:934.874961px;}
.w0_c00472{width:934.875000px;}
.w1_c00472{width:935.250000px;}
.x0_c00472{left:0.000000px;}
.x3_c00472{left:47.228108px;}
.x2_c00472{left:87.850202px;}
.x1_c00472{left:206.292654px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws1_c00472{word-spacing:-12.866304pt;}
.ws0_c00472{word-spacing:-0.342036pt;}
.ws2_c00472{word-spacing:-0.049530pt;}
.ws3_c00472{word-spacing:0.000000pt;}
._0_c00472{margin-left:-5.518863pt;}
.fs2_c00472{font-size:49.530431pt;}
.fs1_c00472{font-size:53.288186pt;}
.fs0_c00472{font-size:342.035795pt;}
.y0_c00472{bottom:0.000000pt;}
.y1_c00472{bottom:0.000007pt;}
.ya_c00472{bottom:78.886621pt;}
.y9_c00472{bottom:97.875285pt;}
.y8_c00472{bottom:116.863949pt;}
.y7_c00472{bottom:135.852612pt;}
.y6_c00472{bottom:154.841276pt;}
.y5_c00472{bottom:173.829940pt;}
.y4_c00472{bottom:192.818603pt;}
.y3_c00472{bottom:211.807267pt;}
.y2_c00472{bottom:462.155338pt;}
.yc_c00472{bottom:1079.658503pt;}
.yb_c00472{bottom:1096.648359pt;}
.h5_c00472{height:46.120377pt;}
.h4_c00472{height:50.677065pt;}
.h3_c00472{height:239.825879pt;}
.h2_c00472{height:1159.999952pt;}
.h0_c00472{height:1159.999959pt;}
.h1_c00472{height:1160.000000pt;}
.w2_c00472{width:830.999965pt;}
.w0_c00472{width:831.000000pt;}
.w1_c00472{width:831.333333pt;}
.x0_c00472{left:0.000000pt;}
.x3_c00472{left:41.980540pt;}
.x2_c00472{left:78.089069pt;}
.x1_c00472{left:183.371248pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00473{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
}
.y0_c00473{bottom:0.000000px;}
.h0_c00473{height:1304.999953px;}
.h1_c00473{height:1305.000000px;}
.w0_c00473{width:934.875000px;}
.w1_c00473{width:935.250000px;}
.x0_c00473{left:0.000000px;}
@media print{
.y0_c00473{bottom:0.000000pt;}
.h0_c00473{height:1159.999959pt;}
.h1_c00473{height:1160.000000pt;}
.w0_c00473{width:831.000000pt;}
.w1_c00473{width:831.333333pt;}
.x0_c00473{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_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_dcf5a77252c0adbac0b179b4.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.006348;font-style:normal;font-weight:normal;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_8d02e0a0c6e77a488bdb9397.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.006348;font-style:normal;font-weight:normal;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_12a481afbfd187485f85e05a.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.000000;font-style:normal;font-weight:normal;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_9499bd33844c59fedbf7e22d.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;line-height:0.954102;font-style:normal;font-weight: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_7000f8cb5f6c826d6eea1744.woff2')format("woff");}.ff5_c00474{font-family:ff5_c00474;line-height:1.000000;font-style:normal;font-weight: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_c00474;src:url('chunks/assets/font_06cf64db44b9987409b80dc7.woff2')format("woff");}.ff6_c00474{font-family:ff6_c00474;line-height:1.000000;font-style:normal;font-weight: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_c00474;src:url('chunks/assets/font_0c1d1798fedc7e3a00207613.woff2')format("woff");}.ff7_c00474{font-family:ff7_c00474;line-height:0.733887;font-style:normal;font-weight: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_c00474;src:url('chunks/assets/font_f1c4e85c77539e52ae22cc92.woff2')format("woff");}.ff8_c00474{font-family:ff8_c00474;line-height:1.006348;font-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_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);}
.v0_c00474{vertical-align:0.000000px;}
.ls2_c00474{letter-spacing:0.000000px;}
.ls1_c00474{letter-spacing:0.027317px;}
.ls0_c00474{letter-spacing:5.648961px;}
.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;}
}
.ws0_c00474{word-spacing:-18.691966px;}
.ws3_c00474{word-spacing:-18.680283px;}
.ws2_c00474{word-spacing:-15.572744px;}
.ws1_c00474{word-spacing:-0.059949px;}
.ws5_c00474{word-spacing:0.000000px;}
.ws4_c00474{word-spacing:956.011833px;}
._11_c00474{width:1.324982px;}
._12_c00474{width:3.272661px;}
._15_c00474{width:4.326716px;}
._9_c00474{width:5.566090px;}
._e_c00474{width:6.805327px;}
._6_c00474{width:7.914221px;}
._3_c00474{width:9.528659px;}
._4_c00474{width:11.252622px;}
._b_c00474{width:12.489489px;}
._5_c00474{width:14.022132px;}
._14_c00474{width:15.683593px;}
._16_c00474{width:21.262878px;}
._7_c00474{width:22.591983px;}
._8_c00474{width:24.708882px;}
._f_c00474{width:26.588618px;}
._10_c00474{width:27.841134px;}
._2_c00474{width:33.005919px;}
._d_c00474{width:35.533425px;}
._a_c00474{width:39.011820px;}
._c_c00474{width:41.923381px;}
._1_c00474{width:48.887688px;}
._0_c00474{width:55.192572px;}
._13_c00474{width:998.052446px;}
.fc4_c00474{color:rgb(132,27,27);}
.fc3_c00474{color:rgb(84,16,16);}
.fc2_c00474{color:rgb(102,18,18);}
.fc1_c00474{color:rgb(0,0,0);}
.fc0_c00474{color:rgb(255,255,255);}
.fs3_c00474{font-size:48.628889px;}
.fs0_c00474{font-size:59.949210px;}
.fs2_c00474{font-size:71.912067px;}
.fs1_c00474{font-size:71.957041px;}
.y0_c00474{bottom:0.000000px;}
.y1_c00474{bottom:0.000008px;}
.y1e_c00474{bottom:30.156225px;}
.y1d_c00474{bottom:109.697447px;}
.y1c_c00474{bottom:138.929995px;}
.y1b_c00474{bottom:168.162543px;}
.y1a_c00474{bottom:197.395091px;}
.y24_c00474{bottom:226.265075px;}
.y19_c00474{bottom:226.627639px;}
.y23_c00474{bottom:242.681429px;}
.y18_c00474{bottom:255.860187px;}
.y22_c00474{bottom:259.097783px;}
.y21_c00474{bottom:275.514138px;}
.y17_c00474{bottom:285.092735px;}
.y20_c00474{bottom:291.930492px;}
.y16_c00474{bottom:314.325283px;}
.y15_c00474{bottom:343.557831px;}
.y5_c00474{bottom:364.591471px;}
.y14_c00474{bottom:372.790379px;}
.y4_c00474{bottom:382.580731px;}
.y3_c00474{bottom:400.569992px;}
.y13_c00474{bottom:402.022927px;}
.y2_c00474{bottom:418.559252px;}
.y12_c00474{bottom:431.255475px;}
.y11_c00474{bottom:512.005897px;}
.y10_c00474{bottom:532.243814px;}
.y1f_c00474{bottom:783.343876px;}
.ye_c00474{bottom:867.743317px;}
.yd_c00474{bottom:896.975865px;}
.yc_c00474{bottom:955.440961px;}
.yb_c00474{bottom:984.673509px;}
.ya_c00474{bottom:1013.906057px;}
.y9_c00474{bottom:1043.138605px;}
.y8_c00474{bottom:1072.371153px;}
.y7_c00474{bottom:1101.603701px;}
.y6_c00474{bottom:1130.836249px;}
.yf_c00474{bottom:1200.662313px;}
.h8_c00474{height:37.255238px;}
.h5_c00474{height:42.795774px;}
.h7_c00474{height:43.410487px;}
.h3_c00474{height:45.927886px;}
.h6_c00474{height:55.092790px;}
.h4_c00474{height:55.127245px;}
.h2_c00474{height:1304.999946px;}
.h0_c00474{height:1304.999953px;}
.h1_c00474{height:1305.000000px;}
.w2_c00474{width:934.874961px;}
.w0_c00474{width:934.875000px;}
.w1_c00474{width:935.250000px;}
.x0_c00474{left:0.000000px;}
.x2_c00474{left:87.850202px;}
.x5_c00474{left:100.588751px;}
.x4_c00474{left:451.985828px;}
.x6_c00474{left:621.708598px;}
.x1_c00474{left:630.865702px;}
.x3_c00474{left:780.323448px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls2_c00474{letter-spacing:0.000000pt;}
.ls1_c00474{letter-spacing:0.024282pt;}
.ls0_c00474{letter-spacing:5.021299pt;}
.ws0_c00474{word-spacing:-16.615081pt;}
.ws3_c00474{word-spacing:-16.604696pt;}
.ws2_c00474{word-spacing:-13.842439pt;}
.ws1_c00474{word-spacing:-0.053288pt;}
.ws5_c00474{word-spacing:0.000000pt;}
.ws4_c00474{word-spacing:849.788296pt;}
._11_c00474{width:1.177762pt;}
._12_c00474{width:2.909032pt;}
._15_c00474{width:3.845970pt;}
._9_c00474{width:4.947636pt;}
._e_c00474{width:6.049179pt;}
._6_c00474{width:7.034863pt;}
._3_c00474{width:8.469919pt;}
._4_c00474{width:10.002331pt;}
._b_c00474{width:11.101768pt;}
._5_c00474{width:12.464117pt;}
._14_c00474{width:13.940972pt;}
._16_c00474{width:18.900336pt;}
._7_c00474{width:20.081762pt;}
._8_c00474{width:21.963450pt;}
._f_c00474{width:23.634327pt;}
._10_c00474{width:24.747675pt;}
._2_c00474{width:29.338595pt;}
._d_c00474{width:31.585267pt;}
._a_c00474{width:34.677174pt;}
._c_c00474{width:37.265227pt;}
._1_c00474{width:43.455723pt;}
._0_c00474{width:49.060064pt;}
._13_c00474{width:887.157729pt;}
.fs3_c00474{font-size:43.225679pt;}
.fs0_c00474{font-size:53.288186pt;}
.fs2_c00474{font-size:63.921837pt;}
.fs1_c00474{font-size:63.961814pt;}
.y0_c00474{bottom:0.000000pt;}
.y1_c00474{bottom:0.000007pt;}
.y1e_c00474{bottom:26.805533pt;}
.y1d_c00474{bottom:97.508841pt;}
.y1c_c00474{bottom:123.493328pt;}
.y1b_c00474{bottom:149.477816pt;}
.y1a_c00474{bottom:175.462303pt;}
.y24_c00474{bottom:201.124511pt;}
.y19_c00474{bottom:201.446790pt;}
.y23_c00474{bottom:215.716826pt;}
.y18_c00474{bottom:227.431277pt;}
.y22_c00474{bottom:230.309141pt;}
.y21_c00474{bottom:244.901456pt;}
.y17_c00474{bottom:253.415764pt;}
.y20_c00474{bottom:259.493770pt;}
.y16_c00474{bottom:279.400251pt;}
.y15_c00474{bottom:305.384738pt;}
.y5_c00474{bottom:324.081308pt;}
.y14_c00474{bottom:331.369225pt;}
.y4_c00474{bottom:340.071761pt;}
.y3_c00474{bottom:356.062215pt;}
.y13_c00474{bottom:357.353712pt;}
.y2_c00474{bottom:372.052668pt;}
.y12_c00474{bottom:383.338200pt;}
.y11_c00474{bottom:455.116352pt;}
.y10_c00474{bottom:473.105613pt;}
.y1f_c00474{bottom:696.305667pt;}
.ye_c00474{bottom:771.327393pt;}
.yd_c00474{bottom:797.311880pt;}
.yc_c00474{bottom:849.280854pt;}
.yb_c00474{bottom:875.265341pt;}
.ya_c00474{bottom:901.249828pt;}
.y9_c00474{bottom:927.234316pt;}
.y8_c00474{bottom:953.218803pt;}
.y7_c00474{bottom:979.203290pt;}
.y6_c00474{bottom:1005.187777pt;}
.yf_c00474{bottom:1067.255390pt;}
.h8_c00474{height:33.115767pt;}
.h5_c00474{height:38.040688pt;}
.h7_c00474{height:38.587100pt;}
.h3_c00474{height:40.824787pt;}
.h6_c00474{height:48.971369pt;}
.h4_c00474{height:49.001996pt;}
.h2_c00474{height:1159.999952pt;}
.h0_c00474{height:1159.999959pt;}
.h1_c00474{height:1160.000000pt;}
.w2_c00474{width:830.999965pt;}
.w0_c00474{width:831.000000pt;}
.w1_c00474{width:831.333333pt;}
.x0_c00474{left:0.000000pt;}
.x2_c00474{left:78.089069pt;}
.x5_c00474{left:89.412223pt;}
.x4_c00474{left:401.765180pt;}
.x6_c00474{left:552.629865pt;}
.x1_c00474{left:560.769513pt;}
.x3_c00474{left:693.620842pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_057a3fc361fbc17db1a55756.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.006348;font-style:normal;font-weight:normal;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_1e0b70bebfac2203d02feb45.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:0.733887;font-style:normal;font-weight:normal;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_9499bd33844c59fedbf7e22d.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:0.954102;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00475;src:url('chunks/assets/font_bf72a0eb9a539d25007494ec.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:1.006348;font-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_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);}
.v0_c00475{vertical-align:0.000000px;}
.ls0_c00475{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00475{word-spacing:-18.680283px;}
.ws1_c00475{word-spacing:-0.059949px;}
.ws3_c00475{word-spacing:0.000000px;}
.ws0_c00475{word-spacing:2067.047727px;}
._1_c00475{width:1.806926px;}
._15_c00475{width:2.891052px;}
._1f_c00475{width:4.126044px;}
._5_c00475{width:5.579441px;}
._8_c00475{width:7.085592px;}
._f_c00475{width:8.256856px;}
._1b_c00475{width:10.189230px;}
._1e_c00475{width:11.489235px;}
._b_c00475{width:15.206503px;}
._10_c00475{width:16.218422px;}
._0_c00475{width:17.427097px;}
._12_c00475{width:20.153508px;}
._18_c00475{width:21.530997px;}
._20_c00475{width:24.618090px;}
._6_c00475{width:25.742421px;}
._16_c00475{width:27.208699px;}
._1a_c00475{width:28.255762px;}
._19_c00475{width:29.836848px;}
._14_c00475{width:35.158674px;}
._3_c00475{width:38.320849px;}
._2_c00475{width:41.822641px;}
._1c_c00475{width:48.205595px;}
._11_c00475{width:50.261010px;}
._a_c00475{width:51.958000px;}
._1d_c00475{width:53.904581px;}
._d_c00475{width:55.408327px;}
._13_c00475{width:70.931050px;}
._9_c00475{width:80.494913px;}
._4_c00475{width:82.831406px;}
._c_c00475{width:88.517419px;}
._7_c00475{width:95.596012px;}
._17_c00475{width:103.976942px;}
._e_c00475{width:124.730222px;}
.fc2_c00475{color:rgb(102,18,18);}
.fc1_c00475{color:rgb(255,255,255);}
.fc0_c00475{color:rgb(0,0,0);}
.fs2_c00475{font-size:47.971277px;}
.fs1_c00475{font-size:59.949210px;}
.fs3_c00475{font-size:71.912067px;}
.fs0_c00475{font-size:71.957041px;}
.y0_c00475{bottom:0.000000px;}
.y1_c00475{bottom:0.000008px;}
.y2a_c00475{bottom:30.156225px;}
.y28_c00475{bottom:222.037595px;}
.y29_c00475{bottom:250.248959px;}
.y27_c00475{bottom:251.270143px;}
.y26_c00475{bottom:280.502691px;}
.y25_c00475{bottom:309.735239px;}
.y24_c00475{bottom:338.967787px;}
.y23_c00475{bottom:368.200335px;}
.y22_c00475{bottom:397.432883px;}
.y21_c00475{bottom:426.665431px;}
.y20_c00475{bottom:455.897979px;}
.y1f_c00475{bottom:485.130527px;}
.y1e_c00475{bottom:514.363075px;}
.y1d_c00475{bottom:543.595623px;}
.y1c_c00475{bottom:572.828171px;}
.y1b_c00475{bottom:602.060719px;}
.y1a_c00475{bottom:631.293267px;}
.y15_c00475{bottom:633.859249px;}
.y19_c00475{bottom:660.525815px;}
.y14_c00475{bottom:663.091797px;}
.yf_c00475{bottom:682.296309px;}
.y18_c00475{bottom:689.758363px;}
.y13_c00475{bottom:692.324345px;}
.y17_c00475{bottom:718.990911px;}
.y12_c00475{bottom:721.556893px;}
.y16_c00475{bottom:748.223459px;}
.y11_c00475{bottom:750.789441px;}
.ye_c00475{bottom:780.021989px;}
.yd_c00475{bottom:809.254537px;}
.yc_c00475{bottom:838.487085px;}
.yb_c00475{bottom:867.719633px;}
.ya_c00475{bottom:896.952181px;}
.y9_c00475{bottom:926.184729px;}
.y8_c00475{bottom:955.417277px;}
.y7_c00475{bottom:984.649825px;}
.y6_c00475{bottom:1013.882373px;}
.y5_c00475{bottom:1043.114921px;}
.y4_c00475{bottom:1072.347469px;}
.y3_c00475{bottom:1101.580017px;}
.y2_c00475{bottom:1130.812565px;}
.y10_c00475{bottom:1200.662313px;}
.h6_c00475{height:36.751433px;}
.h5_c00475{height:42.795774px;}
.h4_c00475{height:52.105611px;}
.h7_c00475{height:55.092790px;}
.h3_c00475{height:55.127245px;}
.h2_c00475{height:1304.999946px;}
.h0_c00475{height:1304.999953px;}
.h1_c00475{height:1305.000000px;}
.w2_c00475{width:934.874961px;}
.w0_c00475{width:934.875000px;}
.w1_c00475{width:935.250000px;}
.x0_c00475{left:0.000000px;}
.x1_c00475{left:87.850202px;}
.x2_c00475{left:108.062661px;}
.x6_c00475{left:451.985828px;}
.x4_c00475{left:484.831121px;}
.x5_c00475{left:606.623519px;}
.x3_c00475{left:780.323448px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls0_c00475{letter-spacing:0.000000pt;}
.ws2_c00475{word-spacing:-16.604696pt;}
.ws1_c00475{word-spacing:-0.053288pt;}
.ws3_c00475{word-spacing:0.000000pt;}
.ws0_c00475{word-spacing:1837.375758pt;}
._1_c00475{width:1.606157pt;}
._15_c00475{width:2.569824pt;}
._1f_c00475{width:3.667595pt;}
._5_c00475{width:4.959503pt;}
._8_c00475{width:6.298304pt;}
._f_c00475{width:7.339427pt;}
._1b_c00475{width:9.057093pt;}
._1e_c00475{width:10.212654pt;}
._b_c00475{width:13.516892pt;}
._10_c00475{width:14.416375pt;}
._0_c00475{width:15.490753pt;}
._12_c00475{width:17.914230pt;}
._18_c00475{width:19.138664pt;}
._20_c00475{width:21.882747pt;}
._6_c00475{width:22.882152pt;}
._16_c00475{width:24.185510pt;}
._1a_c00475{width:25.116233pt;}
._19_c00475{width:26.521643pt;}
._14_c00475{width:31.252155pt;}
._3_c00475{width:34.062977pt;}
._2_c00475{width:37.175681pt;}
._1c_c00475{width:42.849418pt;}
._11_c00475{width:44.676453pt;}
._a_c00475{width:46.184889pt;}
._1d_c00475{width:47.915183pt;}
._d_c00475{width:49.251846pt;}
._13_c00475{width:63.049822pt;}
._9_c00475{width:71.551033pt;}
._4_c00475{width:73.627917pt;}
._c_c00475{width:78.682151pt;}
._7_c00475{width:84.974233pt;}
._17_c00475{width:92.423948pt;}
._e_c00475{width:110.871309pt;}
.fs2_c00475{font-size:42.641135pt;}
.fs1_c00475{font-size:53.288186pt;}
.fs3_c00475{font-size:63.921837pt;}
.fs0_c00475{font-size:63.961814pt;}
.y0_c00475{bottom:0.000000pt;}
.y1_c00475{bottom:0.000007pt;}
.y2a_c00475{bottom:26.805533pt;}
.y28_c00475{bottom:197.366751pt;}
.y29_c00475{bottom:222.443519pt;}
.y27_c00475{bottom:223.351238pt;}
.y26_c00475{bottom:249.335725pt;}
.y25_c00475{bottom:275.320212pt;}
.y24_c00475{bottom:301.304700pt;}
.y23_c00475{bottom:327.289187pt;}
.y22_c00475{bottom:353.273674pt;}
.y21_c00475{bottom:379.258161pt;}
.y20_c00475{bottom:405.242648pt;}
.y1f_c00475{bottom:431.227135pt;}
.y1e_c00475{bottom:457.211622pt;}
.y1d_c00475{bottom:483.196109pt;}
.y1c_c00475{bottom:509.180596pt;}
.y1b_c00475{bottom:535.165083pt;}
.y1a_c00475{bottom:561.149571pt;}
.y15_c00475{bottom:563.430443pt;}
.y19_c00475{bottom:587.134058pt;}
.y14_c00475{bottom:589.414930pt;}
.yf_c00475{bottom:606.485608pt;}
.y18_c00475{bottom:613.118545pt;}
.y13_c00475{bottom:615.399417pt;}
.y17_c00475{bottom:639.103032pt;}
.y12_c00475{bottom:641.383905pt;}
.y16_c00475{bottom:665.087519pt;}
.y11_c00475{bottom:667.368392pt;}
.ye_c00475{bottom:693.352879pt;}
.yd_c00475{bottom:719.337366pt;}
.yc_c00475{bottom:745.321853pt;}
.yb_c00475{bottom:771.306340pt;}
.ya_c00475{bottom:797.290827pt;}
.y9_c00475{bottom:823.275314pt;}
.y8_c00475{bottom:849.259801pt;}
.y7_c00475{bottom:875.244289pt;}
.y6_c00475{bottom:901.228776pt;}
.y5_c00475{bottom:927.213263pt;}
.y4_c00475{bottom:953.197750pt;}
.y3_c00475{bottom:979.182237pt;}
.y2_c00475{bottom:1005.166724pt;}
.y10_c00475{bottom:1067.255390pt;}
.h6_c00475{height:32.667940pt;}
.h5_c00475{height:38.040688pt;}
.h4_c00475{height:46.316099pt;}
.h7_c00475{height:48.971369pt;}
.h3_c00475{height:49.001996pt;}
.h2_c00475{height:1159.999952pt;}
.h0_c00475{height:1159.999959pt;}
.h1_c00475{height:1160.000000pt;}
.w2_c00475{width:830.999965pt;}
.w0_c00475{width:831.000000pt;}
.w1_c00475{width:831.333333pt;}
.x0_c00475{left:0.000000pt;}
.x1_c00475{left:78.089069pt;}
.x2_c00475{left:96.055698pt;}
.x6_c00475{left:401.765180pt;}
.x4_c00475{left:430.960996pt;}
.x5_c00475{left:539.220906pt;}
.x3_c00475{left:693.620842pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bf78ce2a042148909252da65.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.006348;font-style:normal;font-weight:normal;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_0e6acbc234399fff70b64735.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:0.775879;font-style:normal;font-weight:normal;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_4f909648cc3fb1e56126fbe2.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00476;src:url('chunks/assets/font_9499bd33844c59fedbf7e22d.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:0.954102;font-style:normal;font-weight: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_c00476;src:url('chunks/assets/font_e5f038d2cc4c348ef58902da.woff2')format("woff");}.ff5_c00476{font-family:ff5_c00476;line-height:1.000000;font-style:normal;font-weight: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_c00476;src:url('chunks/assets/font_84d3d59eb54c0b850c748b08.woff2')format("woff");}.ff6_c00476{font-family:ff6_c00476;line-height:1.006348;font-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_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);}
.v0_c00476{vertical-align:0.000000px;}
.ls0_c00476{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws0_c00476{word-spacing:-0.059949px;}
.ws2_c00476{word-spacing:0.000000px;}
._b_c00476{width:1.820135px;}
._11_c00476{width:3.232106px;}
._12_c00476{width:4.926693px;}
._d_c00476{width:6.772217px;}
._16_c00476{width:8.379763px;}
._18_c00476{width:9.486525px;}
._a_c00476{width:11.641332px;}
._13_c00476{width:12.883088px;}
._17_c00476{width:16.359595px;}
._10_c00476{width:17.476229px;}
._0_c00476{width:19.746024px;}
._14_c00476{width:21.000053px;}
._6_c00476{width:24.208204px;}
._4_c00476{width:26.070372px;}
._5_c00476{width:27.911405px;}
._e_c00476{width:29.196810px;}
._15_c00476{width:31.040368px;}
._7_c00476{width:32.956887px;}
._8_c00476{width:36.695226px;}
._3_c00476{width:41.963183px;}
._2_c00476{width:45.201530px;}
._9_c00476{width:48.853000px;}
._f_c00476{width:71.171642px;}
._1_c00476{width:81.007872px;}
._c_c00476{width:90.686141px;}
.fc4_c00476{color:rgb(84,16,16);}
.fc3_c00476{color:rgb(102,18,18);}
.fc1_c00476{color:rgb(132,27,27);}
.fc2_c00476{color:rgb(255,255,255);}
.fc0_c00476{color:rgb(0,0,0);}
.fs1_c00476{font-size:59.949210px;}
.fs3_c00476{font-size:71.912067px;}
.fs0_c00476{font-size:71.957041px;}
.fs2_c00476{font-size:119.898420px;}
.y0_c00476{bottom:0.000000px;}
.y1_c00476{bottom:0.000008px;}
.y2b_c00476{bottom:30.156225px;}
.y24_c00476{bottom:158.953022px;}
.y23_c00476{bottom:188.185570px;}
.y22_c00476{bottom:217.418118px;}
.y21_c00476{bottom:246.650666px;}
.y20_c00476{bottom:275.883214px;}
.y1f_c00476{bottom:305.115762px;}
.y1e_c00476{bottom:334.348310px;}
.y1d_c00476{bottom:363.580858px;}
.y1c_c00476{bottom:392.813406px;}
.y1b_c00476{bottom:422.045954px;}
.y1a_c00476{bottom:451.278502px;}
.y19_c00476{bottom:480.511050px;}
.y18_c00476{bottom:509.743598px;}
.y17_c00476{bottom:538.976146px;}
.y25_c00476{bottom:583.679446px;}
.y2a_c00476{bottom:673.355917px;}
.y29_c00476{bottom:702.588465px;}
.y28_c00476{bottom:731.821013px;}
.y27_c00476{bottom:761.053561px;}
.y26_c00476{bottom:790.286109px;}
.yc_c00476{bottom:823.251442px;}
.yb_c00476{bottom:852.483990px;}
.ya_c00476{bottom:881.716538px;}
.y15_c00476{bottom:894.108572px;}
.y9_c00476{bottom:910.949086px;}
.y14_c00476{bottom:914.346490px;}
.y13_c00476{bottom:934.584408px;}
.y8_c00476{bottom:940.181634px;}
.y12_c00476{bottom:954.822325px;}
.y7_c00476{bottom:969.414182px;}
.y11_c00476{bottom:975.060243px;}
.y10_c00476{bottom:995.298161px;}
.y6_c00476{bottom:998.646730px;}
.yf_c00476{bottom:1015.536079px;}
.y5_c00476{bottom:1027.879278px;}
.ye_c00476{bottom:1035.773997px;}
.yd_c00476{bottom:1056.011915px;}
.y4_c00476{bottom:1057.111826px;}
.y3_c00476{bottom:1086.344374px;}
.y2_c00476{bottom:1115.576922px;}
.y16_c00476{bottom:1200.662313px;}
.h5_c00476{height:42.795774px;}
.h4_c00476{height:45.927886px;}
.h7_c00476{height:55.092790px;}
.h3_c00476{height:55.127245px;}
.h6_c00476{height:91.855772px;}
.h2_c00476{height:1304.999946px;}
.h0_c00476{height:1304.999953px;}
.h1_c00476{height:1305.000000px;}
.w2_c00476{width:934.874961px;}
.w0_c00476{width:934.875000px;}
.w1_c00476{width:935.250000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:87.850202px;}
.x4_c00476{left:89.070843px;}
.x5_c00476{left:451.985828px;}
.x2_c00476{left:528.283411px;}
.x3_c00476{left:780.323448px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws1_c00476{word-spacing:-16.604696pt;}
.ws0_c00476{word-spacing:-0.053288pt;}
.ws2_c00476{word-spacing:0.000000pt;}
._b_c00476{width:1.617898pt;}
._11_c00476{width:2.872983pt;}
._12_c00476{width:4.379283pt;}
._d_c00476{width:6.019748pt;}
._16_c00476{width:7.448678pt;}
._18_c00476{width:8.432466pt;}
._a_c00476{width:10.347850pt;}
._13_c00476{width:11.451634pt;}
._17_c00476{width:14.541862pt;}
._10_c00476{width:15.534426pt;}
._0_c00476{width:17.552021pt;}
._14_c00476{width:18.666714pt;}
._6_c00476{width:21.518404pt;}
._4_c00476{width:23.173664pt;}
._5_c00476{width:24.810138pt;}
._e_c00476{width:25.952720pt;}
._15_c00476{width:27.591438pt;}
._7_c00476{width:29.295010pt;}
._8_c00476{width:32.617978pt;}
._3_c00476{width:37.300607pt;}
._2_c00476{width:40.179137pt;}
._9_c00476{width:43.424889pt;}
._f_c00476{width:63.263682pt;}
._1_c00476{width:72.006997pt;}
._c_c00476{width:80.609903pt;}
.fs1_c00476{font-size:53.288186pt;}
.fs3_c00476{font-size:63.921837pt;}
.fs0_c00476{font-size:63.961814pt;}
.fs2_c00476{font-size:106.576373pt;}
.y0_c00476{bottom:0.000000pt;}
.y1_c00476{bottom:0.000007pt;}
.y2b_c00476{bottom:26.805533pt;}
.y24_c00476{bottom:141.291575pt;}
.y23_c00476{bottom:167.276062pt;}
.y22_c00476{bottom:193.260549pt;}
.y21_c00476{bottom:219.245036pt;}
.y20_c00476{bottom:245.229524pt;}
.y1f_c00476{bottom:271.214011pt;}
.y1e_c00476{bottom:297.198498pt;}
.y1d_c00476{bottom:323.182985pt;}
.y1c_c00476{bottom:349.167472pt;}
.y1b_c00476{bottom:375.151959pt;}
.y1a_c00476{bottom:401.136446pt;}
.y19_c00476{bottom:427.120933pt;}
.y18_c00476{bottom:453.105420pt;}
.y17_c00476{bottom:479.089908pt;}
.y25_c00476{bottom:518.826174pt;}
.y2a_c00476{bottom:598.538593pt;}
.y29_c00476{bottom:624.523080pt;}
.y28_c00476{bottom:650.507567pt;}
.y27_c00476{bottom:676.492054pt;}
.y26_c00476{bottom:702.476541pt;}
.yc_c00476{bottom:731.779060pt;}
.yb_c00476{bottom:757.763547pt;}
.ya_c00476{bottom:783.748034pt;}
.y15_c00476{bottom:794.763175pt;}
.y9_c00476{bottom:809.732521pt;}
.y14_c00476{bottom:812.752435pt;}
.y13_c00476{bottom:830.741696pt;}
.y8_c00476{bottom:835.717008pt;}
.y12_c00476{bottom:848.730956pt;}
.y7_c00476{bottom:861.701495pt;}
.y11_c00476{bottom:866.720216pt;}
.y10_c00476{bottom:884.709476pt;}
.y6_c00476{bottom:887.685983pt;}
.yf_c00476{bottom:902.698737pt;}
.y5_c00476{bottom:913.670470pt;}
.ye_c00476{bottom:920.687997pt;}
.yd_c00476{bottom:938.677257pt;}
.y4_c00476{bottom:939.654957pt;}
.y3_c00476{bottom:965.639444pt;}
.y2_c00476{bottom:991.623931pt;}
.y16_c00476{bottom:1067.255390pt;}
.h5_c00476{height:38.040688pt;}
.h4_c00476{height:40.824787pt;}
.h7_c00476{height:48.971369pt;}
.h3_c00476{height:49.001996pt;}
.h6_c00476{height:81.649575pt;}
.h2_c00476{height:1159.999952pt;}
.h0_c00476{height:1159.999959pt;}
.h1_c00476{height:1160.000000pt;}
.w2_c00476{width:830.999965pt;}
.w0_c00476{width:831.000000pt;}
.w1_c00476{width:831.333333pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:78.089069pt;}
.x4_c00476{left:79.174083pt;}
.x5_c00476{left:401.765180pt;}
.x2_c00476{left:469.585254pt;}
.x3_c00476{left:693.620842pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9499bd33844c59fedbf7e22d.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:0.954102;font-style:normal;font-weight:normal;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_71047ad49d18d0712a57858b.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.006348;font-style:normal;font-weight:normal;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_10592b450b49e6bfe946c007.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.006348;font-style:normal;font-weight:normal;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_12a8ab34ddefd59787143c9e.woff2')format("woff");}.ff4_c00477{font-family:ff4_c00477;line-height:1.041000;font-style:normal;font-weight: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_afc45f3933af783a1c97fc95.woff2')format("woff");}.ff5_c00477{font-family:ff5_c00477;line-height:0.749000;font-style:normal;font-weight: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_c00477;src:url('chunks/assets/font_299ab60731dff7644dd3141d.woff2')format("woff");}.ff6_c00477{font-family:ff6_c00477;line-height:1.006348;font-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_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);}
.v0_c00477{vertical-align:0.000000px;}
.ls0_c00477{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00477{word-spacing:-31.145489px;}
.ws1_c00477{word-spacing:-18.691966px;}
.ws3_c00477{word-spacing:-18.680283px;}
.ws0_c00477{word-spacing:-0.059949px;}
.ws4_c00477{word-spacing:0.000000px;}
._9_c00477{width:1.678260px;}
._5_c00477{width:2.744668px;}
._0_c00477{width:4.216233px;}
._2_c00477{width:5.814889px;}
._4_c00477{width:7.198338px;}
._1_c00477{width:8.338725px;}
._3_c00477{width:9.652109px;}
._7_c00477{width:17.590959px;}
._a_c00477{width:25.064900px;}
._8_c00477{width:27.069739px;}
._6_c00477{width:41.248813px;}
.fc3_c00477{color:rgb(84,16,16);}
.fc2_c00477{color:rgb(132,27,27);}
.fc1_c00477{color:rgb(0,0,0);}
.fc0_c00477{color:rgb(102,18,18);}
.fs0_c00477{font-size:59.949210px;}
.fs5_c00477{font-size:71.912067px;}
.fs1_c00477{font-size:71.957041px;}
.fs3_c00477{font-size:90.953391px;}
.fs4_c00477{font-size:119.898420px;}
.fs2_c00477{font-size:122.237024px;}
.y0_c00477{bottom:0.000000px;}
.y1_c00477{bottom:0.000008px;}
.y1f_c00477{bottom:30.156225px;}
.y1d_c00477{bottom:96.503645px;}
.y1c_c00477{bottom:125.736193px;}
.y1b_c00477{bottom:154.968741px;}
.y1a_c00477{bottom:184.201289px;}
.y19_c00477{bottom:213.433837px;}
.y18_c00477{bottom:242.666385px;}
.y17_c00477{bottom:271.898933px;}
.y16_c00477{bottom:301.131481px;}
.y15_c00477{bottom:330.364029px;}
.y14_c00477{bottom:359.596577px;}
.y13_c00477{bottom:388.829125px;}
.y12_c00477{bottom:418.061673px;}
.y11_c00477{bottom:447.294221px;}
.y10_c00477{bottom:476.526769px;}
.y1e_c00477{bottom:532.473444px;}
.ye_c00477{bottom:584.959124px;}
.yd_c00477{bottom:606.047183px;}
.yc_c00477{bottom:800.522021px;}
.yb_c00477{bottom:829.754569px;}
.ya_c00477{bottom:858.987117px;}
.y9_c00477{bottom:888.219665px;}
.y8_c00477{bottom:917.452213px;}
.y7_c00477{bottom:946.684761px;}
.y6_c00477{bottom:975.917309px;}
.y5_c00477{bottom:1005.149857px;}
.y4_c00477{bottom:1034.382405px;}
.y3_c00477{bottom:1063.614953px;}
.yf_c00477{bottom:1119.074588px;}
.y2_c00477{bottom:1200.662313px;}
.h3_c00477{height:42.795774px;}
.h8_c00477{height:55.092790px;}
.h4_c00477{height:55.127245px;}
.h6_c00477{height:67.123603px;}
.h7_c00477{height:91.855772px;}
.h5_c00477{height:98.034093px;}
.h2_c00477{height:1304.999946px;}
.h0_c00477{height:1304.999953px;}
.h1_c00477{height:1305.000000px;}
.w2_c00477{width:934.874961px;}
.w0_c00477{width:934.875000px;}
.w1_c00477{width:935.250000px;}
.x0_c00477{left:0.000000px;}
.x5_c00477{left:87.850202px;}
.x2_c00477{left:89.064158px;}
.x6_c00477{left:451.985828px;}
.x3_c00477{left:684.665755px;}
.x4_c00477{left:687.902947px;}
.x1_c00477{left:780.323448px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws2_c00477{word-spacing:-27.684879pt;}
.ws1_c00477{word-spacing:-16.615081pt;}
.ws3_c00477{word-spacing:-16.604696pt;}
.ws0_c00477{word-spacing:-0.053288pt;}
.ws4_c00477{word-spacing:0.000000pt;}
._9_c00477{width:1.491787pt;}
._5_c00477{width:2.439705pt;}
._0_c00477{width:3.747763pt;}
._2_c00477{width:5.168790pt;}
._4_c00477{width:6.398523pt;}
._1_c00477{width:7.412200pt;}
._3_c00477{width:8.579652pt;}
._7_c00477{width:15.636408pt;}
._a_c00477{width:22.279911pt;}
._8_c00477{width:24.061990pt;}
._6_c00477{width:36.665611pt;}
.fs0_c00477{font-size:53.288186pt;}
.fs5_c00477{font-size:63.921837pt;}
.fs1_c00477{font-size:63.961814pt;}
.fs3_c00477{font-size:80.847459pt;}
.fs4_c00477{font-size:106.576373pt;}
.fs2_c00477{font-size:108.655132pt;}
.y0_c00477{bottom:0.000000pt;}
.y1_c00477{bottom:0.000007pt;}
.y1f_c00477{bottom:26.805533pt;}
.y1d_c00477{bottom:85.781017pt;}
.y1c_c00477{bottom:111.765505pt;}
.y1b_c00477{bottom:137.749992pt;}
.y1a_c00477{bottom:163.734479pt;}
.y19_c00477{bottom:189.718966pt;}
.y18_c00477{bottom:215.703453pt;}
.y17_c00477{bottom:241.687940pt;}
.y16_c00477{bottom:267.672427pt;}
.y15_c00477{bottom:293.656914pt;}
.y14_c00477{bottom:319.641401pt;}
.y13_c00477{bottom:345.625889pt;}
.y12_c00477{bottom:371.610376pt;}
.y11_c00477{bottom:397.594863pt;}
.y10_c00477{bottom:423.579350pt;}
.y1e_c00477{bottom:473.309728pt;}
.ye_c00477{bottom:519.963666pt;}
.yd_c00477{bottom:538.708607pt;}
.yc_c00477{bottom:711.575130pt;}
.yb_c00477{bottom:737.559617pt;}
.ya_c00477{bottom:763.544104pt;}
.y9_c00477{bottom:789.528591pt;}
.y8_c00477{bottom:815.513078pt;}
.y7_c00477{bottom:841.497565pt;}
.y6_c00477{bottom:867.482052pt;}
.y5_c00477{bottom:893.466540pt;}
.y4_c00477{bottom:919.451027pt;}
.y3_c00477{bottom:945.435514pt;}
.yf_c00477{bottom:994.732967pt;}
.y2_c00477{bottom:1067.255390pt;}
.h3_c00477{height:38.040688pt;}
.h8_c00477{height:48.971369pt;}
.h4_c00477{height:49.001996pt;}
.h6_c00477{height:59.665425pt;}
.h7_c00477{height:81.649575pt;}
.h5_c00477{height:87.141416pt;}
.h2_c00477{height:1159.999952pt;}
.h0_c00477{height:1159.999959pt;}
.h1_c00477{height:1160.000000pt;}
.w2_c00477{width:830.999965pt;}
.w0_c00477{width:831.000000pt;}
.w1_c00477{width:831.333333pt;}
.x0_c00477{left:0.000000pt;}
.x5_c00477{left:78.089069pt;}
.x2_c00477{left:79.168141pt;}
.x6_c00477{left:401.765180pt;}
.x3_c00477{left:608.591783pt;}
.x4_c00477{left:611.469287pt;}
.x1_c00477{left:693.620842pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca59934576481f02aba1b4a8.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:0.769531;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:0.734863;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:1.006348;font-style:normal;font-weight: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_353caf36247a293055b6ef6f.woff2')format("woff");}.ff5_c00478{font-family:ff5_c00478;line-height:0.769531;font-style:normal;font-weight: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_6752a652032d6cb45a7111d0.woff2')format("woff");}.ff6_c00478{font-family:ff6_c00478;line-height:1.171387;font-style:normal;font-weight: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_c00478;src:url('chunks/assets/font_eca5206e3fad5029ca9792b7.woff2')format("woff");}.ff7_c00478{font-family:ff7_c00478;line-height:1.000000;font-style:normal;font-weight: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_c00478;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff8_c00478{font-family:ff8_c00478;line-height:0.743000;font-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_c00478{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3d_c00478{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m29_c00478{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00478{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2a_c00478{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3c_c00478{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00478{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m15_c00478{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00478{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2b_c00478{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m28_c00478{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m16_c00478{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00478{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2c_c00478{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3b_c00478{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00478{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m17_c00478{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m27_c00478{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00478{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00478{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2d_c00478{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m18_c00478{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3a_c00478{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m26_c00478{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00478{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00478{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m19_c00478{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2e_c00478{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m39_c00478{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00478{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m25_c00478{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1a_c00478{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00478{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m2f_c00478{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m38_c00478{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m24_c00478{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00478{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m23_c00478{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00478{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m30_c00478{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1b_c00478{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m37_c00478{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m22_c00478{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00478{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m31_c00478{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00478{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m21_c00478{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00478{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m32_c00478{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1c_c00478{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00478{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m33_c00478{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m20_c00478{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m36_c00478{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1d_c00478{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00478{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00478{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m34_c00478{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1e_c00478{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m1f_c00478{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m35_c00478{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00478{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m3e_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);}
.v0_c00478{vertical-align:0.000000px;}
.v1_c00478{vertical-align:8.961696px;}
.ls0_c00478{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00478{word-spacing:-18.680283px;}
.ws3_c00478{word-spacing:-14.474592px;}
.ws4_c00478{word-spacing:0.000000px;}
.ws0_c00478{word-spacing:275.967713px;}
.ws1_c00478{word-spacing:281.470806px;}
._3_c00478{width:1.745026px;}
._5_c00478{width:2.930025px;}
._0_c00478{width:4.699340px;}
._6_c00478{width:9.646488px;}
._1_c00478{width:10.714129px;}
._2_c00478{width:22.328464px;}
._4_c00478{width:37.225823px;}
.fc1_c00478{color:rgb(102,18,18);}
.fc2_c00478{color:rgb(255,255,255);}
.fc0_c00478{color:rgb(0,0,0);}
.fs6_c00478{font-size:41.974772px;}
.fsb_c00478{font-size:41.975069px;}
.fs1_c00478{font-size:47.339969px;}
.fs4_c00478{font-size:47.339970px;}
.fs0_c00478{font-size:47.339972px;}
.fs3_c00478{font-size:47.339973px;}
.fs2_c00478{font-size:47.339974px;}
.fs5_c00478{font-size:47.339975px;}
.fs7_c00478{font-size:55.171880px;}
.fsf_c00478{font-size:55.721735px;}
.fsa_c00478{font-size:59.949210px;}
.fse_c00478{font-size:71.912067px;}
.fs8_c00478{font-size:71.957041px;}
.fsd_c00478{font-size:76.965540px;}
.fs9_c00478{font-size:83.919899px;}
.fsc_c00478{font-size:95.927731px;}
.y0_c00478{bottom:0.000000px;}
.y1_c00478{bottom:0.000008px;}
.y53_c00478{bottom:30.156225px;}
.y4b_c00478{bottom:94.832346px;}
.y4a_c00478{bottom:125.189223px;}
.y49_c00478{bottom:155.546100px;}
.y48_c00478{bottom:185.902977px;}
.y47_c00478{bottom:216.259853px;}
.y46_c00478{bottom:246.616730px;}
.y45_c00478{bottom:276.973607px;}
.y44_c00478{bottom:307.330484px;}
.y4c_c00478{bottom:339.608900px;}
.y43_c00478{bottom:404.910520px;}
.y40_c00478{bottom:487.376458px;}
.yf_c00478{bottom:493.812629px;}
.y37_c00478{bottom:493.827623px;}
.ye_c00478{bottom:494.337609px;}
.y38_c00478{bottom:494.357158px;}
.y21_c00478{bottom:494.700737px;}
.y36_c00478{bottom:495.071586px;}
.yd_c00478{bottom:495.403002px;}
.y22_c00478{bottom:495.533530px;}
.y20_c00478{bottom:495.553663px;}
.y35_c00478{bottom:496.322201px;}
.yc_c00478{bottom:496.475623px;}
.y1f_c00478{bottom:496.587915px;}
.y39_c00478{bottom:496.772260px;}
.y10_c00478{bottom:496.835884px;}
.y23_c00478{bottom:497.713596px;}
.y34_c00478{bottom:497.966053px;}
.yb_c00478{bottom:498.126234px;}
.y1e_c00478{bottom:498.789265px;}
.y24_c00478{bottom:499.103521px;}
.y33_c00478{bottom:499.653306px;}
.ya_c00478{bottom:499.818769px;}
.y25_c00478{bottom:500.800864px;}
.y11_c00478{bottom:501.110605px;}
.y32_c00478{bottom:501.517382px;}
.y9_c00478{bottom:501.687706px;}
.y3a_c00478{bottom:501.869915px;}
.y1d_c00478{bottom:502.578702px;}
.y26_c00478{bottom:503.241722px;}
.y12_c00478{bottom:503.627848px;}
.y3b_c00478{bottom:505.496019px;}
.y27_c00478{bottom:505.499367px;}
.y31_c00478{bottom:506.168989px;}
.y8_c00478{bottom:506.348634px;}
.y1c_c00478{bottom:508.044213px;}
.y28_c00478{bottom:508.766327px;}
.y13_c00478{bottom:509.576794px;}
.y3c_c00478{bottom:511.126534px;}
.y1b_c00478{bottom:512.508085px;}
.y30_c00478{bottom:512.566592px;}
.y7_c00478{bottom:512.754669px;}
.y14_c00478{bottom:514.322677px;}
.y29_c00478{bottom:517.158603px;}
.y3d_c00478{bottom:517.780195px;}
.y1a_c00478{bottom:518.929057px;}
.y2f_c00478{bottom:519.869222px;}
.y6_c00478{bottom:519.959421px;}
.y5_c00478{bottom:523.416158px;}
.y19_c00478{bottom:523.496236px;}
.y2a_c00478{bottom:525.202812px;}
.y15_c00478{bottom:526.099549px;}
.y2e_c00478{bottom:527.026630px;}
.y4_c00478{bottom:529.422883px;}
.y3e_c00478{bottom:529.736175px;}
.y18_c00478{bottom:531.263725px;}
.y2d_c00478{bottom:531.792993px;}
.y52_c00478{bottom:532.181392px;}
.y17_c00478{bottom:535.155114px;}
.y3_c00478{bottom:536.678099px;}
.y2c_c00478{bottom:537.961701px;}
.y16_c00478{bottom:538.332892px;}
.y3f_c00478{bottom:538.696314px;}
.y41_c00478{bottom:540.431168px;}
.y2b_c00478{bottom:545.020884px;}
.y2_c00478{bottom:546.207017px;}
.y42_c00478{bottom:577.871130px;}
.y54_c00478{bottom:639.489911px;}
.y50_c00478{bottom:1130.692613px;}
.y4e_c00478{bottom:1132.026818px;}
.y4d_c00478{bottom:1150.016079px;}
.y51_c00478{bottom:1153.707733px;}
.y4f_c00478{bottom:1170.658440px;}
.h9_c00478{height:32.157430px;}
.h7_c00478{height:35.967282px;}
.h6_c00478{height:35.967283px;}
.h8_c00478{height:35.967285px;}
.h4_c00478{height:36.267779px;}
.h3_c00478{height:36.267781px;}
.h5_c00478{height:36.267783px;}
.he_c00478{height:39.085184px;}
.ha_c00478{height:40.005001px;}
.h13_c00478{height:51.885424px;}
.h12_c00478{height:55.092790px;}
.hb_c00478{height:55.127245px;}
.hd_c00478{height:55.821847px;}
.hc_c00478{height:63.759455px;}
.h11_c00478{height:65.223506px;}
.hf_c00478{height:67.002968px;}
.h10_c00478{height:89.323331px;}
.h2_c00478{height:1304.999946px;}
.h0_c00478{height:1304.999953px;}
.h1_c00478{height:1305.000000px;}
.w2_c00478{width:934.874961px;}
.w0_c00478{width:934.875000px;}
.w1_c00478{width:935.250000px;}
.x0_c00478{left:0.000000px;}
.x3a_c00478{left:89.434062px;}
.x3b_c00478{left:108.062661px;}
.x3c_c00478{left:109.658623px;}
.x26_c00478{left:134.894322px;}
.x25_c00478{left:136.566734px;}
.x27_c00478{left:139.937719px;}
.x28_c00478{left:144.785273px;}
.x29_c00478{left:150.147890px;}
.x2a_c00478{left:152.899057px;}
.x2b_c00478{left:155.907145px;}
.x2c_c00478{left:159.752336px;}
.x2d_c00478{left:163.203941px;}
.x2e_c00478{left:171.483965px;}
.x2f_c00478{left:179.748684px;}
.x30_c00478{left:188.175145px;}
.x31_c00478{left:196.556636px;}
.x32_c00478{left:200.721504px;}
.x33_c00478{left:205.276922px;}
.x34_c00478{left:209.084069px;}
.x35_c00478{left:211.669316px;}
.x2_c00478{left:230.260919px;}
.x1_c00478{left:232.395871px;}
.x3_c00478{left:235.482735px;}
.x4_c00478{left:240.319117px;}
.x5_c00478{left:245.673577px;}
.x6_c00478{left:248.421493px;}
.x7_c00478{left:251.426626px;}
.x8_c00478{left:255.268917px;}
.x9_c00478{left:258.553698px;}
.xa_c00478{left:262.988294px;}
.xb_c00478{left:271.601212px;}
.xc_c00478{left:283.434780px;}
.xd_c00478{left:290.867654px;}
.xe_c00478{left:294.260334px;}
.xf_c00478{left:299.596701px;}
.x10_c00478{left:302.984150px;}
.x11_c00478{left:306.993562px;}
.x12_c00478{left:325.378518px;}
.x13_c00478{left:326.595106px;}
.x14_c00478{left:328.015253px;}
.x15_c00478{left:331.410444px;}
.x16_c00478{left:334.633053px;}
.x17_c00478{left:340.511825px;}
.x18_c00478{left:346.695139px;}
.x19_c00478{left:352.384720px;}
.x1a_c00478{left:355.792694px;}
.x1b_c00478{left:363.695116px;}
.x1c_c00478{left:371.679253px;}
.x1d_c00478{left:378.434940px;}
.x1e_c00478{left:381.453328px;}
.x1f_c00478{left:384.455783px;}
.x20_c00478{left:387.851715px;}
.x21_c00478{left:390.467224px;}
.x22_c00478{left:393.779799px;}
.x23_c00478{left:398.952070px;}
.x24_c00478{left:401.755082px;}
.x3d_c00478{left:451.985828px;}
.x37_c00478{left:464.618828px;}
.x3e_c00478{left:689.936767px;}
.x39_c00478{left:691.431927px;}
.x38_c00478{left:733.103068px;}
.x36_c00478{left:756.637341px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.v1_c00478{vertical-align:7.965952pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws2_c00478{word-spacing:-16.604696pt;}
.ws3_c00478{word-spacing:-12.866304pt;}
.ws4_c00478{word-spacing:0.000000pt;}
.ws0_c00478{word-spacing:245.304634pt;}
.ws1_c00478{word-spacing:250.196272pt;}
._3_c00478{width:1.551134pt;}
._5_c00478{width:2.604467pt;}
._0_c00478{width:4.177191pt;}
._6_c00478{width:8.574656pt;}
._1_c00478{width:9.523670pt;}
._2_c00478{width:19.847524pt;}
._4_c00478{width:33.089621pt;}
.fs6_c00478{font-size:37.310908pt;}
.fsb_c00478{font-size:37.311173pt;}
.fs1_c00478{font-size:42.079973pt;}
.fs4_c00478{font-size:42.079974pt;}
.fs0_c00478{font-size:42.079975pt;}
.fs3_c00478{font-size:42.079976pt;}
.fs2_c00478{font-size:42.079977pt;}
.fs5_c00478{font-size:42.079978pt;}
.fs7_c00478{font-size:49.041671pt;}
.fsf_c00478{font-size:49.530431pt;}
.fsa_c00478{font-size:53.288186pt;}
.fse_c00478{font-size:63.921837pt;}
.fs8_c00478{font-size:63.961814pt;}
.fsd_c00478{font-size:68.413814pt;}
.fs9_c00478{font-size:74.595466pt;}
.fsc_c00478{font-size:85.269094pt;}
.y0_c00478{bottom:0.000000pt;}
.y1_c00478{bottom:0.000007pt;}
.y53_c00478{bottom:26.805533pt;}
.y4b_c00478{bottom:84.295419pt;}
.y4a_c00478{bottom:111.279309pt;}
.y49_c00478{bottom:138.263200pt;}
.y48_c00478{bottom:165.247090pt;}
.y47_c00478{bottom:192.230981pt;}
.y46_c00478{bottom:219.214871pt;}
.y45_c00478{bottom:246.198762pt;}
.y44_c00478{bottom:273.182652pt;}
.y4c_c00478{bottom:301.874578pt;}
.y43_c00478{bottom:359.920462pt;}
.y40_c00478{bottom:433.223518pt;}
.yf_c00478{bottom:438.944560pt;}
.y37_c00478{bottom:438.957887pt;}
.ye_c00478{bottom:439.411208pt;}
.y38_c00478{bottom:439.428585pt;}
.y21_c00478{bottom:439.733989pt;}
.y36_c00478{bottom:440.063632pt;}
.yd_c00478{bottom:440.358224pt;}
.y22_c00478{bottom:440.474249pt;}
.y20_c00478{bottom:440.492144pt;}
.y35_c00478{bottom:441.175290pt;}
.yc_c00478{bottom:441.311665pt;}
.y1f_c00478{bottom:441.411480pt;}
.y39_c00478{bottom:441.575343pt;}
.y10_c00478{bottom:441.631897pt;}
.y23_c00478{bottom:442.412085pt;}
.y34_c00478{bottom:442.636491pt;}
.yb_c00478{bottom:442.778875pt;}
.y1e_c00478{bottom:443.368235pt;}
.y24_c00478{bottom:443.647574pt;}
.y33_c00478{bottom:444.136272pt;}
.ya_c00478{bottom:444.283350pt;}
.y25_c00478{bottom:445.156323pt;}
.y11_c00478{bottom:445.431649pt;}
.y32_c00478{bottom:445.793228pt;}
.y9_c00478{bottom:445.944627pt;}
.y3a_c00478{bottom:446.106592pt;}
.y1d_c00478{bottom:446.736624pt;}
.y26_c00478{bottom:447.325975pt;}
.y12_c00478{bottom:447.669198pt;}
.y3b_c00478{bottom:449.329795pt;}
.y27_c00478{bottom:449.332771pt;}
.y31_c00478{bottom:449.927990pt;}
.y8_c00478{bottom:450.087675pt;}
.y1c_c00478{bottom:451.594856pt;}
.y28_c00478{bottom:452.236735pt;}
.y13_c00478{bottom:452.957150pt;}
.y3c_c00478{bottom:454.334697pt;}
.y1b_c00478{bottom:455.562742pt;}
.y30_c00478{bottom:455.614749pt;}
.y7_c00478{bottom:455.781928pt;}
.y14_c00478{bottom:457.175713pt;}
.y29_c00478{bottom:459.696536pt;}
.y3d_c00478{bottom:460.249062pt;}
.y1a_c00478{bottom:461.270273pt;}
.y2f_c00478{bottom:462.105976pt;}
.y6_c00478{bottom:462.186152pt;}
.y5_c00478{bottom:465.258807pt;}
.y19_c00478{bottom:465.329988pt;}
.y2a_c00478{bottom:466.846944pt;}
.y15_c00478{bottom:467.644044pt;}
.y2e_c00478{bottom:468.468115pt;}
.y4_c00478{bottom:470.598118pt;}
.y3e_c00478{bottom:470.876600pt;}
.y18_c00478{bottom:472.234422pt;}
.y2d_c00478{bottom:472.704883pt;}
.y52_c00478{bottom:473.050126pt;}
.y17_c00478{bottom:475.693435pt;}
.y3_c00478{bottom:477.047199pt;}
.y2c_c00478{bottom:478.188178pt;}
.y16_c00478{bottom:478.518126pt;}
.y3f_c00478{bottom:478.841168pt;}
.y41_c00478{bottom:480.383260pt;}
.y2b_c00478{bottom:484.463008pt;}
.y2_c00478{bottom:485.517349pt;}
.y42_c00478{bottom:513.663227pt;}
.y54_c00478{bottom:568.435476pt;}
.y50_c00478{bottom:1005.060100pt;}
.y4e_c00478{bottom:1006.246061pt;}
.y4d_c00478{bottom:1022.236514pt;}
.y51_c00478{bottom:1025.517985pt;}
.y4f_c00478{bottom:1040.585280pt;}
.h9_c00478{height:28.584382pt;}
.h7_c00478{height:31.970917pt;}
.h6_c00478{height:31.970918pt;}
.h8_c00478{height:31.970920pt;}
.h4_c00478{height:32.238026pt;}
.h3_c00478{height:32.238028pt;}
.h5_c00478{height:32.238029pt;}
.he_c00478{height:34.742386pt;}
.ha_c00478{height:35.560001pt;}
.h13_c00478{height:46.120377pt;}
.h12_c00478{height:48.971369pt;}
.hb_c00478{height:49.001996pt;}
.hd_c00478{height:49.619420pt;}
.hc_c00478{height:56.675071pt;}
.h11_c00478{height:57.976449pt;}
.hf_c00478{height:59.558193pt;}
.h10_c00478{height:79.398517pt;}
.h2_c00478{height:1159.999952pt;}
.h0_c00478{height:1159.999959pt;}
.h1_c00478{height:1160.000000pt;}
.w2_c00478{width:830.999965pt;}
.w0_c00478{width:831.000000pt;}
.w1_c00478{width:831.333333pt;}
.x0_c00478{left:0.000000pt;}
.x3a_c00478{left:79.496944pt;}
.x3b_c00478{left:96.055698pt;}
.x3c_c00478{left:97.474332pt;}
.x26_c00478{left:119.906064pt;}
.x25_c00478{left:121.392652pt;}
.x27_c00478{left:124.389083pt;}
.x28_c00478{left:128.698021pt;}
.x29_c00478{left:133.464791pt;}
.x2a_c00478{left:135.910272pt;}
.x2b_c00478{left:138.584129pt;}
.x2c_c00478{left:142.002076pt;}
.x2d_c00478{left:145.070170pt;}
.x2e_c00478{left:152.430191pt;}
.x2f_c00478{left:159.776608pt;}
.x30_c00478{left:167.266795pt;}
.x31_c00478{left:174.717010pt;}
.x32_c00478{left:178.419115pt;}
.x33_c00478{left:182.468375pt;}
.x34_c00478{left:185.852506pt;}
.x35_c00478{left:188.150503pt;}
.x2_c00478{left:204.676373pt;}
.x1_c00478{left:206.574107pt;}
.x3_c00478{left:209.317987pt;}
.x4_c00478{left:213.616993pt;}
.x5_c00478{left:218.376513pt;}
.x6_c00478{left:220.819105pt;}
.x7_c00478{left:223.490334pt;}
.x8_c00478{left:226.905704pt;}
.x9_c00478{left:229.825509pt;}
.xa_c00478{left:233.767373pt;}
.xb_c00478{left:241.423300pt;}
.xc_c00478{left:251.942027pt;}
.xd_c00478{left:258.549026pt;}
.xe_c00478{left:261.564741pt;}
.xf_c00478{left:266.308178pt;}
.x10_c00478{left:269.319244pt;}
.x11_c00478{left:272.883167pt;}
.x12_c00478{left:289.225349pt;}
.x13_c00478{left:290.306761pt;}
.x14_c00478{left:291.569114pt;}
.x15_c00478{left:294.587062pt;}
.x16_c00478{left:297.451603pt;}
.x17_c00478{left:302.677178pt;}
.x18_c00478{left:308.173457pt;}
.x19_c00478{left:313.230862pt;}
.x1a_c00478{left:316.260173pt;}
.x1b_c00478{left:323.284548pt;}
.x1c_c00478{left:330.381558pt;}
.x1d_c00478{left:336.386614pt;}
.x1e_c00478{left:339.069625pt;}
.x1f_c00478{left:341.738474pt;}
.x20_c00478{left:344.757080pt;}
.x21_c00478{left:347.081977pt;}
.x22_c00478{left:350.026488pt;}
.x23_c00478{left:354.624063pt;}
.x24_c00478{left:357.115628pt;}
.x3d_c00478{left:401.765180pt;}
.x37_c00478{left:412.994514pt;}
.x3e_c00478{left:613.277126pt;}
.x39_c00478{left:614.606158pt;}
.x38_c00478{left:651.647171pt;}
.x36_c00478{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.006348;font-style:normal;font-weight:normal;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_15bc1807b283f592e15b122c.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.171387;font-style:normal;font-weight:normal;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_d751b487faaed5bf9a020b6f.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.000000;font-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_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);}
.v0_c00479{vertical-align:0.000000px;}
.ls0_c00479{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws1_c00479{word-spacing:0.000000px;}
._a_c00479{width:1.217925px;}
._b_c00479{width:2.773282px;}
._d_c00479{width:4.864864px;}
._c_c00479{width:6.823240px;}
._7_c00479{width:9.135173px;}
._8_c00479{width:10.176461px;}
._5_c00479{width:11.620170px;}
._f_c00479{width:12.711148px;}
._e_c00479{width:13.814852px;}
._9_c00479{width:14.898047px;}
._6_c00479{width:15.944961px;}
._3_c00479{width:17.608604px;}
._0_c00479{width:19.943931px;}
._10_c00479{width:21.270778px;}
._12_c00479{width:22.697387px;}
._11_c00479{width:24.603477px;}
._4_c00479{width:27.208699px;}
._1_c00479{width:30.267393px;}
._2_c00479{width:36.423545px;}
.fc1_c00479{color:rgb(0,0,0);}
.fc0_c00479{color:rgb(102,18,18);}
.fs1_c00479{font-size:71.912067px;}
.fs0_c00479{font-size:71.957041px;}
.y0_c00479{bottom:0.000000px;}
.y1_c00479{bottom:0.000008px;}
.y25_c00479{bottom:30.156225px;}
.y23_c00479{bottom:123.128801px;}
.y22_c00479{bottom:153.485678px;}
.y24_c00479{bottom:187.838342px;}
.y21_c00479{bottom:228.398571px;}
.y20_c00479{bottom:258.755448px;}
.y1f_c00479{bottom:289.112324px;}
.y1e_c00479{bottom:322.349817px;}
.y1c_c00479{bottom:362.855470px;}
.y1b_c00479{bottom:393.212347px;}
.y1a_c00479{bottom:423.569224px;}
.y19_c00479{bottom:453.926101px;}
.y18_c00479{bottom:484.282978px;}
.y17_c00479{bottom:514.639854px;}
.y16_c00479{bottom:544.996731px;}
.y15_c00479{bottom:575.353608px;}
.y14_c00479{bottom:605.710485px;}
.y13_c00479{bottom:636.067361px;}
.y12_c00479{bottom:666.424238px;}
.y11_c00479{bottom:696.781115px;}
.y10_c00479{bottom:727.137992px;}
.yf_c00479{bottom:757.494868px;}
.ye_c00479{bottom:787.851745px;}
.yd_c00479{bottom:818.208622px;}
.yc_c00479{bottom:848.565499px;}
.y1d_c00479{bottom:882.278605px;}
.yb_c00479{bottom:927.758555px;}
.ya_c00479{bottom:958.115432px;}
.y9_c00479{bottom:988.472308px;}
.y8_c00479{bottom:1018.829185px;}
.y7_c00479{bottom:1049.186062px;}
.y6_c00479{bottom:1079.542939px;}
.y5_c00479{bottom:1109.899815px;}
.y4_c00479{bottom:1140.256692px;}
.y3_c00479{bottom:1170.613569px;}
.y2_c00479{bottom:1199.835078px;}
.h3_c00479{height:55.127245px;}
.h5_c00479{height:66.961090px;}
.h4_c00479{height:67.002968px;}
.h2_c00479{height:1304.999946px;}
.h0_c00479{height:1304.999953px;}
.h1_c00479{height:1305.000000px;}
.w2_c00479{width:934.874961px;}
.w0_c00479{width:934.875000px;}
.w1_c00479{width:935.250000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:87.850202px;}
.x2_c00479{left:451.985828px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:-16.604696pt;}
.ws1_c00479{word-spacing:0.000000pt;}
._a_c00479{width:1.082600pt;}
._b_c00479{width:2.465140pt;}
._d_c00479{width:4.324323pt;}
._c_c00479{width:6.065102pt;}
._7_c00479{width:8.120154pt;}
._8_c00479{width:9.045743pt;}
._5_c00479{width:10.329040pt;}
._f_c00479{width:11.298799pt;}
._e_c00479{width:12.279868pt;}
._9_c00479{width:13.242708pt;}
._6_c00479{width:14.173299pt;}
._3_c00479{width:15.652093pt;}
._0_c00479{width:17.727939pt;}
._10_c00479{width:18.907358pt;}
._12_c00479{width:20.175455pt;}
._11_c00479{width:21.869757pt;}
._4_c00479{width:24.185510pt;}
._1_c00479{width:26.904349pt;}
._2_c00479{width:32.376484pt;}
.fs1_c00479{font-size:63.921837pt;}
.fs0_c00479{font-size:63.961814pt;}
.y0_c00479{bottom:0.000000pt;}
.y1_c00479{bottom:0.000007pt;}
.y25_c00479{bottom:26.805533pt;}
.y23_c00479{bottom:109.447823pt;}
.y22_c00479{bottom:136.431714pt;}
.y24_c00479{bottom:166.967415pt;}
.y21_c00479{bottom:203.020952pt;}
.y20_c00479{bottom:230.004842pt;}
.y1f_c00479{bottom:256.988733pt;}
.y1e_c00479{bottom:286.533170pt;}
.y1c_c00479{bottom:322.538196pt;}
.y1b_c00479{bottom:349.522086pt;}
.y1a_c00479{bottom:376.505977pt;}
.y19_c00479{bottom:403.489867pt;}
.y18_c00479{bottom:430.473758pt;}
.y17_c00479{bottom:457.457648pt;}
.y16_c00479{bottom:484.441539pt;}
.y15_c00479{bottom:511.425429pt;}
.y14_c00479{bottom:538.409320pt;}
.y13_c00479{bottom:565.393210pt;}
.y12_c00479{bottom:592.377101pt;}
.y11_c00479{bottom:619.360991pt;}
.y10_c00479{bottom:646.344881pt;}
.yf_c00479{bottom:673.328772pt;}
.ye_c00479{bottom:700.312662pt;}
.yd_c00479{bottom:727.296553pt;}
.yc_c00479{bottom:754.280443pt;}
.y1d_c00479{bottom:784.247649pt;}
.yb_c00479{bottom:824.674271pt;}
.ya_c00479{bottom:851.658161pt;}
.y9_c00479{bottom:878.642052pt;}
.y8_c00479{bottom:905.625942pt;}
.y7_c00479{bottom:932.609833pt;}
.y6_c00479{bottom:959.593723pt;}
.y5_c00479{bottom:986.577614pt;}
.y4_c00479{bottom:1013.561504pt;}
.y3_c00479{bottom:1040.545395pt;}
.y2_c00479{bottom:1066.520069pt;}
.h3_c00479{height:49.001996pt;}
.h5_c00479{height:59.520969pt;}
.h4_c00479{height:59.558193pt;}
.h2_c00479{height:1159.999952pt;}
.h0_c00479{height:1159.999959pt;}
.h1_c00479{height:1160.000000pt;}
.w2_c00479{width:830.999965pt;}
.w0_c00479{width:831.000000pt;}
.w1_c00479{width:831.333333pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:78.089069pt;}
.x2_c00479{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ff925ec04b1556e19fc7679.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.006348;font-style:normal;font-weight:normal;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_806b574c83e9b8dd50903c89.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.000000;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.006348;font-style:normal;font-weight:normal;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_353caf36247a293055b6ef6f.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:0.769531;font-style:normal;font-weight: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_c00480;src:url('chunks/assets/font_daf6f2fa928c13c760c8f12b.woff2')format("woff");}.ff5_c00480{font-family:ff5_c00480;line-height:1.171387;font-style:normal;font-weight: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_c00480;src:url('chunks/assets/font_8071ca567c3603cde1da5c19.woff2')format("woff");}.ff6_c00480{font-family:ff6_c00480;line-height:1.000000;font-style:normal;font-weight: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_c00480;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00480{font-family:ff7_c00480;line-height:0.769531;font-style:normal;font-weight: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_c00480;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff8_c00480{font-family:ff8_c00480;line-height:0.743000;font-style:normal;font-weight: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_c00480;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00480{font-family:ff9_c00480;line-height:0.734863;font-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_c00480{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00480{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00480{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00480{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00480{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00480{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00480{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00480{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00480{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00480{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00480{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00480{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00480{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00480{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00480{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00480{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00480{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00480{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00480{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00480{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00480{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00480{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00480{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00480{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00480{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00480{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00480{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00480{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00480{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00480{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00480{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00480{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00480{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00480{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00480{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00480{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00480{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00480{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00480{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00480{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00480{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00480{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00480{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00480{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00480{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00480{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00480{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00480{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00480{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00480{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00480{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00480{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00480{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00480{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00480{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00480{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00480{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00480{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00480{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00480{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00480{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00480{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00480{vertical-align:0.000000px;}
.v1_c00480{vertical-align:8.961696px;}
.ls1_c00480{letter-spacing:0.000000px;}
.ls0_c00480{letter-spacing:0.035135px;}
.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;}
}
.ws0_c00480{word-spacing:-18.691966px;}
.ws3_c00480{word-spacing:-18.680283px;}
.ws4_c00480{word-spacing:-14.474592px;}
.ws5_c00480{word-spacing:0.000000px;}
.ws1_c00480{word-spacing:275.967713px;}
.ws2_c00480{word-spacing:281.470806px;}
._0_c00480{width:5.135101px;}
._1_c00480{width:6.936058px;}
._2_c00480{width:11.203075px;}
._3_c00480{width:12.555367px;}
.fc1_c00480{color:rgb(102,18,18);}
.fc2_c00480{color:rgb(255,255,255);}
.fc0_c00480{color:rgb(0,0,0);}
.fsc_c00480{font-size:41.974772px;}
.fs3_c00480{font-size:41.975069px;}
.fs6_c00480{font-size:47.339969px;}
.fs9_c00480{font-size:47.339970px;}
.fs5_c00480{font-size:47.339972px;}
.fs8_c00480{font-size:47.339973px;}
.fs7_c00480{font-size:47.339974px;}
.fsa_c00480{font-size:47.339975px;}
.fsd_c00480{font-size:55.171880px;}
.fsf_c00480{font-size:55.721735px;}
.fs2_c00480{font-size:59.949210px;}
.fse_c00480{font-size:71.912067px;}
.fs0_c00480{font-size:71.957041px;}
.fsb_c00480{font-size:76.965540px;}
.fs1_c00480{font-size:83.919899px;}
.fs4_c00480{font-size:95.927731px;}
.y0_c00480{bottom:0.000000px;}
.y1_c00480{bottom:0.000008px;}
.y52_c00480{bottom:30.156225px;}
.y8_c00480{bottom:122.675127px;}
.y7_c00480{bottom:153.032004px;}
.y6_c00480{bottom:183.388881px;}
.y5_c00480{bottom:213.745757px;}
.y4_c00480{bottom:244.102634px;}
.y3_c00480{bottom:274.459511px;}
.y2_c00480{bottom:304.816388px;}
.y9_c00480{bottom:337.094804px;}
.y51_c00480{bottom:404.910520px;}
.y4e_c00480{bottom:487.376458px;}
.y1c_c00480{bottom:493.812629px;}
.y44_c00480{bottom:493.827623px;}
.y1b_c00480{bottom:494.337609px;}
.y45_c00480{bottom:494.357158px;}
.y2e_c00480{bottom:494.700737px;}
.y43_c00480{bottom:495.071586px;}
.y1a_c00480{bottom:495.403002px;}
.y2f_c00480{bottom:495.533530px;}
.y2d_c00480{bottom:495.553663px;}
.y42_c00480{bottom:496.322201px;}
.y19_c00480{bottom:496.475623px;}
.y2c_c00480{bottom:496.587915px;}
.y46_c00480{bottom:496.772260px;}
.y1d_c00480{bottom:496.835884px;}
.y30_c00480{bottom:497.713596px;}
.y41_c00480{bottom:497.966053px;}
.y18_c00480{bottom:498.126234px;}
.y2b_c00480{bottom:498.789265px;}
.y31_c00480{bottom:499.103521px;}
.y40_c00480{bottom:499.653306px;}
.y17_c00480{bottom:499.818769px;}
.y32_c00480{bottom:500.800864px;}
.y1e_c00480{bottom:501.110605px;}
.y3f_c00480{bottom:501.517382px;}
.y16_c00480{bottom:501.687706px;}
.y47_c00480{bottom:501.869915px;}
.y2a_c00480{bottom:502.578702px;}
.y33_c00480{bottom:503.241722px;}
.y1f_c00480{bottom:503.627848px;}
.y48_c00480{bottom:505.496019px;}
.y34_c00480{bottom:505.499367px;}
.y3e_c00480{bottom:506.168989px;}
.y15_c00480{bottom:506.348634px;}
.y29_c00480{bottom:508.044213px;}
.y35_c00480{bottom:508.766327px;}
.y20_c00480{bottom:509.576794px;}
.y49_c00480{bottom:511.126534px;}
.y28_c00480{bottom:512.508085px;}
.y3d_c00480{bottom:512.566592px;}
.y14_c00480{bottom:512.754669px;}
.y21_c00480{bottom:514.322677px;}
.y36_c00480{bottom:517.158603px;}
.y4a_c00480{bottom:517.780195px;}
.y27_c00480{bottom:518.929057px;}
.y3c_c00480{bottom:519.869222px;}
.y13_c00480{bottom:519.959421px;}
.y12_c00480{bottom:523.416158px;}
.y26_c00480{bottom:523.496236px;}
.y37_c00480{bottom:525.202812px;}
.y22_c00480{bottom:526.099549px;}
.y3b_c00480{bottom:527.026630px;}
.y11_c00480{bottom:529.422883px;}
.y4b_c00480{bottom:529.736175px;}
.y25_c00480{bottom:531.263725px;}
.y3a_c00480{bottom:531.792993px;}
.y4d_c00480{bottom:532.181392px;}
.y24_c00480{bottom:535.155114px;}
.y10_c00480{bottom:536.678099px;}
.y39_c00480{bottom:537.961701px;}
.y23_c00480{bottom:538.332892px;}
.y4c_c00480{bottom:538.696314px;}
.y4f_c00480{bottom:540.431168px;}
.y38_c00480{bottom:545.020884px;}
.yf_c00480{bottom:546.207017px;}
.y50_c00480{bottom:577.871130px;}
.y53_c00480{bottom:639.489911px;}
.yd_c00480{bottom:1130.692613px;}
.yb_c00480{bottom:1132.026818px;}
.ya_c00480{bottom:1150.016079px;}
.ye_c00480{bottom:1153.707733px;}
.yc_c00480{bottom:1170.658440px;}
.h10_c00480{height:32.157430px;}
.hd_c00480{height:35.967282px;}
.hc_c00480{height:35.967283px;}
.he_c00480{height:35.967285px;}
.ha_c00480{height:36.267779px;}
.h9_c00480{height:36.267781px;}
.hb_c00480{height:36.267783px;}
.h6_c00480{height:39.085184px;}
.h11_c00480{height:40.005001px;}
.h13_c00480{height:51.885424px;}
.h12_c00480{height:55.092790px;}
.h3_c00480{height:55.127245px;}
.h5_c00480{height:55.821847px;}
.h4_c00480{height:63.759455px;}
.hf_c00480{height:65.223506px;}
.h7_c00480{height:67.002968px;}
.h8_c00480{height:89.323331px;}
.h2_c00480{height:1304.999946px;}
.h0_c00480{height:1304.999953px;}
.h1_c00480{height:1305.000000px;}
.w2_c00480{width:934.874961px;}
.w0_c00480{width:934.875000px;}
.w1_c00480{width:935.250000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:87.850202px;}
.x2_c00480{left:108.062661px;}
.x3_c00480{left:109.658623px;}
.x29_c00480{left:134.894322px;}
.x28_c00480{left:136.566734px;}
.x2a_c00480{left:139.937719px;}
.x2b_c00480{left:144.785273px;}
.x2c_c00480{left:150.147890px;}
.x2d_c00480{left:152.899057px;}
.x2e_c00480{left:155.907145px;}
.x2f_c00480{left:159.752336px;}
.x30_c00480{left:163.203941px;}
.x31_c00480{left:171.483965px;}
.x32_c00480{left:179.748684px;}
.x33_c00480{left:188.175145px;}
.x34_c00480{left:196.556636px;}
.x35_c00480{left:200.721504px;}
.x36_c00480{left:205.276922px;}
.x37_c00480{left:209.084069px;}
.x38_c00480{left:211.669316px;}
.x6_c00480{left:230.260919px;}
.x5_c00480{left:232.395871px;}
.x7_c00480{left:235.482735px;}
.x8_c00480{left:240.319117px;}
.x9_c00480{left:245.673577px;}
.xa_c00480{left:248.421493px;}
.xb_c00480{left:251.426626px;}
.xc_c00480{left:255.268917px;}
.xd_c00480{left:258.553698px;}
.xe_c00480{left:262.988294px;}
.xf_c00480{left:271.601212px;}
.x10_c00480{left:283.434780px;}
.x11_c00480{left:290.867654px;}
.x12_c00480{left:294.260334px;}
.x4_c00480{left:299.651470px;}
.x13_c00480{left:302.984150px;}
.x14_c00480{left:306.993562px;}
.x15_c00480{left:325.378518px;}
.x16_c00480{left:326.595106px;}
.x17_c00480{left:328.015253px;}
.x18_c00480{left:331.410444px;}
.x19_c00480{left:334.633053px;}
.x1a_c00480{left:340.511825px;}
.x1b_c00480{left:346.695139px;}
.x1c_c00480{left:352.384720px;}
.x1d_c00480{left:355.792694px;}
.x1e_c00480{left:363.695116px;}
.x1f_c00480{left:371.679253px;}
.x20_c00480{left:378.434940px;}
.x21_c00480{left:381.453328px;}
.x22_c00480{left:384.455783px;}
.x23_c00480{left:387.851715px;}
.x24_c00480{left:390.467224px;}
.x25_c00480{left:393.779799px;}
.x26_c00480{left:398.952070px;}
.x27_c00480{left:401.755082px;}
.x3d_c00480{left:451.985828px;}
.x3a_c00480{left:464.618828px;}
.x3e_c00480{left:689.936767px;}
.x3c_c00480{left:691.431927px;}
.x3b_c00480{left:733.103068px;}
.x39_c00480{left:756.637341px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.v1_c00480{vertical-align:7.965952pt;}
.ls1_c00480{letter-spacing:0.000000pt;}
.ls0_c00480{letter-spacing:0.031231pt;}
.ws0_c00480{word-spacing:-16.615081pt;}
.ws3_c00480{word-spacing:-16.604696pt;}
.ws4_c00480{word-spacing:-12.866304pt;}
.ws5_c00480{word-spacing:0.000000pt;}
.ws1_c00480{word-spacing:245.304634pt;}
.ws2_c00480{word-spacing:250.196272pt;}
._0_c00480{width:4.564534pt;}
._1_c00480{width:6.165385pt;}
._2_c00480{width:9.958289pt;}
._3_c00480{width:11.160326pt;}
.fsc_c00480{font-size:37.310908pt;}
.fs3_c00480{font-size:37.311173pt;}
.fs6_c00480{font-size:42.079973pt;}
.fs9_c00480{font-size:42.079974pt;}
.fs5_c00480{font-size:42.079975pt;}
.fs8_c00480{font-size:42.079976pt;}
.fs7_c00480{font-size:42.079977pt;}
.fsa_c00480{font-size:42.079978pt;}
.fsd_c00480{font-size:49.041671pt;}
.fsf_c00480{font-size:49.530431pt;}
.fs2_c00480{font-size:53.288186pt;}
.fse_c00480{font-size:63.921837pt;}
.fs0_c00480{font-size:63.961814pt;}
.fsb_c00480{font-size:68.413814pt;}
.fs1_c00480{font-size:74.595466pt;}
.fs4_c00480{font-size:85.269094pt;}
.y0_c00480{bottom:0.000000pt;}
.y1_c00480{bottom:0.000007pt;}
.y52_c00480{bottom:26.805533pt;}
.y8_c00480{bottom:109.044558pt;}
.y7_c00480{bottom:136.028448pt;}
.y6_c00480{bottom:163.012338pt;}
.y5_c00480{bottom:189.996229pt;}
.y4_c00480{bottom:216.980119pt;}
.y3_c00480{bottom:243.964010pt;}
.y2_c00480{bottom:270.947900pt;}
.y9_c00480{bottom:299.639826pt;}
.y51_c00480{bottom:359.920462pt;}
.y4e_c00480{bottom:433.223518pt;}
.y1c_c00480{bottom:438.944560pt;}
.y44_c00480{bottom:438.957887pt;}
.y1b_c00480{bottom:439.411208pt;}
.y45_c00480{bottom:439.428585pt;}
.y2e_c00480{bottom:439.733989pt;}
.y43_c00480{bottom:440.063632pt;}
.y1a_c00480{bottom:440.358224pt;}
.y2f_c00480{bottom:440.474249pt;}
.y2d_c00480{bottom:440.492144pt;}
.y42_c00480{bottom:441.175290pt;}
.y19_c00480{bottom:441.311665pt;}
.y2c_c00480{bottom:441.411480pt;}
.y46_c00480{bottom:441.575343pt;}
.y1d_c00480{bottom:441.631897pt;}
.y30_c00480{bottom:442.412085pt;}
.y41_c00480{bottom:442.636491pt;}
.y18_c00480{bottom:442.778875pt;}
.y2b_c00480{bottom:443.368235pt;}
.y31_c00480{bottom:443.647574pt;}
.y40_c00480{bottom:444.136272pt;}
.y17_c00480{bottom:444.283350pt;}
.y32_c00480{bottom:445.156323pt;}
.y1e_c00480{bottom:445.431649pt;}
.y3f_c00480{bottom:445.793228pt;}
.y16_c00480{bottom:445.944627pt;}
.y47_c00480{bottom:446.106592pt;}
.y2a_c00480{bottom:446.736624pt;}
.y33_c00480{bottom:447.325975pt;}
.y1f_c00480{bottom:447.669198pt;}
.y48_c00480{bottom:449.329795pt;}
.y34_c00480{bottom:449.332771pt;}
.y3e_c00480{bottom:449.927990pt;}
.y15_c00480{bottom:450.087675pt;}
.y29_c00480{bottom:451.594856pt;}
.y35_c00480{bottom:452.236735pt;}
.y20_c00480{bottom:452.957150pt;}
.y49_c00480{bottom:454.334697pt;}
.y28_c00480{bottom:455.562742pt;}
.y3d_c00480{bottom:455.614749pt;}
.y14_c00480{bottom:455.781928pt;}
.y21_c00480{bottom:457.175713pt;}
.y36_c00480{bottom:459.696536pt;}
.y4a_c00480{bottom:460.249062pt;}
.y27_c00480{bottom:461.270273pt;}
.y3c_c00480{bottom:462.105976pt;}
.y13_c00480{bottom:462.186152pt;}
.y12_c00480{bottom:465.258807pt;}
.y26_c00480{bottom:465.329988pt;}
.y37_c00480{bottom:466.846944pt;}
.y22_c00480{bottom:467.644044pt;}
.y3b_c00480{bottom:468.468115pt;}
.y11_c00480{bottom:470.598118pt;}
.y4b_c00480{bottom:470.876600pt;}
.y25_c00480{bottom:472.234422pt;}
.y3a_c00480{bottom:472.704883pt;}
.y4d_c00480{bottom:473.050126pt;}
.y24_c00480{bottom:475.693435pt;}
.y10_c00480{bottom:477.047199pt;}
.y39_c00480{bottom:478.188178pt;}
.y23_c00480{bottom:478.518126pt;}
.y4c_c00480{bottom:478.841168pt;}
.y4f_c00480{bottom:480.383260pt;}
.y38_c00480{bottom:484.463008pt;}
.yf_c00480{bottom:485.517349pt;}
.y50_c00480{bottom:513.663227pt;}
.y53_c00480{bottom:568.435476pt;}
.yd_c00480{bottom:1005.060100pt;}
.yb_c00480{bottom:1006.246061pt;}
.ya_c00480{bottom:1022.236514pt;}
.ye_c00480{bottom:1025.517985pt;}
.yc_c00480{bottom:1040.585280pt;}
.h10_c00480{height:28.584382pt;}
.hd_c00480{height:31.970917pt;}
.hc_c00480{height:31.970918pt;}
.he_c00480{height:31.970920pt;}
.ha_c00480{height:32.238026pt;}
.h9_c00480{height:32.238028pt;}
.hb_c00480{height:32.238029pt;}
.h6_c00480{height:34.742386pt;}
.h11_c00480{height:35.560001pt;}
.h13_c00480{height:46.120377pt;}
.h12_c00480{height:48.971369pt;}
.h3_c00480{height:49.001996pt;}
.h5_c00480{height:49.619420pt;}
.h4_c00480{height:56.675071pt;}
.hf_c00480{height:57.976449pt;}
.h7_c00480{height:59.558193pt;}
.h8_c00480{height:79.398517pt;}
.h2_c00480{height:1159.999952pt;}
.h0_c00480{height:1159.999959pt;}
.h1_c00480{height:1160.000000pt;}
.w2_c00480{width:830.999965pt;}
.w0_c00480{width:831.000000pt;}
.w1_c00480{width:831.333333pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:78.089069pt;}
.x2_c00480{left:96.055698pt;}
.x3_c00480{left:97.474332pt;}
.x29_c00480{left:119.906064pt;}
.x28_c00480{left:121.392652pt;}
.x2a_c00480{left:124.389083pt;}
.x2b_c00480{left:128.698021pt;}
.x2c_c00480{left:133.464791pt;}
.x2d_c00480{left:135.910272pt;}
.x2e_c00480{left:138.584129pt;}
.x2f_c00480{left:142.002076pt;}
.x30_c00480{left:145.070170pt;}
.x31_c00480{left:152.430191pt;}
.x32_c00480{left:159.776608pt;}
.x33_c00480{left:167.266795pt;}
.x34_c00480{left:174.717010pt;}
.x35_c00480{left:178.419115pt;}
.x36_c00480{left:182.468375pt;}
.x37_c00480{left:185.852506pt;}
.x38_c00480{left:188.150503pt;}
.x6_c00480{left:204.676373pt;}
.x5_c00480{left:206.574107pt;}
.x7_c00480{left:209.317987pt;}
.x8_c00480{left:213.616993pt;}
.x9_c00480{left:218.376513pt;}
.xa_c00480{left:220.819105pt;}
.xb_c00480{left:223.490334pt;}
.xc_c00480{left:226.905704pt;}
.xd_c00480{left:229.825509pt;}
.xe_c00480{left:233.767373pt;}
.xf_c00480{left:241.423300pt;}
.x10_c00480{left:251.942027pt;}
.x11_c00480{left:258.549026pt;}
.x12_c00480{left:261.564741pt;}
.x4_c00480{left:266.356863pt;}
.x13_c00480{left:269.319244pt;}
.x14_c00480{left:272.883167pt;}
.x15_c00480{left:289.225349pt;}
.x16_c00480{left:290.306761pt;}
.x17_c00480{left:291.569114pt;}
.x18_c00480{left:294.587062pt;}
.x19_c00480{left:297.451603pt;}
.x1a_c00480{left:302.677178pt;}
.x1b_c00480{left:308.173457pt;}
.x1c_c00480{left:313.230862pt;}
.x1d_c00480{left:316.260173pt;}
.x1e_c00480{left:323.284548pt;}
.x1f_c00480{left:330.381558pt;}
.x20_c00480{left:336.386614pt;}
.x21_c00480{left:339.069625pt;}
.x22_c00480{left:341.738474pt;}
.x23_c00480{left:344.757080pt;}
.x24_c00480{left:347.081977pt;}
.x25_c00480{left:350.026488pt;}
.x26_c00480{left:354.624063pt;}
.x27_c00480{left:357.115628pt;}
.x3d_c00480{left:401.765180pt;}
.x3a_c00480{left:412.994514pt;}
.x3e_c00480{left:613.277126pt;}
.x3c_c00480{left:614.606158pt;}
.x3b_c00480{left:651.647171pt;}
.x39_c00480{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_082ea087c29f2b8a72f5e208.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.171387;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.006348;font-style:normal;font-weight:normal;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_ab05ef012c63f1fa3e11ffef.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.000000;font-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_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);}
.v0_c00481{vertical-align:0.000000px;}
.ls0_c00481{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00481{word-spacing:-18.680283px;}
.ws1_c00481{word-spacing:0.000000px;}
._9_c00481{width:1.370274px;}
._b_c00481{width:2.562128px;}
._4_c00481{width:4.695293px;}
._c_c00481{width:5.718952px;}
._7_c00481{width:7.632452px;}
._d_c00481{width:9.056804px;}
._6_c00481{width:11.032476px;}
._1_c00481{width:13.156789px;}
._3_c00481{width:14.791950px;}
._2_c00481{width:17.010827px;}
._5_c00481{width:19.956836px;}
._a_c00481{width:23.119010px;}
._0_c00481{width:25.552130px;}
._8_c00481{width:27.141999px;}
._e_c00481{width:43.848824px;}
.fc1_c00481{color:rgb(102,18,18);}
.fc0_c00481{color:rgb(0,0,0);}
.fs1_c00481{font-size:71.912067px;}
.fs0_c00481{font-size:71.957041px;}
.y0_c00481{bottom:0.000000px;}
.y1_c00481{bottom:0.000008px;}
.y20_c00481{bottom:30.156225px;}
.y1e_c00481{bottom:247.342154px;}
.y1d_c00481{bottom:277.699031px;}
.y1c_c00481{bottom:308.055907px;}
.y1b_c00481{bottom:338.412784px;}
.y1a_c00481{bottom:368.769661px;}
.y19_c00481{bottom:399.126538px;}
.y18_c00481{bottom:429.483414px;}
.y17_c00481{bottom:459.840291px;}
.y16_c00481{bottom:490.197168px;}
.y15_c00481{bottom:520.554045px;}
.y14_c00481{bottom:550.910921px;}
.y13_c00481{bottom:581.267798px;}
.y12_c00481{bottom:611.624675px;}
.y11_c00481{bottom:641.981552px;}
.y10_c00481{bottom:672.338428px;}
.y1f_c00481{bottom:708.634160px;}
.yf_c00481{bottom:767.719165px;}
.ye_c00481{bottom:798.076042px;}
.yd_c00481{bottom:828.432919px;}
.yc_c00481{bottom:858.789795px;}
.yb_c00481{bottom:889.146672px;}
.ya_c00481{bottom:919.503549px;}
.y9_c00481{bottom:949.860426px;}
.y8_c00481{bottom:980.217302px;}
.y7_c00481{bottom:1021.142843px;}
.y6_c00481{bottom:1076.281328px;}
.y5_c00481{bottom:1106.638204px;}
.y4_c00481{bottom:1136.995081px;}
.y3_c00481{bottom:1167.351958px;}
.y2_c00481{bottom:1197.708835px;}
.h4_c00481{height:55.127245px;}
.h5_c00481{height:66.961090px;}
.h3_c00481{height:67.002968px;}
.h2_c00481{height:1304.999946px;}
.h0_c00481{height:1304.999953px;}
.h1_c00481{height:1305.000000px;}
.w2_c00481{width:934.874961px;}
.w0_c00481{width:934.875000px;}
.w1_c00481{width:935.250000px;}
.x0_c00481{left:0.000000px;}
.x2_c00481{left:87.850202px;}
.x1_c00481{left:89.434062px;}
.x3_c00481{left:451.985828px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:-16.604696pt;}
.ws1_c00481{word-spacing:0.000000pt;}
._9_c00481{width:1.218021pt;}
._b_c00481{width:2.277447pt;}
._4_c00481{width:4.173594pt;}
._c_c00481{width:5.083513pt;}
._7_c00481{width:6.784402pt;}
._d_c00481{width:8.050493pt;}
._6_c00481{width:9.806645pt;}
._1_c00481{width:11.694923pt;}
._3_c00481{width:13.148400pt;}
._2_c00481{width:15.120735pt;}
._5_c00481{width:17.739410pt;}
._a_c00481{width:20.550231pt;}
._0_c00481{width:22.713005pt;}
._8_c00481{width:24.126221pt;}
._e_c00481{width:38.976732pt;}
.fs1_c00481{font-size:63.921837pt;}
.fs0_c00481{font-size:63.961814pt;}
.y0_c00481{bottom:0.000000pt;}
.y1_c00481{bottom:0.000007pt;}
.y20_c00481{bottom:26.805533pt;}
.y1e_c00481{bottom:219.859692pt;}
.y1d_c00481{bottom:246.843583pt;}
.y1c_c00481{bottom:273.827473pt;}
.y1b_c00481{bottom:300.811364pt;}
.y1a_c00481{bottom:327.795254pt;}
.y19_c00481{bottom:354.779145pt;}
.y18_c00481{bottom:381.763035pt;}
.y17_c00481{bottom:408.746925pt;}
.y16_c00481{bottom:435.730816pt;}
.y15_c00481{bottom:462.714706pt;}
.y14_c00481{bottom:489.698597pt;}
.y13_c00481{bottom:516.682487pt;}
.y12_c00481{bottom:543.666378pt;}
.y11_c00481{bottom:570.650268pt;}
.y10_c00481{bottom:597.634159pt;}
.y1f_c00481{bottom:629.897031pt;}
.yf_c00481{bottom:682.417036pt;}
.ye_c00481{bottom:709.400926pt;}
.yd_c00481{bottom:736.384817pt;}
.yc_c00481{bottom:763.368707pt;}
.yb_c00481{bottom:790.352597pt;}
.ya_c00481{bottom:817.336488pt;}
.y9_c00481{bottom:844.320378pt;}
.y8_c00481{bottom:871.304269pt;}
.y7_c00481{bottom:907.682527pt;}
.y6_c00481{bottom:956.694513pt;}
.y5_c00481{bottom:983.678404pt;}
.y4_c00481{bottom:1010.662294pt;}
.y3_c00481{bottom:1037.646185pt;}
.y2_c00481{bottom:1064.630075pt;}
.h4_c00481{height:49.001996pt;}
.h5_c00481{height:59.520969pt;}
.h3_c00481{height:59.558193pt;}
.h2_c00481{height:1159.999952pt;}
.h0_c00481{height:1159.999959pt;}
.h1_c00481{height:1160.000000pt;}
.w2_c00481{width:830.999965pt;}
.w0_c00481{width:831.000000pt;}
.w1_c00481{width:831.333333pt;}
.x0_c00481{left:0.000000pt;}
.x2_c00481{left:78.089069pt;}
.x1_c00481{left:79.496944pt;}
.x3_c00481{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.006348;font-style:normal;font-weight:normal;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_55ae1e7434259dc2e1293d22.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.006348;font-style:normal;font-weight:normal;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_ab05ef012c63f1fa3e11ffef.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.000000;font-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_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);}
.v0_c00482{vertical-align:0.000000px;}
.ls0_c00482{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00482{word-spacing:-18.680283px;}
.ws1_c00482{word-spacing:0.000000px;}
._0_c00482{width:5.129750px;}
._1_c00482{width:8.227006px;}
.fc1_c00482{color:rgb(0,0,0);}
.fc0_c00482{color:rgb(102,18,18);}
.fs1_c00482{font-size:71.912067px;}
.fs0_c00482{font-size:71.957041px;}
.y0_c00482{bottom:0.000000px;}
.y1_c00482{bottom:0.000008px;}
.y8_c00482{bottom:30.156225px;}
.y6_c00482{bottom:998.495905px;}
.y5_c00482{bottom:1028.852782px;}
.y4_c00482{bottom:1059.209658px;}
.y7_c00482{bottom:1093.562254px;}
.y3_c00482{bottom:1166.597593px;}
.y2_c00482{bottom:1199.835078px;}
.h4_c00482{height:55.092790px;}
.h3_c00482{height:55.127245px;}
.h2_c00482{height:1304.999946px;}
.h0_c00482{height:1304.999953px;}
.h1_c00482{height:1305.000000px;}
.w2_c00482{width:934.874961px;}
.w0_c00482{width:934.875000px;}
.w1_c00482{width:935.250000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:87.847276px;}
.x2_c00482{left:451.985828px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws0_c00482{word-spacing:-16.604696pt;}
.ws1_c00482{word-spacing:0.000000pt;}
._0_c00482{width:4.559777pt;}
._1_c00482{width:7.312894pt;}
.fs1_c00482{font-size:63.921837pt;}
.fs0_c00482{font-size:63.961814pt;}
.y0_c00482{bottom:0.000000pt;}
.y1_c00482{bottom:0.000007pt;}
.y8_c00482{bottom:26.805533pt;}
.y6_c00482{bottom:887.551915pt;}
.y5_c00482{bottom:914.535806pt;}
.y4_c00482{bottom:941.519696pt;}
.y7_c00482{bottom:972.055337pt;}
.y3_c00482{bottom:1036.975638pt;}
.y2_c00482{bottom:1066.520069pt;}
.h4_c00482{height:48.971369pt;}
.h3_c00482{height:49.001996pt;}
.h2_c00482{height:1159.999952pt;}
.h0_c00482{height:1159.999959pt;}
.h1_c00482{height:1160.000000pt;}
.w2_c00482{width:830.999965pt;}
.w0_c00482{width:831.000000pt;}
.w1_c00482{width:831.333333pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:78.086467pt;}
.x2_c00482{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b82909d673a66f5a429489b.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:0.974121;font-style:normal;font-weight:normal;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_d13e9f09a146a3ce6af991fa.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.006348;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.006348;font-style:normal;font-weight:normal;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_353caf36247a293055b6ef6f.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:0.769531;font-style:normal;font-weight: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_e34e892e6ba09879c76c1f7d.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;line-height:1.171387;font-style:normal;font-weight: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_c00483;src:url('chunks/assets/font_c09c748d25fa4247dffd83d1.woff2')format("woff");}.ff6_c00483{font-family:ff6_c00483;line-height:1.000000;font-style:normal;font-weight: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_c00483;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00483{font-family:ff7_c00483;line-height:0.769531;font-style:normal;font-weight: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_c00483;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff8_c00483{font-family:ff8_c00483;line-height:0.743000;font-style:normal;font-weight: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_c00483;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00483{font-family:ff9_c00483;line-height:0.734863;font-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_c00483{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00483{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00483{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00483{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00483{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00483{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00483{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00483{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00483{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00483{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00483{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00483{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00483{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00483{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00483{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00483{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00483{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00483{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00483{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00483{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00483{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00483{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00483{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00483{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00483{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00483{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00483{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00483{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00483{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00483{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00483{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00483{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00483{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00483{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00483{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00483{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00483{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00483{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00483{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00483{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00483{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00483{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00483{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00483{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00483{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00483{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00483{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00483{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00483{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00483{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00483{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00483{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00483{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00483{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00483{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00483{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00483{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00483{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00483{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00483{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00483{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00483{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00483{vertical-align:0.000000px;}
.v1_c00483{vertical-align:8.961696px;}
.ls0_c00483{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00483{word-spacing:-18.680283px;}
.ws3_c00483{word-spacing:-14.474592px;}
.ws4_c00483{word-spacing:0.000000px;}
.ws0_c00483{word-spacing:275.967713px;}
.ws1_c00483{word-spacing:281.470806px;}
._1_c00483{width:1.392235px;}
._0_c00483{width:4.304073px;}
._2_c00483{width:5.546981px;}
._3_c00483{width:10.405394px;}
._4_c00483{width:11.626000px;}
.fc1_c00483{color:rgb(102,18,18);}
.fc2_c00483{color:rgb(255,255,255);}
.fc0_c00483{color:rgb(0,0,0);}
.fsc_c00483{font-size:41.974772px;}
.fs3_c00483{font-size:41.975069px;}
.fs6_c00483{font-size:47.339969px;}
.fs9_c00483{font-size:47.339970px;}
.fs5_c00483{font-size:47.339972px;}
.fs8_c00483{font-size:47.339973px;}
.fs7_c00483{font-size:47.339974px;}
.fsa_c00483{font-size:47.339975px;}
.fsd_c00483{font-size:55.171880px;}
.fsf_c00483{font-size:55.721735px;}
.fs2_c00483{font-size:59.949210px;}
.fse_c00483{font-size:71.912067px;}
.fs0_c00483{font-size:71.957041px;}
.fsb_c00483{font-size:76.965540px;}
.fs1_c00483{font-size:83.919899px;}
.fs4_c00483{font-size:95.927731px;}
.y0_c00483{bottom:0.000000px;}
.y1_c00483{bottom:0.000008px;}
.y51_c00483{bottom:30.156225px;}
.y7_c00483{bottom:153.551088px;}
.y6_c00483{bottom:183.907965px;}
.y5_c00483{bottom:214.264841px;}
.y4_c00483{bottom:244.621718px;}
.y3_c00483{bottom:274.978595px;}
.y2_c00483{bottom:305.335472px;}
.y8_c00483{bottom:337.613888px;}
.y50_c00483{bottom:404.910520px;}
.y4d_c00483{bottom:487.376458px;}
.y1b_c00483{bottom:493.812629px;}
.y43_c00483{bottom:493.827623px;}
.y1a_c00483{bottom:494.337609px;}
.y44_c00483{bottom:494.357158px;}
.y2d_c00483{bottom:494.700737px;}
.y42_c00483{bottom:495.071586px;}
.y19_c00483{bottom:495.403002px;}
.y2e_c00483{bottom:495.533530px;}
.y2c_c00483{bottom:495.553663px;}
.y41_c00483{bottom:496.322201px;}
.y18_c00483{bottom:496.475623px;}
.y2b_c00483{bottom:496.587915px;}
.y45_c00483{bottom:496.772260px;}
.y1c_c00483{bottom:496.835884px;}
.y2f_c00483{bottom:497.713596px;}
.y40_c00483{bottom:497.966053px;}
.y17_c00483{bottom:498.126234px;}
.y2a_c00483{bottom:498.789265px;}
.y30_c00483{bottom:499.103521px;}
.y3f_c00483{bottom:499.653306px;}
.y16_c00483{bottom:499.818769px;}
.y31_c00483{bottom:500.800864px;}
.y1d_c00483{bottom:501.110605px;}
.y3e_c00483{bottom:501.517382px;}
.y15_c00483{bottom:501.687706px;}
.y46_c00483{bottom:501.869915px;}
.y29_c00483{bottom:502.578702px;}
.y32_c00483{bottom:503.241722px;}
.y1e_c00483{bottom:503.627848px;}
.y47_c00483{bottom:505.496019px;}
.y33_c00483{bottom:505.499367px;}
.y3d_c00483{bottom:506.168989px;}
.y14_c00483{bottom:506.348634px;}
.y28_c00483{bottom:508.044213px;}
.y34_c00483{bottom:508.766327px;}
.y1f_c00483{bottom:509.576794px;}
.y48_c00483{bottom:511.126534px;}
.y27_c00483{bottom:512.508085px;}
.y3c_c00483{bottom:512.566592px;}
.y13_c00483{bottom:512.754669px;}
.y20_c00483{bottom:514.322677px;}
.y35_c00483{bottom:517.158603px;}
.y49_c00483{bottom:517.780195px;}
.y26_c00483{bottom:518.929057px;}
.y3b_c00483{bottom:519.869222px;}
.y12_c00483{bottom:519.959421px;}
.y11_c00483{bottom:523.416158px;}
.y25_c00483{bottom:523.496236px;}
.y36_c00483{bottom:525.202812px;}
.y21_c00483{bottom:526.099549px;}
.y3a_c00483{bottom:527.026630px;}
.y10_c00483{bottom:529.422883px;}
.y4a_c00483{bottom:529.736175px;}
.y24_c00483{bottom:531.263725px;}
.y39_c00483{bottom:531.792993px;}
.y4c_c00483{bottom:532.181392px;}
.y23_c00483{bottom:535.155114px;}
.yf_c00483{bottom:536.678099px;}
.y38_c00483{bottom:537.961701px;}
.y22_c00483{bottom:538.332892px;}
.y4b_c00483{bottom:538.696314px;}
.y4e_c00483{bottom:540.431168px;}
.y37_c00483{bottom:545.020884px;}
.ye_c00483{bottom:546.207017px;}
.y4f_c00483{bottom:577.871130px;}
.y52_c00483{bottom:639.489911px;}
.yc_c00483{bottom:1130.692613px;}
.ya_c00483{bottom:1132.026818px;}
.y9_c00483{bottom:1150.016079px;}
.yd_c00483{bottom:1153.707733px;}
.yb_c00483{bottom:1170.658440px;}
.h10_c00483{height:32.157430px;}
.hd_c00483{height:35.967282px;}
.hc_c00483{height:35.967283px;}
.he_c00483{height:35.967285px;}
.ha_c00483{height:36.267779px;}
.h9_c00483{height:36.267781px;}
.hb_c00483{height:36.267783px;}
.h6_c00483{height:39.085184px;}
.h11_c00483{height:40.005001px;}
.h13_c00483{height:51.885424px;}
.h12_c00483{height:55.092790px;}
.h3_c00483{height:55.127245px;}
.h5_c00483{height:55.821847px;}
.h4_c00483{height:63.759455px;}
.hf_c00483{height:65.223506px;}
.h7_c00483{height:67.002968px;}
.h8_c00483{height:89.323331px;}
.h2_c00483{height:1304.999946px;}
.h0_c00483{height:1304.999953px;}
.h1_c00483{height:1305.000000px;}
.w2_c00483{width:934.874961px;}
.w0_c00483{width:934.875000px;}
.w1_c00483{width:935.250000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:87.850202px;}
.x2_c00483{left:108.062661px;}
.x3_c00483{left:109.658623px;}
.x29_c00483{left:134.894322px;}
.x28_c00483{left:136.566734px;}
.x2a_c00483{left:139.937719px;}
.x2b_c00483{left:144.785273px;}
.x2c_c00483{left:150.147890px;}
.x2d_c00483{left:152.899057px;}
.x2e_c00483{left:155.907145px;}
.x2f_c00483{left:159.752336px;}
.x30_c00483{left:163.203941px;}
.x31_c00483{left:171.483965px;}
.x32_c00483{left:179.748684px;}
.x33_c00483{left:188.175145px;}
.x34_c00483{left:196.556636px;}
.x35_c00483{left:200.721504px;}
.x36_c00483{left:205.276922px;}
.x37_c00483{left:209.084069px;}
.x38_c00483{left:211.669316px;}
.x6_c00483{left:230.260919px;}
.x5_c00483{left:232.395871px;}
.x7_c00483{left:235.482735px;}
.x8_c00483{left:240.319117px;}
.x9_c00483{left:245.673577px;}
.xa_c00483{left:248.421493px;}
.xb_c00483{left:251.426626px;}
.xc_c00483{left:255.268917px;}
.xd_c00483{left:258.553698px;}
.xe_c00483{left:262.988294px;}
.xf_c00483{left:271.601212px;}
.x10_c00483{left:283.434780px;}
.x11_c00483{left:290.867654px;}
.x12_c00483{left:294.260334px;}
.x4_c00483{left:299.651470px;}
.x13_c00483{left:302.984150px;}
.x14_c00483{left:306.993562px;}
.x15_c00483{left:325.378518px;}
.x16_c00483{left:326.595106px;}
.x17_c00483{left:328.015253px;}
.x18_c00483{left:331.410444px;}
.x19_c00483{left:334.633053px;}
.x1a_c00483{left:340.511825px;}
.x1b_c00483{left:346.695139px;}
.x1c_c00483{left:352.384720px;}
.x1d_c00483{left:355.792694px;}
.x1e_c00483{left:363.695116px;}
.x1f_c00483{left:371.679253px;}
.x20_c00483{left:378.434940px;}
.x21_c00483{left:381.453328px;}
.x22_c00483{left:384.455783px;}
.x23_c00483{left:387.851715px;}
.x24_c00483{left:390.467224px;}
.x25_c00483{left:393.779799px;}
.x26_c00483{left:398.952070px;}
.x27_c00483{left:401.755082px;}
.x3d_c00483{left:451.985828px;}
.x3a_c00483{left:464.618828px;}
.x3e_c00483{left:676.474352px;}
.x3c_c00483{left:691.431927px;}
.x3b_c00483{left:733.103068px;}
.x39_c00483{left:756.637341px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.v1_c00483{vertical-align:7.965952pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws2_c00483{word-spacing:-16.604696pt;}
.ws3_c00483{word-spacing:-12.866304pt;}
.ws4_c00483{word-spacing:0.000000pt;}
.ws0_c00483{word-spacing:245.304634pt;}
.ws1_c00483{word-spacing:250.196272pt;}
._1_c00483{width:1.237543pt;}
._0_c00483{width:3.825842pt;}
._2_c00483{width:4.930649pt;}
._3_c00483{width:9.249239pt;}
._4_c00483{width:10.334222pt;}
.fsc_c00483{font-size:37.310908pt;}
.fs3_c00483{font-size:37.311173pt;}
.fs6_c00483{font-size:42.079973pt;}
.fs9_c00483{font-size:42.079974pt;}
.fs5_c00483{font-size:42.079975pt;}
.fs8_c00483{font-size:42.079976pt;}
.fs7_c00483{font-size:42.079977pt;}
.fsa_c00483{font-size:42.079978pt;}
.fsd_c00483{font-size:49.041671pt;}
.fsf_c00483{font-size:49.530431pt;}
.fs2_c00483{font-size:53.288186pt;}
.fse_c00483{font-size:63.921837pt;}
.fs0_c00483{font-size:63.961814pt;}
.fsb_c00483{font-size:68.413814pt;}
.fs1_c00483{font-size:74.595466pt;}
.fs4_c00483{font-size:85.269094pt;}
.y0_c00483{bottom:0.000000pt;}
.y1_c00483{bottom:0.000007pt;}
.y51_c00483{bottom:26.805533pt;}
.y7_c00483{bottom:136.489856pt;}
.y6_c00483{bottom:163.473746pt;}
.y5_c00483{bottom:190.457637pt;}
.y4_c00483{bottom:217.441527pt;}
.y3_c00483{bottom:244.425418pt;}
.y2_c00483{bottom:271.409308pt;}
.y8_c00483{bottom:300.101234pt;}
.y50_c00483{bottom:359.920462pt;}
.y4d_c00483{bottom:433.223518pt;}
.y1b_c00483{bottom:438.944560pt;}
.y43_c00483{bottom:438.957887pt;}
.y1a_c00483{bottom:439.411208pt;}
.y44_c00483{bottom:439.428585pt;}
.y2d_c00483{bottom:439.733989pt;}
.y42_c00483{bottom:440.063632pt;}
.y19_c00483{bottom:440.358224pt;}
.y2e_c00483{bottom:440.474249pt;}
.y2c_c00483{bottom:440.492144pt;}
.y41_c00483{bottom:441.175290pt;}
.y18_c00483{bottom:441.311665pt;}
.y2b_c00483{bottom:441.411480pt;}
.y45_c00483{bottom:441.575343pt;}
.y1c_c00483{bottom:441.631897pt;}
.y2f_c00483{bottom:442.412085pt;}
.y40_c00483{bottom:442.636491pt;}
.y17_c00483{bottom:442.778875pt;}
.y2a_c00483{bottom:443.368235pt;}
.y30_c00483{bottom:443.647574pt;}
.y3f_c00483{bottom:444.136272pt;}
.y16_c00483{bottom:444.283350pt;}
.y31_c00483{bottom:445.156323pt;}
.y1d_c00483{bottom:445.431649pt;}
.y3e_c00483{bottom:445.793228pt;}
.y15_c00483{bottom:445.944627pt;}
.y46_c00483{bottom:446.106592pt;}
.y29_c00483{bottom:446.736624pt;}
.y32_c00483{bottom:447.325975pt;}
.y1e_c00483{bottom:447.669198pt;}
.y47_c00483{bottom:449.329795pt;}
.y33_c00483{bottom:449.332771pt;}
.y3d_c00483{bottom:449.927990pt;}
.y14_c00483{bottom:450.087675pt;}
.y28_c00483{bottom:451.594856pt;}
.y34_c00483{bottom:452.236735pt;}
.y1f_c00483{bottom:452.957150pt;}
.y48_c00483{bottom:454.334697pt;}
.y27_c00483{bottom:455.562742pt;}
.y3c_c00483{bottom:455.614749pt;}
.y13_c00483{bottom:455.781928pt;}
.y20_c00483{bottom:457.175713pt;}
.y35_c00483{bottom:459.696536pt;}
.y49_c00483{bottom:460.249062pt;}
.y26_c00483{bottom:461.270273pt;}
.y3b_c00483{bottom:462.105976pt;}
.y12_c00483{bottom:462.186152pt;}
.y11_c00483{bottom:465.258807pt;}
.y25_c00483{bottom:465.329988pt;}
.y36_c00483{bottom:466.846944pt;}
.y21_c00483{bottom:467.644044pt;}
.y3a_c00483{bottom:468.468115pt;}
.y10_c00483{bottom:470.598118pt;}
.y4a_c00483{bottom:470.876600pt;}
.y24_c00483{bottom:472.234422pt;}
.y39_c00483{bottom:472.704883pt;}
.y4c_c00483{bottom:473.050126pt;}
.y23_c00483{bottom:475.693435pt;}
.yf_c00483{bottom:477.047199pt;}
.y38_c00483{bottom:478.188178pt;}
.y22_c00483{bottom:478.518126pt;}
.y4b_c00483{bottom:478.841168pt;}
.y4e_c00483{bottom:480.383260pt;}
.y37_c00483{bottom:484.463008pt;}
.ye_c00483{bottom:485.517349pt;}
.y4f_c00483{bottom:513.663227pt;}
.y52_c00483{bottom:568.435476pt;}
.yc_c00483{bottom:1005.060100pt;}
.ya_c00483{bottom:1006.246061pt;}
.y9_c00483{bottom:1022.236514pt;}
.yd_c00483{bottom:1025.517985pt;}
.yb_c00483{bottom:1040.585280pt;}
.h10_c00483{height:28.584382pt;}
.hd_c00483{height:31.970917pt;}
.hc_c00483{height:31.970918pt;}
.he_c00483{height:31.970920pt;}
.ha_c00483{height:32.238026pt;}
.h9_c00483{height:32.238028pt;}
.hb_c00483{height:32.238029pt;}
.h6_c00483{height:34.742386pt;}
.h11_c00483{height:35.560001pt;}
.h13_c00483{height:46.120377pt;}
.h12_c00483{height:48.971369pt;}
.h3_c00483{height:49.001996pt;}
.h5_c00483{height:49.619420pt;}
.h4_c00483{height:56.675071pt;}
.hf_c00483{height:57.976449pt;}
.h7_c00483{height:59.558193pt;}
.h8_c00483{height:79.398517pt;}
.h2_c00483{height:1159.999952pt;}
.h0_c00483{height:1159.999959pt;}
.h1_c00483{height:1160.000000pt;}
.w2_c00483{width:830.999965pt;}
.w0_c00483{width:831.000000pt;}
.w1_c00483{width:831.333333pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:78.089069pt;}
.x2_c00483{left:96.055698pt;}
.x3_c00483{left:97.474332pt;}
.x29_c00483{left:119.906064pt;}
.x28_c00483{left:121.392652pt;}
.x2a_c00483{left:124.389083pt;}
.x2b_c00483{left:128.698021pt;}
.x2c_c00483{left:133.464791pt;}
.x2d_c00483{left:135.910272pt;}
.x2e_c00483{left:138.584129pt;}
.x2f_c00483{left:142.002076pt;}
.x30_c00483{left:145.070170pt;}
.x31_c00483{left:152.430191pt;}
.x32_c00483{left:159.776608pt;}
.x33_c00483{left:167.266795pt;}
.x34_c00483{left:174.717010pt;}
.x35_c00483{left:178.419115pt;}
.x36_c00483{left:182.468375pt;}
.x37_c00483{left:185.852506pt;}
.x38_c00483{left:188.150503pt;}
.x6_c00483{left:204.676373pt;}
.x5_c00483{left:206.574107pt;}
.x7_c00483{left:209.317987pt;}
.x8_c00483{left:213.616993pt;}
.x9_c00483{left:218.376513pt;}
.xa_c00483{left:220.819105pt;}
.xb_c00483{left:223.490334pt;}
.xc_c00483{left:226.905704pt;}
.xd_c00483{left:229.825509pt;}
.xe_c00483{left:233.767373pt;}
.xf_c00483{left:241.423300pt;}
.x10_c00483{left:251.942027pt;}
.x11_c00483{left:258.549026pt;}
.x12_c00483{left:261.564741pt;}
.x4_c00483{left:266.356863pt;}
.x13_c00483{left:269.319244pt;}
.x14_c00483{left:272.883167pt;}
.x15_c00483{left:289.225349pt;}
.x16_c00483{left:290.306761pt;}
.x17_c00483{left:291.569114pt;}
.x18_c00483{left:294.587062pt;}
.x19_c00483{left:297.451603pt;}
.x1a_c00483{left:302.677178pt;}
.x1b_c00483{left:308.173457pt;}
.x1c_c00483{left:313.230862pt;}
.x1d_c00483{left:316.260173pt;}
.x1e_c00483{left:323.284548pt;}
.x1f_c00483{left:330.381558pt;}
.x20_c00483{left:336.386614pt;}
.x21_c00483{left:339.069625pt;}
.x22_c00483{left:341.738474pt;}
.x23_c00483{left:344.757080pt;}
.x24_c00483{left:347.081977pt;}
.x25_c00483{left:350.026488pt;}
.x26_c00483{left:354.624063pt;}
.x27_c00483{left:357.115628pt;}
.x3d_c00483{left:401.765180pt;}
.x3a_c00483{left:412.994514pt;}
.x3e_c00483{left:601.310535pt;}
.x3c_c00483{left:614.606158pt;}
.x3b_c00483{left:651.647171pt;}
.x39_c00483{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dcb2ff580f3b0604ae57fa8.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.006348;font-style:normal;font-weight:normal;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_0c099db5149a84ec56387dbd.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.000000;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.006348;font-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_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);}
.v0_c00484{vertical-align:0.000000px;}
.ls1_c00484{letter-spacing:0.000000px;}
.ls0_c00484{letter-spacing:0.035135px;}
.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;}
}
.ws0_c00484{word-spacing:-18.680283px;}
.ws1_c00484{word-spacing:0.000000px;}
._12_c00484{width:1.156805px;}
._5_c00484{width:2.340542px;}
._6_c00484{width:3.424796px;}
._2_c00484{width:4.843934px;}
._f_c00484{width:6.220385px;}
._b_c00484{width:7.809911px;}
._9_c00484{width:8.854089px;}
._3_c00484{width:10.527405px;}
._c_c00484{width:11.641989px;}
._d_c00484{width:12.814768px;}
._8_c00484{width:14.089375px;}
._0_c00484{width:15.167597px;}
._4_c00484{width:16.243269px;}
._7_c00484{width:17.522895px;}
._a_c00484{width:20.214446px;}
._10_c00484{width:21.362248px;}
._1_c00484{width:23.197034px;}
._11_c00484{width:26.681121px;}
._e_c00484{width:30.747206px;}
.fc1_c00484{color:rgb(102,18,18);}
.fc0_c00484{color:rgb(0,0,0);}
.fs1_c00484{font-size:71.912067px;}
.fs0_c00484{font-size:71.957041px;}
.y0_c00484{bottom:0.000000px;}
.y1_c00484{bottom:0.000008px;}
.y25_c00484{bottom:30.156225px;}
.y23_c00484{bottom:88.696042px;}
.y22_c00484{bottom:119.052919px;}
.y21_c00484{bottom:149.409796px;}
.y20_c00484{bottom:179.766673px;}
.y1f_c00484{bottom:210.123549px;}
.y1e_c00484{bottom:240.480426px;}
.y1d_c00484{bottom:270.837303px;}
.y1c_c00484{bottom:301.194180px;}
.y1b_c00484{bottom:331.551056px;}
.y1a_c00484{bottom:361.907933px;}
.y19_c00484{bottom:392.264810px;}
.y18_c00484{bottom:422.621687px;}
.y17_c00484{bottom:452.978564px;}
.y16_c00484{bottom:483.335440px;}
.y15_c00484{bottom:513.692317px;}
.y14_c00484{bottom:544.049194px;}
.y24_c00484{bottom:581.437270px;}
.y13_c00484{bottom:643.467665px;}
.y12_c00484{bottom:673.824542px;}
.y11_c00484{bottom:704.181419px;}
.y10_c00484{bottom:734.538295px;}
.yf_c00484{bottom:764.895172px;}
.ye_c00484{bottom:795.252049px;}
.yd_c00484{bottom:825.608926px;}
.yc_c00484{bottom:855.965802px;}
.yb_c00484{bottom:893.668526px;}
.ya_c00484{bottom:955.730168px;}
.y9_c00484{bottom:986.087045px;}
.y8_c00484{bottom:1016.443922px;}
.y7_c00484{bottom:1046.800799px;}
.y6_c00484{bottom:1077.157675px;}
.y5_c00484{bottom:1107.514552px;}
.y4_c00484{bottom:1137.871429px;}
.y3_c00484{bottom:1168.228306px;}
.y2_c00484{bottom:1198.585183px;}
.h4_c00484{height:55.092790px;}
.h3_c00484{height:55.127245px;}
.h2_c00484{height:1304.999946px;}
.h0_c00484{height:1304.999953px;}
.h1_c00484{height:1305.000000px;}
.w2_c00484{width:934.874961px;}
.w0_c00484{width:934.875000px;}
.w1_c00484{width:935.250000px;}
.x0_c00484{left:0.000000px;}
.x2_c00484{left:87.850202px;}
.x1_c00484{left:90.790902px;}
.x3_c00484{left:451.985828px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls1_c00484{letter-spacing:0.000000pt;}
.ls0_c00484{letter-spacing:0.031231pt;}
.ws0_c00484{word-spacing:-16.604696pt;}
.ws1_c00484{word-spacing:0.000000pt;}
._12_c00484{width:1.028271pt;}
._5_c00484{width:2.080482pt;}
._6_c00484{width:3.044263pt;}
._2_c00484{width:4.305719pt;}
._f_c00484{width:5.529231pt;}
._b_c00484{width:6.942143pt;}
._9_c00484{width:7.870301pt;}
._3_c00484{width:9.357693pt;}
._c_c00484{width:10.348435pt;}
._d_c00484{width:11.390905pt;}
._8_c00484{width:12.523888pt;}
._0_c00484{width:13.482308pt;}
._4_c00484{width:14.438461pt;}
._7_c00484{width:15.575907pt;}
._a_c00484{width:17.968397pt;}
._10_c00484{width:18.988665pt;}
._1_c00484{width:20.619586pt;}
._11_c00484{width:23.716552pt;}
._e_c00484{width:27.330850pt;}
.fs1_c00484{font-size:63.921837pt;}
.fs0_c00484{font-size:63.961814pt;}
.y0_c00484{bottom:0.000000pt;}
.y1_c00484{bottom:0.000007pt;}
.y25_c00484{bottom:26.805533pt;}
.y23_c00484{bottom:78.840927pt;}
.y22_c00484{bottom:105.824817pt;}
.y21_c00484{bottom:132.808707pt;}
.y20_c00484{bottom:159.792598pt;}
.y1f_c00484{bottom:186.776488pt;}
.y1e_c00484{bottom:213.760379pt;}
.y1d_c00484{bottom:240.744269pt;}
.y1c_c00484{bottom:267.728160pt;}
.y1b_c00484{bottom:294.712050pt;}
.y1a_c00484{bottom:321.695941pt;}
.y19_c00484{bottom:348.679831pt;}
.y18_c00484{bottom:375.663722pt;}
.y17_c00484{bottom:402.647612pt;}
.y16_c00484{bottom:429.631502pt;}
.y15_c00484{bottom:456.615393pt;}
.y14_c00484{bottom:483.599283pt;}
.y24_c00484{bottom:516.833129pt;}
.y13_c00484{bottom:571.971258pt;}
.y12_c00484{bottom:598.955148pt;}
.y11_c00484{bottom:625.939039pt;}
.y10_c00484{bottom:652.922929pt;}
.yf_c00484{bottom:679.906820pt;}
.ye_c00484{bottom:706.890710pt;}
.yd_c00484{bottom:733.874601pt;}
.yc_c00484{bottom:760.858491pt;}
.yb_c00484{bottom:794.372023pt;}
.ya_c00484{bottom:849.537927pt;}
.y9_c00484{bottom:876.521818pt;}
.y8_c00484{bottom:903.505708pt;}
.y7_c00484{bottom:930.489599pt;}
.y6_c00484{bottom:957.473489pt;}
.y5_c00484{bottom:984.457380pt;}
.y4_c00484{bottom:1011.441270pt;}
.y3_c00484{bottom:1038.425161pt;}
.y2_c00484{bottom:1065.409051pt;}
.h4_c00484{height:48.971369pt;}
.h3_c00484{height:49.001996pt;}
.h2_c00484{height:1159.999952pt;}
.h0_c00484{height:1159.999959pt;}
.h1_c00484{height:1160.000000pt;}
.w2_c00484{width:830.999965pt;}
.w0_c00484{width:831.000000pt;}
.w1_c00484{width:831.333333pt;}
.x0_c00484{left:0.000000pt;}
.x2_c00484{left:78.089069pt;}
.x1_c00484{left:80.703024pt;}
.x3_c00484{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89e4098db1e2a3713d17da00.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.006348;font-style:normal;font-weight:normal;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_63adbc2a370538e01cf3d9a2.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.000000;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.006348;font-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_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);}
.v0_c00485{vertical-align:0.000000px;}
.ls0_c00485{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00485{word-spacing:-18.691966px;}
.ws1_c00485{word-spacing:-18.680283px;}
.ws2_c00485{word-spacing:0.000000px;}
._8_c00485{width:1.197356px;}
._4_c00485{width:2.260321px;}
._3_c00485{width:6.194582px;}
._7_c00485{width:7.197375px;}
._5_c00485{width:8.355744px;}
._2_c00485{width:10.231364px;}
._0_c00485{width:12.000001px;}
._1_c00485{width:29.068537px;}
._6_c00485{width:38.619500px;}
.fc1_c00485{color:rgb(102,18,18);}
.fc0_c00485{color:rgb(0,0,0);}
.fs1_c00485{font-size:71.912067px;}
.fs0_c00485{font-size:71.957041px;}
.y0_c00485{bottom:0.000000px;}
.y1_c00485{bottom:0.000008px;}
.y11_c00485{bottom:30.156225px;}
.y6_c00485{bottom:734.200839px;}
.y5_c00485{bottom:764.557715px;}
.y4_c00485{bottom:794.914592px;}
.y3_c00485{bottom:825.271469px;}
.y2_c00485{bottom:855.628346px;}
.y7_c00485{bottom:889.980945px;}
.yd_c00485{bottom:924.408425px;}
.yc_c00485{bottom:954.765302px;}
.yb_c00485{bottom:985.122179px;}
.ya_c00485{bottom:1015.479056px;}
.y9_c00485{bottom:1045.835933px;}
.y8_c00485{bottom:1083.053127px;}
.y10_c00485{bottom:1139.571057px;}
.yf_c00485{bottom:1169.927934px;}
.ye_c00485{bottom:1200.284811px;}
.h4_c00485{height:55.092790px;}
.h3_c00485{height:55.127245px;}
.h2_c00485{height:1304.999946px;}
.h0_c00485{height:1304.999953px;}
.h1_c00485{height:1305.000000px;}
.w2_c00485{width:934.874961px;}
.w0_c00485{width:934.875000px;}
.w1_c00485{width:935.250000px;}
.x0_c00485{left:0.000000px;}
.x2_c00485{left:87.850202px;}
.x1_c00485{left:89.434062px;}
.x3_c00485{left:451.985828px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws0_c00485{word-spacing:-16.615081pt;}
.ws1_c00485{word-spacing:-16.604696pt;}
.ws2_c00485{word-spacing:0.000000pt;}
._8_c00485{width:1.064316pt;}
._4_c00485{width:2.009174pt;}
._3_c00485{width:5.506295pt;}
._7_c00485{width:6.397667pt;}
._5_c00485{width:7.427328pt;}
._2_c00485{width:9.094546pt;}
._0_c00485{width:10.666668pt;}
._1_c00485{width:25.838700pt;}
._6_c00485{width:34.328444pt;}
.fs1_c00485{font-size:63.921837pt;}
.fs0_c00485{font-size:63.961814pt;}
.y0_c00485{bottom:0.000000pt;}
.y1_c00485{bottom:0.000007pt;}
.y11_c00485{bottom:26.805533pt;}
.y6_c00485{bottom:652.622968pt;}
.y5_c00485{bottom:679.606858pt;}
.y4_c00485{bottom:706.590749pt;}
.y3_c00485{bottom:733.574639pt;}
.y2_c00485{bottom:760.558529pt;}
.y7_c00485{bottom:791.094173pt;}
.yd_c00485{bottom:821.696378pt;}
.yc_c00485{bottom:848.680269pt;}
.yb_c00485{bottom:875.664159pt;}
.ya_c00485{bottom:902.648050pt;}
.y9_c00485{bottom:929.631940pt;}
.y8_c00485{bottom:962.713891pt;}
.y10_c00485{bottom:1012.952051pt;}
.yf_c00485{bottom:1039.935941pt;}
.ye_c00485{bottom:1066.919832pt;}
.h4_c00485{height:48.971369pt;}
.h3_c00485{height:49.001996pt;}
.h2_c00485{height:1159.999952pt;}
.h0_c00485{height:1159.999959pt;}
.h1_c00485{height:1160.000000pt;}
.w2_c00485{width:830.999965pt;}
.w0_c00485{width:831.000000pt;}
.w1_c00485{width:831.333333pt;}
.x0_c00485{left:0.000000pt;}
.x2_c00485{left:78.089069pt;}
.x1_c00485{left:79.496944pt;}
.x3_c00485{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52f07357420c618eed973de0.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:0.769531;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:0.734863;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:1.006348;font-style:normal;font-weight: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_353caf36247a293055b6ef6f.woff2')format("woff");}.ff5_c00486{font-family:ff5_c00486;line-height:0.769531;font-style:normal;font-weight: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_c00486;src:url('chunks/assets/font_dad443abfa1465c6d0977700.woff2')format("woff");}.ff6_c00486{font-family:ff6_c00486;line-height:1.171387;font-style:normal;font-weight: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_c00486;src:url('chunks/assets/font_c442a0fac2ea7f20d8627de3.woff2')format("woff");}.ff7_c00486{font-family:ff7_c00486;line-height:1.000000;font-style:normal;font-weight: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_c00486;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff8_c00486{font-family:ff8_c00486;line-height:0.743000;font-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_c00486{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3d_c00486{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m29_c00486{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00486{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2a_c00486{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3c_c00486{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00486{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m15_c00486{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00486{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2b_c00486{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m28_c00486{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m16_c00486{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00486{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2c_c00486{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3b_c00486{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00486{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m17_c00486{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m27_c00486{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00486{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00486{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2d_c00486{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m18_c00486{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3a_c00486{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m26_c00486{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00486{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00486{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m19_c00486{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2e_c00486{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m39_c00486{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00486{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m25_c00486{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1a_c00486{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00486{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m2f_c00486{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m38_c00486{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m24_c00486{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00486{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m23_c00486{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00486{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m30_c00486{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1b_c00486{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m37_c00486{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m22_c00486{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00486{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m31_c00486{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00486{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m21_c00486{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00486{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m32_c00486{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1c_c00486{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00486{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m33_c00486{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m20_c00486{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m36_c00486{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1d_c00486{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00486{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00486{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m34_c00486{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1e_c00486{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m1f_c00486{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m35_c00486{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00486{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m3e_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);}
.v0_c00486{vertical-align:0.000000px;}
.v1_c00486{vertical-align:8.961696px;}
.ls0_c00486{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00486{word-spacing:-18.680283px;}
.ws3_c00486{word-spacing:-14.474592px;}
.ws4_c00486{word-spacing:0.000000px;}
.ws0_c00486{word-spacing:275.967713px;}
.ws1_c00486{word-spacing:281.470806px;}
._3_c00486{width:1.174289px;}
._1_c00486{width:2.830308px;}
._4_c00486{width:3.921082px;}
._0_c00486{width:6.200280px;}
._2_c00486{width:26.924395px;}
.fc1_c00486{color:rgb(102,18,18);}
.fc2_c00486{color:rgb(255,255,255);}
.fc0_c00486{color:rgb(0,0,0);}
.fs6_c00486{font-size:41.974772px;}
.fsb_c00486{font-size:41.975069px;}
.fs1_c00486{font-size:47.339969px;}
.fs4_c00486{font-size:47.339970px;}
.fs0_c00486{font-size:47.339972px;}
.fs3_c00486{font-size:47.339973px;}
.fs2_c00486{font-size:47.339974px;}
.fs5_c00486{font-size:47.339975px;}
.fs7_c00486{font-size:55.171880px;}
.fsf_c00486{font-size:55.721735px;}
.fsa_c00486{font-size:59.949210px;}
.fse_c00486{font-size:71.912067px;}
.fs8_c00486{font-size:71.957041px;}
.fsd_c00486{font-size:76.965540px;}
.fs9_c00486{font-size:83.919899px;}
.fsc_c00486{font-size:95.927731px;}
.y0_c00486{bottom:0.000000px;}
.y1_c00486{bottom:0.000008px;}
.y52_c00486{bottom:30.156225px;}
.y4a_c00486{bottom:123.194211px;}
.y49_c00486{bottom:153.551088px;}
.y48_c00486{bottom:183.907965px;}
.y47_c00486{bottom:214.264841px;}
.y46_c00486{bottom:244.621718px;}
.y45_c00486{bottom:274.978595px;}
.y44_c00486{bottom:305.335472px;}
.y4b_c00486{bottom:337.613888px;}
.y43_c00486{bottom:404.910520px;}
.y40_c00486{bottom:487.376458px;}
.yf_c00486{bottom:493.812629px;}
.y37_c00486{bottom:493.827623px;}
.ye_c00486{bottom:494.337609px;}
.y38_c00486{bottom:494.357158px;}
.y21_c00486{bottom:494.700737px;}
.y36_c00486{bottom:495.071586px;}
.yd_c00486{bottom:495.403002px;}
.y22_c00486{bottom:495.533530px;}
.y20_c00486{bottom:495.553663px;}
.y35_c00486{bottom:496.322201px;}
.yc_c00486{bottom:496.475623px;}
.y1f_c00486{bottom:496.587915px;}
.y39_c00486{bottom:496.772260px;}
.y10_c00486{bottom:496.835884px;}
.y23_c00486{bottom:497.713596px;}
.y34_c00486{bottom:497.966053px;}
.yb_c00486{bottom:498.126234px;}
.y1e_c00486{bottom:498.789265px;}
.y24_c00486{bottom:499.103521px;}
.y33_c00486{bottom:499.653306px;}
.ya_c00486{bottom:499.818769px;}
.y25_c00486{bottom:500.800864px;}
.y11_c00486{bottom:501.110605px;}
.y32_c00486{bottom:501.517382px;}
.y9_c00486{bottom:501.687706px;}
.y3a_c00486{bottom:501.869915px;}
.y1d_c00486{bottom:502.578702px;}
.y26_c00486{bottom:503.241722px;}
.y12_c00486{bottom:503.627848px;}
.y3b_c00486{bottom:505.496019px;}
.y27_c00486{bottom:505.499367px;}
.y31_c00486{bottom:506.168989px;}
.y8_c00486{bottom:506.348634px;}
.y1c_c00486{bottom:508.044213px;}
.y28_c00486{bottom:508.766327px;}
.y13_c00486{bottom:509.576794px;}
.y3c_c00486{bottom:511.126534px;}
.y1b_c00486{bottom:512.508085px;}
.y30_c00486{bottom:512.566592px;}
.y7_c00486{bottom:512.754669px;}
.y14_c00486{bottom:514.322677px;}
.y29_c00486{bottom:517.158603px;}
.y3d_c00486{bottom:517.780195px;}
.y1a_c00486{bottom:518.929057px;}
.y2f_c00486{bottom:519.869222px;}
.y6_c00486{bottom:519.959421px;}
.y5_c00486{bottom:523.416158px;}
.y19_c00486{bottom:523.496236px;}
.y2a_c00486{bottom:525.202812px;}
.y15_c00486{bottom:526.099549px;}
.y2e_c00486{bottom:527.026630px;}
.y4_c00486{bottom:529.422883px;}
.y3e_c00486{bottom:529.736175px;}
.y18_c00486{bottom:531.263725px;}
.y2d_c00486{bottom:531.792993px;}
.y51_c00486{bottom:532.181392px;}
.y17_c00486{bottom:535.155114px;}
.y3_c00486{bottom:536.678099px;}
.y2c_c00486{bottom:537.961701px;}
.y16_c00486{bottom:538.332892px;}
.y3f_c00486{bottom:538.696314px;}
.y41_c00486{bottom:540.431168px;}
.y2b_c00486{bottom:545.020884px;}
.y2_c00486{bottom:546.207017px;}
.y42_c00486{bottom:577.871130px;}
.y53_c00486{bottom:639.489911px;}
.y4f_c00486{bottom:1130.692613px;}
.y4d_c00486{bottom:1132.026818px;}
.y4c_c00486{bottom:1150.016079px;}
.y50_c00486{bottom:1153.707733px;}
.y4e_c00486{bottom:1170.658440px;}
.h9_c00486{height:32.157430px;}
.h7_c00486{height:35.967282px;}
.h6_c00486{height:35.967283px;}
.h8_c00486{height:35.967285px;}
.h4_c00486{height:36.267779px;}
.h3_c00486{height:36.267781px;}
.h5_c00486{height:36.267783px;}
.he_c00486{height:39.085184px;}
.ha_c00486{height:40.005001px;}
.h13_c00486{height:51.885424px;}
.h12_c00486{height:55.092790px;}
.hb_c00486{height:55.127245px;}
.hd_c00486{height:55.821847px;}
.hc_c00486{height:63.759455px;}
.h11_c00486{height:65.223506px;}
.hf_c00486{height:67.002968px;}
.h10_c00486{height:89.323331px;}
.h2_c00486{height:1304.999946px;}
.h0_c00486{height:1304.999953px;}
.h1_c00486{height:1305.000000px;}
.w2_c00486{width:934.874961px;}
.w0_c00486{width:934.875000px;}
.w1_c00486{width:935.250000px;}
.x0_c00486{left:0.000000px;}
.x3a_c00486{left:87.850202px;}
.x3b_c00486{left:108.062661px;}
.x3c_c00486{left:109.658623px;}
.x26_c00486{left:134.894322px;}
.x25_c00486{left:136.566734px;}
.x27_c00486{left:139.937719px;}
.x28_c00486{left:144.785273px;}
.x29_c00486{left:150.147890px;}
.x2a_c00486{left:152.899057px;}
.x2b_c00486{left:155.907145px;}
.x2c_c00486{left:159.752336px;}
.x2d_c00486{left:163.203941px;}
.x2e_c00486{left:171.483965px;}
.x2f_c00486{left:179.748684px;}
.x30_c00486{left:188.175145px;}
.x31_c00486{left:196.556636px;}
.x32_c00486{left:200.721504px;}
.x33_c00486{left:205.276922px;}
.x34_c00486{left:209.084069px;}
.x35_c00486{left:211.669316px;}
.x2_c00486{left:230.260919px;}
.x1_c00486{left:232.395871px;}
.x3_c00486{left:235.482735px;}
.x4_c00486{left:240.319117px;}
.x5_c00486{left:245.673577px;}
.x6_c00486{left:248.421493px;}
.x7_c00486{left:251.426626px;}
.x8_c00486{left:255.268917px;}
.x9_c00486{left:258.553698px;}
.xa_c00486{left:262.988294px;}
.xb_c00486{left:271.601212px;}
.xc_c00486{left:283.434780px;}
.xd_c00486{left:290.867654px;}
.xe_c00486{left:294.260334px;}
.xf_c00486{left:299.596701px;}
.x10_c00486{left:302.984150px;}
.x11_c00486{left:306.993562px;}
.x12_c00486{left:325.378518px;}
.x13_c00486{left:326.595106px;}
.x14_c00486{left:328.015253px;}
.x15_c00486{left:331.410444px;}
.x16_c00486{left:334.633053px;}
.x17_c00486{left:340.511825px;}
.x18_c00486{left:346.695139px;}
.x19_c00486{left:352.384720px;}
.x1a_c00486{left:355.792694px;}
.x1b_c00486{left:363.695116px;}
.x1c_c00486{left:371.679253px;}
.x1d_c00486{left:378.434940px;}
.x1e_c00486{left:381.453328px;}
.x1f_c00486{left:384.455783px;}
.x20_c00486{left:387.851715px;}
.x21_c00486{left:390.467224px;}
.x22_c00486{left:393.779799px;}
.x23_c00486{left:398.952070px;}
.x24_c00486{left:401.755082px;}
.x3d_c00486{left:451.985828px;}
.x37_c00486{left:464.618828px;}
.x3e_c00486{left:681.312320px;}
.x39_c00486{left:691.431927px;}
.x38_c00486{left:733.103068px;}
.x36_c00486{left:756.637341px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.v1_c00486{vertical-align:7.965952pt;}
.ls0_c00486{letter-spacing:0.000000pt;}
.ws2_c00486{word-spacing:-16.604696pt;}
.ws3_c00486{word-spacing:-12.866304pt;}
.ws4_c00486{word-spacing:0.000000pt;}
.ws0_c00486{word-spacing:245.304634pt;}
.ws1_c00486{word-spacing:250.196272pt;}
._3_c00486{width:1.043812pt;}
._1_c00486{width:2.515830pt;}
._4_c00486{width:3.485406pt;}
._0_c00486{width:5.511360pt;}
._2_c00486{width:23.932795pt;}
.fs6_c00486{font-size:37.310908pt;}
.fsb_c00486{font-size:37.311173pt;}
.fs1_c00486{font-size:42.079973pt;}
.fs4_c00486{font-size:42.079974pt;}
.fs0_c00486{font-size:42.079975pt;}
.fs3_c00486{font-size:42.079976pt;}
.fs2_c00486{font-size:42.079977pt;}
.fs5_c00486{font-size:42.079978pt;}
.fs7_c00486{font-size:49.041671pt;}
.fsf_c00486{font-size:49.530431pt;}
.fsa_c00486{font-size:53.288186pt;}
.fse_c00486{font-size:63.921837pt;}
.fs8_c00486{font-size:63.961814pt;}
.fsd_c00486{font-size:68.413814pt;}
.fs9_c00486{font-size:74.595466pt;}
.fsc_c00486{font-size:85.269094pt;}
.y0_c00486{bottom:0.000000pt;}
.y1_c00486{bottom:0.000007pt;}
.y52_c00486{bottom:26.805533pt;}
.y4a_c00486{bottom:109.505965pt;}
.y49_c00486{bottom:136.489856pt;}
.y48_c00486{bottom:163.473746pt;}
.y47_c00486{bottom:190.457637pt;}
.y46_c00486{bottom:217.441527pt;}
.y45_c00486{bottom:244.425418pt;}
.y44_c00486{bottom:271.409308pt;}
.y4b_c00486{bottom:300.101234pt;}
.y43_c00486{bottom:359.920462pt;}
.y40_c00486{bottom:433.223518pt;}
.yf_c00486{bottom:438.944560pt;}
.y37_c00486{bottom:438.957887pt;}
.ye_c00486{bottom:439.411208pt;}
.y38_c00486{bottom:439.428585pt;}
.y21_c00486{bottom:439.733989pt;}
.y36_c00486{bottom:440.063632pt;}
.yd_c00486{bottom:440.358224pt;}
.y22_c00486{bottom:440.474249pt;}
.y20_c00486{bottom:440.492144pt;}
.y35_c00486{bottom:441.175290pt;}
.yc_c00486{bottom:441.311665pt;}
.y1f_c00486{bottom:441.411480pt;}
.y39_c00486{bottom:441.575343pt;}
.y10_c00486{bottom:441.631897pt;}
.y23_c00486{bottom:442.412085pt;}
.y34_c00486{bottom:442.636491pt;}
.yb_c00486{bottom:442.778875pt;}
.y1e_c00486{bottom:443.368235pt;}
.y24_c00486{bottom:443.647574pt;}
.y33_c00486{bottom:444.136272pt;}
.ya_c00486{bottom:444.283350pt;}
.y25_c00486{bottom:445.156323pt;}
.y11_c00486{bottom:445.431649pt;}
.y32_c00486{bottom:445.793228pt;}
.y9_c00486{bottom:445.944627pt;}
.y3a_c00486{bottom:446.106592pt;}
.y1d_c00486{bottom:446.736624pt;}
.y26_c00486{bottom:447.325975pt;}
.y12_c00486{bottom:447.669198pt;}
.y3b_c00486{bottom:449.329795pt;}
.y27_c00486{bottom:449.332771pt;}
.y31_c00486{bottom:449.927990pt;}
.y8_c00486{bottom:450.087675pt;}
.y1c_c00486{bottom:451.594856pt;}
.y28_c00486{bottom:452.236735pt;}
.y13_c00486{bottom:452.957150pt;}
.y3c_c00486{bottom:454.334697pt;}
.y1b_c00486{bottom:455.562742pt;}
.y30_c00486{bottom:455.614749pt;}
.y7_c00486{bottom:455.781928pt;}
.y14_c00486{bottom:457.175713pt;}
.y29_c00486{bottom:459.696536pt;}
.y3d_c00486{bottom:460.249062pt;}
.y1a_c00486{bottom:461.270273pt;}
.y2f_c00486{bottom:462.105976pt;}
.y6_c00486{bottom:462.186152pt;}
.y5_c00486{bottom:465.258807pt;}
.y19_c00486{bottom:465.329988pt;}
.y2a_c00486{bottom:466.846944pt;}
.y15_c00486{bottom:467.644044pt;}
.y2e_c00486{bottom:468.468115pt;}
.y4_c00486{bottom:470.598118pt;}
.y3e_c00486{bottom:470.876600pt;}
.y18_c00486{bottom:472.234422pt;}
.y2d_c00486{bottom:472.704883pt;}
.y51_c00486{bottom:473.050126pt;}
.y17_c00486{bottom:475.693435pt;}
.y3_c00486{bottom:477.047199pt;}
.y2c_c00486{bottom:478.188178pt;}
.y16_c00486{bottom:478.518126pt;}
.y3f_c00486{bottom:478.841168pt;}
.y41_c00486{bottom:480.383260pt;}
.y2b_c00486{bottom:484.463008pt;}
.y2_c00486{bottom:485.517349pt;}
.y42_c00486{bottom:513.663227pt;}
.y53_c00486{bottom:568.435476pt;}
.y4f_c00486{bottom:1005.060100pt;}
.y4d_c00486{bottom:1006.246061pt;}
.y4c_c00486{bottom:1022.236514pt;}
.y50_c00486{bottom:1025.517985pt;}
.y4e_c00486{bottom:1040.585280pt;}
.h9_c00486{height:28.584382pt;}
.h7_c00486{height:31.970917pt;}
.h6_c00486{height:31.970918pt;}
.h8_c00486{height:31.970920pt;}
.h4_c00486{height:32.238026pt;}
.h3_c00486{height:32.238028pt;}
.h5_c00486{height:32.238029pt;}
.he_c00486{height:34.742386pt;}
.ha_c00486{height:35.560001pt;}
.h13_c00486{height:46.120377pt;}
.h12_c00486{height:48.971369pt;}
.hb_c00486{height:49.001996pt;}
.hd_c00486{height:49.619420pt;}
.hc_c00486{height:56.675071pt;}
.h11_c00486{height:57.976449pt;}
.hf_c00486{height:59.558193pt;}
.h10_c00486{height:79.398517pt;}
.h2_c00486{height:1159.999952pt;}
.h0_c00486{height:1159.999959pt;}
.h1_c00486{height:1160.000000pt;}
.w2_c00486{width:830.999965pt;}
.w0_c00486{width:831.000000pt;}
.w1_c00486{width:831.333333pt;}
.x0_c00486{left:0.000000pt;}
.x3a_c00486{left:78.089069pt;}
.x3b_c00486{left:96.055698pt;}
.x3c_c00486{left:97.474332pt;}
.x26_c00486{left:119.906064pt;}
.x25_c00486{left:121.392652pt;}
.x27_c00486{left:124.389083pt;}
.x28_c00486{left:128.698021pt;}
.x29_c00486{left:133.464791pt;}
.x2a_c00486{left:135.910272pt;}
.x2b_c00486{left:138.584129pt;}
.x2c_c00486{left:142.002076pt;}
.x2d_c00486{left:145.070170pt;}
.x2e_c00486{left:152.430191pt;}
.x2f_c00486{left:159.776608pt;}
.x30_c00486{left:167.266795pt;}
.x31_c00486{left:174.717010pt;}
.x32_c00486{left:178.419115pt;}
.x33_c00486{left:182.468375pt;}
.x34_c00486{left:185.852506pt;}
.x35_c00486{left:188.150503pt;}
.x2_c00486{left:204.676373pt;}
.x1_c00486{left:206.574107pt;}
.x3_c00486{left:209.317987pt;}
.x4_c00486{left:213.616993pt;}
.x5_c00486{left:218.376513pt;}
.x6_c00486{left:220.819105pt;}
.x7_c00486{left:223.490334pt;}
.x8_c00486{left:226.905704pt;}
.x9_c00486{left:229.825509pt;}
.xa_c00486{left:233.767373pt;}
.xb_c00486{left:241.423300pt;}
.xc_c00486{left:251.942027pt;}
.xd_c00486{left:258.549026pt;}
.xe_c00486{left:261.564741pt;}
.xf_c00486{left:266.308178pt;}
.x10_c00486{left:269.319244pt;}
.x11_c00486{left:272.883167pt;}
.x12_c00486{left:289.225349pt;}
.x13_c00486{left:290.306761pt;}
.x14_c00486{left:291.569114pt;}
.x15_c00486{left:294.587062pt;}
.x16_c00486{left:297.451603pt;}
.x17_c00486{left:302.677178pt;}
.x18_c00486{left:308.173457pt;}
.x19_c00486{left:313.230862pt;}
.x1a_c00486{left:316.260173pt;}
.x1b_c00486{left:323.284548pt;}
.x1c_c00486{left:330.381558pt;}
.x1d_c00486{left:336.386614pt;}
.x1e_c00486{left:339.069625pt;}
.x1f_c00486{left:341.738474pt;}
.x20_c00486{left:344.757080pt;}
.x21_c00486{left:347.081977pt;}
.x22_c00486{left:350.026488pt;}
.x23_c00486{left:354.624063pt;}
.x24_c00486{left:357.115628pt;}
.x3d_c00486{left:401.765180pt;}
.x37_c00486{left:412.994514pt;}
.x3e_c00486{left:605.610951pt;}
.x39_c00486{left:614.606158pt;}
.x38_c00486{left:651.647171pt;}
.x36_c00486{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3715fb349d535867f297bb1.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.171387;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.006348;font-style:normal;font-weight:normal;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_066a2044491d3e7ca501dd50.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.000000;font-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_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);}
.v0_c00487{vertical-align:0.000000px;}
.ls1_c00487{letter-spacing:0.000000px;}
.ls0_c00487{letter-spacing:14.264921px;}
.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;}
}
.ws0_c00487{word-spacing:-18.691966px;}
.ws1_c00487{word-spacing:-18.680283px;}
.ws2_c00487{word-spacing:0.000000px;}
._0_c00487{width:1.917342px;}
._9_c00487{width:3.089569px;}
._a_c00487{width:5.172075px;}
._8_c00487{width:6.263393px;}
._6_c00487{width:7.308138px;}
._3_c00487{width:12.460053px;}
._1_c00487{width:13.507521px;}
._7_c00487{width:15.092591px;}
._d_c00487{width:16.132100px;}
._b_c00487{width:17.388662px;}
._4_c00487{width:20.132514px;}
._2_c00487{width:25.740085px;}
._c_c00487{width:27.473792px;}
._5_c00487{width:28.642246px;}
.fc1_c00487{color:rgb(102,18,18);}
.fc0_c00487{color:rgb(0,0,0);}
.fs1_c00487{font-size:71.912067px;}
.fs0_c00487{font-size:71.957041px;}
.y0_c00487{bottom:0.000000px;}
.y1_c00487{bottom:0.000008px;}
.y1e_c00487{bottom:30.156225px;}
.y1c_c00487{bottom:256.780144px;}
.y1b_c00487{bottom:287.137021px;}
.y1a_c00487{bottom:317.493898px;}
.y19_c00487{bottom:347.850775px;}
.y18_c00487{bottom:378.207651px;}
.y17_c00487{bottom:438.921405px;}
.y16_c00487{bottom:469.278282px;}
.y15_c00487{bottom:499.635158px;}
.y14_c00487{bottom:529.992035px;}
.y13_c00487{bottom:560.348912px;}
.y12_c00487{bottom:590.705789px;}
.y11_c00487{bottom:621.062666px;}
.y10_c00487{bottom:651.419542px;}
.yf_c00487{bottom:681.776419px;}
.ye_c00487{bottom:712.133296px;}
.yd_c00487{bottom:742.490173px;}
.yc_c00487{bottom:772.847049px;}
.yb_c00487{bottom:803.203926px;}
.ya_c00487{bottom:833.560803px;}
.y9_c00487{bottom:863.917680px;}
.y8_c00487{bottom:894.274556px;}
.y1d_c00487{bottom:931.662633px;}
.y7_c00487{bottom:1000.696427px;}
.y6_c00487{bottom:1031.053304px;}
.y5_c00487{bottom:1068.756027px;}
.y4_c00487{bottom:1137.871429px;}
.y3_c00487{bottom:1168.228306px;}
.y2_c00487{bottom:1198.585183px;}
.h4_c00487{height:55.127245px;}
.h5_c00487{height:66.961090px;}
.h3_c00487{height:67.002968px;}
.h2_c00487{height:1304.999946px;}
.h0_c00487{height:1304.999953px;}
.h1_c00487{height:1305.000000px;}
.w2_c00487{width:934.874961px;}
.w0_c00487{width:934.875000px;}
.w1_c00487{width:935.250000px;}
.x0_c00487{left:0.000000px;}
.x2_c00487{left:87.850202px;}
.x1_c00487{left:90.790902px;}
.x3_c00487{left:451.985828px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls1_c00487{letter-spacing:0.000000pt;}
.ls0_c00487{letter-spacing:12.679930pt;}
.ws0_c00487{word-spacing:-16.615081pt;}
.ws1_c00487{word-spacing:-16.604696pt;}
.ws2_c00487{word-spacing:0.000000pt;}
._0_c00487{width:1.704304pt;}
._9_c00487{width:2.746283pt;}
._a_c00487{width:4.597400pt;}
._8_c00487{width:5.567460pt;}
._6_c00487{width:6.496123pt;}
._3_c00487{width:11.075603pt;}
._1_c00487{width:12.006685pt;}
._7_c00487{width:13.415637pt;}
._d_c00487{width:14.339645pt;}
._b_c00487{width:15.456588pt;}
._4_c00487{width:17.895568pt;}
._2_c00487{width:22.880076pt;}
._c_c00487{width:24.421149pt;}
._5_c00487{width:25.459774pt;}
.fs1_c00487{font-size:63.921837pt;}
.fs0_c00487{font-size:63.961814pt;}
.y0_c00487{bottom:0.000000pt;}
.y1_c00487{bottom:0.000007pt;}
.y1e_c00487{bottom:26.805533pt;}
.y1c_c00487{bottom:228.249017pt;}
.y1b_c00487{bottom:255.232908pt;}
.y1a_c00487{bottom:282.216798pt;}
.y19_c00487{bottom:309.200689pt;}
.y18_c00487{bottom:336.184579pt;}
.y17_c00487{bottom:390.152360pt;}
.y16_c00487{bottom:417.136250pt;}
.y15_c00487{bottom:444.120141pt;}
.y14_c00487{bottom:471.104031pt;}
.y13_c00487{bottom:498.087922pt;}
.y12_c00487{bottom:525.071812pt;}
.y11_c00487{bottom:552.055703pt;}
.y10_c00487{bottom:579.039593pt;}
.yf_c00487{bottom:606.023484pt;}
.ye_c00487{bottom:633.007374pt;}
.yd_c00487{bottom:659.991265pt;}
.yc_c00487{bottom:686.975155pt;}
.yb_c00487{bottom:713.959045pt;}
.ya_c00487{bottom:740.942936pt;}
.y9_c00487{bottom:767.926826pt;}
.y8_c00487{bottom:794.910717pt;}
.y1d_c00487{bottom:828.144562pt;}
.y7_c00487{bottom:889.507935pt;}
.y6_c00487{bottom:916.491825pt;}
.y5_c00487{bottom:950.005357pt;}
.y4_c00487{bottom:1011.441270pt;}
.y3_c00487{bottom:1038.425161pt;}
.y2_c00487{bottom:1065.409051pt;}
.h4_c00487{height:49.001996pt;}
.h5_c00487{height:59.520969pt;}
.h3_c00487{height:59.558193pt;}
.h2_c00487{height:1159.999952pt;}
.h0_c00487{height:1159.999959pt;}
.h1_c00487{height:1160.000000pt;}
.w2_c00487{width:830.999965pt;}
.w0_c00487{width:831.000000pt;}
.w1_c00487{width:831.333333pt;}
.x0_c00487{left:0.000000pt;}
.x2_c00487{left:78.089069pt;}
.x1_c00487{left:80.703024pt;}
.x3_c00487{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_149f87a454746d4594101f2b.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.006348;font-style:normal;font-weight:normal;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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.006348;font-style:normal;font-weight:normal;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_5146fb13fd32297db78b24ef.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.000000;font-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_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);}
.v0_c00488{vertical-align:0.000000px;}
.ls0_c00488{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00488{word-spacing:-18.680283px;}
.ws1_c00488{word-spacing:0.000000px;}
._1_c00488{width:1.116359px;}
._0_c00488{width:2.297242px;}
._4_c00488{width:8.648628px;}
._3_c00488{width:11.166567px;}
._2_c00488{width:20.710598px;}
.fc1_c00488{color:rgb(102,18,18);}
.fc0_c00488{color:rgb(0,0,0);}
.fs1_c00488{font-size:71.912067px;}
.fs0_c00488{font-size:71.957041px;}
.y0_c00488{bottom:0.000000px;}
.y1_c00488{bottom:0.000008px;}
.yb_c00488{bottom:30.156225px;}
.y3_c00488{bottom:899.406989px;}
.y2_c00488{bottom:929.763866px;}
.y4_c00488{bottom:964.116462px;}
.ya_c00488{bottom:1035.553050px;}
.y9_c00488{bottom:1065.909926px;}
.y8_c00488{bottom:1096.266803px;}
.y7_c00488{bottom:1126.623680px;}
.y6_c00488{bottom:1156.980557px;}
.y5_c00488{bottom:1194.197788px;}
.h4_c00488{height:55.092790px;}
.h3_c00488{height:55.127245px;}
.h2_c00488{height:1304.999946px;}
.h0_c00488{height:1304.999953px;}
.h1_c00488{height:1305.000000px;}
.w2_c00488{width:934.874961px;}
.w0_c00488{width:934.875000px;}
.w1_c00488{width:935.250000px;}
.x0_c00488{left:0.000000px;}
.x2_c00488{left:87.850202px;}
.x1_c00488{left:89.434062px;}
.x3_c00488{left:451.985828px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:-16.604696pt;}
.ws1_c00488{word-spacing:0.000000pt;}
._1_c00488{width:0.992319pt;}
._0_c00488{width:2.041993pt;}
._4_c00488{width:7.687670pt;}
._3_c00488{width:9.925837pt;}
._2_c00488{width:18.409420pt;}
.fs1_c00488{font-size:63.921837pt;}
.fs0_c00488{font-size:63.961814pt;}
.y0_c00488{bottom:0.000000pt;}
.y1_c00488{bottom:0.000007pt;}
.yb_c00488{bottom:26.805533pt;}
.y3_c00488{bottom:799.472879pt;}
.y2_c00488{bottom:826.456770pt;}
.y4_c00488{bottom:856.992411pt;}
.ya_c00488{bottom:920.491600pt;}
.y9_c00488{bottom:947.475490pt;}
.y8_c00488{bottom:974.459381pt;}
.y7_c00488{bottom:1001.443271pt;}
.y6_c00488{bottom:1028.427162pt;}
.y5_c00488{bottom:1061.509145pt;}
.h4_c00488{height:48.971369pt;}
.h3_c00488{height:49.001996pt;}
.h2_c00488{height:1159.999952pt;}
.h0_c00488{height:1159.999959pt;}
.h1_c00488{height:1160.000000pt;}
.w2_c00488{width:830.999965pt;}
.w0_c00488{width:831.000000pt;}
.w1_c00488{width:831.333333pt;}
.x0_c00488{left:0.000000pt;}
.x2_c00488{left:78.089069pt;}
.x1_c00488{left:79.496944pt;}
.x3_c00488{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c25543abe7e6ad620e2cb80.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:0.769531;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:0.734863;font-style:normal;font-weight:normal;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_b63d3f46ef25df80daab9006.woff2')format("woff");}.ff4_c00489{font-family:ff4_c00489;line-height:0.964355;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff5_c00489{font-family:ff5_c00489;line-height:1.006348;font-style:normal;font-weight: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_c00489;src:url('chunks/assets/font_353caf36247a293055b6ef6f.woff2')format("woff");}.ff6_c00489{font-family:ff6_c00489;line-height:0.769531;font-style:normal;font-weight: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_c00489;src:url('chunks/assets/font_e58181bd8c2d5c5a96b28c4f.woff2')format("woff");}.ff7_c00489{font-family:ff7_c00489;line-height:1.171387;font-style:normal;font-weight: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_c00489;src:url('chunks/assets/font_b4cc6bc423dbb7af56310708.woff2')format("woff");}.ff8_c00489{font-family:ff8_c00489;line-height:1.000000;font-style:normal;font-weight: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_c00489;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff9_c00489{font-family:ff9_c00489;line-height:0.743000;font-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_c00489{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3d_c00489{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m29_c00489{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00489{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2a_c00489{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3c_c00489{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00489{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m15_c00489{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00489{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2b_c00489{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m28_c00489{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m16_c00489{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00489{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2c_c00489{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3b_c00489{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00489{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m17_c00489{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m27_c00489{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00489{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00489{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2d_c00489{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m18_c00489{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3a_c00489{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m26_c00489{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00489{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00489{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m19_c00489{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2e_c00489{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m39_c00489{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00489{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m25_c00489{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1a_c00489{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00489{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m2f_c00489{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m38_c00489{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m24_c00489{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00489{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m23_c00489{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00489{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m30_c00489{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1b_c00489{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m37_c00489{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m22_c00489{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00489{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m31_c00489{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00489{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m21_c00489{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00489{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m32_c00489{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1c_c00489{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00489{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m33_c00489{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m20_c00489{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m36_c00489{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1d_c00489{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00489{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00489{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m34_c00489{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1e_c00489{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m1f_c00489{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m35_c00489{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00489{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m3e_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);}
.v1_c00489{vertical-align:-67.802827px;}
.v0_c00489{vertical-align:0.000000px;}
.v2_c00489{vertical-align:8.961696px;}
.ls0_c00489{letter-spacing:0.000000px;}
.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;}
}
.ws4_c00489{word-spacing:-18.680283px;}
.ws5_c00489{word-spacing:-14.474592px;}
.ws0_c00489{word-spacing:-0.071957px;}
.ws6_c00489{word-spacing:0.000000px;}
.ws2_c00489{word-spacing:275.967713px;}
.ws3_c00489{word-spacing:281.470806px;}
.ws1_c00489{word-spacing:591.189799px;}
._4_c00489{width:1.365541px;}
._0_c00489{width:2.697250px;}
._1_c00489{width:5.175384px;}
._5_c00489{width:10.913553px;}
._6_c00489{width:21.142651px;}
._3_c00489{width:26.377807px;}
._2_c00489{width:40.436789px;}
.fc1_c00489{color:rgb(102,18,18);}
.fc2_c00489{color:rgb(255,255,255);}
.fc0_c00489{color:rgb(0,0,0);}
.fs6_c00489{font-size:41.974772px;}
.fsb_c00489{font-size:41.975069px;}
.fs1_c00489{font-size:47.339969px;}
.fs4_c00489{font-size:47.339970px;}
.fs0_c00489{font-size:47.339972px;}
.fs3_c00489{font-size:47.339973px;}
.fs2_c00489{font-size:47.339974px;}
.fs5_c00489{font-size:47.339975px;}
.fs7_c00489{font-size:55.171880px;}
.fsf_c00489{font-size:55.721735px;}
.fsa_c00489{font-size:59.949210px;}
.fse_c00489{font-size:71.912067px;}
.fs8_c00489{font-size:71.957041px;}
.fsd_c00489{font-size:76.965540px;}
.fs9_c00489{font-size:83.919899px;}
.fsc_c00489{font-size:95.927731px;}
.y0_c00489{bottom:0.000000px;}
.y1_c00489{bottom:0.000008px;}
.y52_c00489{bottom:30.156225px;}
.y4b_c00489{bottom:91.372170px;}
.y4a_c00489{bottom:121.729047px;}
.y49_c00489{bottom:152.085924px;}
.y48_c00489{bottom:182.442801px;}
.y47_c00489{bottom:212.799678px;}
.y46_c00489{bottom:243.156554px;}
.y45_c00489{bottom:273.513431px;}
.y44_c00489{bottom:303.870308px;}
.y4c_c00489{bottom:336.148832px;}
.y43_c00489{bottom:404.910520px;}
.y40_c00489{bottom:487.376458px;}
.yf_c00489{bottom:493.812629px;}
.y37_c00489{bottom:493.827623px;}
.ye_c00489{bottom:494.337609px;}
.y38_c00489{bottom:494.357158px;}
.y21_c00489{bottom:494.700737px;}
.y36_c00489{bottom:495.071586px;}
.yd_c00489{bottom:495.403002px;}
.y22_c00489{bottom:495.533530px;}
.y20_c00489{bottom:495.553663px;}
.y35_c00489{bottom:496.322201px;}
.yc_c00489{bottom:496.475623px;}
.y1f_c00489{bottom:496.587915px;}
.y39_c00489{bottom:496.772260px;}
.y10_c00489{bottom:496.835884px;}
.y23_c00489{bottom:497.713596px;}
.y34_c00489{bottom:497.966053px;}
.yb_c00489{bottom:498.126234px;}
.y1e_c00489{bottom:498.789265px;}
.y24_c00489{bottom:499.103521px;}
.y33_c00489{bottom:499.653306px;}
.ya_c00489{bottom:499.818769px;}
.y25_c00489{bottom:500.800864px;}
.y11_c00489{bottom:501.110605px;}
.y32_c00489{bottom:501.517382px;}
.y9_c00489{bottom:501.687706px;}
.y3a_c00489{bottom:501.869915px;}
.y1d_c00489{bottom:502.578702px;}
.y26_c00489{bottom:503.241722px;}
.y12_c00489{bottom:503.627848px;}
.y3b_c00489{bottom:505.496019px;}
.y27_c00489{bottom:505.499367px;}
.y31_c00489{bottom:506.168989px;}
.y8_c00489{bottom:506.348634px;}
.y1c_c00489{bottom:508.044213px;}
.y28_c00489{bottom:508.766327px;}
.y13_c00489{bottom:509.576794px;}
.y3c_c00489{bottom:511.126534px;}
.y1b_c00489{bottom:512.508085px;}
.y30_c00489{bottom:512.566592px;}
.y7_c00489{bottom:512.754669px;}
.y14_c00489{bottom:514.322677px;}
.y29_c00489{bottom:517.158603px;}
.y3d_c00489{bottom:517.780195px;}
.y1a_c00489{bottom:518.929057px;}
.y2f_c00489{bottom:519.869222px;}
.y6_c00489{bottom:519.959421px;}
.y5_c00489{bottom:523.416158px;}
.y19_c00489{bottom:523.496236px;}
.y2a_c00489{bottom:525.202812px;}
.y15_c00489{bottom:526.099549px;}
.y2e_c00489{bottom:527.026630px;}
.y4_c00489{bottom:529.422883px;}
.y3e_c00489{bottom:529.736175px;}
.y18_c00489{bottom:531.263725px;}
.y2d_c00489{bottom:531.792993px;}
.y51_c00489{bottom:532.181392px;}
.y17_c00489{bottom:535.155114px;}
.y3_c00489{bottom:536.678099px;}
.y2c_c00489{bottom:537.961701px;}
.y16_c00489{bottom:538.332892px;}
.y3f_c00489{bottom:538.696314px;}
.y41_c00489{bottom:540.431168px;}
.y2b_c00489{bottom:545.020884px;}
.y2_c00489{bottom:546.207017px;}
.y42_c00489{bottom:577.871130px;}
.y53_c00489{bottom:647.652730px;}
.y50_c00489{bottom:1130.692613px;}
.y4e_c00489{bottom:1132.026818px;}
.y4d_c00489{bottom:1150.016079px;}
.y4f_c00489{bottom:1170.658440px;}
.h9_c00489{height:32.157430px;}
.h7_c00489{height:35.967282px;}
.h6_c00489{height:35.967283px;}
.h8_c00489{height:35.967285px;}
.h4_c00489{height:36.267779px;}
.h3_c00489{height:36.267781px;}
.h5_c00489{height:36.267783px;}
.he_c00489{height:39.085184px;}
.ha_c00489{height:40.005001px;}
.h12_c00489{height:51.885424px;}
.h11_c00489{height:55.092790px;}
.hb_c00489{height:55.127245px;}
.hd_c00489{height:55.821847px;}
.hc_c00489{height:63.759455px;}
.h10_c00489{height:65.223506px;}
.hf_c00489{height:67.002968px;}
.h2_c00489{height:1304.999946px;}
.h0_c00489{height:1304.999953px;}
.h1_c00489{height:1305.000000px;}
.w2_c00489{width:934.874961px;}
.w0_c00489{width:934.875000px;}
.w1_c00489{width:935.250000px;}
.x0_c00489{left:0.000000px;}
.x3a_c00489{left:89.434062px;}
.x3b_c00489{left:108.062661px;}
.x3c_c00489{left:109.658623px;}
.x26_c00489{left:134.894322px;}
.x25_c00489{left:136.566734px;}
.x27_c00489{left:139.937719px;}
.x28_c00489{left:144.785273px;}
.x29_c00489{left:150.147890px;}
.x2a_c00489{left:152.899057px;}
.x2b_c00489{left:155.907145px;}
.x2c_c00489{left:159.752336px;}
.x2d_c00489{left:163.203941px;}
.x2e_c00489{left:171.483965px;}
.x2f_c00489{left:179.748684px;}
.x30_c00489{left:188.175145px;}
.x31_c00489{left:196.556636px;}
.x32_c00489{left:200.721504px;}
.x33_c00489{left:205.276922px;}
.x34_c00489{left:209.084069px;}
.x35_c00489{left:211.669316px;}
.x2_c00489{left:230.260919px;}
.x1_c00489{left:232.395871px;}
.x3_c00489{left:235.482735px;}
.x4_c00489{left:240.319117px;}
.x5_c00489{left:245.673577px;}
.x6_c00489{left:248.421493px;}
.x7_c00489{left:251.426626px;}
.x8_c00489{left:255.268917px;}
.x9_c00489{left:258.553698px;}
.xa_c00489{left:262.988294px;}
.xb_c00489{left:271.601212px;}
.xc_c00489{left:283.434780px;}
.xd_c00489{left:290.867654px;}
.xe_c00489{left:294.260334px;}
.xf_c00489{left:299.596701px;}
.x10_c00489{left:302.984150px;}
.x11_c00489{left:306.993562px;}
.x12_c00489{left:325.378518px;}
.x13_c00489{left:326.595106px;}
.x14_c00489{left:328.015253px;}
.x15_c00489{left:331.410444px;}
.x16_c00489{left:334.633053px;}
.x17_c00489{left:340.511825px;}
.x18_c00489{left:346.695139px;}
.x19_c00489{left:352.384720px;}
.x1a_c00489{left:355.792694px;}
.x1b_c00489{left:363.695116px;}
.x1c_c00489{left:371.679253px;}
.x1d_c00489{left:378.434940px;}
.x1e_c00489{left:381.453328px;}
.x1f_c00489{left:384.455783px;}
.x20_c00489{left:387.851715px;}
.x21_c00489{left:390.467224px;}
.x22_c00489{left:393.779799px;}
.x23_c00489{left:398.952070px;}
.x24_c00489{left:401.755082px;}
.x3d_c00489{left:451.985828px;}
.x37_c00489{left:464.618828px;}
.x39_c00489{left:691.431927px;}
.x3e_c00489{left:695.574079px;}
.x38_c00489{left:733.103068px;}
.x36_c00489{left:756.637341px;}
@media print{
.v1_c00489{vertical-align:-60.269179pt;}
.v0_c00489{vertical-align:0.000000pt;}
.v2_c00489{vertical-align:7.965952pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws4_c00489{word-spacing:-16.604696pt;}
.ws5_c00489{word-spacing:-12.866304pt;}
.ws0_c00489{word-spacing:-0.063962pt;}
.ws6_c00489{word-spacing:0.000000pt;}
.ws2_c00489{word-spacing:245.304634pt;}
.ws3_c00489{word-spacing:250.196272pt;}
.ws1_c00489{word-spacing:525.502043pt;}
._4_c00489{width:1.213814pt;}
._0_c00489{width:2.397556pt;}
._1_c00489{width:4.600341pt;}
._5_c00489{width:9.700936pt;}
._6_c00489{width:18.793467pt;}
._3_c00489{width:23.446939pt;}
._2_c00489{width:35.943813pt;}
.fs6_c00489{font-size:37.310908pt;}
.fsb_c00489{font-size:37.311173pt;}
.fs1_c00489{font-size:42.079973pt;}
.fs4_c00489{font-size:42.079974pt;}
.fs0_c00489{font-size:42.079975pt;}
.fs3_c00489{font-size:42.079976pt;}
.fs2_c00489{font-size:42.079977pt;}
.fs5_c00489{font-size:42.079978pt;}
.fs7_c00489{font-size:49.041671pt;}
.fsf_c00489{font-size:49.530431pt;}
.fsa_c00489{font-size:53.288186pt;}
.fse_c00489{font-size:63.921837pt;}
.fs8_c00489{font-size:63.961814pt;}
.fsd_c00489{font-size:68.413814pt;}
.fs9_c00489{font-size:74.595466pt;}
.fsc_c00489{font-size:85.269094pt;}
.y0_c00489{bottom:0.000000pt;}
.y1_c00489{bottom:0.000007pt;}
.y52_c00489{bottom:26.805533pt;}
.y4b_c00489{bottom:81.219707pt;}
.y4a_c00489{bottom:108.203598pt;}
.y49_c00489{bottom:135.187488pt;}
.y48_c00489{bottom:162.171378pt;}
.y47_c00489{bottom:189.155269pt;}
.y46_c00489{bottom:216.139159pt;}
.y45_c00489{bottom:243.123050pt;}
.y44_c00489{bottom:270.106940pt;}
.y4c_c00489{bottom:298.798962pt;}
.y43_c00489{bottom:359.920462pt;}
.y40_c00489{bottom:433.223518pt;}
.yf_c00489{bottom:438.944560pt;}
.y37_c00489{bottom:438.957887pt;}
.ye_c00489{bottom:439.411208pt;}
.y38_c00489{bottom:439.428585pt;}
.y21_c00489{bottom:439.733989pt;}
.y36_c00489{bottom:440.063632pt;}
.yd_c00489{bottom:440.358224pt;}
.y22_c00489{bottom:440.474249pt;}
.y20_c00489{bottom:440.492144pt;}
.y35_c00489{bottom:441.175290pt;}
.yc_c00489{bottom:441.311665pt;}
.y1f_c00489{bottom:441.411480pt;}
.y39_c00489{bottom:441.575343pt;}
.y10_c00489{bottom:441.631897pt;}
.y23_c00489{bottom:442.412085pt;}
.y34_c00489{bottom:442.636491pt;}
.yb_c00489{bottom:442.778875pt;}
.y1e_c00489{bottom:443.368235pt;}
.y24_c00489{bottom:443.647574pt;}
.y33_c00489{bottom:444.136272pt;}
.ya_c00489{bottom:444.283350pt;}
.y25_c00489{bottom:445.156323pt;}
.y11_c00489{bottom:445.431649pt;}
.y32_c00489{bottom:445.793228pt;}
.y9_c00489{bottom:445.944627pt;}
.y3a_c00489{bottom:446.106592pt;}
.y1d_c00489{bottom:446.736624pt;}
.y26_c00489{bottom:447.325975pt;}
.y12_c00489{bottom:447.669198pt;}
.y3b_c00489{bottom:449.329795pt;}
.y27_c00489{bottom:449.332771pt;}
.y31_c00489{bottom:449.927990pt;}
.y8_c00489{bottom:450.087675pt;}
.y1c_c00489{bottom:451.594856pt;}
.y28_c00489{bottom:452.236735pt;}
.y13_c00489{bottom:452.957150pt;}
.y3c_c00489{bottom:454.334697pt;}
.y1b_c00489{bottom:455.562742pt;}
.y30_c00489{bottom:455.614749pt;}
.y7_c00489{bottom:455.781928pt;}
.y14_c00489{bottom:457.175713pt;}
.y29_c00489{bottom:459.696536pt;}
.y3d_c00489{bottom:460.249062pt;}
.y1a_c00489{bottom:461.270273pt;}
.y2f_c00489{bottom:462.105976pt;}
.y6_c00489{bottom:462.186152pt;}
.y5_c00489{bottom:465.258807pt;}
.y19_c00489{bottom:465.329988pt;}
.y2a_c00489{bottom:466.846944pt;}
.y15_c00489{bottom:467.644044pt;}
.y2e_c00489{bottom:468.468115pt;}
.y4_c00489{bottom:470.598118pt;}
.y3e_c00489{bottom:470.876600pt;}
.y18_c00489{bottom:472.234422pt;}
.y2d_c00489{bottom:472.704883pt;}
.y51_c00489{bottom:473.050126pt;}
.y17_c00489{bottom:475.693435pt;}
.y3_c00489{bottom:477.047199pt;}
.y2c_c00489{bottom:478.188178pt;}
.y16_c00489{bottom:478.518126pt;}
.y3f_c00489{bottom:478.841168pt;}
.y41_c00489{bottom:480.383260pt;}
.y2b_c00489{bottom:484.463008pt;}
.y2_c00489{bottom:485.517349pt;}
.y42_c00489{bottom:513.663227pt;}
.y53_c00489{bottom:575.691316pt;}
.y50_c00489{bottom:1005.060100pt;}
.y4e_c00489{bottom:1006.246061pt;}
.y4d_c00489{bottom:1022.236514pt;}
.y4f_c00489{bottom:1040.585280pt;}
.h9_c00489{height:28.584382pt;}
.h7_c00489{height:31.970917pt;}
.h6_c00489{height:31.970918pt;}
.h8_c00489{height:31.970920pt;}
.h4_c00489{height:32.238026pt;}
.h3_c00489{height:32.238028pt;}
.h5_c00489{height:32.238029pt;}
.he_c00489{height:34.742386pt;}
.ha_c00489{height:35.560001pt;}
.h12_c00489{height:46.120377pt;}
.h11_c00489{height:48.971369pt;}
.hb_c00489{height:49.001996pt;}
.hd_c00489{height:49.619420pt;}
.hc_c00489{height:56.675071pt;}
.h10_c00489{height:57.976449pt;}
.hf_c00489{height:59.558193pt;}
.h2_c00489{height:1159.999952pt;}
.h0_c00489{height:1159.999959pt;}
.h1_c00489{height:1160.000000pt;}
.w2_c00489{width:830.999965pt;}
.w0_c00489{width:831.000000pt;}
.w1_c00489{width:831.333333pt;}
.x0_c00489{left:0.000000pt;}
.x3a_c00489{left:79.496944pt;}
.x3b_c00489{left:96.055698pt;}
.x3c_c00489{left:97.474332pt;}
.x26_c00489{left:119.906064pt;}
.x25_c00489{left:121.392652pt;}
.x27_c00489{left:124.389083pt;}
.x28_c00489{left:128.698021pt;}
.x29_c00489{left:133.464791pt;}
.x2a_c00489{left:135.910272pt;}
.x2b_c00489{left:138.584129pt;}
.x2c_c00489{left:142.002076pt;}
.x2d_c00489{left:145.070170pt;}
.x2e_c00489{left:152.430191pt;}
.x2f_c00489{left:159.776608pt;}
.x30_c00489{left:167.266795pt;}
.x31_c00489{left:174.717010pt;}
.x32_c00489{left:178.419115pt;}
.x33_c00489{left:182.468375pt;}
.x34_c00489{left:185.852506pt;}
.x35_c00489{left:188.150503pt;}
.x2_c00489{left:204.676373pt;}
.x1_c00489{left:206.574107pt;}
.x3_c00489{left:209.317987pt;}
.x4_c00489{left:213.616993pt;}
.x5_c00489{left:218.376513pt;}
.x6_c00489{left:220.819105pt;}
.x7_c00489{left:223.490334pt;}
.x8_c00489{left:226.905704pt;}
.x9_c00489{left:229.825509pt;}
.xa_c00489{left:233.767373pt;}
.xb_c00489{left:241.423300pt;}
.xc_c00489{left:251.942027pt;}
.xd_c00489{left:258.549026pt;}
.xe_c00489{left:261.564741pt;}
.xf_c00489{left:266.308178pt;}
.x10_c00489{left:269.319244pt;}
.x11_c00489{left:272.883167pt;}
.x12_c00489{left:289.225349pt;}
.x13_c00489{left:290.306761pt;}
.x14_c00489{left:291.569114pt;}
.x15_c00489{left:294.587062pt;}
.x16_c00489{left:297.451603pt;}
.x17_c00489{left:302.677178pt;}
.x18_c00489{left:308.173457pt;}
.x19_c00489{left:313.230862pt;}
.x1a_c00489{left:316.260173pt;}
.x1b_c00489{left:323.284548pt;}
.x1c_c00489{left:330.381558pt;}
.x1d_c00489{left:336.386614pt;}
.x1e_c00489{left:339.069625pt;}
.x1f_c00489{left:341.738474pt;}
.x20_c00489{left:344.757080pt;}
.x21_c00489{left:347.081977pt;}
.x22_c00489{left:350.026488pt;}
.x23_c00489{left:354.624063pt;}
.x24_c00489{left:357.115628pt;}
.x3d_c00489{left:401.765180pt;}
.x37_c00489{left:412.994514pt;}
.x39_c00489{left:614.606158pt;}
.x3e_c00489{left:618.288070pt;}
.x38_c00489{left:651.647171pt;}
.x36_c00489{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe306898a6e7f7df11da9789.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.006348;font-style:normal;font-weight:normal;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_857bac774935085cbad39967.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.006348;font-style:normal;font-weight:normal;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_248604541d78a74deaf5f230.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.000000;font-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_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);}
.v0_c00490{vertical-align:0.000000px;}
.ls0_c00490{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00490{word-spacing:-18.680283px;}
.ws0_c00490{word-spacing:-0.071957px;}
.ws2_c00490{word-spacing:0.000000px;}
._2_c00490{width:1.578340px;}
._5_c00490{width:3.185575px;}
._8_c00490{width:4.275864px;}
._9_c00490{width:6.816242px;}
._6_c00490{width:7.928830px;}
._1_c00490{width:9.791008px;}
._7_c00490{width:11.009073px;}
._0_c00490{width:12.197770px;}
._3_c00490{width:13.460729px;}
._4_c00490{width:40.184662px;}
._a_c00490{width:44.038496px;}
.fc1_c00490{color:rgb(102,18,18);}
.fc0_c00490{color:rgb(0,0,0);}
.fs1_c00490{font-size:71.912067px;}
.fs0_c00490{font-size:71.957041px;}
.y0_c00490{bottom:0.000000px;}
.y1_c00490{bottom:0.000008px;}
.y21_c00490{bottom:30.156225px;}
.y1f_c00490{bottom:178.192845px;}
.y1e_c00490{bottom:208.549721px;}
.y1d_c00490{bottom:238.906598px;}
.y1c_c00490{bottom:269.263475px;}
.y1b_c00490{bottom:299.620352px;}
.y1a_c00490{bottom:360.334105px;}
.y19_c00490{bottom:390.690982px;}
.y18_c00490{bottom:421.047859px;}
.y17_c00490{bottom:451.404735px;}
.y16_c00490{bottom:481.761612px;}
.y15_c00490{bottom:512.118489px;}
.y14_c00490{bottom:542.475366px;}
.y13_c00490{bottom:572.832243px;}
.y12_c00490{bottom:603.189119px;}
.y11_c00490{bottom:633.545996px;}
.y10_c00490{bottom:663.902873px;}
.y20_c00490{bottom:694.874046px;}
.yf_c00490{bottom:766.156464px;}
.ye_c00490{bottom:796.513341px;}
.yd_c00490{bottom:826.870218px;}
.yc_c00490{bottom:857.227094px;}
.yb_c00490{bottom:887.583971px;}
.ya_c00490{bottom:916.805512px;}
.y9_c00490{bottom:987.786674px;}
.y8_c00490{bottom:1018.143550px;}
.y7_c00490{bottom:1048.500427px;}
.y6_c00490{bottom:1078.857304px;}
.y5_c00490{bottom:1109.214181px;}
.y4_c00490{bottom:1139.571057px;}
.y3_c00490{bottom:1169.927934px;}
.y2_c00490{bottom:1200.284811px;}
.h4_c00490{height:55.092790px;}
.h3_c00490{height:55.127245px;}
.h2_c00490{height:1304.999946px;}
.h0_c00490{height:1304.999953px;}
.h1_c00490{height:1305.000000px;}
.w2_c00490{width:934.874961px;}
.w0_c00490{width:934.875000px;}
.w1_c00490{width:935.250000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:87.850202px;}
.x2_c00490{left:451.985828px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws1_c00490{word-spacing:-16.604696pt;}
.ws0_c00490{word-spacing:-0.063962pt;}
.ws2_c00490{word-spacing:0.000000pt;}
._2_c00490{width:1.402969pt;}
._5_c00490{width:2.831622pt;}
._8_c00490{width:3.800768pt;}
._9_c00490{width:6.058882pt;}
._6_c00490{width:7.047849pt;}
._1_c00490{width:8.703118pt;}
._7_c00490{width:9.785842pt;}
._0_c00490{width:10.842463pt;}
._3_c00490{width:11.965092pt;}
._4_c00490{width:35.719700pt;}
._a_c00490{width:39.145329pt;}
.fs1_c00490{font-size:63.921837pt;}
.fs0_c00490{font-size:63.961814pt;}
.y0_c00490{bottom:0.000000pt;}
.y1_c00490{bottom:0.000007pt;}
.y21_c00490{bottom:26.805533pt;}
.y1f_c00490{bottom:158.393640pt;}
.y1e_c00490{bottom:185.377530pt;}
.y1d_c00490{bottom:212.361421pt;}
.y1c_c00490{bottom:239.345311pt;}
.y1b_c00490{bottom:266.329201pt;}
.y1a_c00490{bottom:320.296982pt;}
.y19_c00490{bottom:347.280873pt;}
.y18_c00490{bottom:374.264763pt;}
.y17_c00490{bottom:401.248654pt;}
.y16_c00490{bottom:428.232544pt;}
.y15_c00490{bottom:455.216435pt;}
.y14_c00490{bottom:482.200325pt;}
.y13_c00490{bottom:509.184216pt;}
.y12_c00490{bottom:536.168106pt;}
.y11_c00490{bottom:563.151997pt;}
.y10_c00490{bottom:590.135887pt;}
.y20_c00490{bottom:617.665819pt;}
.yf_c00490{bottom:681.027968pt;}
.ye_c00490{bottom:708.011858pt;}
.yd_c00490{bottom:734.995749pt;}
.yc_c00490{bottom:761.979639pt;}
.yb_c00490{bottom:788.963530pt;}
.ya_c00490{bottom:814.938233pt;}
.y9_c00490{bottom:878.032599pt;}
.y8_c00490{bottom:905.016489pt;}
.y7_c00490{bottom:932.000380pt;}
.y6_c00490{bottom:958.984270pt;}
.y5_c00490{bottom:985.968161pt;}
.y4_c00490{bottom:1012.952051pt;}
.y3_c00490{bottom:1039.935941pt;}
.y2_c00490{bottom:1066.919832pt;}
.h4_c00490{height:48.971369pt;}
.h3_c00490{height:49.001996pt;}
.h2_c00490{height:1159.999952pt;}
.h0_c00490{height:1159.999959pt;}
.h1_c00490{height:1160.000000pt;}
.w2_c00490{width:830.999965pt;}
.w0_c00490{width:831.000000pt;}
.w1_c00490{width:831.333333pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:78.089069pt;}
.x2_c00490{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.006348;font-style:normal;font-weight:normal;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_3ad48f1c06d0e6b79d8ee594.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.006348;font-style:normal;font-weight:normal;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_df2d463766eddaa47d53899c.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.000000;font-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_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);}
.v0_c00491{vertical-align:0.000000px;}
.ls0_c00491{letter-spacing:0.000000px;}
.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:-18.680283px;}
.ws0_c00491{word-spacing:-0.071957px;}
.ws2_c00491{word-spacing:0.000000px;}
._0_c00491{width:3.881074px;}
._3_c00491{width:20.360890px;}
._2_c00491{width:28.025117px;}
._1_c00491{width:34.910394px;}
.fc1_c00491{color:rgb(0,0,0);}
.fc0_c00491{color:rgb(102,18,18);}
.fs1_c00491{font-size:71.912067px;}
.fs0_c00491{font-size:71.957041px;}
.y0_c00491{bottom:0.000000px;}
.y1_c00491{bottom:0.000008px;}
.ya_c00491{bottom:30.156225px;}
.y8_c00491{bottom:920.714175px;}
.y7_c00491{bottom:951.071052px;}
.y6_c00491{bottom:981.427928px;}
.y9_c00491{bottom:1015.780503px;}
.y5_c00491{bottom:1107.714489px;}
.y4_c00491{bottom:1138.071366px;}
.y3_c00491{bottom:1168.428243px;}
.y2_c00491{bottom:1201.665735px;}
.h4_c00491{height:55.092790px;}
.h3_c00491{height:55.127245px;}
.h2_c00491{height:1304.999946px;}
.h0_c00491{height:1304.999953px;}
.h1_c00491{height:1305.000000px;}
.w2_c00491{width:934.874961px;}
.w0_c00491{width:934.875000px;}
.w1_c00491{width:935.250000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:87.254471px;}
.x2_c00491{left:451.985828px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws1_c00491{word-spacing:-16.604696pt;}
.ws0_c00491{word-spacing:-0.063962pt;}
.ws2_c00491{word-spacing:0.000000pt;}
._0_c00491{width:3.449844pt;}
._3_c00491{width:18.098569pt;}
._2_c00491{width:24.911216pt;}
._1_c00491{width:31.031461pt;}
.fs1_c00491{font-size:63.921837pt;}
.fs0_c00491{font-size:63.961814pt;}
.y0_c00491{bottom:0.000000pt;}
.y1_c00491{bottom:0.000007pt;}
.ya_c00491{bottom:26.805533pt;}
.y8_c00491{bottom:818.412600pt;}
.y7_c00491{bottom:845.396490pt;}
.y6_c00491{bottom:872.380381pt;}
.y9_c00491{bottom:902.916002pt;}
.y5_c00491{bottom:984.635102pt;}
.y4_c00491{bottom:1011.618992pt;}
.y3_c00491{bottom:1038.602883pt;}
.y2_c00491{bottom:1068.147320pt;}
.h4_c00491{height:48.971369pt;}
.h3_c00491{height:49.001996pt;}
.h2_c00491{height:1159.999952pt;}
.h0_c00491{height:1159.999959pt;}
.h1_c00491{height:1160.000000pt;}
.w2_c00491{width:830.999965pt;}
.w0_c00491{width:831.000000pt;}
.w1_c00491{width:831.333333pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:77.559530pt;}
.x2_c00491{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b49825e9d0e6abcbcf41b3c2.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.006348;font-style:normal;font-weight:normal;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_74ef96b9dc75a41cf55f3bb2.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.000000;font-style:normal;font-weight:normal;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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.006348;font-style:normal;font-weight:normal;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_f03a05ab17df7486c8f833bb.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:0.769531;font-style:normal;font-weight: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_c00492;src:url('chunks/assets/font_4554a4b682fb982a29ced694.woff2')format("woff");}.ff5_c00492{font-family:ff5_c00492;line-height:1.171387;font-style:normal;font-weight: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_c00492;src:url('chunks/assets/font_fec1475221a46faba758a508.woff2')format("woff");}.ff6_c00492{font-family:ff6_c00492;line-height:1.000000;font-style:normal;font-weight: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_c00492;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff7_c00492{font-family:ff7_c00492;line-height:0.769531;font-style:normal;font-weight: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_c00492;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff8_c00492{font-family:ff8_c00492;line-height:0.743000;font-style:normal;font-weight: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_c00492;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff9_c00492{font-family:ff9_c00492;line-height:0.734863;font-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_c00492{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00492{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00492{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00492{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00492{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00492{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00492{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00492{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00492{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00492{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00492{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00492{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00492{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00492{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00492{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00492{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00492{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00492{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00492{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00492{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00492{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00492{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00492{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00492{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00492{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00492{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00492{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00492{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00492{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00492{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00492{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00492{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00492{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00492{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00492{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00492{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00492{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00492{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00492{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00492{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00492{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00492{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00492{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00492{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00492{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00492{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00492{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00492{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00492{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00492{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00492{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00492{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00492{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00492{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00492{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00492{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00492{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00492{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00492{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00492{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00492{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00492{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v0_c00492{vertical-align:0.000000px;}
.v1_c00492{vertical-align:8.961696px;}
.ls1_c00492{letter-spacing:0.000000px;}
.ls0_c00492{letter-spacing:8.432465px;}
.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;}
}
.ws2_c00492{word-spacing:-18.680283px;}
.ws3_c00492{word-spacing:-14.474592px;}
.ws4_c00492{word-spacing:0.000000px;}
.ws0_c00492{word-spacing:275.967713px;}
.ws1_c00492{word-spacing:281.470806px;}
._0_c00492{width:1.666317px;}
._1_c00492{width:8.427045px;}
._2_c00492{width:12.654052px;}
._3_c00492{width:29.942253px;}
.fc1_c00492{color:rgb(102,18,18);}
.fc2_c00492{color:rgb(255,255,255);}
.fc0_c00492{color:rgb(0,0,0);}
.fsc_c00492{font-size:41.974772px;}
.fs3_c00492{font-size:41.975069px;}
.fs6_c00492{font-size:47.339969px;}
.fs9_c00492{font-size:47.339970px;}
.fs5_c00492{font-size:47.339972px;}
.fs8_c00492{font-size:47.339973px;}
.fs7_c00492{font-size:47.339974px;}
.fsa_c00492{font-size:47.339975px;}
.fsd_c00492{font-size:55.171880px;}
.fsf_c00492{font-size:55.721735px;}
.fs2_c00492{font-size:59.949210px;}
.fse_c00492{font-size:71.912067px;}
.fs0_c00492{font-size:71.957041px;}
.fsb_c00492{font-size:76.965540px;}
.fs1_c00492{font-size:83.919899px;}
.fs4_c00492{font-size:95.927731px;}
.y0_c00492{bottom:0.000000px;}
.y1_c00492{bottom:0.000008px;}
.y50_c00492{bottom:30.156225px;}
.y6_c00492{bottom:185.902977px;}
.y5_c00492{bottom:216.259853px;}
.y4_c00492{bottom:246.616730px;}
.y3_c00492{bottom:276.973607px;}
.y2_c00492{bottom:307.330484px;}
.y7_c00492{bottom:339.608900px;}
.y4f_c00492{bottom:404.910520px;}
.y4c_c00492{bottom:487.376458px;}
.y1a_c00492{bottom:493.812629px;}
.y42_c00492{bottom:493.827623px;}
.y19_c00492{bottom:494.337609px;}
.y43_c00492{bottom:494.357158px;}
.y2c_c00492{bottom:494.700737px;}
.y41_c00492{bottom:495.071586px;}
.y18_c00492{bottom:495.403002px;}
.y2d_c00492{bottom:495.533530px;}
.y2b_c00492{bottom:495.553663px;}
.y40_c00492{bottom:496.322201px;}
.y17_c00492{bottom:496.475623px;}
.y2a_c00492{bottom:496.587915px;}
.y44_c00492{bottom:496.772260px;}
.y1b_c00492{bottom:496.835884px;}
.y2e_c00492{bottom:497.713596px;}
.y3f_c00492{bottom:497.966053px;}
.y16_c00492{bottom:498.126234px;}
.y29_c00492{bottom:498.789265px;}
.y2f_c00492{bottom:499.103521px;}
.y3e_c00492{bottom:499.653306px;}
.y15_c00492{bottom:499.818769px;}
.y30_c00492{bottom:500.800864px;}
.y1c_c00492{bottom:501.110605px;}
.y3d_c00492{bottom:501.517382px;}
.y14_c00492{bottom:501.687706px;}
.y45_c00492{bottom:501.869915px;}
.y28_c00492{bottom:502.578702px;}
.y31_c00492{bottom:503.241722px;}
.y1d_c00492{bottom:503.627848px;}
.y46_c00492{bottom:505.496019px;}
.y32_c00492{bottom:505.499367px;}
.y3c_c00492{bottom:506.168989px;}
.y13_c00492{bottom:506.348634px;}
.y27_c00492{bottom:508.044213px;}
.y33_c00492{bottom:508.766327px;}
.y1e_c00492{bottom:509.576794px;}
.y47_c00492{bottom:511.126534px;}
.y26_c00492{bottom:512.508085px;}
.y3b_c00492{bottom:512.566592px;}
.y12_c00492{bottom:512.754669px;}
.y1f_c00492{bottom:514.322677px;}
.y34_c00492{bottom:517.158603px;}
.y48_c00492{bottom:517.780195px;}
.y25_c00492{bottom:518.929057px;}
.y3a_c00492{bottom:519.869222px;}
.y11_c00492{bottom:519.959421px;}
.y10_c00492{bottom:523.416158px;}
.y24_c00492{bottom:523.496236px;}
.y35_c00492{bottom:525.202812px;}
.y20_c00492{bottom:526.099549px;}
.y39_c00492{bottom:527.026630px;}
.yf_c00492{bottom:529.422883px;}
.y49_c00492{bottom:529.736175px;}
.y23_c00492{bottom:531.263725px;}
.y38_c00492{bottom:531.792993px;}
.y4b_c00492{bottom:532.181392px;}
.y22_c00492{bottom:535.155114px;}
.ye_c00492{bottom:536.678099px;}
.y37_c00492{bottom:537.961701px;}
.y21_c00492{bottom:538.332892px;}
.y4a_c00492{bottom:538.696314px;}
.y4d_c00492{bottom:540.431168px;}
.y36_c00492{bottom:545.020884px;}
.yd_c00492{bottom:546.207017px;}
.y4e_c00492{bottom:577.871130px;}
.y51_c00492{bottom:647.652730px;}
.yb_c00492{bottom:1130.692613px;}
.y9_c00492{bottom:1132.026818px;}
.y8_c00492{bottom:1150.016079px;}
.yc_c00492{bottom:1153.707722px;}
.ya_c00492{bottom:1170.658440px;}
.h10_c00492{height:32.157430px;}
.hd_c00492{height:35.967282px;}
.hc_c00492{height:35.967283px;}
.he_c00492{height:35.967285px;}
.ha_c00492{height:36.267779px;}
.h9_c00492{height:36.267781px;}
.hb_c00492{height:36.267783px;}
.h6_c00492{height:39.085184px;}
.h11_c00492{height:40.005001px;}
.h13_c00492{height:51.885424px;}
.h12_c00492{height:55.092790px;}
.h3_c00492{height:55.127245px;}
.h5_c00492{height:55.821847px;}
.h4_c00492{height:63.759455px;}
.hf_c00492{height:65.223506px;}
.h7_c00492{height:67.002968px;}
.h8_c00492{height:89.323331px;}
.h2_c00492{height:1304.999946px;}
.h0_c00492{height:1304.999953px;}
.h1_c00492{height:1305.000000px;}
.w2_c00492{width:934.874961px;}
.w0_c00492{width:934.875000px;}
.w1_c00492{width:935.250000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:87.850202px;}
.x2_c00492{left:108.062661px;}
.x3_c00492{left:109.658623px;}
.x29_c00492{left:134.894322px;}
.x28_c00492{left:136.566734px;}
.x2a_c00492{left:139.937719px;}
.x2b_c00492{left:144.785273px;}
.x2c_c00492{left:150.147890px;}
.x2d_c00492{left:152.899057px;}
.x2e_c00492{left:155.907145px;}
.x2f_c00492{left:159.752336px;}
.x30_c00492{left:163.203941px;}
.x31_c00492{left:171.483965px;}
.x32_c00492{left:179.748684px;}
.x33_c00492{left:188.175145px;}
.x34_c00492{left:196.556636px;}
.x35_c00492{left:200.721504px;}
.x36_c00492{left:205.276922px;}
.x37_c00492{left:209.084069px;}
.x38_c00492{left:211.669316px;}
.x6_c00492{left:230.260919px;}
.x5_c00492{left:232.395871px;}
.x7_c00492{left:235.482735px;}
.x8_c00492{left:240.319117px;}
.x9_c00492{left:245.673577px;}
.xa_c00492{left:248.421493px;}
.xb_c00492{left:251.426626px;}
.xc_c00492{left:255.268917px;}
.xd_c00492{left:258.553698px;}
.xe_c00492{left:262.988294px;}
.xf_c00492{left:271.601212px;}
.x10_c00492{left:283.434780px;}
.x11_c00492{left:290.867654px;}
.x12_c00492{left:294.260334px;}
.x4_c00492{left:299.651470px;}
.x13_c00492{left:302.984150px;}
.x14_c00492{left:306.993562px;}
.x15_c00492{left:325.378518px;}
.x16_c00492{left:326.595106px;}
.x17_c00492{left:328.015253px;}
.x18_c00492{left:331.410444px;}
.x19_c00492{left:334.633053px;}
.x1a_c00492{left:340.511825px;}
.x1b_c00492{left:346.695139px;}
.x1c_c00492{left:352.384720px;}
.x1d_c00492{left:355.792694px;}
.x1e_c00492{left:363.695116px;}
.x1f_c00492{left:371.679253px;}
.x20_c00492{left:378.434940px;}
.x21_c00492{left:381.453328px;}
.x22_c00492{left:384.455783px;}
.x23_c00492{left:387.851715px;}
.x24_c00492{left:390.467224px;}
.x25_c00492{left:393.779799px;}
.x26_c00492{left:398.952070px;}
.x27_c00492{left:401.755082px;}
.x3d_c00492{left:451.985828px;}
.x3a_c00492{left:464.618828px;}
.x3e_c00492{left:671.033672px;}
.x3c_c00492{left:691.431927px;}
.x3b_c00492{left:733.103068px;}
.x39_c00492{left:756.637341px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.v1_c00492{vertical-align:7.965952pt;}
.ls1_c00492{letter-spacing:0.000000pt;}
.ls0_c00492{letter-spacing:7.495525pt;}
.ws2_c00492{word-spacing:-16.604696pt;}
.ws3_c00492{word-spacing:-12.866304pt;}
.ws4_c00492{word-spacing:0.000000pt;}
.ws0_c00492{word-spacing:245.304634pt;}
.ws1_c00492{word-spacing:250.196272pt;}
._0_c00492{width:1.481170pt;}
._1_c00492{width:7.490706pt;}
._2_c00492{width:11.248046pt;}
._3_c00492{width:26.615336pt;}
.fsc_c00492{font-size:37.310908pt;}
.fs3_c00492{font-size:37.311173pt;}
.fs6_c00492{font-size:42.079973pt;}
.fs9_c00492{font-size:42.079974pt;}
.fs5_c00492{font-size:42.079975pt;}
.fs8_c00492{font-size:42.079976pt;}
.fs7_c00492{font-size:42.079977pt;}
.fsa_c00492{font-size:42.079978pt;}
.fsd_c00492{font-size:49.041671pt;}
.fsf_c00492{font-size:49.530431pt;}
.fs2_c00492{font-size:53.288186pt;}
.fse_c00492{font-size:63.921837pt;}
.fs0_c00492{font-size:63.961814pt;}
.fsb_c00492{font-size:68.413814pt;}
.fs1_c00492{font-size:74.595466pt;}
.fs4_c00492{font-size:85.269094pt;}
.y0_c00492{bottom:0.000000pt;}
.y1_c00492{bottom:0.000007pt;}
.y50_c00492{bottom:26.805533pt;}
.y6_c00492{bottom:165.247090pt;}
.y5_c00492{bottom:192.230981pt;}
.y4_c00492{bottom:219.214871pt;}
.y3_c00492{bottom:246.198762pt;}
.y2_c00492{bottom:273.182652pt;}
.y7_c00492{bottom:301.874578pt;}
.y4f_c00492{bottom:359.920462pt;}
.y4c_c00492{bottom:433.223518pt;}
.y1a_c00492{bottom:438.944560pt;}
.y42_c00492{bottom:438.957887pt;}
.y19_c00492{bottom:439.411208pt;}
.y43_c00492{bottom:439.428585pt;}
.y2c_c00492{bottom:439.733989pt;}
.y41_c00492{bottom:440.063632pt;}
.y18_c00492{bottom:440.358224pt;}
.y2d_c00492{bottom:440.474249pt;}
.y2b_c00492{bottom:440.492144pt;}
.y40_c00492{bottom:441.175290pt;}
.y17_c00492{bottom:441.311665pt;}
.y2a_c00492{bottom:441.411480pt;}
.y44_c00492{bottom:441.575343pt;}
.y1b_c00492{bottom:441.631897pt;}
.y2e_c00492{bottom:442.412085pt;}
.y3f_c00492{bottom:442.636491pt;}
.y16_c00492{bottom:442.778875pt;}
.y29_c00492{bottom:443.368235pt;}
.y2f_c00492{bottom:443.647574pt;}
.y3e_c00492{bottom:444.136272pt;}
.y15_c00492{bottom:444.283350pt;}
.y30_c00492{bottom:445.156323pt;}
.y1c_c00492{bottom:445.431649pt;}
.y3d_c00492{bottom:445.793228pt;}
.y14_c00492{bottom:445.944627pt;}
.y45_c00492{bottom:446.106592pt;}
.y28_c00492{bottom:446.736624pt;}
.y31_c00492{bottom:447.325975pt;}
.y1d_c00492{bottom:447.669198pt;}
.y46_c00492{bottom:449.329795pt;}
.y32_c00492{bottom:449.332771pt;}
.y3c_c00492{bottom:449.927990pt;}
.y13_c00492{bottom:450.087675pt;}
.y27_c00492{bottom:451.594856pt;}
.y33_c00492{bottom:452.236735pt;}
.y1e_c00492{bottom:452.957150pt;}
.y47_c00492{bottom:454.334697pt;}
.y26_c00492{bottom:455.562742pt;}
.y3b_c00492{bottom:455.614749pt;}
.y12_c00492{bottom:455.781928pt;}
.y1f_c00492{bottom:457.175713pt;}
.y34_c00492{bottom:459.696536pt;}
.y48_c00492{bottom:460.249062pt;}
.y25_c00492{bottom:461.270273pt;}
.y3a_c00492{bottom:462.105976pt;}
.y11_c00492{bottom:462.186152pt;}
.y10_c00492{bottom:465.258807pt;}
.y24_c00492{bottom:465.329988pt;}
.y35_c00492{bottom:466.846944pt;}
.y20_c00492{bottom:467.644044pt;}
.y39_c00492{bottom:468.468115pt;}
.yf_c00492{bottom:470.598118pt;}
.y49_c00492{bottom:470.876600pt;}
.y23_c00492{bottom:472.234422pt;}
.y38_c00492{bottom:472.704883pt;}
.y4b_c00492{bottom:473.050126pt;}
.y22_c00492{bottom:475.693435pt;}
.ye_c00492{bottom:477.047199pt;}
.y37_c00492{bottom:478.188178pt;}
.y21_c00492{bottom:478.518126pt;}
.y4a_c00492{bottom:478.841168pt;}
.y4d_c00492{bottom:480.383260pt;}
.y36_c00492{bottom:484.463008pt;}
.yd_c00492{bottom:485.517349pt;}
.y4e_c00492{bottom:513.663227pt;}
.y51_c00492{bottom:575.691316pt;}
.yb_c00492{bottom:1005.060100pt;}
.y9_c00492{bottom:1006.246061pt;}
.y8_c00492{bottom:1022.236514pt;}
.yc_c00492{bottom:1025.517975pt;}
.ya_c00492{bottom:1040.585280pt;}
.h10_c00492{height:28.584382pt;}
.hd_c00492{height:31.970917pt;}
.hc_c00492{height:31.970918pt;}
.he_c00492{height:31.970920pt;}
.ha_c00492{height:32.238026pt;}
.h9_c00492{height:32.238028pt;}
.hb_c00492{height:32.238029pt;}
.h6_c00492{height:34.742386pt;}
.h11_c00492{height:35.560001pt;}
.h13_c00492{height:46.120377pt;}
.h12_c00492{height:48.971369pt;}
.h3_c00492{height:49.001996pt;}
.h5_c00492{height:49.619420pt;}
.h4_c00492{height:56.675071pt;}
.hf_c00492{height:57.976449pt;}
.h7_c00492{height:59.558193pt;}
.h8_c00492{height:79.398517pt;}
.h2_c00492{height:1159.999952pt;}
.h0_c00492{height:1159.999959pt;}
.h1_c00492{height:1160.000000pt;}
.w2_c00492{width:830.999965pt;}
.w0_c00492{width:831.000000pt;}
.w1_c00492{width:831.333333pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:78.089069pt;}
.x2_c00492{left:96.055698pt;}
.x3_c00492{left:97.474332pt;}
.x29_c00492{left:119.906064pt;}
.x28_c00492{left:121.392652pt;}
.x2a_c00492{left:124.389083pt;}
.x2b_c00492{left:128.698021pt;}
.x2c_c00492{left:133.464791pt;}
.x2d_c00492{left:135.910272pt;}
.x2e_c00492{left:138.584129pt;}
.x2f_c00492{left:142.002076pt;}
.x30_c00492{left:145.070170pt;}
.x31_c00492{left:152.430191pt;}
.x32_c00492{left:159.776608pt;}
.x33_c00492{left:167.266795pt;}
.x34_c00492{left:174.717010pt;}
.x35_c00492{left:178.419115pt;}
.x36_c00492{left:182.468375pt;}
.x37_c00492{left:185.852506pt;}
.x38_c00492{left:188.150503pt;}
.x6_c00492{left:204.676373pt;}
.x5_c00492{left:206.574107pt;}
.x7_c00492{left:209.317987pt;}
.x8_c00492{left:213.616993pt;}
.x9_c00492{left:218.376513pt;}
.xa_c00492{left:220.819105pt;}
.xb_c00492{left:223.490334pt;}
.xc_c00492{left:226.905704pt;}
.xd_c00492{left:229.825509pt;}
.xe_c00492{left:233.767373pt;}
.xf_c00492{left:241.423300pt;}
.x10_c00492{left:251.942027pt;}
.x11_c00492{left:258.549026pt;}
.x12_c00492{left:261.564741pt;}
.x4_c00492{left:266.356863pt;}
.x13_c00492{left:269.319244pt;}
.x14_c00492{left:272.883167pt;}
.x15_c00492{left:289.225349pt;}
.x16_c00492{left:290.306761pt;}
.x17_c00492{left:291.569114pt;}
.x18_c00492{left:294.587062pt;}
.x19_c00492{left:297.451603pt;}
.x1a_c00492{left:302.677178pt;}
.x1b_c00492{left:308.173457pt;}
.x1c_c00492{left:313.230862pt;}
.x1d_c00492{left:316.260173pt;}
.x1e_c00492{left:323.284548pt;}
.x1f_c00492{left:330.381558pt;}
.x20_c00492{left:336.386614pt;}
.x21_c00492{left:339.069625pt;}
.x22_c00492{left:341.738474pt;}
.x23_c00492{left:344.757080pt;}
.x24_c00492{left:347.081977pt;}
.x25_c00492{left:350.026488pt;}
.x26_c00492{left:354.624063pt;}
.x27_c00492{left:357.115628pt;}
.x3d_c00492{left:401.765180pt;}
.x3a_c00492{left:412.994514pt;}
.x3e_c00492{left:596.474375pt;}
.x3c_c00492{left:614.606158pt;}
.x3b_c00492{left:651.647171pt;}
.x39_c00492{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00493;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00493;src:url('chunks/assets/font_1994bb879275c36961042f04.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_d8c454209b525f447e82174b.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.000000;font-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_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00493{vertical-align:0.000000px;}
.ls1_c00493{letter-spacing:0.000000px;}
.ls0_c00493{letter-spacing:0.000022px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00493{word-spacing:-18.680283px;}
.ws1_c00493{word-spacing:0.000000px;}
._4_c00493{width:1.155479px;}
._5_c00493{width:2.342405px;}
._8_c00493{width:3.938448px;}
._3_c00493{width:5.077045px;}
._2_c00493{width:6.209337px;}
._1_c00493{width:7.475648px;}
._6_c00493{width:8.529704px;}
._9_c00493{width:9.778930px;}
._d_c00493{width:11.717404px;}
._0_c00493{width:15.283846px;}
._b_c00493{width:16.414482px;}
._7_c00493{width:21.336646px;}
._a_c00493{width:22.927344px;}
._c_c00493{width:25.016314px;}
.fc1_c00493{color:rgb(0,0,0);}
.fc0_c00493{color:rgb(102,18,18);}
.fs1_c00493{font-size:71.912067px;}
.fs0_c00493{font-size:71.957041px;}
.y0_c00493{bottom:0.000000px;}
.y1_c00493{bottom:0.000008px;}
.y1c_c00493{bottom:30.156225px;}
.y14_c00493{bottom:366.076951px;}
.y13_c00493{bottom:396.433828px;}
.y12_c00493{bottom:429.671320px;}
.y11_c00493{bottom:485.213114px;}
.y10_c00493{bottom:515.569991px;}
.yf_c00493{bottom:545.930291px;}
.ye_c00493{bottom:602.591649px;}
.yd_c00493{bottom:632.948525px;}
.yc_c00493{bottom:663.305402px;}
.yb_c00493{bottom:693.662279px;}
.ya_c00493{bottom:724.019156px;}
.y9_c00493{bottom:754.376032px;}
.y8_c00493{bottom:784.732909px;}
.y7_c00493{bottom:815.089786px;}
.y6_c00493{bottom:845.446663px;}
.y5_c00493{bottom:875.803540px;}
.y4_c00493{bottom:906.160416px;}
.y3_c00493{bottom:936.517293px;}
.y2_c00493{bottom:966.199559px;}
.y1b_c00493{bottom:1018.368418px;}
.y1a_c00493{bottom:1048.725294px;}
.y19_c00493{bottom:1079.082171px;}
.y18_c00493{bottom:1109.439048px;}
.y17_c00493{bottom:1139.795925px;}
.y16_c00493{bottom:1170.152801px;}
.y15_c00493{bottom:1199.835078px;}
.h4_c00493{height:55.092790px;}
.h3_c00493{height:55.127245px;}
.h2_c00493{height:1304.999946px;}
.h0_c00493{height:1304.999953px;}
.h1_c00493{height:1305.000000px;}
.w2_c00493{width:934.874961px;}
.w0_c00493{width:934.875000px;}
.w1_c00493{width:935.250000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:87.850202px;}
.x2_c00493{left:451.985828px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls1_c00493{letter-spacing:0.000000pt;}
.ls0_c00493{letter-spacing:0.000020pt;}
.ws0_c00493{word-spacing:-16.604696pt;}
.ws1_c00493{word-spacing:0.000000pt;}
._4_c00493{width:1.027093pt;}
._5_c00493{width:2.082138pt;}
._8_c00493{width:3.500843pt;}
._3_c00493{width:4.512929pt;}
._2_c00493{width:5.519410pt;}
._1_c00493{width:6.645020pt;}
._6_c00493{width:7.581959pt;}
._9_c00493{width:8.692382pt;}
._d_c00493{width:10.415470pt;}
._0_c00493{width:13.585641pt;}
._b_c00493{width:14.590651pt;}
._7_c00493{width:18.965908pt;}
._a_c00493{width:20.379861pt;}
._c_c00493{width:22.236724pt;}
.fs1_c00493{font-size:63.921837pt;}
.fs0_c00493{font-size:63.961814pt;}
.y0_c00493{bottom:0.000000pt;}
.y1_c00493{bottom:0.000007pt;}
.y1c_c00493{bottom:26.805533pt;}
.y14_c00493{bottom:325.401734pt;}
.y13_c00493{bottom:352.385625pt;}
.y12_c00493{bottom:381.930062pt;}
.y11_c00493{bottom:431.300546pt;}
.y10_c00493{bottom:458.284436pt;}
.yf_c00493{bottom:485.271370pt;}
.ye_c00493{bottom:535.637021pt;}
.yd_c00493{bottom:562.620911pt;}
.yc_c00493{bottom:589.604802pt;}
.yb_c00493{bottom:616.588692pt;}
.ya_c00493{bottom:643.572583pt;}
.y9_c00493{bottom:670.556473pt;}
.y8_c00493{bottom:697.540364pt;}
.y7_c00493{bottom:724.524254pt;}
.y6_c00493{bottom:751.508145pt;}
.y5_c00493{bottom:778.492035pt;}
.y4_c00493{bottom:805.475926pt;}
.y3_c00493{bottom:832.459816pt;}
.y2_c00493{bottom:858.844052pt;}
.y1b_c00493{bottom:905.216371pt;}
.y1a_c00493{bottom:932.200262pt;}
.y19_c00493{bottom:959.184152pt;}
.y18_c00493{bottom:986.168042pt;}
.y17_c00493{bottom:1013.151933pt;}
.y16_c00493{bottom:1040.135823pt;}
.y15_c00493{bottom:1066.520069pt;}
.h4_c00493{height:48.971369pt;}
.h3_c00493{height:49.001996pt;}
.h2_c00493{height:1159.999952pt;}
.h0_c00493{height:1159.999959pt;}
.h1_c00493{height:1160.000000pt;}
.w2_c00493{width:830.999965pt;}
.w0_c00493{width:831.000000pt;}
.w1_c00493{width:831.333333pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:78.089069pt;}
.x2_c00493{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bbdbe8ddb74ab19704d64125.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00494;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;line-height:1.006348;font-style:normal;font-weight: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_c00494;src:url('chunks/assets/font_f03a05ab17df7486c8f833bb.woff2')format("woff");}.ff5_c00494{font-family:ff5_c00494;line-height:0.769531;font-style:normal;font-weight: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_c00494;src:url('chunks/assets/font_00b73508e9f13c9efd73ee30.woff2')format("woff");}.ff6_c00494{font-family:ff6_c00494;line-height:1.171387;font-style:normal;font-weight: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_c00494;src:url('chunks/assets/font_e75698aa0749950f71ac2c2d.woff2')format("woff");}.ff7_c00494{font-family:ff7_c00494;line-height:1.000000;font-style:normal;font-weight: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_c00494;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff8_c00494{font-family:ff8_c00494;line-height:0.743000;font-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_c00494{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3d_c00494{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m29_c00494{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00494{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2a_c00494{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3c_c00494{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00494{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m15_c00494{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00494{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2b_c00494{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m28_c00494{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m16_c00494{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00494{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2c_c00494{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3b_c00494{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00494{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m17_c00494{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m27_c00494{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00494{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00494{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2d_c00494{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m18_c00494{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3a_c00494{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m26_c00494{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00494{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00494{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m19_c00494{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2e_c00494{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m39_c00494{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00494{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m25_c00494{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1a_c00494{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00494{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m2f_c00494{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m38_c00494{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m24_c00494{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00494{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m23_c00494{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00494{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m30_c00494{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1b_c00494{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m37_c00494{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m22_c00494{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00494{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m31_c00494{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00494{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m21_c00494{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00494{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m32_c00494{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1c_c00494{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00494{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m33_c00494{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m20_c00494{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m36_c00494{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1d_c00494{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00494{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00494{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m34_c00494{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1e_c00494{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m1f_c00494{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m35_c00494{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00494{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m3e_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);}
.v0_c00494{vertical-align:0.000000px;}
.v1_c00494{vertical-align:8.961696px;}
.ls0_c00494{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00494{word-spacing:-18.680283px;}
.ws3_c00494{word-spacing:-14.474592px;}
.ws4_c00494{word-spacing:0.000000px;}
.ws0_c00494{word-spacing:275.967713px;}
.ws1_c00494{word-spacing:281.470806px;}
._2_c00494{width:1.162479px;}
._0_c00494{width:7.806413px;}
._4_c00494{width:10.319339px;}
._1_c00494{width:11.678911px;}
._3_c00494{width:19.699082px;}
.fc1_c00494{color:rgb(102,18,18);}
.fc2_c00494{color:rgb(255,255,255);}
.fc0_c00494{color:rgb(0,0,0);}
.fs6_c00494{font-size:41.974772px;}
.fsb_c00494{font-size:41.975069px;}
.fs1_c00494{font-size:47.339969px;}
.fs4_c00494{font-size:47.339970px;}
.fs0_c00494{font-size:47.339972px;}
.fs3_c00494{font-size:47.339973px;}
.fs2_c00494{font-size:47.339974px;}
.fs5_c00494{font-size:47.339975px;}
.fs7_c00494{font-size:55.171880px;}
.fsf_c00494{font-size:55.721735px;}
.fsa_c00494{font-size:59.949210px;}
.fse_c00494{font-size:71.912067px;}
.fs8_c00494{font-size:71.957041px;}
.fsd_c00494{font-size:76.965540px;}
.fs9_c00494{font-size:83.919899px;}
.fsc_c00494{font-size:95.927731px;}
.y0_c00494{bottom:0.000000px;}
.y1_c00494{bottom:0.000008px;}
.y51_c00494{bottom:30.156225px;}
.y49_c00494{bottom:155.546100px;}
.y48_c00494{bottom:185.902977px;}
.y47_c00494{bottom:216.259853px;}
.y46_c00494{bottom:246.616730px;}
.y45_c00494{bottom:276.973607px;}
.y44_c00494{bottom:307.330484px;}
.y4a_c00494{bottom:339.608900px;}
.y43_c00494{bottom:404.910520px;}
.y40_c00494{bottom:487.376458px;}
.yf_c00494{bottom:493.812629px;}
.y37_c00494{bottom:493.827623px;}
.ye_c00494{bottom:494.337609px;}
.y38_c00494{bottom:494.357158px;}
.y21_c00494{bottom:494.700737px;}
.y36_c00494{bottom:495.071586px;}
.yd_c00494{bottom:495.403002px;}
.y22_c00494{bottom:495.533530px;}
.y20_c00494{bottom:495.553663px;}
.y35_c00494{bottom:496.322201px;}
.yc_c00494{bottom:496.475623px;}
.y1f_c00494{bottom:496.587915px;}
.y39_c00494{bottom:496.772260px;}
.y10_c00494{bottom:496.835884px;}
.y23_c00494{bottom:497.713596px;}
.y34_c00494{bottom:497.966053px;}
.yb_c00494{bottom:498.126234px;}
.y1e_c00494{bottom:498.789265px;}
.y24_c00494{bottom:499.103521px;}
.y33_c00494{bottom:499.653306px;}
.ya_c00494{bottom:499.818769px;}
.y25_c00494{bottom:500.800864px;}
.y11_c00494{bottom:501.110605px;}
.y32_c00494{bottom:501.517382px;}
.y9_c00494{bottom:501.687706px;}
.y3a_c00494{bottom:501.869915px;}
.y1d_c00494{bottom:502.578702px;}
.y26_c00494{bottom:503.241722px;}
.y12_c00494{bottom:503.627848px;}
.y3b_c00494{bottom:505.496019px;}
.y27_c00494{bottom:505.499367px;}
.y31_c00494{bottom:506.168989px;}
.y8_c00494{bottom:506.348634px;}
.y1c_c00494{bottom:508.044213px;}
.y28_c00494{bottom:508.766327px;}
.y13_c00494{bottom:509.576794px;}
.y3c_c00494{bottom:511.126534px;}
.y1b_c00494{bottom:512.508085px;}
.y30_c00494{bottom:512.566592px;}
.y7_c00494{bottom:512.754669px;}
.y14_c00494{bottom:514.322677px;}
.y29_c00494{bottom:517.158603px;}
.y3d_c00494{bottom:517.780195px;}
.y1a_c00494{bottom:518.929057px;}
.y2f_c00494{bottom:519.869222px;}
.y6_c00494{bottom:519.959421px;}
.y5_c00494{bottom:523.416158px;}
.y19_c00494{bottom:523.496236px;}
.y2a_c00494{bottom:525.202812px;}
.y15_c00494{bottom:526.099549px;}
.y2e_c00494{bottom:527.026630px;}
.y4_c00494{bottom:529.422883px;}
.y3e_c00494{bottom:529.736175px;}
.y18_c00494{bottom:531.263725px;}
.y2d_c00494{bottom:531.792993px;}
.y50_c00494{bottom:532.181392px;}
.y17_c00494{bottom:535.155114px;}
.y3_c00494{bottom:536.678099px;}
.y2c_c00494{bottom:537.961701px;}
.y16_c00494{bottom:538.332892px;}
.y3f_c00494{bottom:538.696314px;}
.y41_c00494{bottom:540.431168px;}
.y2b_c00494{bottom:545.020884px;}
.y2_c00494{bottom:546.207017px;}
.y42_c00494{bottom:577.871130px;}
.y52_c00494{bottom:647.652730px;}
.y4e_c00494{bottom:1130.692613px;}
.y4c_c00494{bottom:1132.026818px;}
.y4b_c00494{bottom:1150.016079px;}
.y4f_c00494{bottom:1153.707722px;}
.y4d_c00494{bottom:1170.658440px;}
.h9_c00494{height:32.157430px;}
.h7_c00494{height:35.967282px;}
.h6_c00494{height:35.967283px;}
.h8_c00494{height:35.967285px;}
.h4_c00494{height:36.267779px;}
.h3_c00494{height:36.267781px;}
.h5_c00494{height:36.267783px;}
.he_c00494{height:39.085184px;}
.ha_c00494{height:40.005001px;}
.h13_c00494{height:51.885424px;}
.h12_c00494{height:55.092790px;}
.hb_c00494{height:55.127245px;}
.hd_c00494{height:55.821847px;}
.hc_c00494{height:63.759455px;}
.h11_c00494{height:65.223506px;}
.hf_c00494{height:67.002968px;}
.h10_c00494{height:89.323331px;}
.h2_c00494{height:1304.999946px;}
.h0_c00494{height:1304.999953px;}
.h1_c00494{height:1305.000000px;}
.w2_c00494{width:934.874961px;}
.w0_c00494{width:934.875000px;}
.w1_c00494{width:935.250000px;}
.x0_c00494{left:0.000000px;}
.x3a_c00494{left:87.850202px;}
.x3b_c00494{left:108.062661px;}
.x3c_c00494{left:109.658623px;}
.x26_c00494{left:134.894322px;}
.x25_c00494{left:136.566734px;}
.x27_c00494{left:139.937719px;}
.x28_c00494{left:144.785273px;}
.x29_c00494{left:150.147890px;}
.x2a_c00494{left:152.899057px;}
.x2b_c00494{left:155.907145px;}
.x2c_c00494{left:159.752336px;}
.x2d_c00494{left:163.203941px;}
.x2e_c00494{left:171.483965px;}
.x2f_c00494{left:179.748684px;}
.x30_c00494{left:188.175145px;}
.x31_c00494{left:196.556636px;}
.x32_c00494{left:200.721504px;}
.x33_c00494{left:205.276922px;}
.x34_c00494{left:209.084069px;}
.x35_c00494{left:211.669316px;}
.x2_c00494{left:230.260919px;}
.x1_c00494{left:232.395871px;}
.x3_c00494{left:235.482735px;}
.x4_c00494{left:240.319117px;}
.x5_c00494{left:245.673577px;}
.x6_c00494{left:248.421493px;}
.x7_c00494{left:251.426626px;}
.x8_c00494{left:255.268917px;}
.x9_c00494{left:258.553698px;}
.xa_c00494{left:262.988294px;}
.xb_c00494{left:271.601212px;}
.xc_c00494{left:283.434780px;}
.xd_c00494{left:290.867654px;}
.xe_c00494{left:294.260334px;}
.xf_c00494{left:299.596701px;}
.x10_c00494{left:302.984150px;}
.x11_c00494{left:306.993562px;}
.x12_c00494{left:325.378518px;}
.x13_c00494{left:326.595106px;}
.x14_c00494{left:328.015253px;}
.x15_c00494{left:331.410444px;}
.x16_c00494{left:334.633053px;}
.x17_c00494{left:340.511825px;}
.x18_c00494{left:346.695139px;}
.x19_c00494{left:352.384720px;}
.x1a_c00494{left:355.792694px;}
.x1b_c00494{left:363.695116px;}
.x1c_c00494{left:371.679253px;}
.x1d_c00494{left:378.434940px;}
.x1e_c00494{left:381.453328px;}
.x1f_c00494{left:384.455783px;}
.x20_c00494{left:387.851715px;}
.x21_c00494{left:390.467224px;}
.x22_c00494{left:393.779799px;}
.x23_c00494{left:398.952070px;}
.x24_c00494{left:401.755082px;}
.x3d_c00494{left:451.985828px;}
.x37_c00494{left:464.618828px;}
.x39_c00494{left:691.431927px;}
.x3e_c00494{left:702.347875px;}
.x38_c00494{left:733.103068px;}
.x36_c00494{left:756.637341px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.v1_c00494{vertical-align:7.965952pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws2_c00494{word-spacing:-16.604696pt;}
.ws3_c00494{word-spacing:-12.866304pt;}
.ws4_c00494{word-spacing:0.000000pt;}
.ws0_c00494{word-spacing:245.304634pt;}
.ws1_c00494{word-spacing:250.196272pt;}
._2_c00494{width:1.033315pt;}
._0_c00494{width:6.939034pt;}
._4_c00494{width:9.172746pt;}
._1_c00494{width:10.381254pt;}
._3_c00494{width:17.510295pt;}
.fs6_c00494{font-size:37.310908pt;}
.fsb_c00494{font-size:37.311173pt;}
.fs1_c00494{font-size:42.079973pt;}
.fs4_c00494{font-size:42.079974pt;}
.fs0_c00494{font-size:42.079975pt;}
.fs3_c00494{font-size:42.079976pt;}
.fs2_c00494{font-size:42.079977pt;}
.fs5_c00494{font-size:42.079978pt;}
.fs7_c00494{font-size:49.041671pt;}
.fsf_c00494{font-size:49.530431pt;}
.fsa_c00494{font-size:53.288186pt;}
.fse_c00494{font-size:63.921837pt;}
.fs8_c00494{font-size:63.961814pt;}
.fsd_c00494{font-size:68.413814pt;}
.fs9_c00494{font-size:74.595466pt;}
.fsc_c00494{font-size:85.269094pt;}
.y0_c00494{bottom:0.000000pt;}
.y1_c00494{bottom:0.000007pt;}
.y51_c00494{bottom:26.805533pt;}
.y49_c00494{bottom:138.263200pt;}
.y48_c00494{bottom:165.247090pt;}
.y47_c00494{bottom:192.230981pt;}
.y46_c00494{bottom:219.214871pt;}
.y45_c00494{bottom:246.198762pt;}
.y44_c00494{bottom:273.182652pt;}
.y4a_c00494{bottom:301.874578pt;}
.y43_c00494{bottom:359.920462pt;}
.y40_c00494{bottom:433.223518pt;}
.yf_c00494{bottom:438.944560pt;}
.y37_c00494{bottom:438.957887pt;}
.ye_c00494{bottom:439.411208pt;}
.y38_c00494{bottom:439.428585pt;}
.y21_c00494{bottom:439.733989pt;}
.y36_c00494{bottom:440.063632pt;}
.yd_c00494{bottom:440.358224pt;}
.y22_c00494{bottom:440.474249pt;}
.y20_c00494{bottom:440.492144pt;}
.y35_c00494{bottom:441.175290pt;}
.yc_c00494{bottom:441.311665pt;}
.y1f_c00494{bottom:441.411480pt;}
.y39_c00494{bottom:441.575343pt;}
.y10_c00494{bottom:441.631897pt;}
.y23_c00494{bottom:442.412085pt;}
.y34_c00494{bottom:442.636491pt;}
.yb_c00494{bottom:442.778875pt;}
.y1e_c00494{bottom:443.368235pt;}
.y24_c00494{bottom:443.647574pt;}
.y33_c00494{bottom:444.136272pt;}
.ya_c00494{bottom:444.283350pt;}
.y25_c00494{bottom:445.156323pt;}
.y11_c00494{bottom:445.431649pt;}
.y32_c00494{bottom:445.793228pt;}
.y9_c00494{bottom:445.944627pt;}
.y3a_c00494{bottom:446.106592pt;}
.y1d_c00494{bottom:446.736624pt;}
.y26_c00494{bottom:447.325975pt;}
.y12_c00494{bottom:447.669198pt;}
.y3b_c00494{bottom:449.329795pt;}
.y27_c00494{bottom:449.332771pt;}
.y31_c00494{bottom:449.927990pt;}
.y8_c00494{bottom:450.087675pt;}
.y1c_c00494{bottom:451.594856pt;}
.y28_c00494{bottom:452.236735pt;}
.y13_c00494{bottom:452.957150pt;}
.y3c_c00494{bottom:454.334697pt;}
.y1b_c00494{bottom:455.562742pt;}
.y30_c00494{bottom:455.614749pt;}
.y7_c00494{bottom:455.781928pt;}
.y14_c00494{bottom:457.175713pt;}
.y29_c00494{bottom:459.696536pt;}
.y3d_c00494{bottom:460.249062pt;}
.y1a_c00494{bottom:461.270273pt;}
.y2f_c00494{bottom:462.105976pt;}
.y6_c00494{bottom:462.186152pt;}
.y5_c00494{bottom:465.258807pt;}
.y19_c00494{bottom:465.329988pt;}
.y2a_c00494{bottom:466.846944pt;}
.y15_c00494{bottom:467.644044pt;}
.y2e_c00494{bottom:468.468115pt;}
.y4_c00494{bottom:470.598118pt;}
.y3e_c00494{bottom:470.876600pt;}
.y18_c00494{bottom:472.234422pt;}
.y2d_c00494{bottom:472.704883pt;}
.y50_c00494{bottom:473.050126pt;}
.y17_c00494{bottom:475.693435pt;}
.y3_c00494{bottom:477.047199pt;}
.y2c_c00494{bottom:478.188178pt;}
.y16_c00494{bottom:478.518126pt;}
.y3f_c00494{bottom:478.841168pt;}
.y41_c00494{bottom:480.383260pt;}
.y2b_c00494{bottom:484.463008pt;}
.y2_c00494{bottom:485.517349pt;}
.y42_c00494{bottom:513.663227pt;}
.y52_c00494{bottom:575.691316pt;}
.y4e_c00494{bottom:1005.060100pt;}
.y4c_c00494{bottom:1006.246061pt;}
.y4b_c00494{bottom:1022.236514pt;}
.y4f_c00494{bottom:1025.517975pt;}
.y4d_c00494{bottom:1040.585280pt;}
.h9_c00494{height:28.584382pt;}
.h7_c00494{height:31.970917pt;}
.h6_c00494{height:31.970918pt;}
.h8_c00494{height:31.970920pt;}
.h4_c00494{height:32.238026pt;}
.h3_c00494{height:32.238028pt;}
.h5_c00494{height:32.238029pt;}
.he_c00494{height:34.742386pt;}
.ha_c00494{height:35.560001pt;}
.h13_c00494{height:46.120377pt;}
.h12_c00494{height:48.971369pt;}
.hb_c00494{height:49.001996pt;}
.hd_c00494{height:49.619420pt;}
.hc_c00494{height:56.675071pt;}
.h11_c00494{height:57.976449pt;}
.hf_c00494{height:59.558193pt;}
.h10_c00494{height:79.398517pt;}
.h2_c00494{height:1159.999952pt;}
.h0_c00494{height:1159.999959pt;}
.h1_c00494{height:1160.000000pt;}
.w2_c00494{width:830.999965pt;}
.w0_c00494{width:831.000000pt;}
.w1_c00494{width:831.333333pt;}
.x0_c00494{left:0.000000pt;}
.x3a_c00494{left:78.089069pt;}
.x3b_c00494{left:96.055698pt;}
.x3c_c00494{left:97.474332pt;}
.x26_c00494{left:119.906064pt;}
.x25_c00494{left:121.392652pt;}
.x27_c00494{left:124.389083pt;}
.x28_c00494{left:128.698021pt;}
.x29_c00494{left:133.464791pt;}
.x2a_c00494{left:135.910272pt;}
.x2b_c00494{left:138.584129pt;}
.x2c_c00494{left:142.002076pt;}
.x2d_c00494{left:145.070170pt;}
.x2e_c00494{left:152.430191pt;}
.x2f_c00494{left:159.776608pt;}
.x30_c00494{left:167.266795pt;}
.x31_c00494{left:174.717010pt;}
.x32_c00494{left:178.419115pt;}
.x33_c00494{left:182.468375pt;}
.x34_c00494{left:185.852506pt;}
.x35_c00494{left:188.150503pt;}
.x2_c00494{left:204.676373pt;}
.x1_c00494{left:206.574107pt;}
.x3_c00494{left:209.317987pt;}
.x4_c00494{left:213.616993pt;}
.x5_c00494{left:218.376513pt;}
.x6_c00494{left:220.819105pt;}
.x7_c00494{left:223.490334pt;}
.x8_c00494{left:226.905704pt;}
.x9_c00494{left:229.825509pt;}
.xa_c00494{left:233.767373pt;}
.xb_c00494{left:241.423300pt;}
.xc_c00494{left:251.942027pt;}
.xd_c00494{left:258.549026pt;}
.xe_c00494{left:261.564741pt;}
.xf_c00494{left:266.308178pt;}
.x10_c00494{left:269.319244pt;}
.x11_c00494{left:272.883167pt;}
.x12_c00494{left:289.225349pt;}
.x13_c00494{left:290.306761pt;}
.x14_c00494{left:291.569114pt;}
.x15_c00494{left:294.587062pt;}
.x16_c00494{left:297.451603pt;}
.x17_c00494{left:302.677178pt;}
.x18_c00494{left:308.173457pt;}
.x19_c00494{left:313.230862pt;}
.x1a_c00494{left:316.260173pt;}
.x1b_c00494{left:323.284548pt;}
.x1c_c00494{left:330.381558pt;}
.x1d_c00494{left:336.386614pt;}
.x1e_c00494{left:339.069625pt;}
.x1f_c00494{left:341.738474pt;}
.x20_c00494{left:344.757080pt;}
.x21_c00494{left:347.081977pt;}
.x22_c00494{left:350.026488pt;}
.x23_c00494{left:354.624063pt;}
.x24_c00494{left:357.115628pt;}
.x3d_c00494{left:401.765180pt;}
.x37_c00494{left:412.994514pt;}
.x39_c00494{left:614.606158pt;}
.x3e_c00494{left:624.309222pt;}
.x38_c00494{left:651.647171pt;}
.x36_c00494{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.006348;font-style:normal;font-weight:normal;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_65aee8c9c994456598573554.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.006348;font-style:normal;font-weight:normal;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_b71144c904c48573a4ae95f6.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.005371;font-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_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);}
.v0_c00495{vertical-align:0.000000px;}
.ls2_c00495{letter-spacing:0.000000px;}
.ls1_c00495{letter-spacing:0.035135px;}
.ls0_c00495{letter-spacing:3.724316px;}
.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;}
}
.ws0_c00495{word-spacing:-18.691966px;}
.ws1_c00495{word-spacing:-18.680283px;}
.ws2_c00495{word-spacing:0.000000px;}
._4_c00495{width:1.294925px;}
._1_c00495{width:3.508791px;}
._2_c00495{width:4.544527px;}
._0_c00495{width:9.431832px;}
._3_c00495{width:12.993600px;}
._a_c00495{width:14.804028px;}
._8_c00495{width:15.857675px;}
._9_c00495{width:25.929834px;}
._6_c00495{width:30.715983px;}
._5_c00495{width:32.774140px;}
._7_c00495{width:34.608246px;}
.fc1_c00495{color:rgb(0,0,0);}
.fc0_c00495{color:rgb(102,18,18);}
.fs1_c00495{font-size:71.912067px;}
.fs0_c00495{font-size:71.957041px;}
.y0_c00495{bottom:0.000000px;}
.y1_c00495{bottom:0.000008px;}
.y1a_c00495{bottom:30.156225px;}
.y14_c00495{bottom:398.920974px;}
.y13_c00495{bottom:429.277851px;}
.y12_c00495{bottom:462.515343px;}
.y11_c00495{bottom:517.765969px;}
.y10_c00495{bottom:548.122846px;}
.yf_c00495{bottom:580.261618px;}
.ye_c00495{bottom:643.673724px;}
.yd_c00495{bottom:674.030600px;}
.yc_c00495{bottom:704.387477px;}
.yb_c00495{bottom:734.744354px;}
.ya_c00495{bottom:765.101231px;}
.y9_c00495{bottom:795.458108px;}
.y8_c00495{bottom:825.814984px;}
.y7_c00495{bottom:856.171861px;}
.y6_c00495{bottom:886.528738px;}
.y5_c00495{bottom:916.885615px;}
.y4_c00495{bottom:947.242491px;}
.y3_c00495{bottom:977.599368px;}
.y2_c00495{bottom:1007.281655px;}
.y18_c00495{bottom:1070.619777px;}
.y17_c00495{bottom:1100.976654px;}
.y16_c00495{bottom:1131.333531px;}
.y15_c00495{bottom:1161.690408px;}
.y19_c00495{bottom:1199.835078px;}
.h4_c00495{height:55.092790px;}
.h3_c00495{height:55.127245px;}
.h2_c00495{height:1304.999946px;}
.h0_c00495{height:1304.999953px;}
.h1_c00495{height:1305.000000px;}
.w2_c00495{width:934.874961px;}
.w0_c00495{width:934.875000px;}
.w1_c00495{width:935.250000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:87.850202px;}
.x2_c00495{left:89.434062px;}
.x3_c00495{left:451.985828px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls2_c00495{letter-spacing:0.000000pt;}
.ls1_c00495{letter-spacing:0.031231pt;}
.ls0_c00495{letter-spacing:3.310503pt;}
.ws0_c00495{word-spacing:-16.615081pt;}
.ws1_c00495{word-spacing:-16.604696pt;}
.ws2_c00495{word-spacing:0.000000pt;}
._4_c00495{width:1.151044pt;}
._1_c00495{width:3.118925pt;}
._2_c00495{width:4.039580pt;}
._0_c00495{width:8.383851pt;}
._3_c00495{width:11.549867pt;}
._a_c00495{width:13.159136pt;}
._8_c00495{width:14.095711pt;}
._9_c00495{width:23.048742pt;}
._6_c00495{width:27.303096pt;}
._5_c00495{width:29.132569pt;}
._7_c00495{width:30.762885pt;}
.fs1_c00495{font-size:63.921837pt;}
.fs0_c00495{font-size:63.961814pt;}
.y0_c00495{bottom:0.000000pt;}
.y1_c00495{bottom:0.000007pt;}
.y1a_c00495{bottom:26.805533pt;}
.y14_c00495{bottom:354.596421pt;}
.y13_c00495{bottom:381.580312pt;}
.y12_c00495{bottom:411.124749pt;}
.y11_c00495{bottom:460.236417pt;}
.y10_c00495{bottom:487.220307pt;}
.yf_c00495{bottom:515.788105pt;}
.ye_c00495{bottom:572.154421pt;}
.yd_c00495{bottom:599.138312pt;}
.yc_c00495{bottom:626.122202pt;}
.yb_c00495{bottom:653.106092pt;}
.ya_c00495{bottom:680.089983pt;}
.y9_c00495{bottom:707.073873pt;}
.y8_c00495{bottom:734.057764pt;}
.y7_c00495{bottom:761.041654pt;}
.y6_c00495{bottom:788.025545pt;}
.y5_c00495{bottom:815.009435pt;}
.y4_c00495{bottom:841.993326pt;}
.y3_c00495{bottom:868.977216pt;}
.y2_c00495{bottom:895.361471pt;}
.y18_c00495{bottom:951.662024pt;}
.y17_c00495{bottom:978.645915pt;}
.y16_c00495{bottom:1005.629805pt;}
.y15_c00495{bottom:1032.613696pt;}
.y19_c00495{bottom:1066.520069pt;}
.h4_c00495{height:48.971369pt;}
.h3_c00495{height:49.001996pt;}
.h2_c00495{height:1159.999952pt;}
.h0_c00495{height:1159.999959pt;}
.h1_c00495{height:1160.000000pt;}
.w2_c00495{width:830.999965pt;}
.w0_c00495{width:831.000000pt;}
.w1_c00495{width:831.333333pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:78.089069pt;}
.x2_c00495{left:79.496944pt;}
.x3_c00495{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b021048f8ac9b9addab95434.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:0.769531;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00496;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;line-height:1.006348;font-style:normal;font-weight: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_c00496;src:url('chunks/assets/font_f03a05ab17df7486c8f833bb.woff2')format("woff");}.ff5_c00496{font-family:ff5_c00496;line-height:0.769531;font-style:normal;font-weight: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_c00496;src:url('chunks/assets/font_99f19f6aa3008dc666c41af4.woff2')format("woff");}.ff6_c00496{font-family:ff6_c00496;line-height:1.171387;font-style:normal;font-weight: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_c00496;src:url('chunks/assets/font_f1830d50bcdc45f7ce4c03fb.woff2')format("woff");}.ff7_c00496{font-family:ff7_c00496;line-height:0.769531;font-style:normal;font-weight: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_c00496;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff8_c00496{font-family:ff8_c00496;line-height:0.743000;font-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_c00496{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3d_c00496{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m29_c00496{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00496{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2a_c00496{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3c_c00496{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00496{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m15_c00496{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00496{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2b_c00496{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m28_c00496{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m16_c00496{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00496{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2c_c00496{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3b_c00496{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00496{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m17_c00496{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m27_c00496{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00496{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00496{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2d_c00496{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m18_c00496{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3a_c00496{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m26_c00496{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00496{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00496{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m19_c00496{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2e_c00496{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m39_c00496{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00496{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m25_c00496{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1a_c00496{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00496{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m2f_c00496{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m38_c00496{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m24_c00496{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00496{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m23_c00496{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00496{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m30_c00496{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1b_c00496{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m37_c00496{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m22_c00496{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00496{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m31_c00496{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00496{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m21_c00496{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00496{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m32_c00496{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1c_c00496{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00496{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m33_c00496{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m20_c00496{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m36_c00496{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1d_c00496{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00496{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00496{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m34_c00496{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1e_c00496{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m1f_c00496{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m35_c00496{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00496{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m3e_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);}
.v0_c00496{vertical-align:0.000000px;}
.v1_c00496{vertical-align:8.961696px;}
.ls0_c00496{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00496{word-spacing:-18.680283px;}
.ws3_c00496{word-spacing:-14.474592px;}
.ws4_c00496{word-spacing:0.000000px;}
.ws0_c00496{word-spacing:275.967713px;}
.ws1_c00496{word-spacing:281.470806px;}
._1_c00496{width:3.125188px;}
._0_c00496{width:12.281080px;}
._3_c00496{width:15.820894px;}
._2_c00496{width:22.346034px;}
.fc1_c00496{color:rgb(102,18,18);}
.fc2_c00496{color:rgb(255,255,255);}
.fc0_c00496{color:rgb(0,0,0);}
.fs6_c00496{font-size:41.974772px;}
.fsb_c00496{font-size:41.975069px;}
.fs1_c00496{font-size:47.339969px;}
.fs4_c00496{font-size:47.339970px;}
.fs0_c00496{font-size:47.339972px;}
.fs3_c00496{font-size:47.339973px;}
.fs2_c00496{font-size:47.339974px;}
.fs5_c00496{font-size:47.339975px;}
.fs7_c00496{font-size:55.171880px;}
.fsf_c00496{font-size:55.721735px;}
.fsa_c00496{font-size:59.949210px;}
.fse_c00496{font-size:71.912067px;}
.fs8_c00496{font-size:71.957041px;}
.fsd_c00496{font-size:76.965540px;}
.fs9_c00496{font-size:83.919899px;}
.fsc_c00496{font-size:95.927731px;}
.y0_c00496{bottom:0.000000px;}
.y1_c00496{bottom:0.000008px;}
.y50_c00496{bottom:30.156225px;}
.y48_c00496{bottom:183.613773px;}
.y47_c00496{bottom:213.970649px;}
.y46_c00496{bottom:244.327526px;}
.y45_c00496{bottom:274.684403px;}
.y44_c00496{bottom:305.041280px;}
.y49_c00496{bottom:337.319696px;}
.y43_c00496{bottom:404.910520px;}
.y40_c00496{bottom:487.376458px;}
.yf_c00496{bottom:493.812629px;}
.y37_c00496{bottom:493.827623px;}
.ye_c00496{bottom:494.337609px;}
.y38_c00496{bottom:494.357158px;}
.y21_c00496{bottom:494.700737px;}
.y36_c00496{bottom:495.071586px;}
.yd_c00496{bottom:495.403002px;}
.y22_c00496{bottom:495.533530px;}
.y20_c00496{bottom:495.553663px;}
.y35_c00496{bottom:496.322201px;}
.yc_c00496{bottom:496.475623px;}
.y1f_c00496{bottom:496.587915px;}
.y39_c00496{bottom:496.772260px;}
.y10_c00496{bottom:496.835884px;}
.y23_c00496{bottom:497.713596px;}
.y34_c00496{bottom:497.966053px;}
.yb_c00496{bottom:498.126234px;}
.y1e_c00496{bottom:498.789265px;}
.y24_c00496{bottom:499.103521px;}
.y33_c00496{bottom:499.653306px;}
.ya_c00496{bottom:499.818769px;}
.y25_c00496{bottom:500.800864px;}
.y11_c00496{bottom:501.110605px;}
.y32_c00496{bottom:501.517382px;}
.y9_c00496{bottom:501.687706px;}
.y3a_c00496{bottom:501.869915px;}
.y1d_c00496{bottom:502.578702px;}
.y26_c00496{bottom:503.241722px;}
.y12_c00496{bottom:503.627848px;}
.y3b_c00496{bottom:505.496019px;}
.y27_c00496{bottom:505.499367px;}
.y31_c00496{bottom:506.168989px;}
.y8_c00496{bottom:506.348634px;}
.y1c_c00496{bottom:508.044213px;}
.y28_c00496{bottom:508.766327px;}
.y13_c00496{bottom:509.576794px;}
.y3c_c00496{bottom:511.126534px;}
.y1b_c00496{bottom:512.508085px;}
.y30_c00496{bottom:512.566592px;}
.y7_c00496{bottom:512.754669px;}
.y14_c00496{bottom:514.322677px;}
.y29_c00496{bottom:517.158603px;}
.y3d_c00496{bottom:517.780195px;}
.y1a_c00496{bottom:518.929057px;}
.y2f_c00496{bottom:519.869222px;}
.y6_c00496{bottom:519.959421px;}
.y5_c00496{bottom:523.416158px;}
.y19_c00496{bottom:523.496236px;}
.y2a_c00496{bottom:525.202812px;}
.y15_c00496{bottom:526.099549px;}
.y2e_c00496{bottom:527.026630px;}
.y4_c00496{bottom:529.422883px;}
.y3e_c00496{bottom:529.736175px;}
.y18_c00496{bottom:531.263725px;}
.y2d_c00496{bottom:531.792993px;}
.y4f_c00496{bottom:532.181392px;}
.y17_c00496{bottom:535.155114px;}
.y3_c00496{bottom:536.678099px;}
.y2c_c00496{bottom:537.961701px;}
.y16_c00496{bottom:538.332892px;}
.y3f_c00496{bottom:538.696314px;}
.y41_c00496{bottom:540.431168px;}
.y2b_c00496{bottom:545.020884px;}
.y2_c00496{bottom:546.207017px;}
.y42_c00496{bottom:577.871130px;}
.y51_c00496{bottom:655.815586px;}
.y4d_c00496{bottom:1130.692613px;}
.y4b_c00496{bottom:1132.026818px;}
.y4a_c00496{bottom:1150.016079px;}
.y4e_c00496{bottom:1153.707722px;}
.y4c_c00496{bottom:1170.658440px;}
.h9_c00496{height:32.157430px;}
.h7_c00496{height:35.967282px;}
.h6_c00496{height:35.967283px;}
.h8_c00496{height:35.967285px;}
.h4_c00496{height:36.267779px;}
.h3_c00496{height:36.267781px;}
.h5_c00496{height:36.267783px;}
.he_c00496{height:39.085184px;}
.ha_c00496{height:40.005001px;}
.h13_c00496{height:51.885424px;}
.h12_c00496{height:55.092790px;}
.hb_c00496{height:55.127245px;}
.hd_c00496{height:55.821847px;}
.hc_c00496{height:63.759455px;}
.h11_c00496{height:65.223506px;}
.hf_c00496{height:67.002968px;}
.h10_c00496{height:89.323331px;}
.h2_c00496{height:1304.999946px;}
.h0_c00496{height:1304.999953px;}
.h1_c00496{height:1305.000000px;}
.w2_c00496{width:934.874961px;}
.w0_c00496{width:934.875000px;}
.w1_c00496{width:935.250000px;}
.x0_c00496{left:0.000000px;}
.x3a_c00496{left:87.850202px;}
.x3b_c00496{left:108.062661px;}
.x3c_c00496{left:109.658623px;}
.x26_c00496{left:134.894322px;}
.x25_c00496{left:136.566734px;}
.x27_c00496{left:139.937719px;}
.x28_c00496{left:144.785273px;}
.x29_c00496{left:150.147890px;}
.x2a_c00496{left:152.899057px;}
.x2b_c00496{left:155.907145px;}
.x2c_c00496{left:159.752336px;}
.x2d_c00496{left:163.203941px;}
.x2e_c00496{left:171.483965px;}
.x2f_c00496{left:179.748684px;}
.x30_c00496{left:188.175145px;}
.x31_c00496{left:196.556636px;}
.x32_c00496{left:200.721504px;}
.x33_c00496{left:205.276922px;}
.x34_c00496{left:209.084069px;}
.x35_c00496{left:211.669316px;}
.x2_c00496{left:230.260919px;}
.x1_c00496{left:232.395871px;}
.x3_c00496{left:235.482735px;}
.x4_c00496{left:240.319117px;}
.x5_c00496{left:245.673577px;}
.x6_c00496{left:248.421493px;}
.x7_c00496{left:251.426626px;}
.x8_c00496{left:255.268917px;}
.x9_c00496{left:258.553698px;}
.xa_c00496{left:262.988294px;}
.xb_c00496{left:271.601212px;}
.xc_c00496{left:283.434780px;}
.xd_c00496{left:290.867654px;}
.xe_c00496{left:294.260334px;}
.xf_c00496{left:299.596701px;}
.x10_c00496{left:302.984150px;}
.x11_c00496{left:306.993562px;}
.x12_c00496{left:325.378518px;}
.x13_c00496{left:326.595106px;}
.x14_c00496{left:328.015253px;}
.x15_c00496{left:331.410444px;}
.x16_c00496{left:334.633053px;}
.x17_c00496{left:340.511825px;}
.x18_c00496{left:346.695139px;}
.x19_c00496{left:352.384720px;}
.x1a_c00496{left:355.792694px;}
.x1b_c00496{left:363.695116px;}
.x1c_c00496{left:371.679253px;}
.x1d_c00496{left:378.434940px;}
.x1e_c00496{left:381.453328px;}
.x1f_c00496{left:384.455783px;}
.x20_c00496{left:387.851715px;}
.x21_c00496{left:390.467224px;}
.x22_c00496{left:393.779799px;}
.x23_c00496{left:398.952070px;}
.x24_c00496{left:401.755082px;}
.x3d_c00496{left:451.985828px;}
.x37_c00496{left:464.618828px;}
.x3e_c00496{left:689.936767px;}
.x39_c00496{left:691.431927px;}
.x38_c00496{left:733.103068px;}
.x36_c00496{left:756.637341px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.v1_c00496{vertical-align:7.965952pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws2_c00496{word-spacing:-16.604696pt;}
.ws3_c00496{word-spacing:-12.866304pt;}
.ws4_c00496{word-spacing:0.000000pt;}
.ws0_c00496{word-spacing:245.304634pt;}
.ws1_c00496{word-spacing:250.196272pt;}
._1_c00496{width:2.777945pt;}
._0_c00496{width:10.916516pt;}
._3_c00496{width:14.063016pt;}
._2_c00496{width:19.863141pt;}
.fs6_c00496{font-size:37.310908pt;}
.fsb_c00496{font-size:37.311173pt;}
.fs1_c00496{font-size:42.079973pt;}
.fs4_c00496{font-size:42.079974pt;}
.fs0_c00496{font-size:42.079975pt;}
.fs3_c00496{font-size:42.079976pt;}
.fs2_c00496{font-size:42.079977pt;}
.fs5_c00496{font-size:42.079978pt;}
.fs7_c00496{font-size:49.041671pt;}
.fsf_c00496{font-size:49.530431pt;}
.fsa_c00496{font-size:53.288186pt;}
.fse_c00496{font-size:63.921837pt;}
.fs8_c00496{font-size:63.961814pt;}
.fsd_c00496{font-size:68.413814pt;}
.fs9_c00496{font-size:74.595466pt;}
.fsc_c00496{font-size:85.269094pt;}
.y0_c00496{bottom:0.000000pt;}
.y1_c00496{bottom:0.000007pt;}
.y50_c00496{bottom:26.805533pt;}
.y48_c00496{bottom:163.212242pt;}
.y47_c00496{bottom:190.196133pt;}
.y46_c00496{bottom:217.180023pt;}
.y45_c00496{bottom:244.163914pt;}
.y44_c00496{bottom:271.147804pt;}
.y49_c00496{bottom:299.839730pt;}
.y43_c00496{bottom:359.920462pt;}
.y40_c00496{bottom:433.223518pt;}
.yf_c00496{bottom:438.944560pt;}
.y37_c00496{bottom:438.957887pt;}
.ye_c00496{bottom:439.411208pt;}
.y38_c00496{bottom:439.428585pt;}
.y21_c00496{bottom:439.733989pt;}
.y36_c00496{bottom:440.063632pt;}
.yd_c00496{bottom:440.358224pt;}
.y22_c00496{bottom:440.474249pt;}
.y20_c00496{bottom:440.492144pt;}
.y35_c00496{bottom:441.175290pt;}
.yc_c00496{bottom:441.311665pt;}
.y1f_c00496{bottom:441.411480pt;}
.y39_c00496{bottom:441.575343pt;}
.y10_c00496{bottom:441.631897pt;}
.y23_c00496{bottom:442.412085pt;}
.y34_c00496{bottom:442.636491pt;}
.yb_c00496{bottom:442.778875pt;}
.y1e_c00496{bottom:443.368235pt;}
.y24_c00496{bottom:443.647574pt;}
.y33_c00496{bottom:444.136272pt;}
.ya_c00496{bottom:444.283350pt;}
.y25_c00496{bottom:445.156323pt;}
.y11_c00496{bottom:445.431649pt;}
.y32_c00496{bottom:445.793228pt;}
.y9_c00496{bottom:445.944627pt;}
.y3a_c00496{bottom:446.106592pt;}
.y1d_c00496{bottom:446.736624pt;}
.y26_c00496{bottom:447.325975pt;}
.y12_c00496{bottom:447.669198pt;}
.y3b_c00496{bottom:449.329795pt;}
.y27_c00496{bottom:449.332771pt;}
.y31_c00496{bottom:449.927990pt;}
.y8_c00496{bottom:450.087675pt;}
.y1c_c00496{bottom:451.594856pt;}
.y28_c00496{bottom:452.236735pt;}
.y13_c00496{bottom:452.957150pt;}
.y3c_c00496{bottom:454.334697pt;}
.y1b_c00496{bottom:455.562742pt;}
.y30_c00496{bottom:455.614749pt;}
.y7_c00496{bottom:455.781928pt;}
.y14_c00496{bottom:457.175713pt;}
.y29_c00496{bottom:459.696536pt;}
.y3d_c00496{bottom:460.249062pt;}
.y1a_c00496{bottom:461.270273pt;}
.y2f_c00496{bottom:462.105976pt;}
.y6_c00496{bottom:462.186152pt;}
.y5_c00496{bottom:465.258807pt;}
.y19_c00496{bottom:465.329988pt;}
.y2a_c00496{bottom:466.846944pt;}
.y15_c00496{bottom:467.644044pt;}
.y2e_c00496{bottom:468.468115pt;}
.y4_c00496{bottom:470.598118pt;}
.y3e_c00496{bottom:470.876600pt;}
.y18_c00496{bottom:472.234422pt;}
.y2d_c00496{bottom:472.704883pt;}
.y4f_c00496{bottom:473.050126pt;}
.y17_c00496{bottom:475.693435pt;}
.y3_c00496{bottom:477.047199pt;}
.y2c_c00496{bottom:478.188178pt;}
.y16_c00496{bottom:478.518126pt;}
.y3f_c00496{bottom:478.841168pt;}
.y41_c00496{bottom:480.383260pt;}
.y2b_c00496{bottom:484.463008pt;}
.y2_c00496{bottom:485.517349pt;}
.y42_c00496{bottom:513.663227pt;}
.y51_c00496{bottom:582.947188pt;}
.y4d_c00496{bottom:1005.060100pt;}
.y4b_c00496{bottom:1006.246061pt;}
.y4a_c00496{bottom:1022.236514pt;}
.y4e_c00496{bottom:1025.517975pt;}
.y4c_c00496{bottom:1040.585280pt;}
.h9_c00496{height:28.584382pt;}
.h7_c00496{height:31.970917pt;}
.h6_c00496{height:31.970918pt;}
.h8_c00496{height:31.970920pt;}
.h4_c00496{height:32.238026pt;}
.h3_c00496{height:32.238028pt;}
.h5_c00496{height:32.238029pt;}
.he_c00496{height:34.742386pt;}
.ha_c00496{height:35.560001pt;}
.h13_c00496{height:46.120377pt;}
.h12_c00496{height:48.971369pt;}
.hb_c00496{height:49.001996pt;}
.hd_c00496{height:49.619420pt;}
.hc_c00496{height:56.675071pt;}
.h11_c00496{height:57.976449pt;}
.hf_c00496{height:59.558193pt;}
.h10_c00496{height:79.398517pt;}
.h2_c00496{height:1159.999952pt;}
.h0_c00496{height:1159.999959pt;}
.h1_c00496{height:1160.000000pt;}
.w2_c00496{width:830.999965pt;}
.w0_c00496{width:831.000000pt;}
.w1_c00496{width:831.333333pt;}
.x0_c00496{left:0.000000pt;}
.x3a_c00496{left:78.089069pt;}
.x3b_c00496{left:96.055698pt;}
.x3c_c00496{left:97.474332pt;}
.x26_c00496{left:119.906064pt;}
.x25_c00496{left:121.392652pt;}
.x27_c00496{left:124.389083pt;}
.x28_c00496{left:128.698021pt;}
.x29_c00496{left:133.464791pt;}
.x2a_c00496{left:135.910272pt;}
.x2b_c00496{left:138.584129pt;}
.x2c_c00496{left:142.002076pt;}
.x2d_c00496{left:145.070170pt;}
.x2e_c00496{left:152.430191pt;}
.x2f_c00496{left:159.776608pt;}
.x30_c00496{left:167.266795pt;}
.x31_c00496{left:174.717010pt;}
.x32_c00496{left:178.419115pt;}
.x33_c00496{left:182.468375pt;}
.x34_c00496{left:185.852506pt;}
.x35_c00496{left:188.150503pt;}
.x2_c00496{left:204.676373pt;}
.x1_c00496{left:206.574107pt;}
.x3_c00496{left:209.317987pt;}
.x4_c00496{left:213.616993pt;}
.x5_c00496{left:218.376513pt;}
.x6_c00496{left:220.819105pt;}
.x7_c00496{left:223.490334pt;}
.x8_c00496{left:226.905704pt;}
.x9_c00496{left:229.825509pt;}
.xa_c00496{left:233.767373pt;}
.xb_c00496{left:241.423300pt;}
.xc_c00496{left:251.942027pt;}
.xd_c00496{left:258.549026pt;}
.xe_c00496{left:261.564741pt;}
.xf_c00496{left:266.308178pt;}
.x10_c00496{left:269.319244pt;}
.x11_c00496{left:272.883167pt;}
.x12_c00496{left:289.225349pt;}
.x13_c00496{left:290.306761pt;}
.x14_c00496{left:291.569114pt;}
.x15_c00496{left:294.587062pt;}
.x16_c00496{left:297.451603pt;}
.x17_c00496{left:302.677178pt;}
.x18_c00496{left:308.173457pt;}
.x19_c00496{left:313.230862pt;}
.x1a_c00496{left:316.260173pt;}
.x1b_c00496{left:323.284548pt;}
.x1c_c00496{left:330.381558pt;}
.x1d_c00496{left:336.386614pt;}
.x1e_c00496{left:339.069625pt;}
.x1f_c00496{left:341.738474pt;}
.x20_c00496{left:344.757080pt;}
.x21_c00496{left:347.081977pt;}
.x22_c00496{left:350.026488pt;}
.x23_c00496{left:354.624063pt;}
.x24_c00496{left:357.115628pt;}
.x3d_c00496{left:401.765180pt;}
.x37_c00496{left:412.994514pt;}
.x3e_c00496{left:613.277126pt;}
.x39_c00496{left:614.606158pt;}
.x38_c00496{left:651.647171pt;}
.x36_c00496{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_857bac774935085cbad39967.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.006348;font-style:normal;font-weight:normal;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_926fa6a4f32b4cf24ed25a2e.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.006348;font-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_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);}
.v0_c00497{vertical-align:0.000000px;}
.ls0_c00497{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00497{word-spacing:-18.680283px;}
.ws1_c00497{word-spacing:0.000000px;}
._e_c00497{width:1.939440px;}
._0_c00497{width:3.481547px;}
._7_c00497{width:4.868844px;}
._4_c00497{width:6.540514px;}
._f_c00497{width:7.572603px;}
._b_c00497{width:8.859097px;}
._c_c00497{width:10.174066px;}
._3_c00497{width:11.799549px;}
._a_c00497{width:12.827529px;}
._2_c00497{width:16.314430px;}
._8_c00497{width:17.366303px;}
._d_c00497{width:19.710820px;}
._1_c00497{width:23.200946px;}
._9_c00497{width:24.620218px;}
._6_c00497{width:25.708177px;}
._5_c00497{width:27.264976px;}
.fc1_c00497{color:rgb(0,0,0);}
.fc0_c00497{color:rgb(102,18,18);}
.fs1_c00497{font-size:71.912067px;}
.fs0_c00497{font-size:71.957041px;}
.y0_c00497{bottom:0.000000px;}
.y1_c00497{bottom:0.000008px;}
.y1f_c00497{bottom:30.156225px;}
.y13_c00497{bottom:299.137936px;}
.y12_c00497{bottom:329.494812px;}
.y11_c00497{bottom:359.851689px;}
.y10_c00497{bottom:390.208566px;}
.yf_c00497{bottom:420.565443px;}
.ye_c00497{bottom:450.922319px;}
.yd_c00497{bottom:481.279196px;}
.yc_c00497{bottom:511.636073px;}
.yb_c00497{bottom:541.992950px;}
.ya_c00497{bottom:572.349826px;}
.y9_c00497{bottom:602.706703px;}
.y8_c00497{bottom:633.063580px;}
.y7_c00497{bottom:663.420457px;}
.y6_c00497{bottom:693.777333px;}
.y5_c00497{bottom:724.134210px;}
.y4_c00497{bottom:754.491087px;}
.y3_c00497{bottom:784.847964px;}
.y2_c00497{bottom:814.530273px;}
.y1e_c00497{bottom:896.940910px;}
.y1d_c00497{bottom:927.297787px;}
.y1c_c00497{bottom:957.654664px;}
.y1b_c00497{bottom:988.011541px;}
.y1a_c00497{bottom:1018.368418px;}
.y19_c00497{bottom:1048.725294px;}
.y18_c00497{bottom:1079.082171px;}
.y17_c00497{bottom:1109.439048px;}
.y16_c00497{bottom:1139.795925px;}
.y15_c00497{bottom:1170.152801px;}
.y14_c00497{bottom:1199.835078px;}
.h4_c00497{height:55.092790px;}
.h3_c00497{height:55.127245px;}
.h2_c00497{height:1304.999946px;}
.h0_c00497{height:1304.999953px;}
.h1_c00497{height:1305.000000px;}
.w2_c00497{width:934.874961px;}
.w0_c00497{width:934.875000px;}
.w1_c00497{width:935.250000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:87.850202px;}
.x2_c00497{left:451.985828px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws0_c00497{word-spacing:-16.604696pt;}
.ws1_c00497{word-spacing:0.000000pt;}
._e_c00497{width:1.723946pt;}
._0_c00497{width:3.094708pt;}
._7_c00497{width:4.327861pt;}
._4_c00497{width:5.813791pt;}
._f_c00497{width:6.731202pt;}
._b_c00497{width:7.874753pt;}
._c_c00497{width:9.043614pt;}
._3_c00497{width:10.488488pt;}
._a_c00497{width:11.402248pt;}
._2_c00497{width:14.501716pt;}
._8_c00497{width:15.436714pt;}
._d_c00497{width:17.520729pt;}
._1_c00497{width:20.623063pt;}
._9_c00497{width:21.884638pt;}
._6_c00497{width:22.851713pt;}
._5_c00497{width:24.235534pt;}
.fs1_c00497{font-size:63.921837pt;}
.fs0_c00497{font-size:63.961814pt;}
.y0_c00497{bottom:0.000000pt;}
.y1_c00497{bottom:0.000007pt;}
.y1f_c00497{bottom:26.805533pt;}
.y13_c00497{bottom:265.900387pt;}
.y12_c00497{bottom:292.884278pt;}
.y11_c00497{bottom:319.868168pt;}
.y10_c00497{bottom:346.852059pt;}
.yf_c00497{bottom:373.835949pt;}
.ye_c00497{bottom:400.819839pt;}
.yd_c00497{bottom:427.803730pt;}
.yc_c00497{bottom:454.787620pt;}
.yb_c00497{bottom:481.771511pt;}
.ya_c00497{bottom:508.755401pt;}
.y9_c00497{bottom:535.739292pt;}
.y8_c00497{bottom:562.723182pt;}
.y7_c00497{bottom:589.707073pt;}
.y6_c00497{bottom:616.690963pt;}
.y5_c00497{bottom:643.674854pt;}
.y4_c00497{bottom:670.658744pt;}
.y3_c00497{bottom:697.642634pt;}
.y2_c00497{bottom:724.026909pt;}
.y1e_c00497{bottom:797.280809pt;}
.y1d_c00497{bottom:824.264700pt;}
.y1c_c00497{bottom:851.248590pt;}
.y1b_c00497{bottom:878.232481pt;}
.y1a_c00497{bottom:905.216371pt;}
.y19_c00497{bottom:932.200262pt;}
.y18_c00497{bottom:959.184152pt;}
.y17_c00497{bottom:986.168042pt;}
.y16_c00497{bottom:1013.151933pt;}
.y15_c00497{bottom:1040.135823pt;}
.y14_c00497{bottom:1066.520069pt;}
.h4_c00497{height:48.971369pt;}
.h3_c00497{height:49.001996pt;}
.h2_c00497{height:1159.999952pt;}
.h0_c00497{height:1159.999959pt;}
.h1_c00497{height:1160.000000pt;}
.w2_c00497{width:830.999965pt;}
.w0_c00497{width:831.000000pt;}
.w1_c00497{width:831.333333pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:78.089069pt;}
.x2_c00497{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.006348;font-style:normal;font-weight:normal;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_ac6bd69b34f0b5b46dec1019.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.006348;font-style:normal;font-weight:normal;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_c8b705727a0c0961ffd0b268.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.000000;font-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_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);}
.v0_c00498{vertical-align:0.000000px;}
.ls1_c00498{letter-spacing:0.000000px;}
.ls0_c00498{letter-spacing:32.464993px;}
.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:-18.680283px;}
.ws1_c00498{word-spacing:0.000000px;}
._6_c00498{width:1.611417px;}
._2_c00498{width:2.848290px;}
._4_c00498{width:5.297803px;}
._0_c00498{width:6.541542px;}
._1_c00498{width:10.412803px;}
._5_c00498{width:13.175727px;}
._7_c00498{width:20.034789px;}
._3_c00498{width:32.457923px;}
.fc1_c00498{color:rgb(0,0,0);}
.fc0_c00498{color:rgb(102,18,18);}
.fs1_c00498{font-size:71.912067px;}
.fs0_c00498{font-size:71.957041px;}
.y0_c00498{bottom:0.000000px;}
.y1_c00498{bottom:0.000008px;}
.ye_c00498{bottom:30.156225px;}
.yd_c00498{bottom:831.460859px;}
.yc_c00498{bottom:861.817735px;}
.yb_c00498{bottom:891.252148px;}
.ya_c00498{bottom:962.598324px;}
.y9_c00498{bottom:992.955201px;}
.y8_c00498{bottom:1023.312078px;}
.y7_c00498{bottom:1053.668954px;}
.y6_c00498{bottom:1084.025831px;}
.y5_c00498{bottom:1114.382708px;}
.y4_c00498{bottom:1144.739585px;}
.y3_c00498{bottom:1175.096462px;}
.y2_c00498{bottom:1199.835078px;}
.h4_c00498{height:55.092790px;}
.h3_c00498{height:55.127245px;}
.h2_c00498{height:1304.999946px;}
.h0_c00498{height:1304.999953px;}
.h1_c00498{height:1305.000000px;}
.w2_c00498{width:934.874961px;}
.w0_c00498{width:934.875000px;}
.w1_c00498{width:935.250000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:87.850202px;}
.x2_c00498{left:451.985828px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls1_c00498{letter-spacing:0.000000pt;}
.ls0_c00498{letter-spacing:28.857771pt;}
.ws0_c00498{word-spacing:-16.604696pt;}
.ws1_c00498{word-spacing:0.000000pt;}
._6_c00498{width:1.432370pt;}
._2_c00498{width:2.531814pt;}
._4_c00498{width:4.709159pt;}
._0_c00498{width:5.814704pt;}
._1_c00498{width:9.255825pt;}
._5_c00498{width:11.711757pt;}
._7_c00498{width:17.808702pt;}
._3_c00498{width:28.851487pt;}
.fs1_c00498{font-size:63.921837pt;}
.fs0_c00498{font-size:63.961814pt;}
.y0_c00498{bottom:0.000000pt;}
.y1_c00498{bottom:0.000007pt;}
.ye_c00498{bottom:26.805533pt;}
.yd_c00498{bottom:739.076319pt;}
.yc_c00498{bottom:766.060209pt;}
.yb_c00498{bottom:792.224132pt;}
.ya_c00498{bottom:855.642955pt;}
.y9_c00498{bottom:882.626845pt;}
.y8_c00498{bottom:909.610736pt;}
.y7_c00498{bottom:936.594626pt;}
.y6_c00498{bottom:963.578517pt;}
.y5_c00498{bottom:990.562407pt;}
.y4_c00498{bottom:1017.546298pt;}
.y3_c00498{bottom:1044.530188pt;}
.y2_c00498{bottom:1066.520069pt;}
.h4_c00498{height:48.971369pt;}
.h3_c00498{height:49.001996pt;}
.h2_c00498{height:1159.999952pt;}
.h0_c00498{height:1159.999959pt;}
.h1_c00498{height:1160.000000pt;}
.w2_c00498{width:830.999965pt;}
.w0_c00498{width:831.000000pt;}
.w1_c00498{width:831.333333pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:78.089069pt;}
.x2_c00498{left:401.765180pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0fe60e3e3f6af234588c97b.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.006348;font-style:normal;font-weight:normal;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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:0.769531;font-style:normal;font-weight:normal;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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:0.734863;font-style:normal;font-weight:normal;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_628de004bb3644a92ee3baa3.woff2')format("woff");}.ff4_c00499{font-family:ff4_c00499;line-height:0.769531;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff5_c00499{font-family:ff5_c00499;line-height:1.006348;font-style:normal;font-weight: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_c00499;src:url('chunks/assets/font_f03a05ab17df7486c8f833bb.woff2')format("woff");}.ff6_c00499{font-family:ff6_c00499;line-height:0.769531;font-style:normal;font-weight: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_c00499;src:url('chunks/assets/font_69d6fb7b8f906636eb761f22.woff2')format("woff");}.ff7_c00499{font-family:ff7_c00499;line-height:1.171387;font-style:normal;font-weight: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_c00499;src:url('chunks/assets/font_1f8940b33b11db5cbfac284c.woff2')format("woff");}.ff8_c00499{font-family:ff8_c00499;line-height:1.005371;font-style:normal;font-weight: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_c00499;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff9_c00499{font-family:ff9_c00499;line-height:0.743000;font-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_c00499{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3d_c00499{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m29_c00499{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m0_c00499{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2a_c00499{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3c_c00499{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m1_c00499{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m15_c00499{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m13_c00499{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2b_c00499{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m28_c00499{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m16_c00499{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m2_c00499{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2c_c00499{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3b_c00499{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m3_c00499{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m17_c00499{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m27_c00499{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m12_c00499{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m4_c00499{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2d_c00499{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m18_c00499{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3a_c00499{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m26_c00499{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m11_c00499{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m5_c00499{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m19_c00499{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2e_c00499{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m39_c00499{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m10_c00499{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m25_c00499{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1a_c00499{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m6_c00499{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m2f_c00499{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m38_c00499{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m24_c00499{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.mf_c00499{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m23_c00499{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m7_c00499{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m30_c00499{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1b_c00499{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m37_c00499{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m22_c00499{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m8_c00499{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m31_c00499{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.me_c00499{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m21_c00499{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.m9_c00499{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m32_c00499{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1c_c00499{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.ma_c00499{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m33_c00499{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m20_c00499{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m36_c00499{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1d_c00499{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.md_c00499{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mb_c00499{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m34_c00499{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1e_c00499{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m1f_c00499{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m35_c00499{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.mc_c00499{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);}
.m3e_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);}
.v0_c00499{vertical-align:0.000000px;}
.v1_c00499{vertical-align:8.961696px;}
.ls1_c00499{letter-spacing:0.000000px;}
.ls0_c00499{letter-spacing:0.027340px;}
.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;}
}
.ws1_c00499{word-spacing:-24.918727px;}
.ws4_c00499{word-spacing:-18.680283px;}
.ws5_c00499{word-spacing:-14.474592px;}
.ws0_c00499{word-spacing:-0.071957px;}
.ws6_c00499{word-spacing:0.000000px;}
.ws2_c00499{word-spacing:275.967713px;}
.ws3_c00499{word-spacing:281.470806px;}
._0_c00499{width:1.345912px;}
._4_c00499{width:2.389132px;}
._3_c00499{width:3.583798px;}
._1_c00499{width:6.024465px;}
._2_c00499{width:7.302236px;}
._5_c00499{width:31.373053px;}
.fc1_c00499{color:rgb(102,18,18);}
.fc2_c00499{color:rgb(255,255,255);}
.fc0_c00499{color:rgb(0,0,0);}
.fs6_c00499{font-size:41.974772px;}
.fsb_c00499{font-size:41.975069px;}
.fs1_c00499{font-size:47.339969px;}
.fs4_c00499{font-size:47.339970px;}
.fs0_c00499{font-size:47.339972px;}
.fs3_c00499{font-size:47.339973px;}
.fs2_c00499{font-size:47.339974px;}
.fs5_c00499{font-size:47.339975px;}
.fs7_c00499{font-size:55.171880px;}
.fsf_c00499{font-size:55.721735px;}
.fsa_c00499{font-size:59.949210px;}
.fse_c00499{font-size:71.912067px;}
.fs8_c00499{font-size:71.957041px;}
.fsd_c00499{font-size:76.965540px;}
.fs9_c00499{font-size:83.919899px;}
.fsc_c00499{font-size:95.927731px;}
.y0_c00499{bottom:0.000000px;}
.y1_c00499{bottom:0.000008px;}
.y53_c00499{bottom:30.156225px;}
.y4b_c00499{bottom:86.731303px;}
.y4a_c00499{bottom:117.088179px;}
.y49_c00499{bottom:147.445056px;}
.y48_c00499{bottom:177.801933px;}
.y47_c00499{bottom:208.158810px;}
.y46_c00499{bottom:238.515686px;}
.y45_c00499{bottom:268.872563px;}
.y44_c00499{bottom:299.229440px;}
.y4c_c00499{bottom:339.608900px;}
.y43_c00499{bottom:404.910520px;}
.y40_c00499{bottom:487.376458px;}
.yf_c00499{bottom:493.812629px;}
.y37_c00499{bottom:493.827623px;}
.ye_c00499{bottom:494.337609px;}
.y38_c00499{bottom:494.357158px;}
.y21_c00499{bottom:494.700737px;}
.y36_c00499{bottom:495.071586px;}
.yd_c00499{bottom:495.403002px;}
.y22_c00499{bottom:495.533530px;}
.y20_c00499{bottom:495.553663px;}
.y35_c00499{bottom:496.322201px;}
.yc_c00499{bottom:496.475623px;}
.y1f_c00499{bottom:496.587915px;}
.y39_c00499{bottom:496.772260px;}
.y10_c00499{bottom:496.835884px;}
.y23_c00499{bottom:497.713596px;}
.y34_c00499{bottom:497.966053px;}
.yb_c00499{bottom:498.126234px;}
.y1e_c00499{bottom:498.789265px;}
.y24_c00499{bottom:499.103521px;}
.y33_c00499{bottom:499.653306px;}
.ya_c00499{bottom:499.818769px;}
.y25_c00499{bottom:500.800864px;}
.y11_c00499{bottom:501.110605px;}
.y32_c00499{bottom:501.517382px;}
.y9_c00499{bottom:501.687706px;}
.y3a_c00499{bottom:501.869915px;}
.y1d_c00499{bottom:502.578702px;}
.y26_c00499{bottom:503.241722px;}
.y12_c00499{bottom:503.627848px;}
.y3b_c00499{bottom:505.496019px;}
.y27_c00499{bottom:505.499367px;}
.y31_c00499{bottom:506.168989px;}
.y8_c00499{bottom:506.348634px;}
.y1c_c00499{bottom:508.044213px;}
.y28_c00499{bottom:508.766327px;}
.y13_c00499{bottom:509.576794px;}
.y3c_c00499{bottom:511.126534px;}
.y1b_c00499{bottom:512.508085px;}
.y30_c00499{bottom:512.566592px;}
.y7_c00499{bottom:512.754669px;}
.y14_c00499{bottom:514.322677px;}
.y29_c00499{bottom:517.158603px;}
.y3d_c00499{bottom:517.780195px;}
.y1a_c00499{bottom:518.929057px;}
.y2f_c00499{bottom:519.869222px;}
.y6_c00499{bottom:519.959421px;}
.y5_c00499{bottom:523.416158px;}
.y19_c00499{bottom:523.496236px;}
.y2a_c00499{bottom:525.202812px;}
.y15_c00499{bottom:526.099549px;}
.y2e_c00499{bottom:527.026630px;}
.y4_c00499{bottom:529.422883px;}
.y3e_c00499{bottom:529.736175px;}
.y18_c00499{bottom:531.263725px;}
.y2d_c00499{bottom:531.792993px;}
.y52_c00499{bottom:532.181392px;}
.y17_c00499{bottom:535.155114px;}
.y3_c00499{bottom:536.678099px;}
.y2c_c00499{bottom:537.961701px;}
.y16_c00499{bottom:538.332892px;}
.y3f_c00499{bottom:538.696314px;}
.y41_c00499{bottom:540.431168px;}
.y2b_c00499{bottom:545.020884px;}
.y2_c00499{bottom:546.207017px;}
.y42_c00499{bottom:577.871130px;}
.y54_c00499{bottom:655.815586px;}
.y50_c00499{bottom:1130.692613px;}
.y4e_c00499{bottom:1132.026818px;}
.y4d_c00499{bottom:1150.016079px;}
.y51_c00499{bottom:1153.707722px;}
.y4f_c00499{bottom:1170.658440px;}
.h9_c00499{height:32.157430px;}
.h7_c00499{height:35.967282px;}
.h6_c00499{height:35.967283px;}
.h8_c00499{height:35.967285px;}
.h4_c00499{height:36.267779px;}
.h3_c00499{height:36.267781px;}
.h5_c00499{height:36.267783px;}
.he_c00499{height:39.085184px;}
.ha_c00499{height:40.005001px;}
.h13_c00499{height:51.885424px;}
.h12_c00499{height:55.092790px;}
.hb_c00499{height:55.127245px;}
.hd_c00499{height:55.821847px;}
.hc_c00499{height:63.759455px;}
.h11_c00499{height:65.223506px;}
.hf_c00499{height:67.002968px;}
.h10_c00499{height:89.323331px;}
.h2_c00499{height:1304.999946px;}
.h0_c00499{height:1304.999953px;}
.h1_c00499{height:1305.000000px;}
.w2_c00499{width:934.874961px;}
.w0_c00499{width:934.875000px;}
.w1_c00499{width:935.250000px;}
.x0_c00499{left:0.000000px;}
.x3a_c00499{left:87.850202px;}
.x3b_c00499{left:108.062661px;}
.x3c_c00499{left:109.658623px;}
.x26_c00499{left:134.894322px;}
.x25_c00499{left:136.566734px;}
.x27_c00499{left:139.937719px;}
.x28_c00499{left:144.785273px;}
.x29_c00499{left:150.147890px;}
.x2a_c00499{left:152.899057px;}
.x2b_c00499{left:155.907145px;}
.x2c_c00499{left:159.752336px;}
.x2d_c00499{left:163.203941px;}
.x2e_c00499{left:171.483965px;}
.x2f_c00499{left:179.748684px;}
.x30_c00499{left:188.175145px;}
.x31_c00499{left:196.556636px;}
.x32_c00499{left:200.721504px;}
.x33_c00499{left:205.276922px;}
.x34_c00499{left:209.084069px;}
.x35_c00499{left:211.669316px;}
.x2_c00499{left:230.260919px;}
.x1_c00499{left:232.395871px;}
.x3_c00499{left:235.482735px;}
.x4_c00499{left:240.319117px;}
.x5_c00499{left:245.673577px;}
.x6_c00499{left:248.421493px;}
.x7_c00499{left:251.426626px;}
.x8_c00499{left:255.268917px;}
.x9_c00499{left:258.553698px;}
.xa_c00499{left:262.988294px;}
.xb_c00499{left:271.601212px;}
.xc_c00499{left:283.434780px;}
.xd_c00499{left:290.867654px;}
.xe_c00499{left:294.260334px;}
.xf_c00499{left:299.596701px;}
.x10_c00499{left:302.984150px;}
.x11_c00499{left:306.993562px;}
.x12_c00499{left:325.378518px;}
.x13_c00499{left:326.595106px;}
.x14_c00499{left:328.015253px;}
.x15_c00499{left:331.410444px;}
.x16_c00499{left:334.633053px;}
.x17_c00499{left:340.511825px;}
.x18_c00499{left:346.695139px;}
.x19_c00499{left:352.384720px;}
.x1a_c00499{left:355.792694px;}
.x1b_c00499{left:363.695116px;}
.x1c_c00499{left:371.679253px;}
.x1d_c00499{left:378.434940px;}
.x1e_c00499{left:381.453328px;}
.x1f_c00499{left:384.455783px;}
.x20_c00499{left:387.851715px;}
.x21_c00499{left:390.467224px;}
.x22_c00499{left:393.779799px;}
.x23_c00499{left:398.952070px;}
.x24_c00499{left:401.755082px;}
.x3d_c00499{left:451.985828px;}
.x37_c00499{left:464.618828px;}
.x3e_c00499{left:689.936767px;}
.x39_c00499{left:691.431927px;}
.x38_c00499{left:733.103068px;}
.x36_c00499{left:756.637341px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.v1_c00499{vertical-align:7.965952pt;}
.ls1_c00499{letter-spacing:0.000000pt;}
.ls0_c00499{letter-spacing:0.024302pt;}
.ws1_c00499{word-spacing:-22.149980pt;}
.ws4_c00499{word-spacing:-16.604696pt;}
.ws5_c00499{word-spacing:-12.866304pt;}
.ws0_c00499{word-spacing:-0.063962pt;}
.ws6_c00499{word-spacing:0.000000pt;}
.ws2_c00499{word-spacing:245.304634pt;}
.ws3_c00499{word-spacing:250.196272pt;}
._0_c00499{width:1.196367pt;}
._4_c00499{width:2.123673pt;}
._3_c00499{width:3.185598pt;}
._1_c00499{width:5.355080pt;}
._2_c00499{width:6.490877pt;}
._5_c00499{width:27.887159pt;}
.fs6_c00499{font-size:37.310908pt;}
.fsb_c00499{font-size:37.311173pt;}
.fs1_c00499{font-size:42.079973pt;}
.fs4_c00499{font-size:42.079974pt;}
.fs0_c00499{font-size:42.079975pt;}
.fs3_c00499{font-size:42.079976pt;}
.fs2_c00499{font-size:42.079977pt;}
.fs5_c00499{font-size:42.079978pt;}
.fs7_c00499{font-size:49.041671pt;}
.fsf_c00499{font-size:49.530431pt;}
.fsa_c00499{font-size:53.288186pt;}
.fse_c00499{font-size:63.921837pt;}
.fs8_c00499{font-size:63.961814pt;}
.fsd_c00499{font-size:68.413814pt;}
.fs9_c00499{font-size:74.595466pt;}
.fsc_c00499{font-size:85.269094pt;}
.y0_c00499{bottom:0.000000pt;}
.y1_c00499{bottom:0.000007pt;}
.y53_c00499{bottom:26.805533pt;}
.y4b_c00499{bottom:77.094491pt;}
.y4a_c00499{bottom:104.078382pt;}
.y49_c00499{bottom:131.062272pt;}
.y48_c00499{bottom:158.046163pt;}
.y47_c00499{bottom:185.030053pt;}
.y46_c00499{bottom:212.013944pt;}
.y45_c00499{bottom:238.997834pt;}
.y44_c00499{bottom:265.981724pt;}
.y4c_c00499{bottom:301.874578pt;}
.y43_c00499{bottom:359.920462pt;}
.y40_c00499{bottom:433.223518pt;}
.yf_c00499{bottom:438.944560pt;}
.y37_c00499{bottom:438.957887pt;}
.ye_c00499{bottom:439.411208pt;}
.y38_c00499{bottom:439.428585pt;}
.y21_c00499{bottom:439.733989pt;}
.y36_c00499{bottom:440.063632pt;}
.yd_c00499{bottom:440.358224pt;}
.y22_c00499{bottom:440.474249pt;}
.y20_c00499{bottom:440.492144pt;}
.y35_c00499{bottom:441.175290pt;}
.yc_c00499{bottom:441.311665pt;}
.y1f_c00499{bottom:441.411480pt;}
.y39_c00499{bottom:441.575343pt;}
.y10_c00499{bottom:441.631897pt;}
.y23_c00499{bottom:442.412085pt;}
.y34_c00499{bottom:442.636491pt;}
.yb_c00499{bottom:442.778875pt;}
.y1e_c00499{bottom:443.368235pt;}
.y24_c00499{bottom:443.647574pt;}
.y33_c00499{bottom:444.136272pt;}
.ya_c00499{bottom:444.283350pt;}
.y25_c00499{bottom:445.156323pt;}
.y11_c00499{bottom:445.431649pt;}
.y32_c00499{bottom:445.793228pt;}
.y9_c00499{bottom:445.944627pt;}
.y3a_c00499{bottom:446.106592pt;}
.y1d_c00499{bottom:446.736624pt;}
.y26_c00499{bottom:447.325975pt;}
.y12_c00499{bottom:447.669198pt;}
.y3b_c00499{bottom:449.329795pt;}
.y27_c00499{bottom:449.332771pt;}
.y31_c00499{bottom:449.927990pt;}
.y8_c00499{bottom:450.087675pt;}
.y1c_c00499{bottom:451.594856pt;}
.y28_c00499{bottom:452.236735pt;}
.y13_c00499{bottom:452.957150pt;}
.y3c_c00499{bottom:454.334697pt;}
.y1b_c00499{bottom:455.562742pt;}
.y30_c00499{bottom:455.614749pt;}
.y7_c00499{bottom:455.781928pt;}
.y14_c00499{bottom:457.175713pt;}
.y29_c00499{bottom:459.696536pt;}
.y3d_c00499{bottom:460.249062pt;}
.y1a_c00499{bottom:461.270273pt;}
.y2f_c00499{bottom:462.105976pt;}
.y6_c00499{bottom:462.186152pt;}
.y5_c00499{bottom:465.258807pt;}
.y19_c00499{bottom:465.329988pt;}
.y2a_c00499{bottom:466.846944pt;}
.y15_c00499{bottom:467.644044pt;}
.y2e_c00499{bottom:468.468115pt;}
.y4_c00499{bottom:470.598118pt;}
.y3e_c00499{bottom:470.876600pt;}
.y18_c00499{bottom:472.234422pt;}
.y2d_c00499{bottom:472.704883pt;}
.y52_c00499{bottom:473.050126pt;}
.y17_c00499{bottom:475.693435pt;}
.y3_c00499{bottom:477.047199pt;}
.y2c_c00499{bottom:478.188178pt;}
.y16_c00499{bottom:478.518126pt;}
.y3f_c00499{bottom:478.841168pt;}
.y41_c00499{bottom:480.383260pt;}
.y2b_c00499{bottom:484.463008pt;}
.y2_c00499{bottom:485.517349pt;}
.y42_c00499{bottom:513.663227pt;}
.y54_c00499{bottom:582.947188pt;}
.y50_c00499{bottom:1005.060100pt;}
.y4e_c00499{bottom:1006.246061pt;}
.y4d_c00499{bottom:1022.236514pt;}
.y51_c00499{bottom:1025.517975pt;}
.y4f_c00499{bottom:1040.585280pt;}
.h9_c00499{height:28.584382pt;}
.h7_c00499{height:31.970917pt;}
.h6_c00499{height:31.970918pt;}
.h8_c00499{height:31.970920pt;}
.h4_c00499{height:32.238026pt;}
.h3_c00499{height:32.238028pt;}
.h5_c00499{height:32.238029pt;}
.he_c00499{height:34.742386pt;}
.ha_c00499{height:35.560001pt;}
.h13_c00499{height:46.120377pt;}
.h12_c00499{height:48.971369pt;}
.hb_c00499{height:49.001996pt;}
.hd_c00499{height:49.619420pt;}
.hc_c00499{height:56.675071pt;}
.h11_c00499{height:57.976449pt;}
.hf_c00499{height:59.558193pt;}
.h10_c00499{height:79.398517pt;}
.h2_c00499{height:1159.999952pt;}
.h0_c00499{height:1159.999959pt;}
.h1_c00499{height:1160.000000pt;}
.w2_c00499{width:830.999965pt;}
.w0_c00499{width:831.000000pt;}
.w1_c00499{width:831.333333pt;}
.x0_c00499{left:0.000000pt;}
.x3a_c00499{left:78.089069pt;}
.x3b_c00499{left:96.055698pt;}
.x3c_c00499{left:97.474332pt;}
.x26_c00499{left:119.906064pt;}
.x25_c00499{left:121.392652pt;}
.x27_c00499{left:124.389083pt;}
.x28_c00499{left:128.698021pt;}
.x29_c00499{left:133.464791pt;}
.x2a_c00499{left:135.910272pt;}
.x2b_c00499{left:138.584129pt;}
.x2c_c00499{left:142.002076pt;}
.x2d_c00499{left:145.070170pt;}
.x2e_c00499{left:152.430191pt;}
.x2f_c00499{left:159.776608pt;}
.x30_c00499{left:167.266795pt;}
.x31_c00499{left:174.717010pt;}
.x32_c00499{left:178.419115pt;}
.x33_c00499{left:182.468375pt;}
.x34_c00499{left:185.852506pt;}
.x35_c00499{left:188.150503pt;}
.x2_c00499{left:204.676373pt;}
.x1_c00499{left:206.574107pt;}
.x3_c00499{left:209.317987pt;}
.x4_c00499{left:213.616993pt;}
.x5_c00499{left:218.376513pt;}
.x6_c00499{left:220.819105pt;}
.x7_c00499{left:223.490334pt;}
.x8_c00499{left:226.905704pt;}
.x9_c00499{left:229.825509pt;}
.xa_c00499{left:233.767373pt;}
.xb_c00499{left:241.423300pt;}
.xc_c00499{left:251.942027pt;}
.xd_c00499{left:258.549026pt;}
.xe_c00499{left:261.564741pt;}
.xf_c00499{left:266.308178pt;}
.x10_c00499{left:269.319244pt;}
.x11_c00499{left:272.883167pt;}
.x12_c00499{left:289.225349pt;}
.x13_c00499{left:290.306761pt;}
.x14_c00499{left:291.569114pt;}
.x15_c00499{left:294.587062pt;}
.x16_c00499{left:297.451603pt;}
.x17_c00499{left:302.677178pt;}
.x18_c00499{left:308.173457pt;}
.x19_c00499{left:313.230862pt;}
.x1a_c00499{left:316.260173pt;}
.x1b_c00499{left:323.284548pt;}
.x1c_c00499{left:330.381558pt;}
.x1d_c00499{left:336.386614pt;}
.x1e_c00499{left:339.069625pt;}
.x1f_c00499{left:341.738474pt;}
.x20_c00499{left:344.757080pt;}
.x21_c00499{left:347.081977pt;}
.x22_c00499{left:350.026488pt;}
.x23_c00499{left:354.624063pt;}
.x24_c00499{left:357.115628pt;}
.x3d_c00499{left:401.765180pt;}
.x37_c00499{left:412.994514pt;}
.x3e_c00499{left:613.277126pt;}
.x39_c00499{left:614.606158pt;}
.x38_c00499{left:651.647171pt;}
.x36_c00499{left:672.566526pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.006348;font-style:normal;font-weight:normal;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_98256c457e4383ce9788fcb1.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.171387;font-style:normal;font-weight:normal;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_0a991a01de73e07b647d3c99.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.005371;font-style:normal;font-weight:normal;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_58fc836bcb02f50739fe5ae6.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.006348;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:0.769531;font-style:normal;font-weight: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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:0.734863;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.006348;font-style:normal;font-weight: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_7506c2b7c69d1effd3a45ace.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:0.769531;font-style:normal;font-weight: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_75e33fd7d3f3d0258b5246e8.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:1.171387;font-style:normal;font-weight: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_8e213213a6abe6240a75f163.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:1.000000;font-style:normal;font-weight: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_6af50d622657189b80877400.woff2')format("woff");}.ffb_c00001{font-family:ffb_c00001;line-height:0.743000;font-style:normal;font-weight: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_857bac774935085cbad39967.woff2')format("woff");}.ffc_c00001{font-family:ffc_c00001;line-height:1.006348;font-style:normal;font-weight: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_a882e9ed23c271c184946f11.woff2')format("woff");}.ffd_c00001{font-family:ffd_c00001;line-height:1.006348;font-style:normal;font-weight: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_f3b7b091cd5f22e486390f0d.woff2')format("woff");}.ffe_c00001{font-family:ffe_c00001;line-height:1.000000;font-style:normal;font-weight: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_b4c600691535c78c12c1a84f.woff2')format("woff");}.fff_c00001{font-family:fff_c00001;line-height:1.006348;font-style:normal;font-weight: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_a048d76d090effed89c4877e.woff2')format("woff");}.ff10_c00001{font-family:ff10_c00001;line-height:1.006348;font-style:normal;font-weight: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_bceb2213016516d7e73a8b19.woff2')format("woff");}.ff11_c00001{font-family:ff11_c00001;line-height:1.000000;font-style:normal;font-weight: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_bcda1a26d330d65c8c890966.woff2')format("woff");}.ff12_c00001{font-family:ff12_c00001;line-height:1.006348;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff13_c00001{font-family:ff13_c00001;line-height:0.769531;font-style:normal;font-weight: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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff14_c00001{font-family:ff14_c00001;line-height:0.734863;font-style:normal;font-weight: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_87b1f2f57a7a7fc651e3c781.woff2')format("woff");}.ff15_c00001{font-family:ff15_c00001;line-height:0.769531;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff16_c00001{font-family:ff16_c00001;line-height:1.006348;font-style:normal;font-weight: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_e464c8975356a3da57b16233.woff2')format("woff");}.ff17_c00001{font-family:ff17_c00001;line-height:1.000000;font-style:normal;font-weight: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_f5b53f622df5009c12ec06bc.woff2')format("woff");}.ff18_c00001{font-family:ff18_c00001;line-height:1.171387;font-style:normal;font-weight: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_363f0fc42892a612896a680c.woff2')format("woff");}.ff19_c00001{font-family:ff19_c00001;line-height:0.769531;font-style:normal;font-weight: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_6af50d622657189b80877400.woff2')format("woff");}.ff1a_c00001{font-family:ff1a_c00001;line-height:0.743000;font-style:normal;font-weight: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_857bac774935085cbad39967.woff2')format("woff");}.ff1b_c00001{font-family:ff1b_c00001;line-height:1.006348;font-style:normal;font-weight: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_4223bb5af6b3ad4996b9d655.woff2')format("woff");}.ff1c_c00001{font-family:ff1c_c00001;line-height:1.171387;font-style:normal;font-weight: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_09443cc00d9dcf57734922b9.woff2')format("woff");}.ff1d_c00001{font-family:ff1d_c00001;line-height:1.000000;font-style:normal;font-weight: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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff1e_c00001{font-family:ff1e_c00001;line-height:1.006348;font-style:normal;font-weight: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_6beefed2dfbcad3ca47264d3.woff2')format("woff");}.ff1f_c00001{font-family:ff1f_c00001;line-height:1.171387;font-style:normal;font-weight: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_a8f381c7ea1131a41fbdea04.woff2')format("woff");}.ff20_c00001{font-family:ff20_c00001;line-height:0.773926;font-style:normal;font-weight: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_012027056ce240c925364c90.woff2')format("woff");}.ff21_c00001{font-family:ff21_c00001;line-height:1.006348;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff22_c00001{font-family:ff22_c00001;line-height:0.769531;font-style:normal;font-weight: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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff23_c00001{font-family:ff23_c00001;line-height:0.734863;font-style:normal;font-weight: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_87b1f2f57a7a7fc651e3c781.woff2')format("woff");}.ff24_c00001{font-family:ff24_c00001;line-height:0.769531;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff25_c00001{font-family:ff25_c00001;line-height:1.006348;font-style:normal;font-weight: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_e464c8975356a3da57b16233.woff2')format("woff");}.ff26_c00001{font-family:ff26_c00001;line-height:1.000000;font-style:normal;font-weight: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_0d18898dacfa9ed9166720bf.woff2')format("woff");}.ff27_c00001{font-family:ff27_c00001;line-height:1.171387;font-style:normal;font-weight: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_6a9f89e9392872bbcbdaf997.woff2')format("woff");}.ff28_c00001{font-family:ff28_c00001;line-height:0.769531;font-style:normal;font-weight: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_6af50d622657189b80877400.woff2')format("woff");}.ff29_c00001{font-family:ff29_c00001;line-height:0.743000;font-style:normal;font-weight: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_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff2a_c00001{font-family:ff2a_c00001;line-height:1.006348;font-style:normal;font-weight: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_94db28982f7c6b5dd1b18a53.woff2')format("woff");}.ff2b_c00001{font-family:ff2b_c00001;line-height:1.171387;font-style:normal;font-weight: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_d5fe48ea3888cdaadcb5e656.woff2')format("woff");}.ff2c_c00001{font-family:ff2c_c00001;line-height:1.000000;font-style:normal;font-weight: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_da69db1aa011e401aca41b6b.woff2')format("woff");}.ff2d_c00001{font-family:ff2d_c00001;line-height:1.006348;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff2e_c00001{font-family:ff2e_c00001;line-height:0.769531;font-style:normal;font-weight: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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff2f_c00001{font-family:ff2f_c00001;line-height:0.734863;font-style:normal;font-weight: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_87b1f2f57a7a7fc651e3c781.woff2')format("woff");}.ff30_c00001{font-family:ff30_c00001;line-height:0.769531;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff31_c00001{font-family:ff31_c00001;line-height:1.006348;font-style:normal;font-weight: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_e464c8975356a3da57b16233.woff2')format("woff");}.ff32_c00001{font-family:ff32_c00001;line-height:1.000000;font-style:normal;font-weight: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_0c99722159e9da70c50883e8.woff2')format("woff");}.ff33_c00001{font-family:ff33_c00001;line-height:1.171387;font-style:normal;font-weight: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_64dba79e381526d2f2515917.woff2')format("woff");}.ff34_c00001{font-family:ff34_c00001;line-height:1.000000;font-style:normal;font-weight: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_6af50d622657189b80877400.woff2')format("woff");}.ff35_c00001{font-family:ff35_c00001;line-height:0.743000;font-style:normal;font-weight: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_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff36_c00001{font-family:ff36_c00001;line-height:1.006348;font-style:normal;font-weight: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_d34d936cc305c2d0fab78a40.woff2')format("woff");}.ff37_c00001{font-family:ff37_c00001;line-height:1.000000;font-style:normal;font-weight: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_dcbf54e6a44c4504b07c28f2.woff2')format("woff");}.ff38_c00001{font-family:ff38_c00001;line-height:1.006348;font-style:normal;font-weight: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_0ebdf86397a3fb4d4b68efd8.woff2')format("woff");}.ff39_c00001{font-family:ff39_c00001;line-height:0.957031;font-style:normal;font-weight: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_98af491c10e97328d812dbf1.woff2')format("woff");}.ff3a_c00001{font-family:ff3a_c00001;line-height:1.006348;font-style:normal;font-weight: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_f0dbe8c6b2b8f2489ed96b74.woff2')format("woff");}.ff3b_c00001{font-family:ff3b_c00001;line-height:1.006348;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff3c_c00001{font-family:ff3c_c00001;line-height:0.769531;font-style:normal;font-weight: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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff3d_c00001{font-family:ff3d_c00001;line-height:0.734863;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff3e_c00001{font-family:ff3e_c00001;line-height:1.006348;font-style:normal;font-weight: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_e464c8975356a3da57b16233.woff2')format("woff");}.ff3f_c00001{font-family:ff3f_c00001;line-height:1.000000;font-style:normal;font-weight: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_18c30fbcae0a86bc801d870e.woff2')format("woff");}.ff40_c00001{font-family:ff40_c00001;line-height:1.171387;font-style:normal;font-weight: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_4cea8d5b2970ca0508c041c2.woff2')format("woff");}.ff41_c00001{font-family:ff41_c00001;line-height:0.769531;font-style:normal;font-weight: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_6af50d622657189b80877400.woff2')format("woff");}.ff42_c00001{font-family:ff42_c00001;line-height:0.743000;font-style:normal;font-weight: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_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff43_c00001{font-family:ff43_c00001;line-height:1.006348;font-style:normal;font-weight: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_490196d20ce62732249c277b.woff2')format("woff");}.ff44_c00001{font-family:ff44_c00001;line-height:1.171387;font-style:normal;font-weight: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_2af403eb1fbda133f5219224.woff2')format("woff");}.ff45_c00001{font-family:ff45_c00001;line-height:1.000000;font-style:normal;font-weight: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_0ebdf86397a3fb4d4b68efd8.woff2')format("woff");}.ff46_c00001{font-family:ff46_c00001;line-height:0.957031;font-style:normal;font-weight: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_d5255af580a677151a7d2948.woff2')format("woff");}.ff47_c00001{font-family:ff47_c00001;line-height:1.006348;font-style:normal;font-weight: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_0f0d70b12d36b6f964004484.woff2')format("woff");}.ff48_c00001{font-family:ff48_c00001;line-height:1.006348;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff49_c00001{font-family:ff49_c00001;line-height:0.769531;font-style:normal;font-weight: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_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff4a_c00001{font-family:ff4a_c00001;line-height:0.734863;font-style:normal;font-weight: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_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff4b_c00001{font-family:ff4b_c00001;line-height:1.006348;font-style:normal;font-weight: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_e464c8975356a3da57b16233.woff2')format("woff");}.ff4c_c00001{font-family:ff4c_c00001;line-height:1.000000;font-style:normal;font-weight: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_d2d491f58a9d8867ccd8c12a.woff2')format("woff");}.ff4d_c00001{font-family:ff4d_c00001;line-height:1.171387;font-style:normal;font-weight: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_ae56fc4e8a201214b57cfcef.woff2')format("woff");}.ff4e_c00001{font-family:ff4e_c00001;line-height:1.000000;font-style:normal;font-weight: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_6af50d622657189b80877400.woff2')format("woff");}.ff4f_c00001{font-family:ff4f_c00001;line-height:0.743000;font-style:normal;font-weight: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_857bac774935085cbad39967.woff2')format("woff");}.ff50_c00001{font-family:ff50_c00001;line-height:1.006348;font-style:normal;font-weight: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_fdb55b769fbdb98385481a02.woff2')format("woff");}.ff51_c00001{font-family:ff51_c00001;line-height:1.171387;font-style:normal;font-weight: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_c68aaec85ee41e0b5dae7336.woff2')format("woff");}.ff52_c00001{font-family:ff52_c00001;line-height:1.006348;font-style:normal;font-weight: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_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff53_c00001{font-family:ff53_c00001;line-height:1.006348;font-style:normal;font-weight: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_77070fa20ec3cb031ffeecda.woff2')format("woff");}.ff54_c00001{font-family:ff54_c00001;line-height:1.006348;font-style:normal;font-weight: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_e24041a0015ac32b2511c192.woff2')format("woff");}.ff55_c00001{font-family:ff55_c00001;line-height:1.000000;font-style:normal;font-weight: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_f0dbe8c6b2b8f2489ed96b74.woff2')format("woff");}.ff56_c00001{font-family:ff56_c00001;line-height:1.006348;font-style:normal;font-weight: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_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff57_c00001{font-family:ff57_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff58_c00001{font-family:ff58_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff59_c00001{font-family:ff59_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ff5a_c00001{font-family:ff5a_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b_c00001;src:url('chunks/assets/font_f303b1809abdef2e18794adf.woff2')format("woff");}.ff5b_c00001{font-family:ff5b_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c_c00001;src:url('chunks/assets/font_62e14216de85444aa556f387.woff2')format("woff");}.ff5c_c00001{font-family:ff5c_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff5d_c00001{font-family:ff5d_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e_c00001;src:url('chunks/assets/font_ac1b450329aec654ca3cba11.woff2')format("woff");}.ff5e_c00001{font-family:ff5e_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f_c00001;src:url('chunks/assets/font_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff5f_c00001{font-family:ff5f_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60_c00001;src:url('chunks/assets/font_94f015e0ecac0dd4c73d745b.woff2')format("woff");}.ff60_c00001{font-family:ff60_c00001;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61_c00001;src:url('chunks/assets/font_0ebdf86397a3fb4d4b68efd8.woff2')format("woff");}.ff61_c00001{font-family:ff61_c00001;line-height:0.957031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62_c00001;src:url('chunks/assets/font_77c8f60f350180725dba3522.woff2')format("woff");}.ff62_c00001{font-family:ff62_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63_c00001;src:url('chunks/assets/font_b29b4c16c91bedc0aebd615b.woff2')format("woff");}.ff63_c00001{font-family:ff63_c00001;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64_c00001;src:url('chunks/assets/font_f59fa4a97950ddf67cb1672b.woff2')format("woff");}.ff64_c00001{font-family:ff64_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff65_c00001{font-family:ff65_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff66_c00001{font-family:ff66_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67_c00001;src:url('chunks/assets/font_58a93de6c2c0f58e8604101c.woff2')format("woff");}.ff67_c00001{font-family:ff67_c00001;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68_c00001;src:url('chunks/assets/font_b412c9b06e304baba7b8a2d1.woff2')format("woff");}.ff68_c00001{font-family:ff68_c00001;line-height:1.119000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff69_c00001{font-family:ff69_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ff6a_c00001{font-family:ff6a_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b_c00001;src:url('chunks/assets/font_6b40ffe5eac249441b70e5f5.woff2')format("woff");}.ff6b_c00001{font-family:ff6b_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c_c00001;src:url('chunks/assets/font_81e852a09523399ae2f83081.woff2')format("woff");}.ff6c_c00001{font-family:ff6c_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff6d_c00001{font-family:ff6d_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e_c00001;src:url('chunks/assets/font_ca41021578940735c578c625.woff2')format("woff");}.ff6e_c00001{font-family:ff6e_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f_c00001;src:url('chunks/assets/font_857bac774935085cbad39967.woff2')format("woff");}.ff6f_c00001{font-family:ff6f_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70_c00001;src:url('chunks/assets/font_4f72ecce1de8f15576f8ecf0.woff2')format("woff");}.ff70_c00001{font-family:ff70_c00001;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71_c00001;src:url('chunks/assets/font_bb9dcd20332d042fa05c83b1.woff2')format("woff");}.ff71_c00001{font-family:ff71_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72_c00001;src:url('chunks/assets/font_4f72ecce1de8f15576f8ecf0.woff2')format("woff");}.ff72_c00001{font-family:ff72_c00001;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73_c00001;src:url('chunks/assets/font_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff73_c00001{font-family:ff73_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74_c00001;src:url('chunks/assets/font_bc6e645ec729a5ece742f839.woff2')format("woff");}.ff74_c00001{font-family:ff74_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff75_c00001{font-family:ff75_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff76_c00001{font-family:ff76_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff77_c00001{font-family:ff77_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ff78_c00001{font-family:ff78_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79_c00001;src:url('chunks/assets/font_45d911f201ecdbfdd417d5ad.woff2')format("woff");}.ff79_c00001{font-family:ff79_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a_c00001;src:url('chunks/assets/font_40c6bbca423877946ab43ebe.woff2')format("woff");}.ff7a_c00001{font-family:ff7a_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff7b_c00001{font-family:ff7b_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c_c00001;src:url('chunks/assets/font_af04683ac1b26a03543b0200.woff2')format("woff");}.ff7c_c00001{font-family:ff7c_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d_c00001;src:url('chunks/assets/font_ffded482059e2010308ade52.woff2')format("woff");}.ff7d_c00001{font-family:ff7d_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e_c00001;src:url('chunks/assets/font_857bac774935085cbad39967.woff2')format("woff");}.ff7e_c00001{font-family:ff7e_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f_c00001;src:url('chunks/assets/font_d0f6246620e2b377cb51f9c3.woff2')format("woff");}.ff7f_c00001{font-family:ff7f_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80_c00001;src:url('chunks/assets/font_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff80_c00001{font-family:ff80_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81_c00001;src:url('chunks/assets/font_7b7737c140097d1c8653048f.woff2')format("woff");}.ff81_c00001{font-family:ff81_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82_c00001;src:url('chunks/assets/font_cd8b4bf4a35be763bc206255.woff2')format("woff");}.ff82_c00001{font-family:ff82_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff83_c00001{font-family:ff83_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff84_c00001{font-family:ff84_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85_c00001;src:url('chunks/assets/font_0087a50ecf78529d7d8f925e.woff2')format("woff");}.ff85_c00001{font-family:ff85_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff86_c00001{font-family:ff86_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ff87_c00001{font-family:ff87_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff88_c00001;src:url('chunks/assets/font_4bc4d2eec1aa9a7c3375a996.woff2')format("woff");}.ff88_c00001{font-family:ff88_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff89_c00001;src:url('chunks/assets/font_9123dd277c4d9fbd3839ff84.woff2')format("woff");}.ff89_c00001{font-family:ff89_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff8a_c00001{font-family:ff8a_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8b_c00001;src:url('chunks/assets/font_d297ad17ddf79d12372c49b3.woff2')format("woff");}.ff8b_c00001{font-family:ff8b_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8c_c00001;src:url('chunks/assets/font_a5a361a6d1d1a178421efa01.woff2')format("woff");}.ff8c_c00001{font-family:ff8c_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8d_c00001;src:url('chunks/assets/font_857bac774935085cbad39967.woff2')format("woff");}.ff8d_c00001{font-family:ff8d_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8e_c00001;src:url('chunks/assets/font_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff8e_c00001{font-family:ff8e_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8f_c00001;src:url('chunks/assets/font_ddf3f6b2ac9134134d6a264c.woff2')format("woff");}.ff8f_c00001{font-family:ff8f_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff90_c00001;src:url('chunks/assets/font_c5ca068de27591e7f7626207.woff2')format("woff");}.ff90_c00001{font-family:ff90_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff91_c00001;src:url('chunks/assets/font_00cb2673a9be3f9b2d0a9bdf.woff2')format("woff");}.ff91_c00001{font-family:ff91_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff92_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff92_c00001{font-family:ff92_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff93_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff93_c00001{font-family:ff93_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff94_c00001;src:url('chunks/assets/font_e7b84e3a968c22c656336a86.woff2')format("woff");}.ff94_c00001{font-family:ff94_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff95_c00001{font-family:ff95_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff96_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ff96_c00001{font-family:ff96_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff97_c00001;src:url('chunks/assets/font_fada80f88561bbdb282f26f1.woff2')format("woff");}.ff97_c00001{font-family:ff97_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff98_c00001;src:url('chunks/assets/font_b8e37a1d264bd5a6b6b83bc2.woff2')format("woff");}.ff98_c00001{font-family:ff98_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff99_c00001{font-family:ff99_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9a_c00001;src:url('chunks/assets/font_f4a86ca54a3c1cc668974412.woff2')format("woff");}.ff9a_c00001{font-family:ff9a_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9b_c00001;src:url('chunks/assets/font_e7b84e3a968c22c656336a86.woff2')format("woff");}.ff9b_c00001{font-family:ff9b_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9c_c00001;src:url('chunks/assets/font_857bac774935085cbad39967.woff2')format("woff");}.ff9c_c00001{font-family:ff9c_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9d_c00001;src:url('chunks/assets/font_4980728cddd6224d9061bd3c.woff2')format("woff");}.ff9d_c00001{font-family:ff9d_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9e_c00001;src:url('chunks/assets/font_e7b84e3a968c22c656336a86.woff2')format("woff");}.ff9e_c00001{font-family:ff9e_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9f_c00001;src:url('chunks/assets/font_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff9f_c00001{font-family:ff9f_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa0_c00001;src:url('chunks/assets/font_139c2e32fdf8e1fb4e0452f8.woff2')format("woff");}.ffa0_c00001{font-family:ffa0_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa1_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ffa1_c00001{font-family:ffa1_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa2_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ffa2_c00001{font-family:ffa2_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa3_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ffa3_c00001{font-family:ffa3_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa4_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ffa4_c00001{font-family:ffa4_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa5_c00001;src:url('chunks/assets/font_6ffd6e59b15af9b296b3d8dc.woff2')format("woff");}.ffa5_c00001{font-family:ffa5_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa6_c00001;src:url('chunks/assets/font_644f22873851bdd51f3ee219.woff2')format("woff");}.ffa6_c00001{font-family:ffa6_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa7_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ffa7_c00001{font-family:ffa7_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa8_c00001;src:url('chunks/assets/font_857bac774935085cbad39967.woff2')format("woff");}.ffa8_c00001{font-family:ffa8_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa9_c00001;src:url('chunks/assets/font_62a14e864e934e9cfa2d70bb.woff2')format("woff");}.ffa9_c00001{font-family:ffa9_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaa_c00001;src:url('chunks/assets/font_b4c600691535c78c12c1a84f.woff2')format("woff");}.ffaa_c00001{font-family:ffaa_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffab_c00001;src:url('chunks/assets/font_912809714c04d2ba0d3f161e.woff2')format("woff");}.ffab_c00001{font-family:ffab_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffac_c00001;src:url('chunks/assets/font_b1a38ae2648b41bf58f2887b.woff2')format("woff");}.ffac_c00001{font-family:ffac_c00001;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffad_c00001;src:url('chunks/assets/font_25a08f425af52f71142525a2.woff2')format("woff");}.ffad_c00001{font-family:ffad_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffae_c00001;src:url('chunks/assets/font_796aaa2dc2d99a9dba4de897.woff2')format("woff");}.ffae_c00001{font-family:ffae_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaf_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ffaf_c00001{font-family:ffaf_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb0_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ffb0_c00001{font-family:ffb0_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb1_c00001;src:url('chunks/assets/font_b9a07c4f0091402c9d5b4dee.woff2')format("woff");}.ffb1_c00001{font-family:ffb1_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb2_c00001;src:url('chunks/assets/font_197f69d02ee02e5104dbe4ce.woff2')format("woff");}.ffb2_c00001{font-family:ffb2_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb3_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ffb3_c00001{font-family:ffb3_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb4_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ffb4_c00001{font-family:ffb4_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb5_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ffb5_c00001{font-family:ffb5_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb6_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ffb6_c00001{font-family:ffb6_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb7_c00001;src:url('chunks/assets/font_fa4fc98d1bdb7e6d2d21e9ef.woff2')format("woff");}.ffb7_c00001{font-family:ffb7_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb8_c00001;src:url('chunks/assets/font_2b639dab69d5b95da0ca876b.woff2')format("woff");}.ffb8_c00001{font-family:ffb8_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb9_c00001;src:url('chunks/assets/font_13a976774fc2204518656750.woff2')format("woff");}.ffb9_c00001{font-family:ffb9_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffba_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ffba_c00001{font-family:ffba_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbb_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ffbb_c00001{font-family:ffbb_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbc_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ffbc_c00001{font-family:ffbc_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbd_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ffbd_c00001{font-family:ffbd_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbe_c00001;src:url('chunks/assets/font_2fd0d684afd379f752c9813a.woff2')format("woff");}.ffbe_c00001{font-family:ffbe_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbf_c00001;src:url('chunks/assets/font_304e25aa7f2c7cc53c9a4761.woff2')format("woff");}.ffbf_c00001{font-family:ffbf_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc0_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ffc0_c00001{font-family:ffc0_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc1_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ffc1_c00001{font-family:ffc1_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc2_c00001;src:url('chunks/assets/font_4a88384b8d19de0b69c7135d.woff2')format("woff");}.ffc2_c00001{font-family:ffc2_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc3_c00001;src:url('chunks/assets/font_c1511bf24ae364306350b3ec.woff2')format("woff");}.ffc3_c00001{font-family:ffc3_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc4_c00001;src:url('chunks/assets/font_553790931ae72b6da1b65900.woff2')format("woff");}.ffc4_c00001{font-family:ffc4_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc5_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ffc5_c00001{font-family:ffc5_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc6_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ffc6_c00001{font-family:ffc6_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc7_c00001;src:url('chunks/assets/font_d57c0fe7a9698e029b5c193c.woff2')format("woff");}.ffc7_c00001{font-family:ffc7_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc8_c00001;src:url('chunks/assets/font_f9af006519b15db4fa0f688f.woff2')format("woff");}.ffc8_c00001{font-family:ffc8_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc9_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ffc9_c00001{font-family:ffc9_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffca_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ffca_c00001{font-family:ffca_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcb_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ffcb_c00001{font-family:ffcb_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcc_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ffcc_c00001{font-family:ffcc_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcd_c00001;src:url('chunks/assets/font_83aaa92e5a09ce378247e279.woff2')format("woff");}.ffcd_c00001{font-family:ffcd_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffce_c00001;src:url('chunks/assets/font_66960907010e75a5f2a50c75.woff2')format("woff");}.ffce_c00001{font-family:ffce_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcf_c00001;src:url('chunks/assets/font_9490121d78cbc24bc7587db6.woff2')format("woff");}.ffcf_c00001{font-family:ffcf_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd0_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ffd0_c00001{font-family:ffd0_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd1_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ffd1_c00001{font-family:ffd1_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd2_c00001;src:url('chunks/assets/font_33b9054a48f1fd872838b55b.woff2')format("woff");}.ffd2_c00001{font-family:ffd2_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd3_c00001;src:url('chunks/assets/font_9198ce7b807a6ad119751c42.woff2')format("woff");}.ffd3_c00001{font-family:ffd3_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd4_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ffd4_c00001{font-family:ffd4_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd5_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ffd5_c00001{font-family:ffd5_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd6_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ffd6_c00001{font-family:ffd6_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd7_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ffd7_c00001{font-family:ffd7_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd8_c00001;src:url('chunks/assets/font_b98a998251448c4ac4a9bf85.woff2')format("woff");}.ffd8_c00001{font-family:ffd8_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd9_c00001;src:url('chunks/assets/font_88091825f3bdaa2ad717cc0d.woff2')format("woff");}.ffd9_c00001{font-family:ffd9_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffda_c00001;src:url('chunks/assets/font_64b0aabd97c182afc6ed0e20.woff2')format("woff");}.ffda_c00001{font-family:ffda_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdb_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ffdb_c00001{font-family:ffdb_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdc_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ffdc_c00001{font-family:ffdc_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdd_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ffdd_c00001{font-family:ffdd_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffde_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ffde_c00001{font-family:ffde_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdf_c00001;src:url('chunks/assets/font_b19167e10269ead259f37b8b.woff2')format("woff");}.ffdf_c00001{font-family:ffdf_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe0_c00001;src:url('chunks/assets/font_f708dd0058eefd422a40fcc8.woff2')format("woff");}.ffe0_c00001{font-family:ffe0_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe1_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ffe1_c00001{font-family:ffe1_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe2_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ffe2_c00001{font-family:ffe2_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe3_c00001;src:url('chunks/assets/font_d83f9085ccd9482c427dee05.woff2')format("woff");}.ffe3_c00001{font-family:ffe3_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe4_c00001;src:url('chunks/assets/font_ab41719ba8dc8ecc0ff8c5dc.woff2')format("woff");}.ffe4_c00001{font-family:ffe4_c00001;line-height:0.974121;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe5_c00001;src:url('chunks/assets/font_73f23bd33650b470a404b259.woff2')format("woff");}.ffe5_c00001{font-family:ffe5_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe6_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ffe6_c00001{font-family:ffe6_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe7_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ffe7_c00001{font-family:ffe7_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe8_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ffe8_c00001{font-family:ffe8_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe9_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ffe9_c00001{font-family:ffe9_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffea_c00001;src:url('chunks/assets/font_7c2df686be49d001783d8ddd.woff2')format("woff");}.ffea_c00001{font-family:ffea_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffeb_c00001;src:url('chunks/assets/font_fa71ad2cdc27bc8b55c82af8.woff2')format("woff");}.ffeb_c00001{font-family:ffeb_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffec_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ffec_c00001{font-family:ffec_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffed_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ffed_c00001{font-family:ffed_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffee_c00001;src:url('chunks/assets/font_d3008f71eebc79a936fe2b11.woff2')format("woff");}.ffee_c00001{font-family:ffee_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffef_c00001;src:url('chunks/assets/font_6f37ff9eb729a614f4941b2c.woff2')format("woff");}.ffef_c00001{font-family:ffef_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff0_c00001;src:url('chunks/assets/font_eb20684e3fb9e10520080511.woff2')format("woff");}.fff0_c00001{font-family:fff0_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff1_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.fff1_c00001{font-family:fff1_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff2_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.fff2_c00001{font-family:fff2_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff3_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.fff3_c00001{font-family:fff3_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff4_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.fff4_c00001{font-family:fff4_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff5_c00001;src:url('chunks/assets/font_d79c32e8ca41887f7dfae267.woff2')format("woff");}.fff5_c00001{font-family:fff5_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff6_c00001;src:url('chunks/assets/font_6e2ccb4e9977205bf5117f98.woff2')format("woff");}.fff6_c00001{font-family:fff6_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff7_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.fff7_c00001{font-family:fff7_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff8_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.fff8_c00001{font-family:fff8_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff9_c00001;src:url('chunks/assets/font_a4b24a2157ef83b921087a6e.woff2')format("woff");}.fff9_c00001{font-family:fff9_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffa_c00001;src:url('chunks/assets/font_84593b5f725dda319b16c722.woff2')format("woff");}.fffa_c00001{font-family:fffa_c00001;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffb_c00001;src:url('chunks/assets/font_8b95f1def13fdd138e036be9.woff2')format("woff");}.fffb_c00001{font-family:fffb_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffc_c00001;src:url('chunks/assets/font_8bbbeb776951abeafba77b2b.woff2')format("woff");}.fffc_c00001{font-family:fffc_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffd_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.fffd_c00001{font-family:fffd_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffe_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.fffe_c00001{font-family:fffe_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffff_c00001;src:url('chunks/assets/font_bf3ca3dac7c7e629877d8d62.woff2')format("woff");}.ffff_c00001{font-family:ffff_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff100_c00001;src:url('chunks/assets/font_488c043ebb51645774ce2338.woff2')format("woff");}.ff100_c00001{font-family:ff100_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff101_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff101_c00001{font-family:ff101_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff102_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff102_c00001{font-family:ff102_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff103_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff103_c00001{font-family:ff103_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff104_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff104_c00001{font-family:ff104_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff105_c00001;src:url('chunks/assets/font_8c0d22227202bc81eb8aa76d.woff2')format("woff");}.ff105_c00001{font-family:ff105_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff106_c00001;src:url('chunks/assets/font_41bbc69be460ecc89fa07f11.woff2')format("woff");}.ff106_c00001{font-family:ff106_c00001;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff107_c00001;src:url('chunks/assets/font_f68350e9d63428345963a025.woff2')format("woff");}.ff107_c00001{font-family:ff107_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff108_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff108_c00001{font-family:ff108_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff109_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff109_c00001{font-family:ff109_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10a_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff10a_c00001{font-family:ff10a_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10b_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ff10b_c00001{font-family:ff10b_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10c_c00001;src:url('chunks/assets/font_053af0e275037764b3fe9b81.woff2')format("woff");}.ff10c_c00001{font-family:ff10c_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10d_c00001;src:url('chunks/assets/font_ae98c2585a1ab61f3a259d8a.woff2')format("woff");}.ff10d_c00001{font-family:ff10d_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10e_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff10e_c00001{font-family:ff10e_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10f_c00001;src:url('chunks/assets/font_f9c988b49cb423e8c8571b49.woff2')format("woff");}.ff10f_c00001{font-family:ff10f_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff110_c00001;src:url('chunks/assets/font_e77cd7b3c17fab201037731a.woff2')format("woff");}.ff110_c00001{font-family:ff110_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff111_c00001;src:url('chunks/assets/font_d57f5cd603eedbc91c6db69a.woff2')format("woff");}.ff111_c00001{font-family:ff111_c00001;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff112_c00001;src:url('chunks/assets/font_0ebdf86397a3fb4d4b68efd8.woff2')format("woff");}.ff112_c00001{font-family:ff112_c00001;line-height:0.957031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff113_c00001;src:url('chunks/assets/font_aefa7f24e6a5f456269822eb.woff2')format("woff");}.ff113_c00001{font-family:ff113_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff114_c00001;src:url('chunks/assets/font_876803e5030be14daef300b5.woff2')format("woff");}.ff114_c00001{font-family:ff114_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff115_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff115_c00001{font-family:ff115_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff116_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff116_c00001{font-family:ff116_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff117_c00001;src:url('chunks/assets/font_eb553d5bed75585f719ddcc8.woff2')format("woff");}.ff117_c00001{font-family:ff117_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff118_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff118_c00001{font-family:ff118_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff119_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ff119_c00001{font-family:ff119_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11a_c00001;src:url('chunks/assets/font_e108bcbca336fdae1d100660.woff2')format("woff");}.ff11a_c00001{font-family:ff11a_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11b_c00001;src:url('chunks/assets/font_8aaec22416591829b4c55852.woff2')format("woff");}.ff11b_c00001{font-family:ff11b_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11c_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff11c_c00001{font-family:ff11c_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11d_c00001;src:url('chunks/assets/font_80c2bbf0f1f1300f8a9b73a8.woff2')format("woff");}.ff11d_c00001{font-family:ff11d_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11e_c00001;src:url('chunks/assets/font_857bac774935085cbad39967.woff2')format("woff");}.ff11e_c00001{font-family:ff11e_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11f_c00001;src:url('chunks/assets/font_657834fe1489960f59a3d405.woff2')format("woff");}.ff11f_c00001{font-family:ff11f_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff120_c00001;src:url('chunks/assets/font_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff120_c00001{font-family:ff120_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff121_c00001;src:url('chunks/assets/font_0fb36e7b5bd53dddf0cbb045.woff2')format("woff");}.ff121_c00001{font-family:ff121_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff122_c00001;src:url('chunks/assets/font_c7732c8cbacd9447743fb94e.woff2')format("woff");}.ff122_c00001{font-family:ff122_c00001;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff123_c00001;src:url('chunks/assets/font_1eaedbae0a2589a77b124a7d.woff2')format("woff");}.ff123_c00001{font-family:ff123_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff124_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff124_c00001{font-family:ff124_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff125_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff125_c00001{font-family:ff125_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff126_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff126_c00001{font-family:ff126_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff127_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ff127_c00001{font-family:ff127_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff128_c00001;src:url('chunks/assets/font_91464d1b4c98588020ea8fe0.woff2')format("woff");}.ff128_c00001{font-family:ff128_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff129_c00001;src:url('chunks/assets/font_db35878b01da1075c34b4cd5.woff2')format("woff");}.ff129_c00001{font-family:ff129_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12a_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff12a_c00001{font-family:ff12a_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12b_c00001;src:url('chunks/assets/font_857bac774935085cbad39967.woff2')format("woff");}.ff12b_c00001{font-family:ff12b_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12c_c00001;src:url('chunks/assets/font_294ec4cbc0f991bc0a419ee6.woff2')format("woff");}.ff12c_c00001{font-family:ff12c_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12d_c00001;src:url('chunks/assets/font_b372b245f945f686a64395be.woff2')format("woff");}.ff12d_c00001{font-family:ff12d_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12e_c00001;src:url('chunks/assets/font_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff12e_c00001{font-family:ff12e_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12f_c00001;src:url('chunks/assets/font_c9a82ea150f840bcb397ba0f.woff2')format("woff");}.ff12f_c00001{font-family:ff12f_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff130_c00001;src:url('chunks/assets/font_d31fa2a13ea240b70fc772dc.woff2')format("woff");}.ff130_c00001{font-family:ff130_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff131_c00001;src:url('chunks/assets/font_ff5eb9b018868e0c6bf2e0b3.woff2')format("woff");}.ff131_c00001{font-family:ff131_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff132_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff132_c00001{font-family:ff132_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff133_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff133_c00001{font-family:ff133_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff134_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff134_c00001{font-family:ff134_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff135_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ff135_c00001{font-family:ff135_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff136_c00001;src:url('chunks/assets/font_fe3a71568f552c53ae2bfd59.woff2')format("woff");}.ff136_c00001{font-family:ff136_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff137_c00001;src:url('chunks/assets/font_e5a96183ea92e194b06a0ec8.woff2')format("woff");}.ff137_c00001{font-family:ff137_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff138_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff138_c00001{font-family:ff138_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff139_c00001;src:url('chunks/assets/font_2034b0385a77ddac3e12a89c.woff2')format("woff");}.ff139_c00001{font-family:ff139_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13a_c00001;src:url('chunks/assets/font_857bac774935085cbad39967.woff2')format("woff");}.ff13a_c00001{font-family:ff13a_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13b_c00001;src:url('chunks/assets/font_bbcbde10795598d21bdc703b.woff2')format("woff");}.ff13b_c00001{font-family:ff13b_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13c_c00001;src:url('chunks/assets/font_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff13c_c00001{font-family:ff13c_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13d_c00001;src:url('chunks/assets/font_b11bd11c9c47c8b331cd0bd8.woff2')format("woff");}.ff13d_c00001{font-family:ff13d_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13e_c00001;src:url('chunks/assets/font_7e7ab9c4e253c8b6321fe1e3.woff2')format("woff");}.ff13e_c00001{font-family:ff13e_c00001;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13f_c00001;src:url('chunks/assets/font_7207d588715985f7670b0df6.woff2')format("woff");}.ff13f_c00001{font-family:ff13f_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff140_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff140_c00001{font-family:ff140_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff141_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff141_c00001{font-family:ff141_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff142_c00001;src:url('chunks/assets/font_4a28f49b6611d6005be9049c.woff2')format("woff");}.ff142_c00001{font-family:ff142_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff143_c00001;src:url('chunks/assets/font_de4bd899b1fb7a0b80d06124.woff2')format("woff");}.ff143_c00001{font-family:ff143_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff144_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff144_c00001{font-family:ff144_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff145_c00001;src:url('chunks/assets/font_c4899d9ce0b48474a6c11a32.woff2')format("woff");}.ff145_c00001{font-family:ff145_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff146_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff146_c00001{font-family:ff146_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff147_c00001;src:url('chunks/assets/font_857bac774935085cbad39967.woff2')format("woff");}.ff147_c00001{font-family:ff147_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff148_c00001;src:url('chunks/assets/font_c45a720845f69d47cd5135a9.woff2')format("woff");}.ff148_c00001{font-family:ff148_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff149_c00001;src:url('chunks/assets/font_89475b83e5647f846c571af4.woff2')format("woff");}.ff149_c00001{font-family:ff149_c00001;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14a_c00001;src:url('chunks/assets/font_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff14a_c00001{font-family:ff14a_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14b_c00001;src:url('chunks/assets/font_3ca69d6c18802496f08c9e0e.woff2')format("woff");}.ff14b_c00001{font-family:ff14b_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14c_c00001;src:url('chunks/assets/font_de870f92c17f3e76133e9dd8.woff2')format("woff");}.ff14c_c00001{font-family:ff14c_c00001;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14d_c00001;src:url('chunks/assets/font_dfeef2a993017acd8a967eb4.woff2')format("woff");}.ff14d_c00001{font-family:ff14d_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14e_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff14e_c00001{font-family:ff14e_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14f_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff14f_c00001{font-family:ff14f_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff150_c00001;src:url('chunks/assets/font_4143959f8f9a0a94b341a79a.woff2')format("woff");}.ff150_c00001{font-family:ff150_c00001;line-height:0.743652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff151_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff151_c00001{font-family:ff151_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff152_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ff152_c00001{font-family:ff152_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff153_c00001;src:url('chunks/assets/font_d7e6fa7991e8372f404da21b.woff2')format("woff");}.ff153_c00001{font-family:ff153_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff154_c00001;src:url('chunks/assets/font_48cbd297ebf6c58e5064dd5c.woff2')format("woff");}.ff154_c00001{font-family:ff154_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff155_c00001;src:url('chunks/assets/font_a97e3e502ef57b893b58724b.woff2')format("woff");}.ff155_c00001{font-family:ff155_c00001;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff156_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff156_c00001{font-family:ff156_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff157_c00001;src:url('chunks/assets/font_4a7b58f371294b1a3d2ff703.woff2')format("woff");}.ff157_c00001{font-family:ff157_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff158_c00001;src:url('chunks/assets/font_e25cfe32918915f36059a4e2.woff2')format("woff");}.ff158_c00001{font-family:ff158_c00001;line-height:0.748047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff159_c00001;src:url('chunks/assets/font_aeacf77b842646ca5bef64ca.woff2')format("woff");}.ff159_c00001{font-family:ff159_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15a_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff15a_c00001{font-family:ff15a_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15b_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff15b_c00001{font-family:ff15b_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15c_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff15c_c00001{font-family:ff15c_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15d_c00001;src:url('chunks/assets/font_e464c8975356a3da57b16233.woff2')format("woff");}.ff15d_c00001{font-family:ff15d_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15e_c00001;src:url('chunks/assets/font_a9527cc6f059715e23d3b936.woff2')format("woff");}.ff15e_c00001{font-family:ff15e_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15f_c00001;src:url('chunks/assets/font_e7cd307fc8fe04f3395e66a5.woff2')format("woff");}.ff15f_c00001{font-family:ff15f_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff160_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff160_c00001{font-family:ff160_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff161_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff161_c00001{font-family:ff161_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff162_c00001;src:url('chunks/assets/font_d2b01200f09ae0cc50e7ac8d.woff2')format("woff");}.ff162_c00001{font-family:ff162_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff163_c00001;src:url('chunks/assets/font_59ff9b3c900e9d4b9e8acfd3.woff2')format("woff");}.ff163_c00001{font-family:ff163_c00001;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff164_c00001;src:url('chunks/assets/font_18091297c8491d605cc49930.woff2')format("woff");}.ff164_c00001{font-family:ff164_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff165_c00001;src:url('chunks/assets/font_d018b0d1913bfa5f09788903.woff2')format("woff");}.ff165_c00001{font-family:ff165_c00001;line-height:0.743652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff166_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff166_c00001{font-family:ff166_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff167_c00001;src:url('chunks/assets/font_1a999addd43797e7873dbc61.woff2')format("woff");}.ff167_c00001{font-family:ff167_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff168_c00001;src:url('chunks/assets/font_0e2901bb5a37147a1f75c833.woff2')format("woff");}.ff168_c00001{font-family:ff168_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff169_c00001;src:url('chunks/assets/font_ed3c6e4f22ee1224a6ec55a4.woff2')format("woff");}.ff169_c00001{font-family:ff169_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16a_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff16a_c00001{font-family:ff16a_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16b_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff16b_c00001{font-family:ff16b_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16c_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff16c_c00001{font-family:ff16c_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16d_c00001;src:url('chunks/assets/font_2395eaa871c23bc1969cf30f.woff2')format("woff");}.ff16d_c00001{font-family:ff16d_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16e_c00001;src:url('chunks/assets/font_857bac774935085cbad39967.woff2')format("woff");}.ff16e_c00001{font-family:ff16e_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16f_c00001;src:url('chunks/assets/font_669ae964036b5357f6a1b2a4.woff2')format("woff");}.ff16f_c00001{font-family:ff16f_c00001;line-height:0.974121;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff170_c00001;src:url('chunks/assets/font_b4c600691535c78c12c1a84f.woff2')format("woff");}.ff170_c00001{font-family:ff170_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff171_c00001;src:url('chunks/assets/font_9b8ed1747c381d8f06c07b8c.woff2')format("woff");}.ff171_c00001{font-family:ff171_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff172_c00001;src:url('chunks/assets/font_879a088e6b43e65c0b8c6df3.woff2')format("woff");}.ff172_c00001{font-family:ff172_c00001;line-height:0.954102;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff173_c00001;src:url('chunks/assets/font_7106f033734b4a3a6c47d429.woff2')format("woff");}.ff173_c00001{font-family:ff173_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff174_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff174_c00001{font-family:ff174_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff175_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff175_c00001{font-family:ff175_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff176_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff176_c00001{font-family:ff176_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff177_c00001;src:url('chunks/assets/font_1a999addd43797e7873dbc61.woff2')format("woff");}.ff177_c00001{font-family:ff177_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff178_c00001;src:url('chunks/assets/font_fce38bc6da80bdef24142eeb.woff2')format("woff");}.ff178_c00001{font-family:ff178_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff179_c00001;src:url('chunks/assets/font_ed3c6e4f22ee1224a6ec55a4.woff2')format("woff");}.ff179_c00001{font-family:ff179_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17a_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff17a_c00001{font-family:ff17a_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17b_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff17b_c00001{font-family:ff17b_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17c_c00001;src:url('chunks/assets/font_31fa97e22492824196dd4e64.woff2')format("woff");}.ff17c_c00001{font-family:ff17c_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17d_c00001;src:url('chunks/assets/font_669ae964036b5357f6a1b2a4.woff2')format("woff");}.ff17d_c00001{font-family:ff17d_c00001;line-height:0.974121;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17e_c00001;src:url('chunks/assets/font_c8c8b7f086d780a954cac1ac.woff2')format("woff");}.ff17e_c00001{font-family:ff17e_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17f_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff17f_c00001{font-family:ff17f_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff180_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff180_c00001{font-family:ff180_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff181_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff181_c00001{font-family:ff181_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff182_c00001;src:url('chunks/assets/font_1a999addd43797e7873dbc61.woff2')format("woff");}.ff182_c00001{font-family:ff182_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff183_c00001;src:url('chunks/assets/font_fc0fd4abc3c531c216392bec.woff2')format("woff");}.ff183_c00001{font-family:ff183_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff184_c00001;src:url('chunks/assets/font_7927044626067356fd3ccae0.woff2')format("woff");}.ff184_c00001{font-family:ff184_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff185_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff185_c00001{font-family:ff185_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff186_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff186_c00001{font-family:ff186_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff187_c00001;src:url('chunks/assets/font_23d292552693139e5444f60e.woff2')format("woff");}.ff187_c00001{font-family:ff187_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff188_c00001;src:url('chunks/assets/font_5fc2c73c3f507ae62ac9f5cc.woff2')format("woff");}.ff188_c00001{font-family:ff188_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff189_c00001;src:url('chunks/assets/font_1cf2245c558895ee21a62284.woff2')format("woff");}.ff189_c00001{font-family:ff189_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18a_c00001;src:url('chunks/assets/font_669cbabfbaa30aa5d9658dad.woff2')format("woff");}.ff18a_c00001{font-family:ff18a_c00001;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18b_c00001;src:url('chunks/assets/font_3f02aaa6654380d6736b5c17.woff2')format("woff");}.ff18b_c00001{font-family:ff18b_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18c_c00001;src:url('chunks/assets/font_b485928af56e81f1697b4bdb.woff2')format("woff");}.ff18c_c00001{font-family:ff18c_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18d_c00001;src:url('chunks/assets/font_1a999addd43797e7873dbc61.woff2')format("woff");}.ff18d_c00001{font-family:ff18d_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18e_c00001;src:url('chunks/assets/font_893590cbbc0843b072290e3d.woff2')format("woff");}.ff18e_c00001{font-family:ff18e_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18f_c00001;src:url('chunks/assets/font_c6b62870905ab96a94a9fe8d.woff2')format("woff");}.ff18f_c00001{font-family:ff18f_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff190_c00001;src:url('chunks/assets/font_6af50d622657189b80877400.woff2')format("woff");}.ff190_c00001{font-family:ff190_c00001;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff191_c00001;src:url('chunks/assets/font_8ec5aed6f8fdf96f26dc3073.woff2')format("woff");}.ff191_c00001{font-family:ff191_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff192_c00001;src:url('chunks/assets/font_73b83dd490f0df095ca3b514.woff2')format("woff");}.ff192_c00001{font-family:ff192_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff193_c00001;src:url('chunks/assets/font_0806ca53f5e6883c7d35c7a9.woff2')format("woff");}.ff193_c00001{font-family:ff193_c00001;line-height:0.974121;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff194_c00001;src:url('chunks/assets/font_44cab8874ba3e717472a70fd.woff2')format("woff");}.ff194_c00001{font-family:ff194_c00001;line-height:0.775879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff195_c00001;src:url('chunks/assets/font_90bfee529f74703156fa9afe.woff2')format("woff");}.ff195_c00001{font-family:ff195_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff196_c00001;src:url('chunks/assets/font_c09df13aa7854b6da7d83294.woff2')format("woff");}.ff196_c00001{font-family:ff196_c00001;line-height:0.929688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff197_c00001;src:url('chunks/assets/font_c03ff7b81fcdf8f61134c76e.woff2')format("woff");}.ff197_c00001{font-family:ff197_c00001;line-height:0.727051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff198_c00001;src:url('chunks/assets/font_41424c526d44c410b8e9ecb7.woff2')format("woff");}.ff198_c00001{font-family:ff198_c00001;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff199_c00001;src:url('chunks/assets/font_50b324f755137c42a9d42dd0.woff2')format("woff");}.ff199_c00001{font-family:ff199_c00001;line-height:1.130861;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19a_c00001;src:url('chunks/assets/font_81d1a52e940d3eda8784b73a.woff2')format("woff");}.ff19a_c00001{font-family:ff19a_c00001;line-height:0.900879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19b_c00001;src:url('chunks/assets/font_a787061d9184accffc4d07c3.woff2')format("woff");}.ff19b_c00001{font-family:ff19b_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19c_c00001;src:url('chunks/assets/font_97010ae5391b50652b989b4b.woff2')format("woff");}.ff19c_c00001{font-family:ff19c_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19d_c00001;src:url('chunks/assets/font_7560c1fab70215f3957a1016.woff2')format("woff");}.ff19d_c00001{font-family:ff19d_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19e_c00001;src:url('chunks/assets/font_1fce449f5593cf1e002ac70f.woff2')format("woff");}.ff19e_c00001{font-family:ff19e_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19f_c00001;src:url('chunks/assets/font_ba494334ef4f1c1081554e8e.woff2')format("woff");}.ff19f_c00001{font-family:ff19f_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a0_c00001;src:url('chunks/assets/font_8b7215a3b57171ba9f62fa50.woff2')format("woff");}.ff1a0_c00001{font-family:ff1a0_c00001;line-height:0.929688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a1_c00001;src:url('chunks/assets/font_f0a686c26b9501073acffc73.woff2')format("woff");}.ff1a1_c00001{font-family:ff1a1_c00001;line-height:0.900879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a2_c00001;src:url('chunks/assets/font_c03ff7b81fcdf8f61134c76e.woff2')format("woff");}.ff1a2_c00001{font-family:ff1a2_c00001;line-height:0.727051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a3_c00001;src:url('chunks/assets/font_41424c526d44c410b8e9ecb7.woff2')format("woff");}.ff1a3_c00001{font-family:ff1a3_c00001;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a4_c00001;src:url('chunks/assets/font_10328c083b4e1b96b1841349.woff2')format("woff");}.ff1a4_c00001{font-family:ff1a4_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a5_c00001;src:url('chunks/assets/font_547ea131b49e2d50179c19a6.woff2')format("woff");}.ff1a5_c00001{font-family:ff1a5_c00001;line-height:0.949000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a6_c00001;src:url('chunks/assets/font_73921fd5839fde675ba48307.woff2')format("woff");}.ff1a6_c00001{font-family:ff1a6_c00001;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a7_c00001;src:url('chunks/assets/font_52dc1ad32b90a8395d7fad3d.woff2')format("woff");}.ff1a7_c00001{font-family:ff1a7_c00001;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a8_c00001;src:url('chunks/assets/font_68fd4c3237ac5aaf6f36ae7e.woff2')format("woff");}.ff1a8_c00001{font-family:ff1a8_c00001;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a9_c00001;src:url('chunks/assets/font_8b1c284534b6df85dd7dcb73.woff2')format("woff");}.ff1a9_c00001{font-family:ff1a9_c00001;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1aa_c00001;src:url('chunks/assets/font_97b8d477852a5525937ad8bf.woff2')format("woff");}.ff1aa_c00001{font-family:ff1aa_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ab_c00001;src:url('chunks/assets/font_d5b456ec5393ea4162b23ea4.woff2')format("woff");}.ff1ab_c00001{font-family:ff1ab_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ac_c00001;src:url('chunks/assets/font_9041062249dcc21a6ec4733f.woff2')format("woff");}.ff1ac_c00001{font-family:ff1ac_c00001;line-height:0.979000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ad_c00001;src:url('chunks/assets/font_5ac1446fd0919d980c4e74ae.woff2')format("woff");}.ff1ad_c00001{font-family:ff1ad_c00001;line-height:0.883000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ae_c00001;src:url('chunks/assets/font_cad6ca50f204b5ca32af45ef.woff2')format("woff");}.ff1ae_c00001{font-family:ff1ae_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1af_c00001;src:url('chunks/assets/font_8071e5b0b78254eb5e474a55.woff2')format("woff");}.ff1af_c00001{font-family:ff1af_c00001;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b0_c00001;src:url('chunks/assets/font_aeecdf6c1891241128f7ab30.woff2')format("woff");}.ff1b0_c00001{font-family:ff1b0_c00001;line-height:1.171387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b1_c00001;src:url('chunks/assets/font_d5396b0d3dfb649178ec0891.woff2')format("woff");}.ff1b1_c00001{font-family:ff1b1_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b2_c00001;src:url('chunks/assets/font_1aa2d8024c59e46aaa23cb36.woff2')format("woff");}.ff1b2_c00001{font-family:ff1b2_c00001;line-height:0.965332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b3_c00001;src:url('chunks/assets/font_2ccd3a69e0d8821d692289bf.woff2')format("woff");}.ff1b3_c00001{font-family:ff1b3_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b4_c00001;src:url('chunks/assets/font_8c90ee811564a55df48e135f.woff2')format("woff");}.ff1b4_c00001{font-family:ff1b4_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b5_c00001;src:url('chunks/assets/font_d143cd05f6018e1e81913eb5.woff2')format("woff");}.ff1b5_c00001{font-family:ff1b5_c00001;line-height:0.964355;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b6_c00001;src:url('chunks/assets/font_6ccf30d9ede072ca0afa1d5d.woff2')format("woff");}.ff1b6_c00001{font-family:ff1b6_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b7_c00001;src:url('chunks/assets/font_c2a7e8b1d4371f7c6d09bc51.woff2')format("woff");}.ff1b7_c00001{font-family:ff1b7_c00001;line-height:0.964355;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b8_c00001;src:url('chunks/assets/font_29eb3223c7a2071a6b2f3c44.woff2')format("woff");}.ff1b8_c00001{font-family:ff1b8_c00001;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b9_c00001;src:url('chunks/assets/font_cbdcf58f294ec3fa21b79d38.woff2')format("woff");}.ff1b9_c00001{font-family:ff1b9_c00001;line-height:0.965332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ba_c00001;src:url('chunks/assets/font_bf9928c3ee06210aeb5ef0a1.woff2')format("woff");}.ff1ba_c00001{font-family:ff1ba_c00001;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bb_c00001;src:url('chunks/assets/font_91f9772edcd8d8af6bf6695d.woff2')format("woff");}.ff1bb_c00001{font-family:ff1bb_c00001;line-height:0.733887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bc_c00001;src:url('chunks/assets/font_1edb485c4f7f42b934803aeb.woff2')format("woff");}.ff1bc_c00001{font-family:ff1bc_c00001;line-height:0.990000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bd_c00001;src:url('chunks/assets/font_99c5ad64ee83c504abbc7d07.woff2')format("woff");}.ff1bd_c00001{font-family:ff1bd_c00001;line-height:1.014909;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1be_c00001;src:url('chunks/assets/font_26df27a3028424f9d05c225d.woff2')format("woff");}.ff1be_c00001{font-family:ff1be_c00001;line-height:0.987000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bf_c00001;src:url('chunks/assets/font_4ad69575a41c8cce2d62a8fa.woff2')format("woff");}.ff1bf_c00001{font-family:ff1bf_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c0_c00001;src:url('chunks/assets/font_a7040b2c19402dc6654f52d4.woff2')format("woff");}.ff1c0_c00001{font-family:ff1c0_c00001;line-height:0.733887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c1_c00001;src:url('chunks/assets/font_6c8951688969ffc8bd9a33b0.woff2')format("woff");}.ff1c1_c00001{font-family:ff1c1_c00001;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c2_c00001;src:url('chunks/assets/font_44b7dcaa55b00f62fc4b44ad.woff2')format("woff");}.ff1c2_c00001{font-family:ff1c2_c00001;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c3_c00001;src:url('chunks/assets/font_de94ef4b82d06676e5e6f8a7.woff2')format("woff");}.ff1c3_c00001{font-family:ff1c3_c00001;line-height:0.733887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c4_c00001;src:url('chunks/assets/font_1edb485c4f7f42b934803aeb.woff2')format("woff");}.ff1c4_c00001{font-family:ff1c4_c00001;line-height:0.990000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c5_c00001;src:url('chunks/assets/font_99c5ad64ee83c504abbc7d07.woff2')format("woff");}.ff1c5_c00001{font-family:ff1c5_c00001;line-height:1.014909;font-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_c00001{transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-ms-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);-webkit-transform:matrix(-0.063060,-0.241916,0.241916,-0.063060,0,0);}
.m3e_c00001{transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-ms-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);-webkit-transform:matrix(-0.061126,-0.242412,0.242412,-0.061126,0,0);}
.m2a_c00001{transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-ms-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);-webkit-transform:matrix(-0.060904,0.242468,-0.242468,-0.060904,0,0);}
.m1_c00001{transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-ms-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);-webkit-transform:matrix(-0.060420,0.242589,-0.242589,-0.060420,0,0);}
.m2b_c00001{transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-ms-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);-webkit-transform:matrix(-0.017489,0.249388,-0.249388,-0.017489,0,0);}
.m3d_c00001{transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-ms-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);-webkit-transform:matrix(-0.008889,-0.249842,0.249842,-0.008889,0,0);}
.m2_c00001{transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-ms-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);-webkit-transform:matrix(-0.005208,0.249946,-0.249946,-0.005208,0,0);}
.m16_c00001{transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-ms-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);-webkit-transform:matrix(-0.000985,0.249998,-0.249998,-0.000985,0,0);}
.m14_c00001{transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-ms-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);-webkit-transform:matrix(0.005817,-0.249932,0.249932,0.005817,0,0);}
.m2c_c00001{transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-ms-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);-webkit-transform:matrix(0.017848,0.249362,-0.249362,0.017848,0,0);}
.m29_c00001{transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-ms-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);-webkit-transform:matrix(0.021746,-0.249052,0.249052,0.021746,0,0);}
.m17_c00001{transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-ms-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);-webkit-transform:matrix(0.036908,0.247261,-0.247261,0.036908,0,0);}
.m3_c00001{transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-ms-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);-webkit-transform:matrix(0.038615,0.247000,-0.247000,0.038615,0,0);}
.m2d_c00001{transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-ms-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);-webkit-transform:matrix(0.056117,0.243620,-0.243620,0.056117,0,0);}
.m3c_c00001{transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-ms-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);-webkit-transform:matrix(0.060082,-0.242673,0.242673,0.060082,0,0);}
.m4_c00001{transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-ms-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);-webkit-transform:matrix(0.068925,0.240311,-0.240311,0.068925,0,0);}
.m18_c00001{transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-ms-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);-webkit-transform:matrix(0.076964,0.237858,-0.237858,0.076964,0,0);}
.m28_c00001{transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-ms-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);-webkit-transform:matrix(0.082013,-0.236165,0.236165,0.082013,0,0);}
.m13_c00001{transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-ms-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);-webkit-transform:matrix(0.084465,-0.235299,0.235299,0.084465,0,0);}
.m5_c00001{transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-ms-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);-webkit-transform:matrix(0.103162,0.227723,-0.227723,0.103162,0,0);}
.m2e_c00001{transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-ms-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);-webkit-transform:matrix(0.103219,0.227697,-0.227697,0.103219,0,0);}
.m19_c00001{transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-ms-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);-webkit-transform:matrix(0.112935,0.223038,-0.223038,0.112935,0,0);}
.m3b_c00001{transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-ms-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);-webkit-transform:matrix(0.119601,-0.219535,0.219535,0.119601,0,0);}
.m27_c00001{transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-ms-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);-webkit-transform:matrix(0.135255,-0.210252,0.210252,0.135255,0,0);}
.m12_c00001{transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-ms-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);-webkit-transform:matrix(0.136111,-0.209699,0.209699,0.136111,0,0);}
.m6_c00001{transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-ms-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);-webkit-transform:matrix(0.147870,0.201580,-0.201580,0.147870,0,0);}
.m1a_c00001{transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-ms-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);-webkit-transform:matrix(0.148071,0.201432,-0.201432,0.148071,0,0);}
.m2f_c00001{transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-ms-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);-webkit-transform:matrix(0.148222,0.201321,-0.201321,0.148222,0,0);}
.m3a_c00001{transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-ms-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);-webkit-transform:matrix(0.158777,-0.193106,0.193106,0.158777,0,0);}
.m11_c00001{transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-ms-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);-webkit-transform:matrix(0.170710,-0.182642,0.182642,0.170710,0,0);}
.m26_c00001{transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-ms-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);-webkit-transform:matrix(0.171665,-0.181745,0.181745,0.171665,0,0);}
.m1b_c00001{transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-ms-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);-webkit-transform:matrix(0.180737,0.172726,-0.172726,0.180737,0,0);}
.m7_c00001{transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-ms-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);-webkit-transform:matrix(0.184866,0.168299,-0.168299,0.184866,0,0);}
.m30_c00001{transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-ms-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);-webkit-transform:matrix(0.185160,0.167976,-0.167976,0.185160,0,0);}
.m39_c00001{transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-ms-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);-webkit-transform:matrix(0.188218,-0.164542,0.164542,0.188218,0,0);}
.m25_c00001{transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-ms-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);-webkit-transform:matrix(0.189064,-0.163569,0.163569,0.189064,0,0);}
.m10_c00001{transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-ms-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);-webkit-transform:matrix(0.197248,-0.153601,0.153601,0.197248,0,0);}
.m24_c00001{transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-ms-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);-webkit-transform:matrix(0.204321,-0.144059,0.144059,0.204321,0,0);}
.m8_c00001{transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-ms-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);-webkit-transform:matrix(0.206244,0.141292,-0.141292,0.206244,0,0);}
.m31_c00001{transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-ms-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);-webkit-transform:matrix(0.206491,0.140931,-0.140931,0.206491,0,0);}
.m1c_c00001{transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-ms-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);-webkit-transform:matrix(0.211367,0.133507,-0.133507,0.211367,0,0);}
.m38_c00001{transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-ms-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);-webkit-transform:matrix(0.217254,-0.123697,0.123697,0.217254,0,0);}
.m23_c00001{transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-ms-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);-webkit-transform:matrix(0.217572,-0.123136,0.123136,0.217572,0,0);}
.m9_c00001{transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-ms-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);-webkit-transform:matrix(0.217787,0.122755,-0.122755,0.217787,0,0);}
.m32_c00001{transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-ms-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);-webkit-transform:matrix(0.218001,0.122375,-0.122375,0.218001,0,0);}
.mf_c00001{transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-ms-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);-webkit-transform:matrix(0.219978,-0.118785,0.118785,0.219978,0,0);}
.m22_c00001{transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-ms-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);-webkit-transform:matrix(0.227487,-0.103680,0.103680,0.227487,0,0);}
.ma_c00001{transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-ms-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);-webkit-transform:matrix(0.228864,0.100604,-0.100604,0.228864,0,0);}
.m33_c00001{transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-ms-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);-webkit-transform:matrix(0.229040,0.100204,-0.100204,0.229040,0,0);}
.m1d_c00001{transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-ms-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);-webkit-transform:matrix(0.231470,0.094456,-0.094456,0.231470,0,0);}
.mb_c00001{transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-ms-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);-webkit-transform:matrix(0.237695,0.077465,-0.077465,0.237695,0,0);}
.m34_c00001{transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-ms-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);-webkit-transform:matrix(0.237830,0.077050,-0.077050,0.237830,0,0);}
.m21_c00001{transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-ms-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);-webkit-transform:matrix(0.239579,-0.071428,0.071428,0.239579,0,0);}
.m37_c00001{transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-ms-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);-webkit-transform:matrix(0.240627,-0.067812,0.067812,0.240627,0,0);}
.m1e_c00001{transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-ms-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);-webkit-transform:matrix(0.241390,0.065044,-0.065044,0.241390,0,0);}
.me_c00001{transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-ms-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);-webkit-transform:matrix(0.243978,-0.054541,0.054541,0.243978,0,0);}
.mc_c00001{transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-ms-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);-webkit-transform:matrix(0.244278,0.053180,-0.053180,0.244278,0,0);}
.m35_c00001{transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-ms-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);-webkit-transform:matrix(0.246789,0.039937,-0.039937,0.246789,0,0);}
.m1f_c00001{transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-ms-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);-webkit-transform:matrix(0.248286,0.029224,-0.029224,0.248286,0,0);}
.m20_c00001{transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-ms-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);-webkit-transform:matrix(0.248980,-0.022562,0.022562,0.248980,0,0);}
.m36_c00001{transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013786,0.013786,0.249620,0,0);}
.md_c00001{transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-ms-transform:matrix(0.249696,0.012331,-0.012331,0.249696,0,0);-webkit-transform:matrix(0.249696,0.012331,-0.012331,0.249696,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);}
.v3_c00001{vertical-align:-7.019381px;}
.v2_c00001{vertical-align:-2.309472px;}
.v0_c00001{vertical-align:0.000000px;}
.v1_c00001{vertical-align:8.961696px;}
.ls1_c00001{letter-spacing:0.000000px;}
.ls0_c00001{letter-spacing:0.000023px;}
.ls1a_c00001{letter-spacing:0.019500px;}
.ls16_c00001{letter-spacing:0.027317px;}
.ls5_c00001{letter-spacing:0.027340px;}
.ls14_c00001{letter-spacing:0.035113px;}
.ls10_c00001{letter-spacing:0.035136px;}
.ls3_c00001{letter-spacing:0.035158px;}
.ls19_c00001{letter-spacing:0.043195px;}
.ls17_c00001{letter-spacing:0.983787px;}
.ls6_c00001{letter-spacing:1.475704px;}
.ls12_c00001{letter-spacing:1.616245px;}
.ls4_c00001{letter-spacing:1.827034px;}
.ls9_c00001{letter-spacing:2.599987px;}
.ls8_c00001{letter-spacing:2.600010px;}
.ls7_c00001{letter-spacing:5.691937px;}
.ls15_c00001{letter-spacing:6.113560px;}
.ls11_c00001{letter-spacing:6.183808px;}
.ls18_c00001{letter-spacing:6.605431px;}
.lsc_c00001{letter-spacing:9.135171px;}
.lsa_c00001{letter-spacing:13.070322px;}
.lse_c00001{letter-spacing:14.616274px;}
.lsd_c00001{letter-spacing:17.216306px;}
.lsb_c00001{letter-spacing:21.432517px;}
.lsf_c00001{letter-spacing:31.270416px;}
.ls13_c00001{letter-spacing:40.897459px;}
.ls2_c00001{letter-spacing:59.659672px;}
.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:-50.908842px;}
.ws7_c00001{word-spacing:-39.102529px;}
.wsf_c00001{word-spacing:-27.339403px;}
.ws12_c00001{word-spacing:-25.608690px;}
.wsb_c00001{word-spacing:-22.734872px;}
.ws0_c00001{word-spacing:-18.691966px;}
.ws1_c00001{word-spacing:-18.680283px;}
.wsa_c00001{word-spacing:-17.126514px;}
.wsc_c00001{word-spacing:-15.572744px;}
.ws5_c00001{word-spacing:-14.474592px;}
.ws9_c00001{word-spacing:-0.269839px;}
.ws6_c00001{word-spacing:-0.071957px;}
.ws10_c00001{word-spacing:-0.071912px;}
.ws2_c00001{word-spacing:0.000000px;}
.ws8_c00001{word-spacing:266.766733px;}
.ws3_c00001{word-spacing:275.967713px;}
.ws4_c00001{word-spacing:281.470806px;}
.wse_c00001{word-spacing:643.642799px;}
.wsd_c00001{word-spacing:692.961470px;}
._2c_c00001{margin-left:-850.130986px;}
._31_c00001{margin-left:-8.168329px;}
._2e_c00001{margin-left:-4.317383px;}
._2f_c00001{margin-left:-1.001956px;}
._2_c00001{width:1.075674px;}
._3_c00001{width:3.000496px;}
._0_c00001{width:4.411396px;}
._1_c00001{width:6.129732px;}
._7_c00001{width:7.147560px;}
._5_c00001{width:8.296590px;}
._8_c00001{width:9.305289px;}
._e_c00001{width:10.357972px;}
._f_c00001{width:11.533363px;}
._15_c00001{width:12.546447px;}
._9_c00001{width:13.805417px;}
._1a_c00001{width:14.996860px;}
._6_c00001{width:16.334677px;}
._c_c00001{width:17.605103px;}
._a_c00001{width:19.951416px;}
._12_c00001{width:21.725263px;}
._13_c00001{width:23.233954px;}
._1d_c00001{width:24.256034px;}
._17_c00001{width:25.432519px;}
._19_c00001{width:26.774107px;}
._16_c00001{width:28.150354px;}
._1e_c00001{width:29.263770px;}
._10_c00001{width:30.407932px;}
._1f_c00001{width:31.491624px;}
._4_c00001{width:32.781213px;}
._b_c00001{width:33.879928px;}
._14_c00001{width:35.395219px;}
._18_c00001{width:36.983375px;}
._1b_c00001{width:38.037431px;}
._28_c00001{width:39.049238px;}
._1c_c00001{width:40.096347px;}
._23_c00001{width:41.568869px;}
._21_c00001{width:42.615174px;}
._2d_c00001{width:44.099777px;}
._22_c00001{width:45.830320px;}
._d_c00001{width:47.010998px;}
._20_c00001{width:48.542806px;}
._24_c00001{width:50.865788px;}
._29_c00001{width:51.995334px;}
._2a_c00001{width:53.827240px;}
._27_c00001{width:57.496887px;}
._11_c00001{width:59.605003px;}
._25_c00001{width:81.704539px;}
._2b_c00001{width:290.860879px;}
._26_c00001{width:296.619778px;}
._30_c00001{width:437.573820px;}
.fce_c00001{color:rgb(34,135,65);}
.fcd_c00001{color:rgb(185,205,150);}
.fc0_c00001{color:rgb(102,18,18);}
.fc8_c00001{color:rgb(113,88,143);}
.fc1_c00001{color:rgb(0,0,0);}
.fc3_c00001{color:rgb(34,67,94);}
.fc5_c00001{color:rgb(69,114,167);}
.fc4_c00001{color:rgb(72,111,143);}
.fc9_c00001{color:rgb(65,152,175);}
.fc6_c00001{color:rgb(132,27,27);}
.fc2_c00001{color:rgb(255,255,255);}
.fc7_c00001{color:rgb(136,164,78);}
.fcc_c00001{color:rgb(208,146,145);}
.fca_c00001{color:rgb(219,132,61);}
.fcb_c00001{color:rgb(147,169,207);}
.fs8_c00001{font-size:41.974772px;}
.fsc_c00001{font-size:41.975069px;}
.fs16_c00001{font-size:44.198725px;}
.fs3_c00001{font-size:47.339969px;}
.fs6_c00001{font-size:47.339970px;}
.fs2_c00001{font-size:47.339972px;}
.fs5_c00001{font-size:47.339973px;}
.fs4_c00001{font-size:47.339974px;}
.fs7_c00001{font-size:47.339975px;}
.fs19_c00001{font-size:50.316546px;}
.fs15_c00001{font-size:53.967781px;}
.fs9_c00001{font-size:55.171880px;}
.fsf_c00001{font-size:55.721735px;}
.fs10_c00001{font-size:56.262632px;}
.fsb_c00001{font-size:59.949210px;}
.fs17_c00001{font-size:64.294635px;}
.fs14_c00001{font-size:65.930638px;}
.fs1_c00001{font-size:71.912067px;}
.fs0_c00001{font-size:71.957041px;}
.fse_c00001{font-size:76.965540px;}
.fsa_c00001{font-size:83.919899px;}
.fs11_c00001{font-size:89.946302px;}
.fsd_c00001{font-size:95.927731px;}
.fs18_c00001{font-size:102.846145px;}
.fs13_c00001{font-size:119.898420px;}
.fs12_c00001{font-size:269.838905px;}
.y0_c00001{bottom:0.000000px;}
.y1_c00001{bottom:0.000008px;}
.y20_c00001{bottom:30.156225px;}
.y421_c00001{bottom:59.808065px;}
.y483_c00001{bottom:61.506874px;}
.y1e3_c00001{bottom:63.815260px;}
.y1a5_c00001{bottom:64.209610px;}
.y3b7_c00001{bottom:64.244540px;}
.y377_c00001{bottom:64.782370px;}
.y30a_c00001{bottom:68.565720px;}
.y619_c00001{bottom:69.105500px;}
.y620_c00001{bottom:70.574516px;}
.y2df_c00001{bottom:74.373873px;}
.y312_c00001{bottom:81.647347px;}
.yf1_c00001{bottom:82.459379px;}
.y543_c00001{bottom:83.081913px;}
.y2c2_c00001{bottom:88.168495px;}
.y332_c00001{bottom:88.393315px;}
.y420_c00001{bottom:90.164942px;}
.y20f_c00001{bottom:90.819804px;}
.y25d_c00001{bottom:91.418754px;}
.y5b2_c00001{bottom:91.422871px;}
.y482_c00001{bottom:91.863750px;}
.y3d3_c00001{bottom:92.744656px;}
.y4ea_c00001{bottom:92.771939px;}
.y433_c00001{bottom:93.746442px;}
.y1e2_c00001{bottom:94.172136px;}
.y28d_c00001{bottom:94.469286px;}
.y1a4_c00001{bottom:94.566486px;}
.y3b6_c00001{bottom:94.601417px;}
.y670_c00001{bottom:94.800562px;}
.y618_c00001{bottom:94.929199px;}
.y376_c00001{bottom:95.139246px;}
.y1ec_c00001{bottom:95.690766px;}
.y309_c00001{bottom:98.922596px;}
.y3f0_c00001{bottom:99.092256px;}
.y61f_c00001{bottom:100.254139px;}
.y667_c00001{bottom:102.933929px;}
.y2de_c00001{bottom:104.730750px;}
.y3b8_c00001{bottom:109.530642px;}
.y665_c00001{bottom:111.945017px;}
.y311_c00001{bottom:112.004224px;}
.yf0_c00001{bottom:112.816256px;}
.y542_c00001{bottom:113.438790px;}
.y223_c00001{bottom:113.905384px;}
.y5b3_c00001{bottom:114.090126px;}
.y66f_c00001{bottom:116.729155px;}
.y168_c00001{bottom:116.881589px;}
.y666_c00001{bottom:117.666837px;}
.y2c1_c00001{bottom:118.525371px;}
.y331_c00001{bottom:118.750191px;}
.y122_c00001{bottom:119.667219px;}
.y41f_c00001{bottom:120.521819px;}
.y614_c00001{bottom:120.752862px;}
.y20e_c00001{bottom:121.176681px;}
.y25c_c00001{bottom:121.775631px;}
.y481_c00001{bottom:122.220627px;}
.y3d2_c00001{bottom:123.101533px;}
.y4e9_c00001{bottom:123.128815px;}
.y17a_c00001{bottom:123.922095px;}
.y432_c00001{bottom:124.103319px;}
.y4f1_c00001{bottom:124.440315px;}
.yd4_c00001{bottom:124.499031px;}
.y1e1_c00001{bottom:124.529013px;}
.y28c_c00001{bottom:124.826163px;}
.y1a3_c00001{bottom:124.923363px;}
.y2e6_c00001{bottom:125.115999px;}
.yf8_c00001{bottom:125.288907px;}
.y375_c00001{bottom:125.496123px;}
.y1eb_c00001{bottom:126.047643px;}
.y664_c00001{bottom:126.677925px;}
.y3b5_c00001{bottom:127.839089px;}
.y623_c00001{bottom:129.037074px;}
.y308_c00001{bottom:129.279473px;}
.y3ef_c00001{bottom:129.449133px;}
.y50a_c00001{bottom:129.744979px;}
.y2dd_c00001{bottom:135.087627px;}
.y4ad_c00001{bottom:138.106779px;}
.y66e_c00001{bottom:138.657748px;}
.y149_c00001{bottom:139.887518px;}
.y310_c00001{bottom:142.361100px;}
.yef_c00001{bottom:143.173132px;}
.y541_c00001{bottom:143.795667px;}
.y222_c00001{bottom:144.262260px;}
.y5b5_c00001{bottom:144.627809px;}
.y516_c00001{bottom:145.774692px;}
.y613_c00001{bottom:146.576525px;}
.ya0_c00001{bottom:146.651112px;}
.y167_c00001{bottom:147.238466px;}
.y238_c00001{bottom:148.164528px;}
.y2c0_c00001{bottom:148.882248px;}
.y68_c00001{bottom:149.035788px;}
.y330_c00001{bottom:149.107068px;}
.y121_c00001{bottom:150.024096px;}
.yc3_c00001{bottom:150.818083px;}
.y41e_c00001{bottom:150.878696px;}
.y45a_c00001{bottom:151.396272px;}
.y20d_c00001{bottom:151.533558px;}
.y663_c00001{bottom:151.706727px;}
.y25b_c00001{bottom:152.132508px;}
.y669_c00001{bottom:152.563023px;}
.y480_c00001{bottom:152.577504px;}
.y3fc_c00001{bottom:153.154584px;}
.y4c8_c00001{bottom:153.404152px;}
.y3d1_c00001{bottom:153.458410px;}
.y4e8_c00001{bottom:153.485692px;}
.y179_c00001{bottom:154.278972px;}
.y431_c00001{bottom:154.460196px;}
.y4f0_c00001{bottom:154.797192px;}
.yd3_c00001{bottom:154.855908px;}
.y1e0_c00001{bottom:154.885890px;}
.y28b_c00001{bottom:155.183040px;}
.y1a2_c00001{bottom:155.280240px;}
.y2e5_c00001{bottom:155.472876px;}
.yf7_c00001{bottom:155.645784px;}
.y374_c00001{bottom:155.853000px;}
.y1c7_c00001{bottom:156.362254px;}
.y1ea_c00001{bottom:156.404520px;}
.y4a0_c00001{bottom:157.677826px;}
.y626_c00001{bottom:157.783900px;}
.y307_c00001{bottom:159.636350px;}
.y3ee_c00001{bottom:159.806010px;}
.y509_c00001{bottom:160.101856px;}
.y13e_c00001{bottom:161.312796px;}
.y473_c00001{bottom:162.666887px;}
.y446_c00001{bottom:165.019545px;}
.y5b4_c00001{bottom:165.902620px;}
.y662_c00001{bottom:166.439635px;}
.y668_c00001{bottom:167.295931px;}
.y36e_c00001{bottom:167.313347px;}
.y4ac_c00001{bottom:168.463655px;}
.y117_c00001{bottom:168.971219px;}
.y2dc_c00001{bottom:169.301223px;}
.y148_c00001{bottom:170.244395px;}
.y617_c00001{bottom:172.400188px;}
.y30f_c00001{bottom:172.717977px;}
.yee_c00001{bottom:173.530009px;}
.y221_c00001{bottom:174.619137px;}
.y515_c00001{bottom:176.131569px;}
.y540_c00001{bottom:176.850927px;}
.y9f_c00001{bottom:177.007989px;}
.y166_c00001{bottom:177.595342px;}
.y237_c00001{bottom:178.521405px;}
.y2bf_c00001{bottom:179.239125px;}
.y67_c00001{bottom:179.392665px;}
.y32f_c00001{bottom:179.463945px;}
.y3b4_c00001{bottom:179.528615px;}
.y120_c00001{bottom:180.380973px;}
.yc2_c00001{bottom:181.174960px;}
.y41d_c00001{bottom:181.235572px;}
.y196_c00001{bottom:181.415931px;}
.y459_c00001{bottom:181.753149px;}
.y20c_c00001{bottom:181.890435px;}
.y391_c00001{bottom:182.489371px;}
.y25a_c00001{bottom:182.489385px;}
.y661_c00001{bottom:182.622086px;}
.y47f_c00001{bottom:182.934381px;}
.y3fb_c00001{bottom:183.511461px;}
.y4ce_c00001{bottom:183.613773px;}
.y4c7_c00001{bottom:183.761029px;}
.y3d0_c00001{bottom:183.815287px;}
.y4e7_c00001{bottom:183.842569px;}
.y178_c00001{bottom:184.635849px;}
.y430_c00001{bottom:184.817073px;}
.y4ef_c00001{bottom:185.154069px;}
.yd2_c00001{bottom:185.212785px;}
.y1df_c00001{bottom:185.242767px;}
.y28a_c00001{bottom:185.539917px;}
.y1a1_c00001{bottom:185.637117px;}
.y2e4_c00001{bottom:185.829753px;}
.y622_c00001{bottom:185.856231px;}
.yf6_c00001{bottom:186.002661px;}
.y373_c00001{bottom:186.209877px;}
.y1c6_c00001{bottom:186.719130px;}
.y1e9_c00001{bottom:186.761397px;}
.y49f_c00001{bottom:188.034703px;}
.y5b6_c00001{bottom:188.932143px;}
.y3ed_c00001{bottom:190.162887px;}
.y508_c00001{bottom:190.458733px;}
.y13d_c00001{bottom:191.669672px;}
.y306_c00001{bottom:192.515246px;}
.y472_c00001{bottom:193.023764px;}
.y445_c00001{bottom:195.376421px;}
.y660_c00001{bottom:197.354994px;}
.y36d_c00001{bottom:197.670224px;}
.y616_c00001{bottom:198.223959px;}
.y4ab_c00001{bottom:198.820532px;}
.y116_c00001{bottom:199.328096px;}
.y147_c00001{bottom:200.601272px;}
.y30e_c00001{bottom:203.074854px;}
.yed_c00001{bottom:203.782562px;}
.y220_c00001{bottom:204.976014px;}
.y8a_c00001{bottom:205.217097px;}
.y32a_c00001{bottom:205.241262px;}
.y2db_c00001{bottom:205.729450px;}
.y514_c00001{bottom:206.488446px;}
.y9e_c00001{bottom:207.364866px;}
.y3b3_c00001{bottom:207.636835px;}
.y165_c00001{bottom:207.952219px;}
.y236_c00001{bottom:208.878282px;}
.y2be_c00001{bottom:209.596002px;}
.y66_c00001{bottom:209.749542px;}
.y32e_c00001{bottom:209.820822px;}
.y11f_c00001{bottom:210.737850px;}
.yc1_c00001{bottom:211.531837px;}
.y41c_c00001{bottom:211.592449px;}
.y195_c00001{bottom:211.772808px;}
.y458_c00001{bottom:212.110026px;}
.y20b_c00001{bottom:212.247311px;}
.y390_c00001{bottom:212.846248px;}
.y259_c00001{bottom:212.846262px;}
.y47e_c00001{bottom:213.291258px;}
.y568_c00001{bottom:213.829149px;}
.y3fa_c00001{bottom:213.868337px;}
.y3d7_c00001{bottom:213.970649px;}
.y3cf_c00001{bottom:214.172164px;}
.y177_c00001{bottom:214.992725px;}
.y42f_c00001{bottom:215.173949px;}
.y4ee_c00001{bottom:215.510945px;}
.yd1_c00001{bottom:215.569661px;}
.y1de_c00001{bottom:215.599644px;}
.y67d_c00001{bottom:215.746642px;}
.y621_c00001{bottom:215.763410px;}
.y289_c00001{bottom:215.896793px;}
.y1a0_c00001{bottom:215.993993px;}
.y2e3_c00001{bottom:216.186629px;}
.yf5_c00001{bottom:216.359537px;}
.y372_c00001{bottom:216.566753px;}
.y4c6_c00001{bottom:216.998485px;}
.y1c5_c00001{bottom:217.076007px;}
.y351_c00001{bottom:217.079473px;}
.y4e6_c00001{bottom:217.080061px;}
.y1e8_c00001{bottom:217.118273px;}
.y49e_c00001{bottom:218.391580px;}
.y3ec_c00001{bottom:220.519763px;}
.y507_c00001{bottom:220.815609px;}
.y13c_c00001{bottom:222.026549px;}
.y471_c00001{bottom:223.380641px;}
.y615_c00001{bottom:224.047550px;}
.y444_c00001{bottom:225.733298px;}
.y272_c00001{bottom:227.952340px;}
.y36c_c00001{bottom:228.027101px;}
.y58b_c00001{bottom:228.915056px;}
.y4aa_c00001{bottom:229.177409px;}
.y66b_c00001{bottom:229.542468px;}
.y115_c00001{bottom:229.684973px;}
.y53f_c00001{bottom:230.144129px;}
.y146_c00001{bottom:230.958149px;}
.y5ba_c00001{bottom:231.727383px;}
.y18_c00001{bottom:232.589461px;}
.y30d_c00001{bottom:233.431731px;}
.y567_c00001{bottom:235.191396px;}
.y21f_c00001{bottom:235.332891px;}
.y89_c00001{bottom:235.573973px;}
.y329_c00001{bottom:235.598139px;}
.y3b2_c00001{bottom:235.745054px;}
.y2da_c00001{bottom:236.086327px;}
.y513_c00001{bottom:236.845323px;}
.y9d_c00001{bottom:237.721743px;}
.y302_c00001{bottom:237.938152px;}
.y164_c00001{bottom:238.309096px;}
.y235_c00001{bottom:239.235158px;}
.y2bd_c00001{bottom:239.952878px;}
.y65_c00001{bottom:240.106418px;}
.y32d_c00001{bottom:240.177698px;}
.y194_c00001{bottom:241.041876px;}
.y11e_c00001{bottom:241.094726px;}
.yc0_c00001{bottom:241.888713px;}
.y41b_c00001{bottom:241.949326px;}
.y457_c00001{bottom:242.466902px;}
.y20a_c00001{bottom:242.604188px;}
.y38f_c00001{bottom:243.203124px;}
.y258_c00001{bottom:243.203138px;}
.y47d_c00001{bottom:243.648134px;}
.y3f9_c00001{bottom:244.225214px;}
.y66a_c00001{bottom:244.275376px;}
.y3d6_c00001{bottom:244.327526px;}
.y3ce_c00001{bottom:244.529040px;}
.y176_c00001{bottom:245.349602px;}
.y61e_c00001{bottom:245.360053px;}
.y42e_c00001{bottom:245.530826px;}
.y4ed_c00001{bottom:245.867822px;}
.yd0_c00001{bottom:245.926538px;}
.y288_c00001{bottom:246.253670px;}
.y19f_c00001{bottom:246.350870px;}
.y2e2_c00001{bottom:246.543506px;}
.y1e4_c00001{bottom:246.658416px;}
.yf4_c00001{bottom:246.716414px;}
.y371_c00001{bottom:246.923630px;}
.y1c4_c00001{bottom:247.432884px;}
.y350_c00001{bottom:247.436350px;}
.y1e7_c00001{bottom:247.475150px;}
.y49d_c00001{bottom:248.748456px;}
.y610_c00001{bottom:249.871285px;}
.y13b_c00001{bottom:252.383426px;}
.yec_c00001{bottom:252.483974px;}
.y470_c00001{bottom:253.737517px;}
.y4e5_c00001{bottom:255.509096px;}
.y443_c00001{bottom:256.090175px;}
.y566_c00001{bottom:256.553643px;}
.y3eb_c00001{bottom:257.951147px;}
.y271_c00001{bottom:258.309217px;}
.y36b_c00001{bottom:258.383978px;}
.y4a9_c00001{bottom:259.534286px;}
.y114_c00001{bottom:260.041850px;}
.y53e_c00001{bottom:260.501005px;}
.y145_c00001{bottom:261.315026px;}
.y17_c00001{bottom:262.946338px;}
.y30c_c00001{bottom:263.788607px;}
.y3b1_c00001{bottom:263.853273px;}
.y21e_c00001{bottom:265.689767px;}
.y88_c00001{bottom:265.930850px;}
.y328_c00001{bottom:265.955015px;}
.y2d9_c00001{bottom:266.443203px;}
.y512_c00001{bottom:267.202199px;}
.y9c_c00001{bottom:268.078619px;}
.y301_c00001{bottom:268.295029px;}
.y163_c00001{bottom:268.665973px;}
.y234_c00001{bottom:269.592035px;}
.y2bc_c00001{bottom:270.309755px;}
.y64_c00001{bottom:270.463295px;}
.y32c_c00001{bottom:270.534575px;}
.y60a_c00001{bottom:271.225980px;}
.y11d_c00001{bottom:271.451603px;}
.ybf_c00001{bottom:272.245590px;}
.y41a_c00001{bottom:272.306203px;}
.y456_c00001{bottom:272.823779px;}
.y209_c00001{bottom:272.961065px;}
.y4c5_c00001{bottom:273.558445px;}
.y38e_c00001{bottom:273.560001px;}
.y257_c00001{bottom:273.560015px;}
.y47c_c00001{bottom:274.005011px;}
.y67b_c00001{bottom:274.154443px;}
.y3f8_c00001{bottom:274.582091px;}
.y3d5_c00001{bottom:274.684403px;}
.y3cd_c00001{bottom:274.885917px;}
.y60f_c00001{bottom:275.694983px;}
.y175_c00001{bottom:275.706479px;}
.y42d_c00001{bottom:275.887703px;}
.y4ec_c00001{bottom:276.224699px;}
.ycf_c00001{bottom:276.283415px;}
.y287_c00001{bottom:276.610547px;}
.y19e_c00001{bottom:276.707747px;}
.y2e1_c00001{bottom:276.900383px;}
.yf3_c00001{bottom:277.073291px;}
.y370_c00001{bottom:277.280507px;}
.y1c3_c00001{bottom:277.789761px;}
.y1e6_c00001{bottom:277.832027px;}
.y61d_c00001{bottom:277.922303px;}
.y49c_c00001{bottom:279.105333px;}
.y34f_c00001{bottom:280.673950px;}
.y506_c00001{bottom:281.529363px;}
.y13a_c00001{bottom:282.740303px;}
.yeb_c00001{bottom:282.840851px;}
.y46f_c00001{bottom:284.094394px;}
.y4e4_c00001{bottom:285.865972px;}
.y442_c00001{bottom:286.447052px;}
.y38d_c00001{bottom:288.072556px;}
.y270_c00001{bottom:288.666094px;}
.y36a_c00001{bottom:288.740854px;}
.y65f_c00001{bottom:289.067385px;}
.y4a8_c00001{bottom:289.891162px;}
.y113_c00001{bottom:290.398726px;}
.y53d_c00001{bottom:290.857882px;}
.y193_c00001{bottom:291.614674px;}
.y144_c00001{bottom:291.671902px;}
.y3b0_c00001{bottom:291.961492px;}
.y1dd_c00001{bottom:292.142874px;}
.y30b_c00001{bottom:294.145484px;}
.y58a_c00001{bottom:295.242371px;}
.y16_c00001{bottom:296.045482px;}
.y21d_c00001{bottom:296.046644px;}
.y87_c00001{bottom:296.287727px;}
.y327_c00001{bottom:296.311892px;}
.y2d8_c00001{bottom:296.800080px;}
.y511_c00001{bottom:297.559076px;}
.y9b_c00001{bottom:298.435496px;}
.y300_c00001{bottom:298.651906px;}
.y609_c00001{bottom:298.887622px;}
.y162_c00001{bottom:299.022849px;}
.y233_c00001{bottom:299.948912px;}
.y2bb_c00001{bottom:300.666632px;}
.y2a5_c00001{bottom:300.804990px;}
.y63_c00001{bottom:300.820172px;}
.y32b_c00001{bottom:300.891452px;}
.y612_c00001{bottom:301.518718px;}
.y55c_c00001{bottom:301.735990px;}
.y11c_c00001{bottom:301.808480px;}
.ybe_c00001{bottom:302.602467px;}
.y419_c00001{bottom:302.663080px;}
.y455_c00001{bottom:303.180656px;}
.y208_c00001{bottom:303.317942px;}
.y65e_c00001{bottom:303.800294px;}
.y4c4_c00001{bottom:303.915322px;}
.y256_c00001{bottom:303.916892px;}
.y47b_c00001{bottom:304.361888px;}
.y3f7_c00001{bottom:304.938968px;}
.y3d4_c00001{bottom:305.041280px;}
.y392_c00001{bottom:305.838525px;}
.y174_c00001{bottom:306.063356px;}
.y42c_c00001{bottom:306.244580px;}
.y4eb_c00001{bottom:306.581576px;}
.yce_c00001{bottom:306.640292px;}
.y286_c00001{bottom:306.967424px;}
.y19d_c00001{bottom:307.064624px;}
.y2e0_c00001{bottom:307.257260px;}
.yf2_c00001{bottom:307.430168px;}
.y36f_c00001{bottom:307.637384px;}
.y255_c00001{bottom:307.950978px;}
.y3cc_c00001{bottom:308.123409px;}
.y1c2_c00001{bottom:308.146637px;}
.y1e5_c00001{bottom:308.188904px;}
.y49b_c00001{bottom:309.462210px;}
.y624_c00001{bottom:309.802858px;}
.y505_c00001{bottom:311.886240px;}
.y66d_c00001{bottom:312.948056px;}
.y139_c00001{bottom:313.097179px;}
.yea_c00001{bottom:313.197727px;}
.y46e_c00001{bottom:314.451271px;}
.y4e3_c00001{bottom:316.222849px;}
.y441_c00001{bottom:316.803929px;}
.y38c_c00001{bottom:318.429433px;}
.y26f_c00001{bottom:319.022970px;}
.y369_c00001{bottom:319.097731px;}
.y3af_c00001{bottom:320.069712px;}
.y4a7_c00001{bottom:320.248039px;}
.y589_c00001{bottom:320.663950px;}
.y112_c00001{bottom:320.755603px;}
.y53c_c00001{bottom:321.214759px;}
.y192_c00001{bottom:321.971551px;}
.y143_c00001{bottom:322.028779px;}
.y1dc_c00001{bottom:322.499751px;}
.y86_c00001{bottom:326.644604px;}
.y2d7_c00001{bottom:327.156957px;}
.y611_c00001{bottom:327.342309px;}
.y66c_c00001{bottom:327.680965px;}
.y60b_c00001{bottom:328.304193px;}
.y224_c00001{bottom:328.325060px;}
.y2ff_c00001{bottom:329.008783px;}
.y161_c00001{bottom:329.379726px;}
.y326_c00001{bottom:329.549456px;}
.y3ea_c00001{bottom:329.906659px;}
.y232_c00001{bottom:330.305789px;}
.ya1_c00001{bottom:330.614264px;}
.y2a4_c00001{bottom:331.161866px;}
.y55b_c00001{bottom:332.092867px;}
.ybd_c00001{bottom:332.959344px;}
.y418_c00001{bottom:333.019956px;}
.y207_c00001{bottom:333.674818px;}
.y4c3_c00001{bottom:334.272199px;}
.y34e_c00001{bottom:334.641645px;}
.y25e_c00001{bottom:336.195416px;}
.y2c3_c00001{bottom:337.094804px;}
.y313_c00001{bottom:337.319696px;}
.y254_c00001{bottom:338.307854px;}
.y1c1_c00001{bottom:338.503514px;}
.y28e_c00001{bottom:339.245912px;}
.y1a6_c00001{bottom:339.343112px;}
.y69_c00001{bottom:339.608900px;}
.y49a_c00001{bottom:339.819087px;}
.y1ed_c00001{bottom:340.467500px;}
.y504_c00001{bottom:342.243116px;}
.y625_c00001{bottom:342.641445px;}
.y46d_c00001{bottom:344.808148px;}
.y5b1_c00001{bottom:345.645177px;}
.y4e2_c00001{bottom:346.579726px;}
.y440_c00001{bottom:347.160805px;}
.ye9_c00001{bottom:347.380544px;}
.y3ae_c00001{bottom:348.177931px;}
.y38b_c00001{bottom:348.786310px;}
.y26e_c00001{bottom:349.379847px;}
.y53b_c00001{bottom:351.571636px;}
.y138_c00001{bottom:351.774127px;}
.y191_c00001{bottom:352.328427px;}
.y65d_c00001{bottom:352.425943px;}
.y15_c00001{bottom:352.463760px;}
.y1db_c00001{bottom:352.856628px;}
.y61a_c00001{bottom:353.166080px;}
.y4ae_c00001{bottom:356.110903px;}
.y85_c00001{bottom:357.001480px;}
.y21c_c00001{bottom:357.171457px;}
.y2d6_c00001{bottom:357.513834px;}
.y55a_c00001{bottom:358.402195px;}
.y14a_c00001{bottom:358.457059px;}
.y160_c00001{bottom:359.736603px;}
.y3e9_c00001{bottom:360.263535px;}
.y231_c00001{bottom:360.662665px;}
.y2a3_c00001{bottom:361.518743px;}
.y368_c00001{bottom:362.024083px;}
.ybc_c00001{bottom:363.316220px;}
.y417_c00001{bottom:363.376833px;}
.y111_c00001{bottom:363.685231px;}
.y206_c00001{bottom:364.031695px;}
.y607_c00001{bottom:364.622972px;}
.y34d_c00001{bottom:364.998521px;}
.y65c_c00001{bottom:367.158851px;}
.y4c2_c00001{bottom:368.451883px;}
.y253_c00001{bottom:368.664731px;}
.y1c0_c00001{bottom:368.860391px;}
.y499_c00001{bottom:370.175963px;}
.y683_c00001{bottom:370.268355px;}
.y503_c00001{bottom:372.599993px;}
.y2fe_c00001{bottom:373.425895px;}
.y46c_c00001{bottom:375.165025px;}
.y627_c00001{bottom:375.653947px;}
.y4e1_c00001{bottom:376.936603px;}
.y43f_c00001{bottom:377.517682px;}
.y61b_c00001{bottom:378.989743px;}
.y38a_c00001{bottom:379.143187px;}
.y26d_c00001{bottom:379.736724px;}
.y53a_c00001{bottom:381.928512px;}
.y325_c00001{bottom:381.966118px;}
.y190_c00001{bottom:382.685304px;}
.y14_c00001{bottom:382.820636px;}
.y1da_c00001{bottom:383.213504px;}
.y3ad_c00001{bottom:385.876818px;}
.y3cb_c00001{bottom:386.151010px;}
.y84_c00001{bottom:387.358357px;}
.y21b_c00001{bottom:387.528334px;}
.y67c_c00001{bottom:388.101999px;}
.y5b9_c00001{bottom:388.440344px;}
.y588_c00001{bottom:389.950177px;}
.y606_c00001{bottom:390.023959px;}
.y15f_c00001{bottom:390.093480px;}
.y3e8_c00001{bottom:390.620412px;}
.y230_c00001{bottom:391.019542px;}
.y2a2_c00001{bottom:391.875620px;}
.y2d5_c00001{bottom:392.630598px;}
.ybb_c00001{bottom:393.673097px;}
.y416_c00001{bottom:393.733710px;}
.y205_c00001{bottom:394.388572px;}
.ye8_c00001{bottom:396.081917px;}
.y34c_c00001{bottom:398.236086px;}
.y252_c00001{bottom:399.021608px;}
.y1bf_c00001{bottom:399.217268px;}
.y498_c00001{bottom:400.532840px;}
.y602_c00001{bottom:401.063718px;}
.y502_c00001{bottom:402.956870px;}
.y61c_c00001{bottom:404.813406px;}
.y62_c00001{bottom:404.910520px;}
.y46b_c00001{bottom:405.521901px;}
.y137_c00001{bottom:405.943706px;}
.y4e0_c00001{bottom:407.293480px;}
.y43e_c00001{bottom:407.874559px;}
.y389_c00001{bottom:409.500063px;}
.y26c_c00001{bottom:410.093601px;}
.y539_c00001{bottom:412.285389px;}
.y324_c00001{bottom:412.322995px;}
.y18f_c00001{bottom:413.042181px;}
.y13_c00001{bottom:413.177513px;}
.y1d9_c00001{bottom:413.570381px;}
.y3ca_c00001{bottom:416.507887px;}
.y83_c00001{bottom:417.715234px;}
.y21a_c00001{bottom:417.885211px;}
.y2fd_c00001{bottom:418.964241px;}
.y608_c00001{bottom:419.440601px;}
.y15e_c00001{bottom:420.450356px;}
.y3e7_c00001{bottom:420.977289px;}
.y22f_c00001{bottom:421.376419px;}
.y2a1_c00001{bottom:422.232497px;}
.yba_c00001{bottom:424.029974px;}
.y415_c00001{bottom:424.090587px;}
.y204_c00001{bottom:424.745449px;}
.y559_c00001{bottom:425.187285px;}
.y110_c00001{bottom:425.973011px;}
.ye7_c00001{bottom:426.438793px;}
.y601_c00001{bottom:426.473597px;}
.y251_c00001{bottom:429.378485px;}
.y1be_c00001{bottom:429.574145px;}
.y367_c00001{bottom:429.933591px;}
.y2d4_c00001{bottom:430.130936px;}
.y60e_c00001{bottom:430.637177px;}
.y497_c00001{bottom:430.889717px;}
.y4c1_c00001{bottom:431.864057px;}
.y501_c00001{bottom:433.313747px;}
.y67a_c00001{bottom:433.845361px;}
.y583_c00001{bottom:434.120658px;}
.y46a_c00001{bottom:435.878778px;}
.y136_c00001{bottom:436.300582px;}
.y43d_c00001{bottom:438.231436px;}
.y3ac_c00001{bottom:440.069396px;}
.y26b_c00001{bottom:440.450477px;}
.y4df_c00001{bottom:440.530972px;}
.y538_c00001{bottom:442.642266px;}
.y323_c00001{bottom:442.679872px;}
.y388_c00001{bottom:442.737664px;}
.y18e_c00001{bottom:443.399058px;}
.y12_c00001{bottom:443.534390px;}
.y1d8_c00001{bottom:443.927258px;}
.y3c9_c00001{bottom:446.864764px;}
.y655_c00001{bottom:447.711400px;}
.y82_c00001{bottom:448.072111px;}
.y219_c00001{bottom:448.242088px;}
.y2fc_c00001{bottom:449.321118px;}
.y5a0_c00001{bottom:450.203032px;}
.y15d_c00001{bottom:450.807233px;}
.y3e6_c00001{bottom:451.334166px;}
.y22e_c00001{bottom:451.733296px;}
.y5be_c00001{bottom:451.789012px;}
.y600_c00001{bottom:451.963576px;}
.y2a0_c00001{bottom:452.589373px;}
.yb9_c00001{bottom:454.386851px;}
.y414_c00001{bottom:454.447463px;}
.y34b_c00001{bottom:454.654357px;}
.y203_c00001{bottom:455.102325px;}
.y558_c00001{bottom:455.544161px;}
.y60c_c00001{bottom:455.968648px;}
.y10f_c00001{bottom:456.329887px;}
.y604_c00001{bottom:456.460840px;}
.ye6_c00001{bottom:456.795670px;}
.y63d_c00001{bottom:459.054064px;}
.y250_c00001{bottom:459.735361px;}
.y1bd_c00001{bottom:459.931021px;}
.y2d3_c00001{bottom:460.487813px;}
.y496_c00001{bottom:461.246594px;}
.y4c0_c00001{bottom:462.220934px;}
.y500_c00001{bottom:463.670624px;}
.y469_c00001{bottom:466.235655px;}
.y135_c00001{bottom:466.657459px;}
.y3ab_c00001{bottom:468.177615px;}
.y43c_c00001{bottom:468.588312px;}
.y366_c00001{bottom:468.613707px;}
.y26a_c00001{bottom:470.807354px;}
.y56c_c00001{bottom:471.372635px;}
.y537_c00001{bottom:472.999143px;}
.y322_c00001{bottom:473.036749px;}
.y651_c00001{bottom:473.121207px;}
.y5bd_c00001{bottom:473.533407px;}
.y18d_c00001{bottom:473.755934px;}
.y59b_c00001{bottom:475.999011px;}
.y5c6_c00001{bottom:476.643951px;}
.y1d7_c00001{bottom:477.164750px;}
.y3c8_c00001{bottom:477.221641px;}
.y11_c00001{bottom:477.267674px;}
.y81_c00001{bottom:478.428988px;}
.y218_c00001{bottom:478.598965px;}
.y2fb_c00001{bottom:479.677995px;}
.y15c_c00001{bottom:481.164110px;}
.y3e5_c00001{bottom:481.691042px;}
.y22d_c00001{bottom:482.090173px;}
.y603_c00001{bottom:482.170599px;}
.y605_c00001{bottom:482.504319px;}
.y29f_c00001{bottom:482.946250px;}
.y60d_c00001{bottom:483.136515px;}
.y4de_c00001{bottom:483.457324px;}
.y63c_c00001{bottom:484.475715px;}
.yb8_c00001{bottom:484.743728px;}
.y413_c00001{bottom:484.804340px;}
.y34a_c00001{bottom:485.011234px;}
.y202_c00001{bottom:485.459202px;}
.y557_c00001{bottom:485.901038px;}
.y10e_c00001{bottom:486.686764px;}
.ye5_c00001{bottom:487.152547px;}
.y5f_c00001{bottom:487.376458px;}
.y2d2_c00001{bottom:490.844690px;}
.y495_c00001{bottom:491.603471px;}
.y4bf_c00001{bottom:492.577811px;}
.y24f_c00001{bottom:492.972854px;}
.y1c8_c00001{bottom:493.644146px;}
.y2e_c00001{bottom:493.812629px;}
.y56_c00001{bottom:493.827623px;}
.y4ff_c00001{bottom:494.027500px;}
.y2d_c00001{bottom:494.337609px;}
.y57_c00001{bottom:494.357158px;}
.y40_c00001{bottom:494.700737px;}
.y55_c00001{bottom:495.071586px;}
.y2c_c00001{bottom:495.403002px;}
.y41_c00001{bottom:495.533530px;}
.y3f_c00001{bottom:495.553663px;}
.y3aa_c00001{bottom:496.285834px;}
.y54_c00001{bottom:496.322201px;}
.y2b_c00001{bottom:496.475623px;}
.y3e_c00001{bottom:496.587915px;}
.y468_c00001{bottom:496.592532px;}
.y58_c00001{bottom:496.772260px;}
.y2f_c00001{bottom:496.835884px;}
.y134_c00001{bottom:497.014336px;}
.y42_c00001{bottom:497.713596px;}
.y53_c00001{bottom:497.966053px;}
.y2a_c00001{bottom:498.126234px;}
.y650_c00001{bottom:498.542858px;}
.y3d_c00001{bottom:498.789265px;}
.y43b_c00001{bottom:498.945189px;}
.y43_c00001{bottom:499.103521px;}
.y52_c00001{bottom:499.653306px;}
.y29_c00001{bottom:499.818769px;}
.y44_c00001{bottom:500.800864px;}
.y30_c00001{bottom:501.110605px;}
.y269_c00001{bottom:501.164231px;}
.y59e_c00001{bottom:501.408890px;}
.y51_c00001{bottom:501.517382px;}
.y525_c00001{bottom:501.648437px;}
.y28_c00001{bottom:501.687706px;}
.y59_c00001{bottom:501.869915px;}
.y679_c00001{bottom:502.137610px;}
.y3c_c00001{bottom:502.578702px;}
.y5bc_c00001{bottom:503.169434px;}
.y45_c00001{bottom:503.241722px;}
.y536_c00001{bottom:503.356020px;}
.y31_c00001{bottom:503.627848px;}
.y18c_c00001{bottom:504.112811px;}
.y5a_c00001{bottom:505.496019px;}
.y46_c00001{bottom:505.499367px;}
.y50_c00001{bottom:506.168989px;}
.y321_c00001{bottom:506.274313px;}
.y27_c00001{bottom:506.348634px;}
.y3b_c00001{bottom:508.044213px;}
.y47_c00001{bottom:508.766327px;}
.y80_c00001{bottom:508.785864px;}
.y387_c00001{bottom:508.861319px;}
.y32_c00001{bottom:509.576794px;}
.y640_c00001{bottom:509.897366px;}
.y2fa_c00001{bottom:510.034871px;}
.y3c7_c00001{bottom:510.459133px;}
.y5b_c00001{bottom:511.126534px;}
.y15b_c00001{bottom:511.520987px;}
.y3e4_c00001{bottom:512.047919px;}
.y22c_c00001{bottom:512.447049px;}
.y3a_c00001{bottom:512.508085px;}
.y4f_c00001{bottom:512.566592px;}
.y26_c00001{bottom:512.754669px;}
.y56b_c00001{bottom:512.972800px;}
.y29e_c00001{bottom:513.303127px;}
.y4dd_c00001{bottom:513.814201px;}
.y33_c00001{bottom:514.322677px;}
.y217_c00001{bottom:515.027245px;}
.yb7_c00001{bottom:515.100604px;}
.y412_c00001{bottom:515.161217px;}
.y349_c00001{bottom:515.368111px;}
.y201_c00001{bottom:515.816079px;}
.y556_c00001{bottom:516.257915px;}
.y10d_c00001{bottom:517.043641px;}
.y48_c00001{bottom:517.158603px;}
.ye4_c00001{bottom:517.509424px;}
.y5c_c00001{bottom:517.780195px;}
.y39_c00001{bottom:518.929057px;}
.y4e_c00001{bottom:519.869222px;}
.y25_c00001{bottom:519.959421px;}
.y2d1_c00001{bottom:521.201566px;}
.y494_c00001{bottom:521.960347px;}
.y4be_c00001{bottom:522.934688px;}
.y24_c00001{bottom:523.416158px;}
.y38_c00001{bottom:523.496236px;}
.y654_c00001{bottom:523.964509px;}
.y4fe_c00001{bottom:524.384377px;}
.y3a9_c00001{bottom:524.394053px;}
.y49_c00001{bottom:525.202812px;}
.y34_c00001{bottom:526.099549px;}
.y1d6_c00001{bottom:526.796228px;}
.y467_c00001{bottom:526.949408px;}
.y4d_c00001{bottom:527.026630px;}
.y133_c00001{bottom:527.371213px;}
.y285_c00001{bottom:527.489452px;}
.y59d_c00001{bottom:527.590969px;}
.y5bb_c00001{bottom:528.085357px;}
.y5d4_c00001{bottom:528.740899px;}
.y43a_c00001{bottom:529.302066px;}
.y23_c00001{bottom:529.422883px;}
.y5d_c00001{bottom:529.736175px;}
.y5c7_c00001{bottom:530.819125px;}
.y37_c00001{bottom:531.263725px;}
.y268_c00001{bottom:531.521108px;}
.y5ff_c00001{bottom:531.553226px;}
.y4c_c00001{bottom:531.792993px;}
.y524_c00001{bottom:532.005314px;}
.y6f_c00001{bottom:532.181392px;}
.y333_c00001{bottom:534.421816px;}
.y18b_c00001{bottom:534.469688px;}
.y14b_c00001{bottom:534.999184px;}
.y36_c00001{bottom:535.155114px;}
.y63f_c00001{bottom:535.318945px;}
.y535_c00001{bottom:536.414448px;}
.y365_c00001{bottom:536.574357px;}
.y22_c00001{bottom:536.678099px;}
.y10_c00001{bottom:537.628452px;}
.y4b_c00001{bottom:537.961701px;}
.y35_c00001{bottom:538.332892px;}
.y5e_c00001{bottom:538.696314px;}
.y7f_c00001{bottom:539.142741px;}
.y2f9_c00001{bottom:540.391748px;}
.y60_c00001{bottom:540.431168px;}
.y15a_c00001{bottom:541.877864px;}
.y3e3_c00001{bottom:542.404796px;}
.y22b_c00001{bottom:542.803926px;}
.y386_c00001{bottom:543.503999px;}
.y29d_c00001{bottom:543.660004px;}
.y4dc_c00001{bottom:544.171077px;}
.y4a_c00001{bottom:545.020884px;}
.yb6_c00001{bottom:545.457481px;}
.y411_c00001{bottom:545.518094px;}
.y348_c00001{bottom:545.724987px;}
.y200_c00001{bottom:546.172956px;}
.y21_c00001{bottom:546.207017px;}
.y10c_c00001{bottom:547.400518px;}
.ye3_c00001{bottom:547.866300px;}
.y653_c00001{bottom:549.386088px;}
.y555_c00001{bottom:549.932303px;}
.y2d0_c00001{bottom:551.558443px;}
.y493_c00001{bottom:552.317224px;}
.y3a8_c00001{bottom:552.502273px;}
.y1bc_c00001{bottom:552.547418px;}
.y4bd_c00001{bottom:553.291564px;}
.y59c_c00001{bottom:553.386948px;}
.y4fd_c00001{bottom:554.741254px;}
.y5cf_c00001{bottom:555.606996px;}
.y2b0_c00001{bottom:556.545808px;}
.y5c0_c00001{bottom:557.018160px;}
.y1d5_c00001{bottom:557.153105px;}
.y466_c00001{bottom:557.306285px;}
.y132_c00001{bottom:557.728089px;}
.y284_c00001{bottom:557.846329px;}
.y439_c00001{bottom:559.658943px;}
.y63e_c00001{bottom:560.740560px;}
.y267_c00001{bottom:561.877984px;}
.y56a_c00001{bottom:562.030870px;}
.y523_c00001{bottom:562.362191px;}
.y18a_c00001{bottom:564.826565px;}
.y364_c00001{bottom:566.931234px;}
.yf_c00001{bottom:567.985328px;}
.y7e_c00001{bottom:569.499618px;}
.y2f8_c00001{bottom:570.748625px;}
.y5d5_c00001{bottom:571.457291px;}
.y320_c00001{bottom:571.689570px;}
.y159_c00001{bottom:572.234740px;}
.y581_c00001{bottom:572.645049px;}
.y3e2_c00001{bottom:572.761673px;}
.y22a_c00001{bottom:573.160803px;}
.y29c_c00001{bottom:574.016881px;}
.y4db_c00001{bottom:574.527954px;}
.y652_c00001{bottom:574.807703px;}
.y584_c00001{bottom:574.826674px;}
.yb5_c00001{bottom:575.814358px;}
.y410_c00001{bottom:575.874970px;}
.y347_c00001{bottom:576.081864px;}
.y1ff_c00001{bottom:576.529832px;}
.y216_c00001{bottom:577.360729px;}
.y10b_c00001{bottom:577.757394px;}
.y61_c00001{bottom:577.871130px;}
.ye2_c00001{bottom:578.223177px;}
.y24e_c00001{bottom:580.196942px;}
.y3a7_c00001{bottom:580.610492px;}
.y5cb_c00001{bottom:581.016839px;}
.y5bf_c00001{bottom:581.856611px;}
.y2cf_c00001{bottom:581.915320px;}
.y3c6_c00001{bottom:582.619576px;}
.y492_c00001{bottom:582.674101px;}
.y1bb_c00001{bottom:582.904294px;}
.y59f_c00001{bottom:583.327355px;}
.y4bc_c00001{bottom:583.648441px;}
.y4fc_c00001{bottom:585.098131px;}
.y2af_c00001{bottom:586.902685px;}
.y1d4_c00001{bottom:587.509982px;}
.y465_c00001{bottom:587.663162px;}
.y131_c00001{bottom:588.084966px;}
.y283_c00001{bottom:588.203206px;}
.y682_c00001{bottom:588.524934px;}
.y534_c00001{bottom:589.707619px;}
.y438_c00001{bottom:590.015819px;}
.y62e_c00001{bottom:590.153890px;}
.y266_c00001{bottom:592.234861px;}
.y522_c00001{bottom:592.719068px;}
.y580_c00001{bottom:594.007296px;}
.y189_c00001{bottom:595.183442px;}
.y5d8_c00001{bottom:595.574158px;}
.y363_c00001{bottom:597.288111px;}
.ye_c00001{bottom:598.342205px;}
.y7d_c00001{bottom:599.856495px;}
.y64c_c00001{bottom:601.059658px;}
.y2f7_c00001{bottom:601.105502px;}
.y31f_c00001{bottom:602.046447px;}
.y158_c00001{bottom:602.591617px;}
.y3e1_c00001{bottom:603.118550px;}
.y229_c00001{bottom:603.517680px;}
.y29b_c00001{bottom:604.373757px;}
.y4da_c00001{bottom:604.884831px;}
.yb4_c00001{bottom:606.171235px;}
.y40f_c00001{bottom:606.231847px;}
.y5c5_c00001{bottom:606.417934px;}
.y346_c00001{bottom:606.438741px;}
.y215_c00001{bottom:607.717605px;}
.y5c1_c00001{bottom:607.881658px;}
.y10a_c00001{bottom:608.114271px;}
.ye1_c00001{bottom:608.580054px;}
.y3a6_c00001{bottom:608.718711px;}
.y210_c00001{bottom:610.209981px;}
.y385_c00001{bottom:610.550117px;}
.y24d_c00001{bottom:610.553819px;}
.y2ce_c00001{bottom:612.272197px;}
.y3c5_c00001{bottom:612.976453px;}
.y491_c00001{bottom:613.030978px;}
.y57f_c00001{bottom:613.120885px;}
.y1ba_c00001{bottom:613.261171px;}
.y4bb_c00001{bottom:614.005318px;}
.y4fb_c00001{bottom:615.455007px;}
.y554_c00001{bottom:616.717386px;}
.y2ae_c00001{bottom:617.259562px;}
.y1d3_c00001{bottom:617.866859px;}
.y464_c00001{bottom:618.020039px;}
.y130_c00001{bottom:618.441843px;}
.y282_c00001{bottom:618.560083px;}
.y5d7_c00001{bottom:619.690989px;}
.y533_c00001{bottom:620.064496px;}
.y437_c00001{bottom:620.372696px;}
.y265_c00001{bottom:622.591738px;}
.y5a8_c00001{bottom:625.421145px;}
.y188_c00001{bottom:625.540318px;}
.y64b_c00001{bottom:626.481273px;}
.y521_c00001{bottom:626.898680px;}
.y362_c00001{bottom:627.644988px;}
.y569_c00001{bottom:628.366267px;}
.yd_c00001{bottom:628.699082px;}
.y7c_c00001{bottom:630.213371px;}
.y638_c00001{bottom:630.360705px;}
.y5cd_c00001{bottom:630.694605px;}
.y2f6_c00001{bottom:631.462378px;}
.y31e_c00001{bottom:632.403324px;}
.y157_c00001{bottom:632.948494px;}
.y3e0_c00001{bottom:633.475426px;}
.y228_c00001{bottom:633.874556px;}
.y29a_c00001{bottom:634.730634px;}
.y4d9_c00001{bottom:635.241708px;}
.y57e_c00001{bottom:635.607460px;}
.y40e_c00001{bottom:635.914124px;}
.yb3_c00001{bottom:636.528111px;}
.y345_c00001{bottom:636.795618px;}
.y3a5_c00001{bottom:636.826930px;}
.y214_c00001{bottom:638.074482px;}
.y58e_c00001{bottom:638.419304px;}
.y109_c00001{bottom:638.471148px;}
.ye0_c00001{bottom:638.936931px;}
.y47a_c00001{bottom:639.489911px;}
.y678_c00001{bottom:640.084780px;}
.y384_c00001{bottom:640.906994px;}
.y24c_c00001{bottom:640.910696px;}
.y2cd_c00001{bottom:642.629073px;}
.y3c4_c00001{bottom:643.333330px;}
.y490_c00001{bottom:643.387854px;}
.y1b9_c00001{bottom:643.618048px;}
.y5d6_c00001{bottom:643.807820px;}
.y4ba_c00001{bottom:644.362195px;}
.y96_c00001{bottom:645.479135px;}
.y4fa_c00001{bottom:645.811884px;}
.y553_c00001{bottom:647.074262px;}
.y2ad_c00001{bottom:647.616439px;}
.ya2_c00001{bottom:647.652730px;}
.y1d2_c00001{bottom:648.223735px;}
.y5a5_c00001{bottom:648.323084px;}
.y463_c00001{bottom:648.376915px;}
.y12f_c00001{bottom:648.798720px;}
.y532_c00001{bottom:650.421373px;}
.y436_c00001{bottom:650.729573px;}
.y281_c00001{bottom:651.797611px;}
.y64f_c00001{bottom:651.902960px;}
.y264_c00001{bottom:652.948615px;}
.y70_c00001{bottom:655.815586px;}
.y187_c00001{bottom:655.897195px;}
.y361_c00001{bottom:658.001864px;}
.y57d_c00001{bottom:658.094036px;}
.y5c4_c00001{bottom:658.344368px;}
.yc_c00001{bottom:659.055959px;}
.y62d_c00001{bottom:659.773999px;}
.y7b_c00001{bottom:660.570248px;}
.y2f5_c00001{bottom:661.819255px;}
.y31d_c00001{bottom:662.760201px;}
.y58d_c00001{bottom:663.257755px;}
.y156_c00001{bottom:663.305371px;}
.y3df_c00001{bottom:663.832303px;}
.y227_c00001{bottom:664.231433px;}
.y3a4_c00001{bottom:664.935150px;}
.y4d8_c00001{bottom:665.598585px;}
.yb2_c00001{bottom:666.884988px;}
.y344_c00001{bottom:667.152494px;}
.y213_c00001{bottom:668.431359px;}
.y108_c00001{bottom:668.828025px;}
.ydf_c00001{bottom:669.293808px;}
.y5d9_c00001{bottom:669.762199px;}
.y383_c00001{bottom:671.263871px;}
.y24b_c00001{bottom:671.267573px;}
.y2cc_c00001{bottom:672.985950px;}
.y5a4_c00001{bottom:673.278427px;}
.y3c3_c00001{bottom:673.690207px;}
.y48f_c00001{bottom:673.744731px;}
.y1b8_c00001{bottom:673.974925px;}
.y4b9_c00001{bottom:674.719072px;}
.y299_c00001{bottom:675.454398px;}
.y1fe_c00001{bottom:675.698908px;}
.y95_c00001{bottom:675.836012px;}
.y4f9_c00001{bottom:676.168761px;}
.y64e_c00001{bottom:677.324575px;}
.y552_c00001{bottom:677.431139px;}
.y2ac_c00001{bottom:677.973315px;}
.y1d1_c00001{bottom:678.580612px;}
.y462_c00001{bottom:678.733792px;}
.y12e_c00001{bottom:679.155597px;}
.y57c_c00001{bottom:680.580611px;}
.y531_c00001{bottom:680.778249px;}
.y435_c00001{bottom:681.086450px;}
.y5c3_c00001{bottom:683.190602px;}
.y263_c00001{bottom:683.305491px;}
.y40d_c00001{bottom:685.375278px;}
.y186_c00001{bottom:686.254072px;}
.y58c_c00001{bottom:688.096174px;}
.y360_c00001{bottom:688.358741px;}
.yb_c00001{bottom:689.412836px;}
.y7a_c00001{bottom:690.927125px;}
.y520_c00001{bottom:691.117730px;}
.y637_c00001{bottom:691.439271px;}
.y2f4_c00001{bottom:692.176132px;}
.y3a3_c00001{bottom:693.043369px;}
.y31c_c00001{bottom:693.117077px;}
.y155_c00001{bottom:693.662247px;}
.y3de_c00001{bottom:694.189180px;}
.y226_c00001{bottom:694.588310px;}
.y4d7_c00001{bottom:695.955461px;}
.yb1_c00001{bottom:697.241865px;}
.y343_c00001{bottom:697.509371px;}
.y5ab_c00001{bottom:698.233874px;}
.y212_c00001{bottom:698.788236px;}
.y107_c00001{bottom:699.184901px;}
.yde_c00001{bottom:699.650684px;}
.y382_c00001{bottom:701.620748px;}
.y24a_c00001{bottom:701.624449px;}
.y64d_c00001{bottom:702.746179px;}
.y57b_c00001{bottom:703.067186px;}
.y2cb_c00001{bottom:703.342827px;}
.y3c2_c00001{bottom:704.047083px;}
.y48e_c00001{bottom:704.101608px;}
.y1b7_c00001{bottom:704.331801px;}
.y4b8_c00001{bottom:705.075948px;}
.y1fd_c00001{bottom:706.055785px;}
.y94_c00001{bottom:706.192888px;}
.y4f8_c00001{bottom:706.525638px;}
.y551_c00001{bottom:707.788016px;}
.y5c2_c00001{bottom:708.036843px;}
.y2ab_c00001{bottom:708.330192px;}
.y1d0_c00001{bottom:708.937489px;}
.y12d_c00001{bottom:709.512473px;}
.y5d3_c00001{bottom:710.786584px;}
.y530_c00001{bottom:711.135126px;}
.y5fe_c00001{bottom:713.599020px;}
.y262_c00001{bottom:713.662368px;}
.y461_c00001{bottom:713.921174px;}
.y434_c00001{bottom:715.018180px;}
.y40c_c00001{bottom:715.732154px;}
.y185_c00001{bottom:716.610949px;}
.y63b_c00001{bottom:716.860885px;}
.y58f_c00001{bottom:718.626739px;}
.y35f_c00001{bottom:718.715618px;}
.ya_c00001{bottom:719.769712px;}
.y3a2_c00001{bottom:721.151588px;}
.y51f_c00001{bottom:721.474607px;}
.y2f3_c00001{bottom:722.533009px;}
.y5a7_c00001{bottom:723.189275px;}
.y31b_c00001{bottom:723.473954px;}
.y154_c00001{bottom:724.019124px;}
.y3dd_c00001{bottom:724.546057px;}
.y225_c00001{bottom:724.945187px;}
.y57a_c00001{bottom:725.553762px;}
.y4d6_c00001{bottom:726.312338px;}
.yb0_c00001{bottom:727.598742px;}
.y342_c00001{bottom:727.866248px;}
.y64a_c00001{bottom:728.156061px;}
.y79_c00001{bottom:728.479728px;}
.y280_c00001{bottom:728.682186px;}
.y106_c00001{bottom:729.541778px;}
.ydd_c00001{bottom:730.007561px;}
.y381_c00001{bottom:731.977625px;}
.y249_c00001{bottom:731.981326px;}
.y2ca_c00001{bottom:733.699704px;}
.y3c1_c00001{bottom:734.403960px;}
.y48d_c00001{bottom:734.458485px;}
.y1b6_c00001{bottom:734.688678px;}
.y211_c00001{bottom:734.837429px;}
.y5ca_c00001{bottom:734.871872px;}
.y4b7_c00001{bottom:735.432825px;}
.y1fc_c00001{bottom:736.412661px;}
.y4f7_c00001{bottom:736.882514px;}
.y550_c00001{bottom:738.144893px;}
.y2aa_c00001{bottom:738.687069px;}
.y1cf_c00001{bottom:739.294366px;}
.y52f_c00001{bottom:741.492003px;}
.y63a_c00001{bottom:742.282500px;}
.y93_c00001{bottom:743.679842px;}
.y261_c00001{bottom:744.019245px;}
.y40b_c00001{bottom:746.089031px;}
.y184_c00001{bottom:746.967825px;}
.y677_c00001{bottom:747.685813px;}
.y12c_c00001{bottom:747.693673px;}
.y599_c00001{bottom:747.939537px;}
.y579_c00001{bottom:748.040337px;}
.y5a6_c00001{bottom:748.144672px;}
.y35e_c00001{bottom:749.072495px;}
.y3a1_c00001{bottom:749.259807px;}
.y9_c00001{bottom:750.126589px;}
.y2f2_c00001{bottom:752.889885px;}
.y298_c00001{bottom:753.247007px;}
.y649_c00001{bottom:753.577633px;}
.y31a_c00001{bottom:753.830831px;}
.y153_c00001{bottom:754.376001px;}
.y5e7_c00001{bottom:754.627310px;}
.y3dc_c00001{bottom:754.902933px;}
.y51e_c00001{bottom:755.654190px;}
.y4d5_c00001{bottom:756.669215px;}
.yaf_c00001{bottom:757.955618px;}
.y341_c00001{bottom:758.223125px;}
.y27f_c00001{bottom:759.039063px;}
.y105_c00001{bottom:759.898655px;}
.ydc_c00001{bottom:760.364438px;}
.y380_c00001{bottom:762.334501px;}
.y248_c00001{bottom:762.338203px;}
.y2c9_c00001{bottom:764.056581px;}
.y591_c00001{bottom:764.285170px;}
.y239_c00001{bottom:764.746389px;}
.y3c0_c00001{bottom:764.760837px;}
.y48c_c00001{bottom:764.815361px;}
.y1b5_c00001{bottom:765.045555px;}
.y1fb_c00001{bottom:766.769538px;}
.y4f6_c00001{bottom:767.239391px;}
.y639_c00001{bottom:767.704159px;}
.y54f_c00001{bottom:768.501769px;}
.y2a9_c00001{bottom:769.043946px;}
.y4b6_c00001{bottom:769.612452px;}
.y1ce_c00001{bottom:769.651242px;}
.y598_c00001{bottom:770.499125px;}
.y578_c00001{bottom:770.526913px;}
.y52e_c00001{bottom:771.848880px;}
.y5a3_c00001{bottom:773.100029px;}
.y260_c00001{bottom:774.376122px;}
.y460_c00001{bottom:776.031678px;}
.y40a_c00001{bottom:776.445908px;}
.y183_c00001{bottom:777.324702px;}
.y3a0_c00001{bottom:777.368027px;}
.y44c_c00001{bottom:778.182404px;}
.y35d_c00001{bottom:779.429371px;}
.y5e8_c00001{bottom:780.316157px;}
.y8_c00001{bottom:780.483466px;}
.y648_c00001{bottom:781.239359px;}
.y5f4_c00001{bottom:782.794670px;}
.y2f1_c00001{bottom:783.246762px;}
.y297_c00001{bottom:783.603884px;}
.y319_c00001{bottom:784.187708px;}
.y681_c00001{bottom:784.607386px;}
.y152_c00001{bottom:784.732878px;}
.y3db_c00001{bottom:785.259810px;}
.y4d4_c00001{bottom:787.026092px;}
.yae_c00001{bottom:788.312495px;}
.y340_c00001{bottom:788.580001px;}
.y590_c00001{bottom:789.064786px;}
.y27e_c00001{bottom:789.395940px;}
.y104_c00001{bottom:790.255532px;}
.ydb_c00001{bottom:790.721315px;}
.y37f_c00001{bottom:792.691378px;}
.y247_c00001{bottom:792.695080px;}
.y577_c00001{bottom:793.013488px;}
.y2c8_c00001{bottom:794.413457px;}
.y62c_c00001{bottom:794.868821px;}
.y3bf_c00001{bottom:795.117714px;}
.y597_c00001{bottom:795.234358px;}
.y1b4_c00001{bottom:795.402432px;}
.y1fa_c00001{bottom:797.126415px;}
.y4f5_c00001{bottom:797.596268px;}
.y5aa_c00001{bottom:798.055473px;}
.y54e_c00001{bottom:798.858646px;}
.y2a8_c00001{bottom:799.400822px;}
.y1cd_c00001{bottom:800.008119px;}
.y48b_c00001{bottom:800.647730px;}
.y52d_c00001{bottom:802.205756px;}
.y25f_c00001{bottom:804.732999px;}
.y39f_c00001{bottom:805.476246px;}
.y45f_c00001{bottom:806.388554px;}
.y647_c00001{bottom:806.660974px;}
.y409_c00001{bottom:806.802785px;}
.y44b_c00001{bottom:808.539281px;}
.y12b_c00001{bottom:808.935362px;}
.y5de_c00001{bottom:809.731126px;}
.y35c_c00001{bottom:809.786248px;}
.y182_c00001{bottom:810.379991px;}
.y7_c00001{bottom:810.840343px;}
.y5ee_c00001{bottom:810.962034px;}
.y78_c00001{bottom:811.120526px;}
.y173_c00001{bottom:811.489517px;}
.y2f0_c00001{bottom:813.603639px;}
.y296_c00001{bottom:813.960761px;}
.y318_c00001{bottom:814.544584px;}
.y151_c00001{bottom:815.089754px;}
.y576_c00001{bottom:815.500063px;}
.y592_c00001{bottom:815.614436px;}
.y3da_c00001{bottom:815.616687px;}
.y4d3_c00001{bottom:817.382968px;}
.y59a_c00001{bottom:818.587600px;}
.yad_c00001{bottom:818.669372px;}
.y33f_c00001{bottom:818.936878px;}
.y92_c00001{bottom:819.359786px;}
.y27d_c00001{bottom:819.752817px;}
.y103_c00001{bottom:820.612409px;}
.yda_c00001{bottom:821.078191px;}
.y37e_c00001{bottom:823.048255px;}
.y246_c00001{bottom:823.051957px;}
.y5a9_c00001{bottom:823.465265px;}
.y2c7_c00001{bottom:824.770334px;}
.y51d_c00001{bottom:825.255804px;}
.y3be_c00001{bottom:825.474590px;}
.y1b3_c00001{bottom:825.759308px;}
.y633_c00001{bottom:826.337090px;}
.y1f9_c00001{bottom:826.808724px;}
.y4f4_c00001{bottom:827.953145px;}
.y54d_c00001{bottom:829.215523px;}
.y2a7_c00001{bottom:829.757699px;}
.y1cc_c00001{bottom:830.364996px;}
.y646_c00001{bottom:832.082632px;}
.y52c_c00001{bottom:832.562633px;}
.y4b5_c00001{bottom:833.445011px;}
.y39e_c00001{bottom:833.584465px;}
.y5e1_c00001{bottom:833.663478px;}
.y45e_c00001{bottom:836.745431px;}
.ycd_c00001{bottom:837.023815px;}
.y408_c00001{bottom:837.159662px;}
.y5f0_c00001{bottom:837.374527px;}
.y575_c00001{bottom:837.986639px;}
.y44a_c00001{bottom:838.896157px;}
.y12a_c00001{bottom:839.292239px;}
.y35b_c00001{bottom:840.143125px;}
.y6_c00001{bottom:841.197219px;}
.y77_c00001{bottom:841.477403px;}
.y172_c00001{bottom:841.846394px;}
.y657_c00001{bottom:842.522941px;}
.y2ef_c00001{bottom:843.960516px;}
.y295_c00001{bottom:844.317638px;}
.y241_c00001{bottom:844.521357px;}
.y273_c00001{bottom:844.702375px;}
.y317_c00001{bottom:844.901461px;}
.y150_c00001{bottom:845.446631px;}
.y5a2_c00001{bottom:845.965704px;}
.y3d9_c00001{bottom:845.973564px;}
.y5c9_c00001{bottom:847.057306px;}
.y4d2_c00001{bottom:847.739845px;}
.y595_c00001{bottom:848.400801px;}
.y33e_c00001{bottom:849.293755px;}
.y91_c00001{bottom:849.716663px;}
.y27c_c00001{bottom:850.109693px;}
.y102_c00001{bottom:850.969285px;}
.yd9_c00001{bottom:851.435068px;}
.y632_c00001{bottom:851.755497px;}
.y37d_c00001{bottom:853.405132px;}
.y245_c00001{bottom:853.408833px;}
.yac_c00001{bottom:853.973253px;}
.y2c6_c00001{bottom:855.127211px;}
.y51c_c00001{bottom:855.612680px;}
.y3bd_c00001{bottom:855.831467px;}
.y1b2_c00001{bottom:856.116185px;}
.y642_c00001{bottom:857.492471px;}
.y5e0_c00001{bottom:857.595874px;}
.y4f3_c00001{bottom:858.310022px;}
.y54c_c00001{bottom:859.572400px;}
.y574_c00001{bottom:860.473214px;}
.y1cb_c00001{bottom:860.721873px;}
.y39d_c00001{bottom:861.692684px;}
.y2a6_c00001{bottom:862.658300px;}
.y52b_c00001{bottom:862.919510px;}
.y4b4_c00001{bottom:863.801888px;}
.y48a_c00001{bottom:864.059885px;}
.y5f3_c00001{bottom:865.541891px;}
.y45d_c00001{bottom:867.102308px;}
.ycc_c00001{bottom:867.380691px;}
.y407_c00001{bottom:867.516538px;}
.y656_c00001{bottom:867.944599px;}
.y181_c00001{bottom:868.695303px;}
.y449_c00001{bottom:869.253034px;}
.y129_c00001{bottom:869.649115px;}
.y5a1_c00001{bottom:870.333555px;}
.y35a_c00001{bottom:870.500002px;}
.y5_c00001{bottom:871.554096px;}
.y76_c00001{bottom:871.834280px;}
.y5c8_c00001{bottom:872.127799px;}
.y594_c00001{bottom:873.468965px;}
.y2ee_c00001{bottom:873.642825px;}
.y294_c00001{bottom:874.674514px;}
.y240_c00001{bottom:874.878234px;}
.y316_c00001{bottom:875.258338px;}
.y14f_c00001{bottom:875.803508px;}
.y171_c00001{bottom:876.881770px;}
.y636_c00001{bottom:877.173951px;}
.y4d1_c00001{bottom:878.096722px;}
.y3d8_c00001{bottom:878.425216px;}
.y33d_c00001{bottom:879.650632px;}
.y90_c00001{bottom:880.073540px;}
.y101_c00001{bottom:881.326162px;}
.y4a6_c00001{bottom:881.460917px;}
.yd8_c00001{bottom:881.791945px;}
.y641_c00001{bottom:882.914129px;}
.y573_c00001{bottom:882.959789px;}
.y5e6_c00001{bottom:883.284677px;}
.y27b_c00001{bottom:883.347179px;}
.y37c_c00001{bottom:883.762008px;}
.y244_c00001{bottom:883.765710px;}
.y42b_c00001{bottom:885.275463px;}
.y2c5_c00001{bottom:885.484088px;}
.y1b1_c00001{bottom:885.798447px;}
.y51b_c00001{bottom:885.969557px;}
.y3bc_c00001{bottom:886.188344px;}
.y676_c00001{bottom:888.937247px;}
.y39c_c00001{bottom:889.800903px;}
.y54b_c00001{bottom:889.929277px;}
.y1ca_c00001{bottom:891.078749px;}
.y1f8_c00001{bottom:892.317149px;}
.y52a_c00001{bottom:893.276387px;}
.y659_c00001{bottom:893.363007px;}
.y5ef_c00001{bottom:893.709251px;}
.y4b3_c00001{bottom:894.158765px;}
.y489_c00001{bottom:894.416762px;}
.y5d1_c00001{bottom:895.743434px;}
.y5cc_c00001{bottom:896.413294px;}
.y4f2_c00001{bottom:896.491178px;}
.y45c_c00001{bottom:897.459185px;}
.ycb_c00001{bottom:897.737568px;}
.y406_c00001{bottom:897.873415px;}
.y593_c00001{bottom:898.537171px;}
.y180_c00001{bottom:899.052179px;}
.y448_c00001{bottom:899.609911px;}
.y128_c00001{bottom:900.005992px;}
.y359_c00001{bottom:900.856879px;}
.y4_c00001{bottom:901.910973px;}
.y75_c00001{bottom:902.191156px;}
.y635_c00001{bottom:902.592402px;}
.y5fb_c00001{bottom:904.038817px;}
.y293_c00001{bottom:905.031391px;}
.y23f_c00001{bottom:905.235111px;}
.y572_c00001{bottom:905.446365px;}
.y14e_c00001{bottom:905.485774px;}
.y315_c00001{bottom:905.615215px;}
.y645_c00001{bottom:908.335744px;}
.y4d0_c00001{bottom:908.453599px;}
.y5df_c00001{bottom:909.326579px;}
.y33c_c00001{bottom:910.007508px;}
.y454_c00001{bottom:911.362329px;}
.y279_c00001{bottom:911.487493px;}
.y100_c00001{bottom:911.683039px;}
.y4a5_c00001{bottom:911.817794px;}
.yd7_c00001{bottom:912.148822px;}
.y2ed_c00001{bottom:913.126364px;}
.y37b_c00001{bottom:914.118885px;}
.y243_c00001{bottom:914.122587px;}
.y8f_c00001{bottom:915.137305px;}
.y42a_c00001{bottom:915.632339px;}
.y51a_c00001{bottom:916.326434px;}
.y3bb_c00001{bottom:916.545221px;}
.y39b_c00001{bottom:917.909123px;}
.y2ba_c00001{bottom:918.554594px;}
.y658_c00001{bottom:918.781457px;}
.y5e9_c00001{bottom:920.121766px;}
.y54a_c00001{bottom:920.286153px;}
.y2c4_c00001{bottom:920.787991px;}
.y5d0_c00001{bottom:921.149253px;}
.yab_c00001{bottom:921.217261px;}
.y5ce_c00001{bottom:921.368673px;}
.y1c9_c00001{bottom:921.435626px;}
.y1f7_c00001{bottom:922.674026px;}
.y529_c00001{bottom:923.633264px;}
.y4b2_c00001{bottom:924.515642px;}
.y488_c00001{bottom:924.773639px;}
.y596_c00001{bottom:925.372157px;}
.y571_c00001{bottom:927.932940px;}
.y634_c00001{bottom:928.010809px;}
.yca_c00001{bottom:928.094445px;}
.y405_c00001{bottom:929.347174px;}
.y17f_c00001{bottom:929.409056px;}
.y5fa_c00001{bottom:929.598837px;}
.y127_c00001{bottom:930.362869px;}
.y45b_c00001{bottom:931.172158px;}
.y358_c00001{bottom:931.213755px;}
.y447_c00001{bottom:931.293006px;}
.y3_c00001{bottom:932.267850px;}
.y74_c00001{bottom:932.548033px;}
.y5dd_c00001{bottom:933.258997px;}
.y644_c00001{bottom:933.757359px;}
.y292_c00001{bottom:935.388268px;}
.y23e_c00001{bottom:935.591987px;}
.y33b_c00001{bottom:940.364385px;}
.y453_c00001{bottom:941.719206px;}
.y278_c00001{bottom:941.844370px;}
.yff_c00001{bottom:942.039916px;}
.y4a4_c00001{bottom:942.174670px;}
.yd6_c00001{bottom:942.505698px;}
.y4cf_c00001{bottom:943.049148px;}
.y2ec_c00001{bottom:943.483241px;}
.y37a_c00001{bottom:944.475762px;}
.y429_c00001{bottom:945.989216px;}
.y170_c00001{bottom:946.048311px;}
.y314_c00001{bottom:946.251243px;}
.y5ea_c00001{bottom:946.534241px;}
.y519_c00001{bottom:946.683311px;}
.y62f_c00001{bottom:946.899558px;}
.y3ba_c00001{bottom:946.902097px;}
.y39a_c00001{bottom:947.366577px;}
.y2b9_c00001{bottom:948.911470px;}
.y570_c00001{bottom:950.419516px;}
.y549_c00001{bottom:950.643030px;}
.yaa_c00001{bottom:951.574138px;}
.y242_c00001{bottom:951.609519px;}
.y1b0_c00001{bottom:951.792503px;}
.y1f6_c00001{bottom:953.030903px;}
.y528_c00001{bottom:953.990140px;}
.y4b1_c00001{bottom:954.872518px;}
.y487_c00001{bottom:955.130515px;}
.y5f7_c00001{bottom:955.158880px;}
.y5dc_c00001{bottom:957.191375px;}
.y62b_c00001{bottom:957.424151px;}
.y27a_c00001{bottom:957.429797px;}
.y14d_c00001{bottom:957.654664px;}
.yc9_c00001{bottom:958.451322px;}
.y643_c00001{bottom:959.178974px;}
.y17e_c00001{bottom:959.765933px;}
.y126_c00001{bottom:960.719746px;}
.y2_c00001{bottom:961.950158px;}
.y73_c00001{bottom:962.904910px;}
.y291_c00001{bottom:965.745145px;}
.y23d_c00001{bottom:965.948864px;}
.y587_c00001{bottom:966.479256px;}
.y5b8_c00001{bottom:969.291691px;}
.y357_c00001{bottom:969.858095px;}
.y33a_c00001{bottom:970.721262px;}
.y479_c00001{bottom:970.803976px;}
.y452_c00001{bottom:972.076083px;}
.y277_c00001{bottom:972.201247px;}
.yfe_c00001{bottom:972.396792px;}
.y4a3_c00001{bottom:972.531547px;}
.y56f_c00001{bottom:972.906091px;}
.y2eb_c00001{bottom:973.840117px;}
.y5f2_c00001{bottom:974.701623px;}
.y379_c00001{bottom:974.832639px;}
.y428_c00001{bottom:976.346093px;}
.y16f_c00001{bottom:976.405188px;}
.y3b9_c00001{bottom:976.584363px;}
.yd5_c00001{bottom:976.768273px;}
.y518_c00001{bottom:977.040187px;}
.y510_c00001{bottom:977.489599px;}
.y680_c00001{bottom:978.862647px;}
.y2b8_c00001{bottom:979.268347px;}
.y548_c00001{bottom:980.325339px;}
.ya9_c00001{bottom:981.931015px;}
.y1af_c00001{bottom:982.149380px;}
.y5fc_c00001{bottom:982.325148px;}
.y5e5_c00001{bottom:982.880196px;}
.y1f5_c00001{bottom:983.387780px;}
.y404_c00001{bottom:983.405340px;}
.y527_c00001{bottom:984.347017px;}
.y4b0_c00001{bottom:985.229395px;}
.y486_c00001{bottom:985.487392px;}
.y9a_c00001{bottom:987.786674px;}
.y14c_c00001{bottom:988.011541px;}
.y675_c00001{bottom:988.411413px;}
.y17d_c00001{bottom:990.122810px;}
.y125_c00001{bottom:991.076622px;}
.yc8_c00001{bottom:991.506650px;}
.y72_c00001{bottom:993.261787px;}
.y56e_c00001{bottom:995.392666px;}
.y290_c00001{bottom:995.427453px;}
.y23c_c00001{bottom:996.305741px;}
.y629_c00001{bottom:998.531206px;}
.y65b_c00001{bottom:998.978460px;}
.y339_c00001{bottom:1001.078139px;}
.y399_c00001{bottom:1001.728340px;}
.y3f6_c00001{bottom:1002.064904px;}
.y276_c00001{bottom:1002.558123px;}
.y5ed_c00001{bottom:1002.868965px;}
.y4a2_c00001{bottom:1002.888424px;}
.y478_c00001{bottom:1004.041436px;}
.y2ea_c00001{bottom:1004.196994px;}
.y378_c00001{bottom:1004.514904px;}
.y19c_c00001{bottom:1004.677135px;}
.y16e_c00001{bottom:1006.762065px;}
.y50f_c00001{bottom:1007.846476px;}
.y451_c00001{bottom:1008.504323px;}
.y427_c00001{bottom:1009.583578px;}
.y2b7_c00001{bottom:1009.625224px;}
.y5f6_c00001{bottom:1009.788571px;}
.yfd_c00001{bottom:1011.531081px;}
.ya8_c00001{bottom:1012.287892px;}
.y1ae_c00001{bottom:1012.506257px;}
.y5e2_c00001{bottom:1013.419463px;}
.y1f4_c00001{bottom:1013.744656px;}
.y403_c00001{bottom:1013.762217px;}
.y485_c00001{bottom:1015.844269px;}
.y526_c00001{bottom:1017.237268px;}
.y56d_c00001{bottom:1017.879242px;}
.y99_c00001{bottom:1018.143550px;}
.y1f_c00001{bottom:1018.368418px;}
.y4af_c00001{bottom:1019.161108px;}
.y5ad_c00001{bottom:1020.450954px;}
.y17c_c00001{bottom:1020.479686px;}
.y124_c00001{bottom:1021.433499px;}
.y23b_c00001{bottom:1026.662618px;}
.y5ec_c00001{bottom:1029.281458px;}
.y398_c00001{bottom:1029.836560px;}
.y71_c00001{bottom:1031.062243px;}
.y3f5_c00001{bottom:1032.421781px;}
.y275_c00001{bottom:1032.915000px;}
.y2e9_c00001{bottom:1034.553871px;}
.y5f9_c00001{bottom:1035.348592px;}
.y4a1_c00001{bottom:1036.125909px;}
.y16d_c00001{bottom:1037.118942px;}
.y338_c00001{bottom:1037.889830px;}
.y50e_c00001{bottom:1038.203353px;}
.y356_c00001{bottom:1038.643977px;}
.y5e4_c00001{bottom:1039.108266px;}
.y2b6_c00001{bottom:1039.982101px;}
.ya7_c00001{bottom:1042.644769px;}
.y1ad_c00001{bottom:1042.863133px;}
.y67f_c00001{bottom:1043.845039px;}
.y1f3_c00001{bottom:1044.101533px;}
.y402_c00001{bottom:1044.119094px;}
.y5ac_c00001{bottom:1044.542963px;}
.y484_c00001{bottom:1045.526535px;}
.y561_c00001{bottom:1046.811992px;}
.y98_c00001{bottom:1048.500427px;}
.y1e_c00001{bottom:1048.725294px;}
.y674_c00001{bottom:1049.210540px;}
.y17b_c00001{bottom:1051.115786px;}
.y123_c00001{bottom:1055.365208px;}
.y5f1_c00001{bottom:1057.448818px;}
.y397_c00001{bottom:1057.944779px;}
.y5f8_c00001{bottom:1060.908634px;}
.y3f4_c00001{bottom:1062.778657px;}
.y142_c00001{bottom:1063.341564px;}
.y11b_c00001{bottom:1063.699940px;}
.y5db_c00001{bottom:1064.163905px;}
.y631_c00001{bottom:1064.351047px;}
.y2e8_c00001{bottom:1064.910748px;}
.y23a_c00001{bottom:1066.859194px;}
.y16c_c00001{bottom:1067.475818px;}
.y274_c00001{bottom:1067.484777px;}
.y477_c00001{bottom:1067.949373px;}
.y50d_c00001{bottom:1068.560230px;}
.y5af_c00001{bottom:1068.634946px;}
.y19b_c00001{bottom:1068.636228px;}
.y355_c00001{bottom:1069.000854px;}
.y2b5_c00001{bottom:1070.338977px;}
.y450_c00001{bottom:1072.250279px;}
.ya6_c00001{bottom:1073.001645px;}
.y1ac_c00001{bottom:1073.220010px;}
.yfc_c00001{bottom:1074.334286px;}
.y426_c00001{bottom:1074.367939px;}
.y1f2_c00001{bottom:1074.458410px;}
.y401_c00001{bottom:1074.475971px;}
.y547_c00001{bottom:1074.832735px;}
.yc7_c00001{bottom:1075.526962px;}
.y560_c00001{bottom:1077.168868px;}
.y4cd_c00001{bottom:1077.177180px;}
.y97_c00001{bottom:1078.857304px;}
.y1d_c00001{bottom:1079.082171px;}
.y5eb_c00001{bottom:1085.616139px;}
.y396_c00001{bottom:1086.052998px;}
.y5f5_c00001{bottom:1086.468654px;}
.y5da_c00001{bottom:1088.096279px;}
.y630_c00001{bottom:1089.772684px;}
.y3f3_c00001{bottom:1093.135534px;}
.y141_c00001{bottom:1093.698441px;}
.y11a_c00001{bottom:1094.056817px;}
.y5ae_c00001{bottom:1094.481775px;}
.y2e7_c00001{bottom:1094.593035px;}
.y16b_c00001{bottom:1097.832695px;}
.y476_c00001{bottom:1098.306250px;}
.y19a_c00001{bottom:1098.993105px;}
.y354_c00001{bottom:1099.357731px;}
.y672_c00001{bottom:1099.543586px;}
.y2b4_c00001{bottom:1100.695854px;}
.y50c_c00001{bottom:1101.793956px;}
.y44f_c00001{bottom:1102.607155px;}
.ya5_c00001{bottom:1103.358522px;}
.y1ab_c00001{bottom:1103.576887px;}
.y337_c00001{bottom:1103.801754px;}
.yfb_c00001{bottom:1104.691163px;}
.y425_c00001{bottom:1104.724816px;}
.y1f1_c00001{bottom:1104.815287px;}
.y400_c00001{bottom:1104.832848px;}
.y546_c00001{bottom:1105.189612px;}
.yc6_c00001{bottom:1105.883839px;}
.y55f_c00001{bottom:1107.525745px;}
.y4cc_c00001{bottom:1107.534057px;}
.y8e_c00001{bottom:1109.214181px;}
.y1c_c00001{bottom:1109.439048px;}
.y564_c00001{bottom:1113.346162px;}
.y5e3_c00001{bottom:1113.785104px;}
.y395_c00001{bottom:1114.161217px;}
.y62a_c00001{bottom:1116.447059px;}
.y5b0_c00001{bottom:1120.328615px;}
.y582_c00001{bottom:1120.519841px;}
.y3f2_c00001{bottom:1123.492411px;}
.y140_c00001{bottom:1124.055318px;}
.y119_c00001{bottom:1124.413694px;}
.y671_c00001{bottom:1124.658726px;}
.y16a_c00001{bottom:1128.189572px;}
.y475_c00001{bottom:1128.663127px;}
.y199_c00001{bottom:1129.349981px;}
.y353_c00001{bottom:1129.714607px;}
.y6d_c00001{bottom:1130.692613px;}
.y2b3_c00001{bottom:1131.052731px;}
.y6b_c00001{bottom:1132.026818px;}
.y44e_c00001{bottom:1132.964032px;}
.ya4_c00001{bottom:1133.715399px;}
.y1aa_c00001{bottom:1133.933764px;}
.y336_c00001{bottom:1134.158631px;}
.yfa_c00001{bottom:1135.048040px;}
.y424_c00001{bottom:1135.081692px;}
.y1f0_c00001{bottom:1135.172164px;}
.y3ff_c00001{bottom:1135.189724px;}
.y545_c00001{bottom:1135.546488px;}
.yc5_c00001{bottom:1136.240716px;}
.y55e_c00001{bottom:1137.882622px;}
.y4cb_c00001{bottom:1137.890934px;}
.y305_c00001{bottom:1138.726987px;}
.y8d_c00001{bottom:1139.571057px;}
.y1b_c00001{bottom:1139.795925px;}
.y394_c00001{bottom:1142.269437px;}
.y563_c00001{bottom:1142.578710px;}
.y6a_c00001{bottom:1150.016079px;}
.y6e_c00001{bottom:1153.707722px;}
.y1a7_c00001{bottom:1153.707733px;}
.y3f1_c00001{bottom:1153.849288px;}
.y13f_c00001{bottom:1154.412194px;}
.y517_c00001{bottom:1154.682144px;}
.y28f_c00001{bottom:1154.682154px;}
.y118_c00001{bottom:1154.770571px;}
.y5d2_c00001{bottom:1155.507655px;}
.y586_c00001{bottom:1157.293234px;}
.y628_c00001{bottom:1157.352580px;}
.y5fd_c00001{bottom:1158.320084px;}
.y169_c00001{bottom:1158.546449px;}
.y474_c00001{bottom:1159.020003px;}
.y198_c00001{bottom:1159.706858px;}
.y352_c00001{bottom:1160.071484px;}
.y5b7_c00001{bottom:1160.105647px;}
.y65a_c00001{bottom:1160.164993px;}
.y2b2_c00001{bottom:1161.409608px;}
.y50b_c00001{bottom:1162.461679px;}
.y44d_c00001{bottom:1163.320909px;}
.ya3_c00001{bottom:1164.072276px;}
.y1a9_c00001{bottom:1164.290640px;}
.y335_c00001{bottom:1164.515508px;}
.yf9_c00001{bottom:1165.404916px;}
.y423_c00001{bottom:1165.438569px;}
.y1ef_c00001{bottom:1165.529040px;}
.y3fe_c00001{bottom:1165.546601px;}
.y544_c00001{bottom:1165.903365px;}
.yc4_c00001{bottom:1166.597593px;}
.y55d_c00001{bottom:1168.239499px;}
.y4ca_c00001{bottom:1168.247811px;}
.y304_c00001{bottom:1169.083864px;}
.y8c_c00001{bottom:1169.927934px;}
.y1a_c00001{bottom:1170.152801px;}
.y393_c00001{bottom:1170.377656px;}
.y6c_c00001{bottom:1170.658440px;}
.y334_c00001{bottom:1194.197788px;}
.y1a8_c00001{bottom:1194.647517px;}
.y1ee_c00001{bottom:1195.885917px;}
.y3fd_c00001{bottom:1195.903478px;}
.y562_c00001{bottom:1197.921775px;}
.y4c9_c00001{bottom:1198.604687px;}
.y303_c00001{bottom:1199.440741px;}
.y2b1_c00001{bottom:1199.590753px;}
.y19_c00001{bottom:1199.835078px;}
.y8b_c00001{bottom:1200.284811px;}
.y585_c00001{bottom:1200.662313px;}
.y197_c00001{bottom:1201.443201px;}
.y422_c00001{bottom:1202.925487px;}
.y673_c00001{bottom:1230.284403px;}
.y67e_c00001{bottom:1230.582121px;}
.y565_c00001{bottom:1239.907600px;}
.h30_c00001{height:32.005229px;}
.h2f_c00001{height:32.048392px;}
.hc_c00001{height:32.157430px;}
.h2e_c00001{height:33.580672px;}
.ha_c00001{height:35.967282px;}
.h9_c00001{height:35.967283px;}
.hb_c00001{height:35.967285px;}
.h7_c00001{height:36.267779px;}
.h6_c00001{height:36.267781px;}
.h8_c00001{height:36.267783px;}
.h35_c00001{height:36.484410px;}
.h1c_c00001{height:39.084907px;}
.h10_c00001{height:39.085184px;}
.hd_c00001{height:40.005001px;}
.h24_c00001{height:41.345434px;}
.h1e_c00001{height:43.410487px;}
.h1a_c00001{height:44.080723px;}
.h19_c00001{height:44.080726px;}
.h1b_c00001{height:44.080728px;}
.h2a_c00001{height:45.021856px;}
.h27_c00001{height:45.261653px;}
.h29_c00001{height:45.547349px;}
.h26_c00001{height:45.869341px;}
.h2d_c00001{height:47.060129px;}
.h31_c00001{height:49.256974px;}
.h23_c00001{height:50.510338px;}
.h15_c00001{height:51.578582px;}
.h14_c00001{height:51.885424px;}
.h32_c00001{height:52.073045px;}
.h17_c00001{height:52.830612px;}
.h13_c00001{height:55.092790px;}
.h3_c00001{height:55.127245px;}
.h1d_c00001{height:55.338224px;}
.hf_c00001{height:55.821847px;}
.h16_c00001{height:56.261810px;}
.h1f_c00001{height:57.003372px;}
.h22_c00001{height:61.391468px;}
.h36_c00001{height:63.695204px;}
.he_c00001{height:63.759455px;}
.h12_c00001{height:65.223506px;}
.h34_c00001{height:66.296720px;}
.h5_c00001{height:66.961090px;}
.h4_c00001{height:67.002968px;}
.h2c_c00001{height:67.820906px;}
.h28_c00001{height:72.041726px;}
.h25_c00001{height:72.425437px;}
.h2b_c00001{height:75.303269px;}
.h33_c00001{height:82.276916px;}
.h18_c00001{height:83.753709px;}
.h11_c00001{height:89.323331px;}
.h21_c00001{height:91.855772px;}
.h20_c00001{height:240.457032px;}
.h2_c00001{height:1304.999946px;}
.h0_c00001{height:1304.999953px;}
.h1_c00001{height:1305.000000px;}
.w2_c00001{width:934.874961px;}
.w0_c00001{width:934.875000px;}
.w1_c00001{width:935.250000px;}
.x0_c00001{left:0.000000px;}
.x7c_c00001{left:57.402178px;}
.x4f_c00001{left:67.575792px;}
.x1_c00001{left:87.850202px;}
.x3c_c00001{left:89.434062px;}
.x46_c00001{left:91.017929px;}
.x50_c00001{left:93.487496px;}
.x5a_c00001{left:94.939066px;}
.x4c_c00001{left:100.740844px;}
.x3d_c00001{left:108.062661px;}
.x3e_c00001{left:109.658623px;}
.x45_c00001{left:111.067973px;}
.x51_c00001{left:118.832165px;}
.x4e_c00001{left:128.097383px;}
.x28_c00001{left:134.894322px;}
.x27_c00001{left:136.566734px;}
.x29_c00001{left:139.937719px;}
.x2a_c00001{left:144.785273px;}
.x2b_c00001{left:150.147890px;}
.x2c_c00001{left:152.899057px;}
.x2d_c00001{left:155.907145px;}
.x2e_c00001{left:159.752336px;}
.x2f_c00001{left:163.203941px;}
.x54_c00001{left:170.109979px;}
.x30_c00001{left:171.483965px;}
.x31_c00001{left:179.748684px;}
.x32_c00001{left:188.175145px;}
.x33_c00001{left:196.556636px;}
.x34_c00001{left:200.721504px;}
.x35_c00001{left:205.276922px;}
.x36_c00001{left:209.084069px;}
.x37_c00001{left:211.669316px;}
.x68_c00001{left:213.383727px;}
.x63_c00001{left:216.144416px;}
.x5c_c00001{left:222.761813px;}
.x5b_c00001{left:227.528692px;}
.x4_c00001{left:230.260919px;}
.x3_c00001{left:232.395871px;}
.x5_c00001{left:235.482735px;}
.x6_c00001{left:240.319117px;}
.x7_c00001{left:245.673577px;}
.x8_c00001{left:248.421493px;}
.x9_c00001{left:251.426626px;}
.xa_c00001{left:255.268917px;}
.x4b_c00001{left:256.468943px;}
.xb_c00001{left:258.553698px;}
.xc_c00001{left:262.988294px;}
.xd_c00001{left:271.601212px;}
.xe_c00001{left:283.434780px;}
.x71_c00001{left:286.175316px;}
.xf_c00001{left:290.867654px;}
.x10_c00001{left:294.260334px;}
.x11_c00001{left:299.596701px;}
.x12_c00001{left:302.984150px;}
.x13_c00001{left:306.993562px;}
.x14_c00001{left:325.378518px;}
.x15_c00001{left:326.595106px;}
.x16_c00001{left:328.015253px;}
.x17_c00001{left:331.410444px;}
.x18_c00001{left:334.633053px;}
.x7a_c00001{left:336.676086px;}
.x19_c00001{left:340.511825px;}
.x65_c00001{left:341.650753px;}
.x5e_c00001{left:344.180509px;}
.x1a_c00001{left:346.695139px;}
.x5f_c00001{left:349.817792px;}
.x1b_c00001{left:352.384720px;}
.x1c_c00001{left:355.792694px;}
.x56_c00001{left:357.097024px;}
.x58_c00001{left:358.133363px;}
.x59_c00001{left:359.232523px;}
.x57_c00001{left:361.501617px;}
.x1d_c00001{left:363.695116px;}
.x1e_c00001{left:371.679253px;}
.x60_c00001{left:373.965277px;}
.x1f_c00001{left:378.434940px;}
.x20_c00001{left:381.453328px;}
.x21_c00001{left:384.455783px;}
.x22_c00001{left:387.851715px;}
.x23_c00001{left:390.467224px;}
.x72_c00001{left:391.954246px;}
.x24_c00001{left:393.779799px;}
.x25_c00001{left:398.952070px;}
.x26_c00001{left:401.755082px;}
.x80_c00001{left:415.094339px;}
.x69_c00001{left:437.517632px;}
.x2_c00001{left:451.985828px;}
.x39_c00001{left:464.618828px;}
.x75_c00001{left:473.954074px;}
.x74_c00001{left:482.192544px;}
.x70_c00001{left:483.620239px;}
.x81_c00001{left:487.853404px;}
.x6f_c00001{left:495.144712px;}
.x7d_c00001{left:496.162934px;}
.x7b_c00001{left:502.877733px;}
.x7f_c00001{left:511.169469px;}
.x73_c00001{left:518.752847px;}
.x76_c00001{left:530.731677px;}
.x7e_c00001{left:534.003407px;}
.x6e_c00001{left:542.028486px;}
.x79_c00001{left:549.273656px;}
.x6b_c00001{left:551.193391px;}
.x6c_c00001{left:553.245841px;}
.x6d_c00001{left:565.604794px;}
.x6a_c00001{left:566.962207px;}
.x77_c00001{left:581.071692px;}
.x78_c00001{left:589.685278px;}
.x61_c00001{left:604.199963px;}
.x64_c00001{left:609.837239px;}
.x62_c00001{left:610.853411px;}
.x55_c00001{left:621.936478px;}
.x49_c00001{left:624.633166px;}
.x5d_c00001{left:627.573790px;}
.x44_c00001{left:628.998886px;}
.x3f_c00001{left:630.836290px;}
.x67_c00001{left:636.755373px;}
.x4d_c00001{left:638.678565px;}
.x66_c00001{left:642.684573px;}
.x48_c00001{left:663.122528px;}
.x47_c00001{left:668.165984px;}
.x42_c00001{left:671.033672px;}
.x4a_c00001{left:677.493872px;}
.x41_c00001{left:681.213608px;}
.x40_c00001{left:687.611455px;}
.x43_c00001{left:689.936767px;}
.x3b_c00001{left:691.431927px;}
.x53_c00001{left:699.214194px;}
.x3a_c00001{left:733.103068px;}
.x38_c00001{left:756.637341px;}
.x52_c00001{left:837.857986px;}
@media print{
.v3_c00001{vertical-align:-6.239449pt;}
.v2_c00001{vertical-align:-2.052864pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v1_c00001{vertical-align:7.965952pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.ls0_c00001{letter-spacing:0.000020pt;}
.ls1a_c00001{letter-spacing:0.017333pt;}
.ls16_c00001{letter-spacing:0.024282pt;}
.ls5_c00001{letter-spacing:0.024302pt;}
.ls14_c00001{letter-spacing:0.031211pt;}
.ls10_c00001{letter-spacing:0.031232pt;}
.ls3_c00001{letter-spacing:0.031251pt;}
.ls19_c00001{letter-spacing:0.038396pt;}
.ls17_c00001{letter-spacing:0.874478pt;}
.ls6_c00001{letter-spacing:1.311737pt;}
.ls12_c00001{letter-spacing:1.436662pt;}
.ls4_c00001{letter-spacing:1.624030pt;}
.ls9_c00001{letter-spacing:2.311100pt;}
.ls8_c00001{letter-spacing:2.311120pt;}
.ls7_c00001{letter-spacing:5.059499pt;}
.ls15_c00001{letter-spacing:5.434275pt;}
.ls11_c00001{letter-spacing:5.496718pt;}
.ls18_c00001{letter-spacing:5.871494pt;}
.lsc_c00001{letter-spacing:8.120152pt;}
.lsa_c00001{letter-spacing:11.618064pt;}
.lse_c00001{letter-spacing:12.992243pt;}
.lsd_c00001{letter-spacing:15.303383pt;}
.lsb_c00001{letter-spacing:19.051126pt;}
.lsf_c00001{letter-spacing:27.795925pt;}
.ls13_c00001{letter-spacing:36.353297pt;}
.ls2_c00001{letter-spacing:53.030820pt;}
.ws11_c00001{word-spacing:-45.252304pt;}
.ws7_c00001{word-spacing:-34.757804pt;}
.wsf_c00001{word-spacing:-24.301692pt;}
.ws12_c00001{word-spacing:-22.763280pt;}
.wsb_c00001{word-spacing:-20.208775pt;}
.ws0_c00001{word-spacing:-16.615081pt;}
.ws1_c00001{word-spacing:-16.604696pt;}
.wsa_c00001{word-spacing:-15.223568pt;}
.wsc_c00001{word-spacing:-13.842439pt;}
.ws5_c00001{word-spacing:-12.866304pt;}
.ws9_c00001{word-spacing:-0.239857pt;}
.ws6_c00001{word-spacing:-0.063962pt;}
.ws10_c00001{word-spacing:-0.063922pt;}
.ws2_c00001{word-spacing:0.000000pt;}
.ws8_c00001{word-spacing:237.125985pt;}
.ws3_c00001{word-spacing:245.304634pt;}
.ws4_c00001{word-spacing:250.196272pt;}
.wse_c00001{word-spacing:572.126933pt;}
.wsd_c00001{word-spacing:615.965751pt;}
._2c_c00001{margin-left:-755.671988pt;}
._31_c00001{margin-left:-7.260737pt;}
._2e_c00001{margin-left:-3.837674pt;}
._2f_c00001{margin-left:-0.890628pt;}
._2_c00001{width:0.956154pt;}
._3_c00001{width:2.667107pt;}
._0_c00001{width:3.921241pt;}
._1_c00001{width:5.448650pt;}
._7_c00001{width:6.353387pt;}
._5_c00001{width:7.374747pt;}
._8_c00001{width:8.271368pt;}
._e_c00001{width:9.207086pt;}
._f_c00001{width:10.251878pt;}
._15_c00001{width:11.152397pt;}
._9_c00001{width:12.271482pt;}
._1a_c00001{width:13.330542pt;}
._6_c00001{width:14.519713pt;}
._c_c00001{width:15.648981pt;}
._a_c00001{width:17.734592pt;}
._12_c00001{width:19.311345pt;}
._13_c00001{width:20.652404pt;}
._1d_c00001{width:21.560919pt;}
._17_c00001{width:22.606684pt;}
._19_c00001{width:23.799206pt;}
._16_c00001{width:25.022537pt;}
._1e_c00001{width:26.012240pt;}
._10_c00001{width:27.029272pt;}
._1f_c00001{width:27.992555pt;}
._4_c00001{width:29.138856pt;}
._b_c00001{width:30.115492pt;}
._14_c00001{width:31.462417pt;}
._18_c00001{width:32.874111pt;}
._1b_c00001{width:33.811049pt;}
._28_c00001{width:34.710434pt;}
._1c_c00001{width:35.641197pt;}
._23_c00001{width:36.950106pt;}
._21_c00001{width:37.880155pt;}
._2d_c00001{width:39.199802pt;}
._22_c00001{width:40.738063pt;}
._d_c00001{width:41.787554pt;}
._20_c00001{width:43.149161pt;}
._24_c00001{width:45.214034pt;}
._29_c00001{width:46.218074pt;}
._2a_c00001{width:47.846435pt;}
._27_c00001{width:51.108344pt;}
._11_c00001{width:52.982225pt;}
._25_c00001{width:72.626257pt;}
._2b_c00001{width:258.543004pt;}
._26_c00001{width:263.662025pt;}
._30_c00001{width:388.954506pt;}
.fs8_c00001{font-size:37.310908pt;}
.fsc_c00001{font-size:37.311173pt;}
.fs16_c00001{font-size:39.287756pt;}
.fs3_c00001{font-size:42.079973pt;}
.fs6_c00001{font-size:42.079974pt;}
.fs2_c00001{font-size:42.079975pt;}
.fs5_c00001{font-size:42.079976pt;}
.fs4_c00001{font-size:42.079977pt;}
.fs7_c00001{font-size:42.079978pt;}
.fs19_c00001{font-size:44.725819pt;}
.fs15_c00001{font-size:47.971361pt;}
.fs9_c00001{font-size:49.041671pt;}
.fsf_c00001{font-size:49.530431pt;}
.fs10_c00001{font-size:50.011229pt;}
.fsb_c00001{font-size:53.288186pt;}
.fs17_c00001{font-size:57.150787pt;}
.fs14_c00001{font-size:58.605012pt;}
.fs1_c00001{font-size:63.921837pt;}
.fs0_c00001{font-size:63.961814pt;}
.fse_c00001{font-size:68.413814pt;}
.fsa_c00001{font-size:74.595466pt;}
.fs11_c00001{font-size:79.952268pt;}
.fsd_c00001{font-size:85.269094pt;}
.fs18_c00001{font-size:91.418796pt;}
.fs13_c00001{font-size:106.576373pt;}
.fs12_c00001{font-size:239.856804pt;}
.y0_c00001{bottom:0.000000pt;}
.y1_c00001{bottom:0.000007pt;}
.y20_c00001{bottom:26.805533pt;}
.y421_c00001{bottom:53.162725pt;}
.y483_c00001{bottom:54.672777pt;}
.y1e3_c00001{bottom:56.724675pt;}
.y1a5_c00001{bottom:57.075209pt;}
.y3b7_c00001{bottom:57.106258pt;}
.y377_c00001{bottom:57.584328pt;}
.y30a_c00001{bottom:60.947306pt;}
.y619_c00001{bottom:61.427111pt;}
.y620_c00001{bottom:62.732903pt;}
.y2df_c00001{bottom:66.110110pt;}
.y312_c00001{bottom:72.575419pt;}
.yf1_c00001{bottom:73.297226pt;}
.y543_c00001{bottom:73.850589pt;}
.y2c2_c00001{bottom:78.371995pt;}
.y332_c00001{bottom:78.571835pt;}
.y420_c00001{bottom:80.146615pt;}
.y20f_c00001{bottom:80.728715pt;}
.y25d_c00001{bottom:81.261115pt;}
.y5b2_c00001{bottom:81.264774pt;}
.y482_c00001{bottom:81.656667pt;}
.y3d3_c00001{bottom:82.439695pt;}
.y4ea_c00001{bottom:82.463945pt;}
.y433_c00001{bottom:83.330171pt;}
.y1e2_c00001{bottom:83.708566pt;}
.y28d_c00001{bottom:83.972699pt;}
.y1a4_c00001{bottom:84.059099pt;}
.y3b6_c00001{bottom:84.090148pt;}
.y670_c00001{bottom:84.267166pt;}
.y618_c00001{bottom:84.381510pt;}
.y376_c00001{bottom:84.568219pt;}
.y1ec_c00001{bottom:85.058459pt;}
.y309_c00001{bottom:87.931197pt;}
.y3f0_c00001{bottom:88.082006pt;}
.y61f_c00001{bottom:89.114790pt;}
.y667_c00001{bottom:91.496826pt;}
.y2de_c00001{bottom:93.094000pt;}
.y3b8_c00001{bottom:97.360570pt;}
.y665_c00001{bottom:99.506681pt;}
.y311_c00001{bottom:99.559310pt;}
.yf0_c00001{bottom:100.281116pt;}
.y542_c00001{bottom:100.834480pt;}
.y223_c00001{bottom:101.249230pt;}
.y5b3_c00001{bottom:101.413446pt;}
.y66f_c00001{bottom:103.759249pt;}
.y168_c00001{bottom:103.894746pt;}
.y666_c00001{bottom:104.592744pt;}
.y2c1_c00001{bottom:105.355886pt;}
.y331_c00001{bottom:105.555726pt;}
.y122_c00001{bottom:106.370862pt;}
.y41f_c00001{bottom:107.130506pt;}
.y614_c00001{bottom:107.335877pt;}
.y20e_c00001{bottom:107.712605pt;}
.y25c_c00001{bottom:108.245006pt;}
.y481_c00001{bottom:108.640558pt;}
.y3d2_c00001{bottom:109.423585pt;}
.y4e9_c00001{bottom:109.447836pt;}
.y17a_c00001{bottom:110.152973pt;}
.y432_c00001{bottom:110.314061pt;}
.y4f1_c00001{bottom:110.613613pt;}
.yd4_c00001{bottom:110.665805pt;}
.y1e1_c00001{bottom:110.692456pt;}
.y28c_c00001{bottom:110.956589pt;}
.y1a3_c00001{bottom:111.042989pt;}
.y2e6_c00001{bottom:111.214221pt;}
.yf8_c00001{bottom:111.367917pt;}
.y375_c00001{bottom:111.552109pt;}
.y1eb_c00001{bottom:112.042349pt;}
.y664_c00001{bottom:112.602600pt;}
.y3b5_c00001{bottom:113.634746pt;}
.y623_c00001{bottom:114.699621pt;}
.y308_c00001{bottom:114.915087pt;}
.y3ef_c00001{bottom:115.065896pt;}
.y50a_c00001{bottom:115.328870pt;}
.y2dd_c00001{bottom:120.077891pt;}
.y4ad_c00001{bottom:122.761581pt;}
.y66e_c00001{bottom:123.251332pt;}
.y149_c00001{bottom:124.344461pt;}
.y310_c00001{bottom:126.543200pt;}
.yef_c00001{bottom:127.265007pt;}
.y541_c00001{bottom:127.818370pt;}
.y222_c00001{bottom:128.233120pt;}
.y5b5_c00001{bottom:128.558052pt;}
.y516_c00001{bottom:129.577504pt;}
.y613_c00001{bottom:130.290244pt;}
.ya0_c00001{bottom:130.356544pt;}
.y167_c00001{bottom:130.878636pt;}
.y238_c00001{bottom:131.701803pt;}
.y2c0_c00001{bottom:132.339776pt;}
.y68_c00001{bottom:132.476256pt;}
.y330_c00001{bottom:132.539616pt;}
.y121_c00001{bottom:133.354752pt;}
.yc3_c00001{bottom:134.060518pt;}
.y41e_c00001{bottom:134.114396pt;}
.y45a_c00001{bottom:134.574464pt;}
.y20d_c00001{bottom:134.696496pt;}
.y663_c00001{bottom:134.850424pt;}
.y25b_c00001{bottom:135.228896pt;}
.y669_c00001{bottom:135.611576pt;}
.y480_c00001{bottom:135.624448pt;}
.y3fc_c00001{bottom:136.137408pt;}
.y4c8_c00001{bottom:136.359246pt;}
.y3d1_c00001{bottom:136.407476pt;}
.y4e8_c00001{bottom:136.431726pt;}
.y179_c00001{bottom:137.136864pt;}
.y431_c00001{bottom:137.297952pt;}
.y4f0_c00001{bottom:137.597504pt;}
.yd3_c00001{bottom:137.649696pt;}
.y1e0_c00001{bottom:137.676347pt;}
.y28b_c00001{bottom:137.940480pt;}
.y1a2_c00001{bottom:138.026880pt;}
.y2e5_c00001{bottom:138.198112pt;}
.yf7_c00001{bottom:138.351808pt;}
.y374_c00001{bottom:138.536000pt;}
.y1c7_c00001{bottom:138.988670pt;}
.y1ea_c00001{bottom:139.026240pt;}
.y4a0_c00001{bottom:140.158068pt;}
.y626_c00001{bottom:140.252356pt;}
.y307_c00001{bottom:141.898978pt;}
.y3ee_c00001{bottom:142.049786pt;}
.y509_c00001{bottom:142.312761pt;}
.y13e_c00001{bottom:143.389152pt;}
.y473_c00001{bottom:144.592789pt;}
.y446_c00001{bottom:146.684040pt;}
.y5b4_c00001{bottom:147.468996pt;}
.y662_c00001{bottom:147.946343pt;}
.y668_c00001{bottom:148.707494pt;}
.y36e_c00001{bottom:148.722975pt;}
.y4ac_c00001{bottom:149.745471pt;}
.y117_c00001{bottom:150.196639pt;}
.y2dc_c00001{bottom:150.489976pt;}
.y148_c00001{bottom:151.328351pt;}
.y617_c00001{bottom:153.244611pt;}
.y30f_c00001{bottom:153.527091pt;}
.yee_c00001{bottom:154.248897pt;}
.y221_c00001{bottom:155.217011pt;}
.y515_c00001{bottom:156.561395pt;}
.y540_c00001{bottom:157.200824pt;}
.y9f_c00001{bottom:157.340435pt;}
.y166_c00001{bottom:157.862527pt;}
.y237_c00001{bottom:158.685693pt;}
.y2bf_c00001{bottom:159.323667pt;}
.y67_c00001{bottom:159.460147pt;}
.y32f_c00001{bottom:159.523507pt;}
.y3b4_c00001{bottom:159.580991pt;}
.y120_c00001{bottom:160.338643pt;}
.yc2_c00001{bottom:161.044409pt;}
.y41d_c00001{bottom:161.098287pt;}
.y196_c00001{bottom:161.258605pt;}
.y459_c00001{bottom:161.558354pt;}
.y20c_c00001{bottom:161.680386pt;}
.y391_c00001{bottom:162.212774pt;}
.y25a_c00001{bottom:162.212786pt;}
.y661_c00001{bottom:162.330743pt;}
.y47f_c00001{bottom:162.608338pt;}
.y3fb_c00001{bottom:163.121298pt;}
.y4ce_c00001{bottom:163.212242pt;}
.y4c7_c00001{bottom:163.343137pt;}
.y3d0_c00001{bottom:163.391366pt;}
.y4e7_c00001{bottom:163.415617pt;}
.y178_c00001{bottom:164.120754pt;}
.y430_c00001{bottom:164.281842pt;}
.y4ef_c00001{bottom:164.581394pt;}
.yd2_c00001{bottom:164.633586pt;}
.y1df_c00001{bottom:164.660237pt;}
.y28a_c00001{bottom:164.924370pt;}
.y1a1_c00001{bottom:165.010770pt;}
.y2e4_c00001{bottom:165.182002pt;}
.y622_c00001{bottom:165.205539pt;}
.yf6_c00001{bottom:165.335698pt;}
.y373_c00001{bottom:165.519890pt;}
.y1c6_c00001{bottom:165.972560pt;}
.y1e9_c00001{bottom:166.010130pt;}
.y49f_c00001{bottom:167.141958pt;}
.y5b6_c00001{bottom:167.939683pt;}
.y3ed_c00001{bottom:169.033677pt;}
.y508_c00001{bottom:169.296651pt;}
.y13d_c00001{bottom:170.373042pt;}
.y306_c00001{bottom:171.124663pt;}
.y472_c00001{bottom:171.576679pt;}
.y445_c00001{bottom:173.667930pt;}
.y660_c00001{bottom:175.426661pt;}
.y36d_c00001{bottom:175.706866pt;}
.y616_c00001{bottom:176.199074pt;}
.y4ab_c00001{bottom:176.729362pt;}
.y116_c00001{bottom:177.180530pt;}
.y147_c00001{bottom:178.312242pt;}
.y30e_c00001{bottom:180.510981pt;}
.yed_c00001{bottom:181.140055pt;}
.y220_c00001{bottom:182.200901pt;}
.y8a_c00001{bottom:182.415197pt;}
.y32a_c00001{bottom:182.436677pt;}
.y2db_c00001{bottom:182.870622pt;}
.y514_c00001{bottom:183.545285pt;}
.y9e_c00001{bottom:184.324325pt;}
.y3b3_c00001{bottom:184.566075pt;}
.y165_c00001{bottom:184.846417pt;}
.y236_c00001{bottom:185.669584pt;}
.y2be_c00001{bottom:186.307557pt;}
.y66_c00001{bottom:186.444037pt;}
.y32e_c00001{bottom:186.507397pt;}
.y11f_c00001{bottom:187.322533pt;}
.yc1_c00001{bottom:188.028299pt;}
.y41c_c00001{bottom:188.082177pt;}
.y195_c00001{bottom:188.242496pt;}
.y458_c00001{bottom:188.542245pt;}
.y20b_c00001{bottom:188.664277pt;}
.y390_c00001{bottom:189.196665pt;}
.y259_c00001{bottom:189.196677pt;}
.y47e_c00001{bottom:189.592229pt;}
.y568_c00001{bottom:190.070355pt;}
.y3fa_c00001{bottom:190.105189pt;}
.y3d7_c00001{bottom:190.196133pt;}
.y3cf_c00001{bottom:190.375256pt;}
.y177_c00001{bottom:191.104645pt;}
.y42f_c00001{bottom:191.265733pt;}
.y4ee_c00001{bottom:191.565285pt;}
.yd1_c00001{bottom:191.617477pt;}
.y1de_c00001{bottom:191.644128pt;}
.y67d_c00001{bottom:191.774793pt;}
.y621_c00001{bottom:191.789698pt;}
.y289_c00001{bottom:191.908261pt;}
.y1a0_c00001{bottom:191.994661pt;}
.y2e3_c00001{bottom:192.165893pt;}
.yf5_c00001{bottom:192.319589pt;}
.y372_c00001{bottom:192.503781pt;}
.y4c6_c00001{bottom:192.887542pt;}
.y1c5_c00001{bottom:192.956451pt;}
.y351_c00001{bottom:192.959532pt;}
.y4e6_c00001{bottom:192.960054pt;}
.y1e8_c00001{bottom:192.994021pt;}
.y49e_c00001{bottom:194.125849pt;}
.y3ec_c00001{bottom:196.017567pt;}
.y507_c00001{bottom:196.280542pt;}
.y13c_c00001{bottom:197.356933pt;}
.y471_c00001{bottom:198.560570pt;}
.y615_c00001{bottom:199.153377pt;}
.y444_c00001{bottom:200.651821pt;}
.y272_c00001{bottom:202.624302pt;}
.y36c_c00001{bottom:202.690756pt;}
.y58b_c00001{bottom:203.480050pt;}
.y4aa_c00001{bottom:203.713252pt;}
.y66b_c00001{bottom:204.037749pt;}
.y115_c00001{bottom:204.164420pt;}
.y53f_c00001{bottom:204.572559pt;}
.y146_c00001{bottom:205.296132pt;}
.y5ba_c00001{bottom:205.979896pt;}
.y18_c00001{bottom:206.746187pt;}
.y30d_c00001{bottom:207.494872pt;}
.y567_c00001{bottom:209.059019pt;}
.y21f_c00001{bottom:209.184792pt;}
.y89_c00001{bottom:209.399087pt;}
.y329_c00001{bottom:209.420568pt;}
.y3b2_c00001{bottom:209.551159pt;}
.y2da_c00001{bottom:209.854512pt;}
.y513_c00001{bottom:210.529176pt;}
.y9d_c00001{bottom:211.308216pt;}
.y302_c00001{bottom:211.500580pt;}
.y164_c00001{bottom:211.830307pt;}
.y235_c00001{bottom:212.653474pt;}
.y2bd_c00001{bottom:213.291447pt;}
.y65_c00001{bottom:213.427927pt;}
.y32d_c00001{bottom:213.491287pt;}
.y194_c00001{bottom:214.259445pt;}
.y11e_c00001{bottom:214.306423pt;}
.yc0_c00001{bottom:215.012190pt;}
.y41b_c00001{bottom:215.066068pt;}
.y457_c00001{bottom:215.526135pt;}
.y20a_c00001{bottom:215.648167pt;}
.y38f_c00001{bottom:216.180555pt;}
.y258_c00001{bottom:216.180567pt;}
.y47d_c00001{bottom:216.576119pt;}
.y3f9_c00001{bottom:217.089079pt;}
.y66a_c00001{bottom:217.133668pt;}
.y3d6_c00001{bottom:217.180023pt;}
.y3ce_c00001{bottom:217.359147pt;}
.y176_c00001{bottom:218.088535pt;}
.y61e_c00001{bottom:218.097825pt;}
.y42e_c00001{bottom:218.249623pt;}
.y4ed_c00001{bottom:218.549175pt;}
.yd0_c00001{bottom:218.601367pt;}
.y288_c00001{bottom:218.892151pt;}
.y19f_c00001{bottom:218.978551pt;}
.y2e2_c00001{bottom:219.149783pt;}
.y1e4_c00001{bottom:219.251925pt;}
.yf4_c00001{bottom:219.303479pt;}
.y371_c00001{bottom:219.487671pt;}
.y1c4_c00001{bottom:219.940341pt;}
.y350_c00001{bottom:219.943422pt;}
.y1e7_c00001{bottom:219.977911pt;}
.y49d_c00001{bottom:221.109739pt;}
.y610_c00001{bottom:222.107808pt;}
.y13b_c00001{bottom:224.340823pt;}
.yec_c00001{bottom:224.430199pt;}
.y470_c00001{bottom:225.544460pt;}
.y4e5_c00001{bottom:227.119196pt;}
.y443_c00001{bottom:227.635711pt;}
.y566_c00001{bottom:228.047682pt;}
.y3eb_c00001{bottom:229.289909pt;}
.y271_c00001{bottom:229.608193pt;}
.y36b_c00001{bottom:229.674647pt;}
.y4a9_c00001{bottom:230.697143pt;}
.y114_c00001{bottom:231.148311pt;}
.y53e_c00001{bottom:231.556449pt;}
.y145_c00001{bottom:232.280023pt;}
.y17_c00001{bottom:233.730078pt;}
.y30c_c00001{bottom:234.478762pt;}
.y3b1_c00001{bottom:234.536243pt;}
.y21e_c00001{bottom:236.168682pt;}
.y88_c00001{bottom:236.382978pt;}
.y328_c00001{bottom:236.404458pt;}
.y2d9_c00001{bottom:236.838403pt;}
.y512_c00001{bottom:237.513066pt;}
.y9c_c00001{bottom:238.292106pt;}
.y301_c00001{bottom:238.484470pt;}
.y163_c00001{bottom:238.814198pt;}
.y234_c00001{bottom:239.637365pt;}
.y2bc_c00001{bottom:240.275338pt;}
.y64_c00001{bottom:240.411818pt;}
.y32c_c00001{bottom:240.475178pt;}
.y60a_c00001{bottom:241.089760pt;}
.y11d_c00001{bottom:241.290314pt;}
.ybf_c00001{bottom:241.996080pt;}
.y41a_c00001{bottom:242.049958pt;}
.y456_c00001{bottom:242.510026pt;}
.y209_c00001{bottom:242.632058pt;}
.y4c5_c00001{bottom:243.163062pt;}
.y38e_c00001{bottom:243.164445pt;}
.y257_c00001{bottom:243.164458pt;}
.y47c_c00001{bottom:243.560010pt;}
.y67b_c00001{bottom:243.692839pt;}
.y3f8_c00001{bottom:244.072970pt;}
.y3d5_c00001{bottom:244.163914pt;}
.y3cd_c00001{bottom:244.343037pt;}
.y60f_c00001{bottom:245.062208pt;}
.y175_c00001{bottom:245.072426pt;}
.y42d_c00001{bottom:245.233514pt;}
.y4ec_c00001{bottom:245.533066pt;}
.ycf_c00001{bottom:245.585258pt;}
.y287_c00001{bottom:245.876042pt;}
.y19e_c00001{bottom:245.962442pt;}
.y2e1_c00001{bottom:246.133674pt;}
.yf3_c00001{bottom:246.287370pt;}
.y370_c00001{bottom:246.471562pt;}
.y1c3_c00001{bottom:246.924232pt;}
.y1e6_c00001{bottom:246.961802pt;}
.y61d_c00001{bottom:247.042047pt;}
.y49c_c00001{bottom:248.093629pt;}
.y34f_c00001{bottom:249.487956pt;}
.y506_c00001{bottom:250.248323pt;}
.y13a_c00001{bottom:251.324713pt;}
.yeb_c00001{bottom:251.414089pt;}
.y46f_c00001{bottom:252.528350pt;}
.y4e4_c00001{bottom:254.103087pt;}
.y442_c00001{bottom:254.619602pt;}
.y38d_c00001{bottom:256.064495pt;}
.y270_c00001{bottom:256.592083pt;}
.y36a_c00001{bottom:256.658537pt;}
.y65f_c00001{bottom:256.948787pt;}
.y4a8_c00001{bottom:257.681033pt;}
.y113_c00001{bottom:258.132201pt;}
.y53d_c00001{bottom:258.540340pt;}
.y193_c00001{bottom:259.213043pt;}
.y144_c00001{bottom:259.263913pt;}
.y3b0_c00001{bottom:259.521327pt;}
.y1dd_c00001{bottom:259.682555pt;}
.y30b_c00001{bottom:261.462653pt;}
.y58a_c00001{bottom:262.437663pt;}
.y16_c00001{bottom:263.151539pt;}
.y21d_c00001{bottom:263.152573pt;}
.y87_c00001{bottom:263.366868pt;}
.y327_c00001{bottom:263.388349pt;}
.y2d8_c00001{bottom:263.822293pt;}
.y511_c00001{bottom:264.496957pt;}
.y9b_c00001{bottom:265.275996pt;}
.y300_c00001{bottom:265.468361pt;}
.y609_c00001{bottom:265.677887pt;}
.y162_c00001{bottom:265.798088pt;}
.y233_c00001{bottom:266.621255pt;}
.y2bb_c00001{bottom:267.259228pt;}
.y2a5_c00001{bottom:267.382213pt;}
.y63_c00001{bottom:267.395708pt;}
.y32b_c00001{bottom:267.459068pt;}
.y612_c00001{bottom:268.016639pt;}
.y55c_c00001{bottom:268.209769pt;}
.y11c_c00001{bottom:268.274204pt;}
.ybe_c00001{bottom:268.979971pt;}
.y419_c00001{bottom:269.033849pt;}
.y455_c00001{bottom:269.493916pt;}
.y208_c00001{bottom:269.615948pt;}
.y65e_c00001{bottom:270.044705pt;}
.y4c4_c00001{bottom:270.146953pt;}
.y256_c00001{bottom:270.148348pt;}
.y47b_c00001{bottom:270.543900pt;}
.y3f7_c00001{bottom:271.056860pt;}
.y3d4_c00001{bottom:271.147804pt;}
.y392_c00001{bottom:271.856467pt;}
.y174_c00001{bottom:272.056316pt;}
.y42c_c00001{bottom:272.217404pt;}
.y4eb_c00001{bottom:272.516956pt;}
.yce_c00001{bottom:272.569148pt;}
.y286_c00001{bottom:272.859932pt;}
.y19d_c00001{bottom:272.946332pt;}
.y2e0_c00001{bottom:273.117564pt;}
.yf2_c00001{bottom:273.271260pt;}
.y36f_c00001{bottom:273.455452pt;}
.y255_c00001{bottom:273.734202pt;}
.y3cc_c00001{bottom:273.887475pt;}
.y1c2_c00001{bottom:273.908122pt;}
.y1e5_c00001{bottom:273.945692pt;}
.y49b_c00001{bottom:275.077520pt;}
.y624_c00001{bottom:275.380318pt;}
.y505_c00001{bottom:277.232213pt;}
.y66d_c00001{bottom:278.176050pt;}
.y139_c00001{bottom:278.308604pt;}
.yea_c00001{bottom:278.397980pt;}
.y46e_c00001{bottom:279.512241pt;}
.y4e3_c00001{bottom:281.086977pt;}
.y441_c00001{bottom:281.603492pt;}
.y38c_c00001{bottom:283.048385pt;}
.y26f_c00001{bottom:283.575974pt;}
.y369_c00001{bottom:283.642428pt;}
.y3af_c00001{bottom:284.506410pt;}
.y4a7_c00001{bottom:284.664924pt;}
.y589_c00001{bottom:285.034622pt;}
.y112_c00001{bottom:285.116092pt;}
.y53c_c00001{bottom:285.524230pt;}
.y192_c00001{bottom:286.196934pt;}
.y143_c00001{bottom:286.247804pt;}
.y1dc_c00001{bottom:286.666445pt;}
.y86_c00001{bottom:290.350759pt;}
.y2d7_c00001{bottom:290.806184pt;}
.y611_c00001{bottom:290.970942pt;}
.y66c_c00001{bottom:291.271969pt;}
.y60b_c00001{bottom:291.825950pt;}
.y224_c00001{bottom:291.844498pt;}
.y2ff_c00001{bottom:292.452251pt;}
.y161_c00001{bottom:292.781979pt;}
.y326_c00001{bottom:292.932850pt;}
.y3ea_c00001{bottom:293.250363pt;}
.y232_c00001{bottom:293.605146pt;}
.ya1_c00001{bottom:293.879346pt;}
.y2a4_c00001{bottom:294.366103pt;}
.y55b_c00001{bottom:295.193659pt;}
.ybd_c00001{bottom:295.963861pt;}
.y418_c00001{bottom:296.017739pt;}
.y207_c00001{bottom:296.599839pt;}
.y4c3_c00001{bottom:297.130843pt;}
.y34e_c00001{bottom:297.459240pt;}
.y25e_c00001{bottom:298.840370pt;}
.y2c3_c00001{bottom:299.639826pt;}
.y313_c00001{bottom:299.839730pt;}
.y254_c00001{bottom:300.718093pt;}
.y1c1_c00001{bottom:300.892013pt;}
.y28e_c00001{bottom:301.551922pt;}
.y1a6_c00001{bottom:301.638322pt;}
.y69_c00001{bottom:301.874578pt;}
.y49a_c00001{bottom:302.061410pt;}
.y1ed_c00001{bottom:302.637778pt;}
.y504_c00001{bottom:304.216104pt;}
.y625_c00001{bottom:304.570173pt;}
.y46d_c00001{bottom:306.496131pt;}
.y5b1_c00001{bottom:307.240157pt;}
.y4e2_c00001{bottom:308.070868pt;}
.y440_c00001{bottom:308.587382pt;}
.ye9_c00001{bottom:308.782705pt;}
.y3ae_c00001{bottom:309.491494pt;}
.y38b_c00001{bottom:310.032275pt;}
.y26e_c00001{bottom:310.559864pt;}
.y53b_c00001{bottom:312.508121pt;}
.y138_c00001{bottom:312.688113pt;}
.y191_c00001{bottom:313.180824pt;}
.y65d_c00001{bottom:313.267505pt;}
.y15_c00001{bottom:313.301120pt;}
.y1db_c00001{bottom:313.650336pt;}
.y61a_c00001{bottom:313.925405pt;}
.y4ae_c00001{bottom:316.543025pt;}
.y85_c00001{bottom:317.334649pt;}
.y21c_c00001{bottom:317.485740pt;}
.y2d6_c00001{bottom:317.790074pt;}
.y55a_c00001{bottom:318.579729pt;}
.y14a_c00001{bottom:318.628497pt;}
.y160_c00001{bottom:319.765869pt;}
.y3e9_c00001{bottom:320.234254pt;}
.y231_c00001{bottom:320.589036pt;}
.y2a3_c00001{bottom:321.349994pt;}
.y368_c00001{bottom:321.799185pt;}
.ybc_c00001{bottom:322.947752pt;}
.y417_c00001{bottom:323.001629pt;}
.y111_c00001{bottom:323.275761pt;}
.y206_c00001{bottom:323.583729pt;}
.y607_c00001{bottom:324.109308pt;}
.y34d_c00001{bottom:324.443130pt;}
.y65c_c00001{bottom:326.363423pt;}
.y4c2_c00001{bottom:327.512785pt;}
.y253_c00001{bottom:327.701983pt;}
.y1c0_c00001{bottom:327.875903pt;}
.y499_c00001{bottom:329.045301pt;}
.y683_c00001{bottom:329.127427pt;}
.y503_c00001{bottom:331.199994pt;}
.y2fe_c00001{bottom:331.934129pt;}
.y46c_c00001{bottom:333.480022pt;}
.y627_c00001{bottom:333.914620pt;}
.y4e1_c00001{bottom:335.054758pt;}
.y43f_c00001{bottom:335.571273pt;}
.y61b_c00001{bottom:336.879772pt;}
.y38a_c00001{bottom:337.016166pt;}
.y26d_c00001{bottom:337.543755pt;}
.y53a_c00001{bottom:339.492011pt;}
.y325_c00001{bottom:339.525439pt;}
.y190_c00001{bottom:340.164715pt;}
.y14_c00001{bottom:340.285010pt;}
.y1da_c00001{bottom:340.634226pt;}
.y3ad_c00001{bottom:343.001616pt;}
.y3cb_c00001{bottom:343.245342pt;}
.y84_c00001{bottom:344.318540pt;}
.y21b_c00001{bottom:344.469630pt;}
.y67c_c00001{bottom:344.979554pt;}
.y5b9_c00001{bottom:345.280306pt;}
.y588_c00001{bottom:346.622380pt;}
.y606_c00001{bottom:346.687963pt;}
.y15f_c00001{bottom:346.749760pt;}
.y3e8_c00001{bottom:347.218144pt;}
.y230_c00001{bottom:347.572926pt;}
.y2a2_c00001{bottom:348.333884pt;}
.y2d5_c00001{bottom:349.004976pt;}
.ybb_c00001{bottom:349.931642pt;}
.y416_c00001{bottom:349.985520pt;}
.y205_c00001{bottom:350.567619pt;}
.ye8_c00001{bottom:352.072815pt;}
.y34c_c00001{bottom:353.987632pt;}
.y252_c00001{bottom:354.685874pt;}
.y1bf_c00001{bottom:354.859794pt;}
.y498_c00001{bottom:356.029191pt;}
.y602_c00001{bottom:356.501083pt;}
.y502_c00001{bottom:358.183884pt;}
.y61c_c00001{bottom:359.834139pt;}
.y62_c00001{bottom:359.920462pt;}
.y46b_c00001{bottom:360.463912pt;}
.y137_c00001{bottom:360.838849pt;}
.y4e0_c00001{bottom:362.038648pt;}
.y43e_c00001{bottom:362.555163pt;}
.y389_c00001{bottom:364.000056pt;}
.y26c_c00001{bottom:364.527645pt;}
.y539_c00001{bottom:366.475902pt;}
.y324_c00001{bottom:366.509329pt;}
.y18f_c00001{bottom:367.148605pt;}
.y13_c00001{bottom:367.268901pt;}
.y1d9_c00001{bottom:367.618117pt;}
.y3ca_c00001{bottom:370.229233pt;}
.y83_c00001{bottom:371.302430pt;}
.y21a_c00001{bottom:371.453521pt;}
.y2fd_c00001{bottom:372.412659pt;}
.y608_c00001{bottom:372.836090pt;}
.y15e_c00001{bottom:373.733650pt;}
.y3e7_c00001{bottom:374.202035pt;}
.y22f_c00001{bottom:374.556817pt;}
.y2a1_c00001{bottom:375.317775pt;}
.yba_c00001{bottom:376.915532pt;}
.y415_c00001{bottom:376.969410pt;}
.y204_c00001{bottom:377.551510pt;}
.y559_c00001{bottom:377.944253pt;}
.y110_c00001{bottom:378.642676pt;}
.ye7_c00001{bottom:379.056705pt;}
.y601_c00001{bottom:379.087642pt;}
.y251_c00001{bottom:381.669764pt;}
.y1be_c00001{bottom:381.843684pt;}
.y367_c00001{bottom:382.163192pt;}
.y2d4_c00001{bottom:382.338610pt;}
.y60e_c00001{bottom:382.788602pt;}
.y497_c00001{bottom:383.013082pt;}
.y4c1_c00001{bottom:383.879162pt;}
.y501_c00001{bottom:385.167775pt;}
.y67a_c00001{bottom:385.640321pt;}
.y583_c00001{bottom:385.885029pt;}
.y46a_c00001{bottom:387.447803pt;}
.y136_c00001{bottom:387.822740pt;}
.y43d_c00001{bottom:389.539054pt;}
.y3ac_c00001{bottom:391.172796pt;}
.y26b_c00001{bottom:391.511535pt;}
.y4df_c00001{bottom:391.583086pt;}
.y538_c00001{bottom:393.459792pt;}
.y323_c00001{bottom:393.493220pt;}
.y388_c00001{bottom:393.544590pt;}
.y18e_c00001{bottom:394.132496pt;}
.y12_c00001{bottom:394.252791pt;}
.y1d8_c00001{bottom:394.602007pt;}
.y3c9_c00001{bottom:397.213123pt;}
.y655_c00001{bottom:397.965689pt;}
.y82_c00001{bottom:398.286321pt;}
.y219_c00001{bottom:398.437411pt;}
.y2fc_c00001{bottom:399.396549pt;}
.y5a0_c00001{bottom:400.180473pt;}
.y15d_c00001{bottom:400.717541pt;}
.y3e6_c00001{bottom:401.185925pt;}
.y22e_c00001{bottom:401.540707pt;}
.y5be_c00001{bottom:401.590233pt;}
.y600_c00001{bottom:401.745401pt;}
.y2a0_c00001{bottom:402.301665pt;}
.yb9_c00001{bottom:403.899423pt;}
.y414_c00001{bottom:403.953301pt;}
.y34b_c00001{bottom:404.137206pt;}
.y203_c00001{bottom:404.535400pt;}
.y558_c00001{bottom:404.928144pt;}
.y60c_c00001{bottom:405.305465pt;}
.y10f_c00001{bottom:405.626567pt;}
.y604_c00001{bottom:405.742969pt;}
.ye6_c00001{bottom:406.040596pt;}
.y63d_c00001{bottom:408.048057pt;}
.y250_c00001{bottom:408.653655pt;}
.y1bd_c00001{bottom:408.827575pt;}
.y2d3_c00001{bottom:409.322500pt;}
.y496_c00001{bottom:409.996972pt;}
.y4c0_c00001{bottom:410.863053pt;}
.y500_c00001{bottom:412.151665pt;}
.y469_c00001{bottom:414.431693pt;}
.y135_c00001{bottom:414.806630pt;}
.y3ab_c00001{bottom:416.157880pt;}
.y43c_c00001{bottom:416.522944pt;}
.y366_c00001{bottom:416.545517pt;}
.y26a_c00001{bottom:418.495426pt;}
.y56c_c00001{bottom:418.997898pt;}
.y537_c00001{bottom:420.443682pt;}
.y322_c00001{bottom:420.477110pt;}
.y651_c00001{bottom:420.552184pt;}
.y5bd_c00001{bottom:420.918584pt;}
.y18d_c00001{bottom:421.116386pt;}
.y59b_c00001{bottom:423.110232pt;}
.y5c6_c00001{bottom:423.683512pt;}
.y1d7_c00001{bottom:424.146445pt;}
.y3c8_c00001{bottom:424.197014pt;}
.y11_c00001{bottom:424.237933pt;}
.y81_c00001{bottom:425.270211pt;}
.y218_c00001{bottom:425.421302pt;}
.y2fb_c00001{bottom:426.380440pt;}
.y15c_c00001{bottom:427.701431pt;}
.y3e5_c00001{bottom:428.169816pt;}
.y22d_c00001{bottom:428.524598pt;}
.y603_c00001{bottom:428.596088pt;}
.y605_c00001{bottom:428.892728pt;}
.y29f_c00001{bottom:429.285556pt;}
.y60d_c00001{bottom:429.454680pt;}
.y4de_c00001{bottom:429.739843pt;}
.y63c_c00001{bottom:430.645080pt;}
.yb8_c00001{bottom:430.883313pt;}
.y413_c00001{bottom:430.937191pt;}
.y34a_c00001{bottom:431.121097pt;}
.y202_c00001{bottom:431.519291pt;}
.y557_c00001{bottom:431.912034pt;}
.y10e_c00001{bottom:432.610457pt;}
.ye5_c00001{bottom:433.024486pt;}
.y5f_c00001{bottom:433.223518pt;}
.y2d2_c00001{bottom:436.306391pt;}
.y495_c00001{bottom:436.980863pt;}
.y4bf_c00001{bottom:437.846943pt;}
.y24f_c00001{bottom:438.198092pt;}
.y1c8_c00001{bottom:438.794796pt;}
.y2e_c00001{bottom:438.944560pt;}
.y56_c00001{bottom:438.957887pt;}
.y4ff_c00001{bottom:439.135556pt;}
.y2d_c00001{bottom:439.411208pt;}
.y57_c00001{bottom:439.428585pt;}
.y40_c00001{bottom:439.733989pt;}
.y55_c00001{bottom:440.063632pt;}
.y2c_c00001{bottom:440.358224pt;}
.y41_c00001{bottom:440.474249pt;}
.y3f_c00001{bottom:440.492144pt;}
.y3aa_c00001{bottom:441.142964pt;}
.y54_c00001{bottom:441.175290pt;}
.y2b_c00001{bottom:441.311665pt;}
.y3e_c00001{bottom:441.411480pt;}
.y468_c00001{bottom:441.415584pt;}
.y58_c00001{bottom:441.575343pt;}
.y2f_c00001{bottom:441.631897pt;}
.y134_c00001{bottom:441.790521pt;}
.y42_c00001{bottom:442.412085pt;}
.y53_c00001{bottom:442.636491pt;}
.y2a_c00001{bottom:442.778875pt;}
.y650_c00001{bottom:443.149207pt;}
.y3d_c00001{bottom:443.368235pt;}
.y43b_c00001{bottom:443.506835pt;}
.y43_c00001{bottom:443.647574pt;}
.y52_c00001{bottom:444.136272pt;}
.y29_c00001{bottom:444.283350pt;}
.y44_c00001{bottom:445.156323pt;}
.y30_c00001{bottom:445.431649pt;}
.y269_c00001{bottom:445.479316pt;}
.y59e_c00001{bottom:445.696791pt;}
.y51_c00001{bottom:445.793228pt;}
.y525_c00001{bottom:445.909722pt;}
.y28_c00001{bottom:445.944627pt;}
.y59_c00001{bottom:446.106592pt;}
.y679_c00001{bottom:446.344542pt;}
.y3c_c00001{bottom:446.736624pt;}
.y5bc_c00001{bottom:447.261719pt;}
.y45_c00001{bottom:447.325975pt;}
.y536_c00001{bottom:447.427573pt;}
.y31_c00001{bottom:447.669198pt;}
.y18c_c00001{bottom:448.100277pt;}
.y5a_c00001{bottom:449.329795pt;}
.y46_c00001{bottom:449.332771pt;}
.y50_c00001{bottom:449.927990pt;}
.y321_c00001{bottom:450.021612pt;}
.y27_c00001{bottom:450.087675pt;}
.y3b_c00001{bottom:451.594856pt;}
.y47_c00001{bottom:452.236735pt;}
.y80_c00001{bottom:452.254102pt;}
.y387_c00001{bottom:452.321173pt;}
.y32_c00001{bottom:452.957150pt;}
.y640_c00001{bottom:453.242103pt;}
.y2fa_c00001{bottom:453.364330pt;}
.y3c7_c00001{bottom:453.741451pt;}
.y5b_c00001{bottom:454.334697pt;}
.y15b_c00001{bottom:454.685322pt;}
.y3e4_c00001{bottom:455.153706pt;}
.y22c_c00001{bottom:455.508488pt;}
.y3a_c00001{bottom:455.562742pt;}
.y4f_c00001{bottom:455.614749pt;}
.y26_c00001{bottom:455.781928pt;}
.y56b_c00001{bottom:455.975822pt;}
.y29e_c00001{bottom:456.269446pt;}
.y4dd_c00001{bottom:456.723734pt;}
.y33_c00001{bottom:457.175713pt;}
.y217_c00001{bottom:457.801995pt;}
.yb7_c00001{bottom:457.867204pt;}
.y412_c00001{bottom:457.921082pt;}
.y349_c00001{bottom:458.104987pt;}
.y201_c00001{bottom:458.503181pt;}
.y556_c00001{bottom:458.895924pt;}
.y10d_c00001{bottom:459.594347pt;}
.y48_c00001{bottom:459.696536pt;}
.ye4_c00001{bottom:460.008377pt;}
.y5c_c00001{bottom:460.249062pt;}
.y39_c00001{bottom:461.270273pt;}
.y4e_c00001{bottom:462.105976pt;}
.y25_c00001{bottom:462.186152pt;}
.y2d1_c00001{bottom:463.290281pt;}
.y494_c00001{bottom:463.964753pt;}
.y4be_c00001{bottom:464.830833pt;}
.y24_c00001{bottom:465.258807pt;}
.y38_c00001{bottom:465.329988pt;}
.y654_c00001{bottom:465.746230pt;}
.y4fe_c00001{bottom:466.119446pt;}
.y3a9_c00001{bottom:466.128048pt;}
.y49_c00001{bottom:466.846944pt;}
.y34_c00001{bottom:467.644044pt;}
.y1d6_c00001{bottom:468.263314pt;}
.y467_c00001{bottom:468.399474pt;}
.y4d_c00001{bottom:468.468115pt;}
.y133_c00001{bottom:468.774411pt;}
.y285_c00001{bottom:468.879513pt;}
.y59d_c00001{bottom:468.969750pt;}
.y5bb_c00001{bottom:469.409206pt;}
.y5d4_c00001{bottom:469.991910pt;}
.y43a_c00001{bottom:470.490725pt;}
.y23_c00001{bottom:470.598118pt;}
.y5d_c00001{bottom:470.876600pt;}
.y5c7_c00001{bottom:471.839222pt;}
.y37_c00001{bottom:472.234422pt;}
.y268_c00001{bottom:472.463207pt;}
.y5ff_c00001{bottom:472.491757pt;}
.y4c_c00001{bottom:472.704883pt;}
.y524_c00001{bottom:472.893613pt;}
.y6f_c00001{bottom:473.050126pt;}
.y333_c00001{bottom:475.041614pt;}
.y18b_c00001{bottom:475.084167pt;}
.y14b_c00001{bottom:475.554830pt;}
.y36_c00001{bottom:475.693435pt;}
.y63f_c00001{bottom:475.839062pt;}
.y535_c00001{bottom:476.812842pt;}
.y365_c00001{bottom:476.954984pt;}
.y22_c00001{bottom:477.047199pt;}
.y10_c00001{bottom:477.891957pt;}
.y4b_c00001{bottom:478.188178pt;}
.y35_c00001{bottom:478.518126pt;}
.y5e_c00001{bottom:478.841168pt;}
.y7f_c00001{bottom:479.237992pt;}
.y2f9_c00001{bottom:480.348220pt;}
.y60_c00001{bottom:480.383260pt;}
.y15a_c00001{bottom:481.669212pt;}
.y3e3_c00001{bottom:482.137596pt;}
.y22b_c00001{bottom:482.492379pt;}
.y386_c00001{bottom:483.114666pt;}
.y29d_c00001{bottom:483.253337pt;}
.y4dc_c00001{bottom:483.707624pt;}
.y4a_c00001{bottom:484.463008pt;}
.yb6_c00001{bottom:484.851094pt;}
.y411_c00001{bottom:484.904972pt;}
.y348_c00001{bottom:485.088878pt;}
.y200_c00001{bottom:485.487072pt;}
.y21_c00001{bottom:485.517349pt;}
.y10c_c00001{bottom:486.578238pt;}
.ye3_c00001{bottom:486.992267pt;}
.y653_c00001{bottom:488.343189pt;}
.y555_c00001{bottom:488.828714pt;}
.y2d0_c00001{bottom:490.274172pt;}
.y493_c00001{bottom:490.948644pt;}
.y3a8_c00001{bottom:491.113131pt;}
.y1bc_c00001{bottom:491.153260pt;}
.y4bd_c00001{bottom:491.814724pt;}
.y59c_c00001{bottom:491.899509pt;}
.y4fd_c00001{bottom:493.103337pt;}
.y5cf_c00001{bottom:493.872885pt;}
.y2b0_c00001{bottom:494.707385pt;}
.y5c0_c00001{bottom:495.127253pt;}
.y1d5_c00001{bottom:495.247204pt;}
.y466_c00001{bottom:495.383365pt;}
.y132_c00001{bottom:495.758302pt;}
.y284_c00001{bottom:495.863404pt;}
.y439_c00001{bottom:497.474616pt;}
.y63e_c00001{bottom:498.436053pt;}
.y267_c00001{bottom:499.447097pt;}
.y56a_c00001{bottom:499.582996pt;}
.y523_c00001{bottom:499.877503pt;}
.y18a_c00001{bottom:502.068058pt;}
.y364_c00001{bottom:503.938875pt;}
.yf_c00001{bottom:504.875848pt;}
.y7e_c00001{bottom:506.221883pt;}
.y2f8_c00001{bottom:507.332111pt;}
.y5d5_c00001{bottom:507.962037pt;}
.y320_c00001{bottom:508.168507pt;}
.y159_c00001{bottom:508.653103pt;}
.y581_c00001{bottom:509.017821pt;}
.y3e2_c00001{bottom:509.121487pt;}
.y22a_c00001{bottom:509.476269pt;}
.y29c_c00001{bottom:510.237227pt;}
.y4db_c00001{bottom:510.691515pt;}
.y652_c00001{bottom:510.940180pt;}
.y584_c00001{bottom:510.957043pt;}
.yb5_c00001{bottom:511.834985pt;}
.y410_c00001{bottom:511.888863pt;}
.y347_c00001{bottom:512.072768pt;}
.y1ff_c00001{bottom:512.470962pt;}
.y216_c00001{bottom:513.209537pt;}
.y10b_c00001{bottom:513.562128pt;}
.y61_c00001{bottom:513.663227pt;}
.ye2_c00001{bottom:513.976158pt;}
.y24e_c00001{bottom:515.730615pt;}
.y3a7_c00001{bottom:516.098215pt;}
.y5cb_c00001{bottom:516.459412pt;}
.y5bf_c00001{bottom:517.205876pt;}
.y2cf_c00001{bottom:517.258062pt;}
.y3c6_c00001{bottom:517.884068pt;}
.y492_c00001{bottom:517.932534pt;}
.y1bb_c00001{bottom:518.137151pt;}
.y59f_c00001{bottom:518.513204pt;}
.y4bc_c00001{bottom:518.798614pt;}
.y4fc_c00001{bottom:520.087227pt;}
.y2af_c00001{bottom:521.691276pt;}
.y1d4_c00001{bottom:522.231095pt;}
.y465_c00001{bottom:522.367255pt;}
.y131_c00001{bottom:522.742192pt;}
.y283_c00001{bottom:522.847294pt;}
.y682_c00001{bottom:523.133275pt;}
.y534_c00001{bottom:524.184550pt;}
.y438_c00001{bottom:524.458506pt;}
.y62e_c00001{bottom:524.581236pt;}
.y266_c00001{bottom:526.430988pt;}
.y522_c00001{bottom:526.861394pt;}
.y580_c00001{bottom:528.006485pt;}
.y189_c00001{bottom:529.051948pt;}
.y5d8_c00001{bottom:529.399252pt;}
.y363_c00001{bottom:530.922765pt;}
.ye_c00001{bottom:531.859738pt;}
.y7d_c00001{bottom:533.205773pt;}
.y64c_c00001{bottom:534.275251pt;}
.y2f7_c00001{bottom:534.316001pt;}
.y31f_c00001{bottom:535.152397pt;}
.y158_c00001{bottom:535.636993pt;}
.y3e1_c00001{bottom:536.105377pt;}
.y229_c00001{bottom:536.460160pt;}
.y29b_c00001{bottom:537.221118pt;}
.y4da_c00001{bottom:537.675405pt;}
.yb4_c00001{bottom:538.818875pt;}
.y40f_c00001{bottom:538.872753pt;}
.y5c5_c00001{bottom:539.038163pt;}
.y346_c00001{bottom:539.056658pt;}
.y215_c00001{bottom:540.193427pt;}
.y5c1_c00001{bottom:540.339251pt;}
.y10a_c00001{bottom:540.546019pt;}
.ye1_c00001{bottom:540.960048pt;}
.y3a6_c00001{bottom:541.083299pt;}
.y210_c00001{bottom:542.408872pt;}
.y385_c00001{bottom:542.711216pt;}
.y24d_c00001{bottom:542.714506pt;}
.y2ce_c00001{bottom:544.241953pt;}
.y3c5_c00001{bottom:544.867958pt;}
.y491_c00001{bottom:544.916425pt;}
.y57f_c00001{bottom:544.996342pt;}
.y1ba_c00001{bottom:545.121041pt;}
.y4bb_c00001{bottom:545.782505pt;}
.y4fb_c00001{bottom:547.071118pt;}
.y554_c00001{bottom:548.193232pt;}
.y2ae_c00001{bottom:548.675166pt;}
.y1d3_c00001{bottom:549.214985pt;}
.y464_c00001{bottom:549.351145pt;}
.y130_c00001{bottom:549.726083pt;}
.y282_c00001{bottom:549.831185pt;}
.y5d7_c00001{bottom:550.836435pt;}
.y533_c00001{bottom:551.168441pt;}
.y437_c00001{bottom:551.442397pt;}
.y265_c00001{bottom:553.414878pt;}
.y5a8_c00001{bottom:555.929907pt;}
.y188_c00001{bottom:556.035838pt;}
.y64b_c00001{bottom:556.872243pt;}
.y521_c00001{bottom:557.243271pt;}
.y362_c00001{bottom:557.906656pt;}
.y569_c00001{bottom:558.547793pt;}
.yd_c00001{bottom:558.843628pt;}
.y7c_c00001{bottom:560.189663pt;}
.y638_c00001{bottom:560.320626pt;}
.y5cd_c00001{bottom:560.617426pt;}
.y2f6_c00001{bottom:561.299892pt;}
.y31e_c00001{bottom:562.136288pt;}
.y157_c00001{bottom:562.620883pt;}
.y3e0_c00001{bottom:563.089268pt;}
.y228_c00001{bottom:563.444050pt;}
.y29a_c00001{bottom:564.205008pt;}
.y4d9_c00001{bottom:564.659296pt;}
.y57e_c00001{bottom:564.984409pt;}
.y40e_c00001{bottom:565.256999pt;}
.yb3_c00001{bottom:565.802766pt;}
.y345_c00001{bottom:566.040549pt;}
.y3a5_c00001{bottom:566.068383pt;}
.y214_c00001{bottom:567.177318pt;}
.y58e_c00001{bottom:567.483826pt;}
.y109_c00001{bottom:567.529909pt;}
.ye0_c00001{bottom:567.943938pt;}
.y47a_c00001{bottom:568.435476pt;}
.y678_c00001{bottom:568.964249pt;}
.y384_c00001{bottom:569.695106pt;}
.y24c_c00001{bottom:569.698396pt;}
.y2cd_c00001{bottom:571.225843pt;}
.y3c4_c00001{bottom:571.851849pt;}
.y490_c00001{bottom:571.900315pt;}
.y1b9_c00001{bottom:572.104931pt;}
.y5d6_c00001{bottom:572.273618pt;}
.y4ba_c00001{bottom:572.766395pt;}
.y96_c00001{bottom:573.759231pt;}
.y4fa_c00001{bottom:574.055008pt;}
.y553_c00001{bottom:575.177122pt;}
.y2ad_c00001{bottom:575.659056pt;}
.ya2_c00001{bottom:575.691316pt;}
.y1d2_c00001{bottom:576.198876pt;}
.y5a5_c00001{bottom:576.287186pt;}
.y463_c00001{bottom:576.335036pt;}
.y12f_c00001{bottom:576.709973pt;}
.y532_c00001{bottom:578.152331pt;}
.y436_c00001{bottom:578.426287pt;}
.y281_c00001{bottom:579.375654pt;}
.y64f_c00001{bottom:579.469298pt;}
.y264_c00001{bottom:580.398769pt;}
.y70_c00001{bottom:582.947188pt;}
.y187_c00001{bottom:583.019729pt;}
.y361_c00001{bottom:584.890546pt;}
.y57d_c00001{bottom:584.972476pt;}
.y5c4_c00001{bottom:585.194993pt;}
.yc_c00001{bottom:585.827519pt;}
.y62d_c00001{bottom:586.465777pt;}
.y7b_c00001{bottom:587.173554pt;}
.y2f5_c00001{bottom:588.283782pt;}
.y31d_c00001{bottom:589.120178pt;}
.y58d_c00001{bottom:589.562449pt;}
.y156_c00001{bottom:589.604774pt;}
.y3df_c00001{bottom:590.073158pt;}
.y227_c00001{bottom:590.427941pt;}
.y3a4_c00001{bottom:591.053466pt;}
.y4d8_c00001{bottom:591.643186pt;}
.yb2_c00001{bottom:592.786656pt;}
.y344_c00001{bottom:593.024439pt;}
.y213_c00001{bottom:594.161208pt;}
.y108_c00001{bottom:594.513800pt;}
.ydf_c00001{bottom:594.927829pt;}
.y5d9_c00001{bottom:595.344177pt;}
.y383_c00001{bottom:596.678996pt;}
.y24b_c00001{bottom:596.682287pt;}
.y2cc_c00001{bottom:598.209734pt;}
.y5a4_c00001{bottom:598.469713pt;}
.y3c3_c00001{bottom:598.835739pt;}
.y48f_c00001{bottom:598.884205pt;}
.y1b8_c00001{bottom:599.088822pt;}
.y4b9_c00001{bottom:599.750286pt;}
.y299_c00001{bottom:600.403909pt;}
.y1fe_c00001{bottom:600.621251pt;}
.y95_c00001{bottom:600.743121pt;}
.y4f9_c00001{bottom:601.038899pt;}
.y64e_c00001{bottom:602.066289pt;}
.y552_c00001{bottom:602.161013pt;}
.y2ac_c00001{bottom:602.642947pt;}
.y1d1_c00001{bottom:603.182766pt;}
.y462_c00001{bottom:603.318926pt;}
.y12e_c00001{bottom:603.693864pt;}
.y57c_c00001{bottom:604.960543pt;}
.y531_c00001{bottom:605.136222pt;}
.y435_c00001{bottom:605.410178pt;}
.y5c3_c00001{bottom:607.280535pt;}
.y263_c00001{bottom:607.382659pt;}
.y40d_c00001{bottom:609.222469pt;}
.y186_c00001{bottom:610.003619pt;}
.y58c_c00001{bottom:611.641043pt;}
.y360_c00001{bottom:611.874437pt;}
.yb_c00001{bottom:612.811409pt;}
.y7a_c00001{bottom:614.157444pt;}
.y520_c00001{bottom:614.326871pt;}
.y637_c00001{bottom:614.612685pt;}
.y2f4_c00001{bottom:615.267673pt;}
.y3a3_c00001{bottom:616.038550pt;}
.y31c_c00001{bottom:616.104069pt;}
.y155_c00001{bottom:616.588664pt;}
.y3de_c00001{bottom:617.057049pt;}
.y226_c00001{bottom:617.411831pt;}
.y4d7_c00001{bottom:618.627077pt;}
.yb1_c00001{bottom:619.770547pt;}
.y343_c00001{bottom:620.008330pt;}
.y5ab_c00001{bottom:620.652333pt;}
.y212_c00001{bottom:621.145098pt;}
.y107_c00001{bottom:621.497690pt;}
.yde_c00001{bottom:621.911719pt;}
.y382_c00001{bottom:623.662887pt;}
.y24a_c00001{bottom:623.666177pt;}
.y64d_c00001{bottom:624.663270pt;}
.y57b_c00001{bottom:624.948610pt;}
.y2cb_c00001{bottom:625.193624pt;}
.y3c2_c00001{bottom:625.819630pt;}
.y48e_c00001{bottom:625.868096pt;}
.y1b7_c00001{bottom:626.072712pt;}
.y4b8_c00001{bottom:626.734176pt;}
.y1fd_c00001{bottom:627.605142pt;}
.y94_c00001{bottom:627.727012pt;}
.y4f8_c00001{bottom:628.022789pt;}
.y551_c00001{bottom:629.144903pt;}
.y5c2_c00001{bottom:629.366083pt;}
.y2ab_c00001{bottom:629.626837pt;}
.y1d0_c00001{bottom:630.166657pt;}
.y12d_c00001{bottom:630.677754pt;}
.y5d3_c00001{bottom:631.810297pt;}
.y530_c00001{bottom:632.120112pt;}
.y5fe_c00001{bottom:634.310240pt;}
.y262_c00001{bottom:634.366550pt;}
.y461_c00001{bottom:634.596599pt;}
.y434_c00001{bottom:635.571716pt;}
.y40c_c00001{bottom:636.206360pt;}
.y185_c00001{bottom:636.987510pt;}
.y63b_c00001{bottom:637.209676pt;}
.y58f_c00001{bottom:638.779324pt;}
.y35f_c00001{bottom:638.858327pt;}
.ya_c00001{bottom:639.795300pt;}
.y3a2_c00001{bottom:641.023634pt;}
.y51f_c00001{bottom:641.310762pt;}
.y2f3_c00001{bottom:642.251563pt;}
.y5a7_c00001{bottom:642.834911pt;}
.y31b_c00001{bottom:643.087959pt;}
.y154_c00001{bottom:643.572555pt;}
.y3dd_c00001{bottom:644.040939pt;}
.y225_c00001{bottom:644.395722pt;}
.y57a_c00001{bottom:644.936677pt;}
.y4d6_c00001{bottom:645.610967pt;}
.yb0_c00001{bottom:646.754437pt;}
.y342_c00001{bottom:646.992220pt;}
.y64a_c00001{bottom:647.249832pt;}
.y79_c00001{bottom:647.537536pt;}
.y280_c00001{bottom:647.717499pt;}
.y106_c00001{bottom:648.481581pt;}
.ydd_c00001{bottom:648.895610pt;}
.y381_c00001{bottom:650.646777pt;}
.y249_c00001{bottom:650.650068pt;}
.y2ca_c00001{bottom:652.177514pt;}
.y3c1_c00001{bottom:652.803520pt;}
.y48d_c00001{bottom:652.851986pt;}
.y1b6_c00001{bottom:653.056603pt;}
.y211_c00001{bottom:653.188826pt;}
.y5ca_c00001{bottom:653.219442pt;}
.y4b7_c00001{bottom:653.718067pt;}
.y1fc_c00001{bottom:654.589032pt;}
.y4f7_c00001{bottom:655.006680pt;}
.y550_c00001{bottom:656.128794pt;}
.y2aa_c00001{bottom:656.610728pt;}
.y1cf_c00001{bottom:657.150547pt;}
.y52f_c00001{bottom:659.104003pt;}
.y63a_c00001{bottom:659.806667pt;}
.y93_c00001{bottom:661.048748pt;}
.y261_c00001{bottom:661.350440pt;}
.y40b_c00001{bottom:663.190250pt;}
.y184_c00001{bottom:663.971400pt;}
.y677_c00001{bottom:664.609611pt;}
.y12c_c00001{bottom:664.616598pt;}
.y599_c00001{bottom:664.835144pt;}
.y579_c00001{bottom:664.924744pt;}
.y5a6_c00001{bottom:665.017486pt;}
.y35e_c00001{bottom:665.842218pt;}
.y3a1_c00001{bottom:666.008718pt;}
.y9_c00001{bottom:666.779190pt;}
.y2f2_c00001{bottom:669.235454pt;}
.y298_c00001{bottom:669.552895pt;}
.y649_c00001{bottom:669.846785pt;}
.y31a_c00001{bottom:670.071850pt;}
.y153_c00001{bottom:670.556445pt;}
.y5e7_c00001{bottom:670.779831pt;}
.y3dc_c00001{bottom:671.024830pt;}
.y51e_c00001{bottom:671.692614pt;}
.y4d5_c00001{bottom:672.594858pt;}
.yaf_c00001{bottom:673.738328pt;}
.y341_c00001{bottom:673.976111pt;}
.y27f_c00001{bottom:674.701389pt;}
.y105_c00001{bottom:675.465471pt;}
.ydc_c00001{bottom:675.879500pt;}
.y380_c00001{bottom:677.630668pt;}
.y248_c00001{bottom:677.633958pt;}
.y2c9_c00001{bottom:679.161405pt;}
.y591_c00001{bottom:679.364596pt;}
.y239_c00001{bottom:679.774568pt;}
.y3c0_c00001{bottom:679.787411pt;}
.y48c_c00001{bottom:679.835877pt;}
.y1b5_c00001{bottom:680.040493pt;}
.y1fb_c00001{bottom:681.572923pt;}
.y4f6_c00001{bottom:681.990570pt;}
.y639_c00001{bottom:682.403696pt;}
.y54f_c00001{bottom:683.112684pt;}
.y2a9_c00001{bottom:683.594618pt;}
.y4b6_c00001{bottom:684.099957pt;}
.y1ce_c00001{bottom:684.134438pt;}
.y598_c00001{bottom:684.888111pt;}
.y578_c00001{bottom:684.912811pt;}
.y52e_c00001{bottom:686.087893pt;}
.y5a3_c00001{bottom:687.200026pt;}
.y260_c00001{bottom:688.334330pt;}
.y460_c00001{bottom:689.805936pt;}
.y40a_c00001{bottom:690.174140pt;}
.y183_c00001{bottom:690.955291pt;}
.y3a0_c00001{bottom:690.993801pt;}
.y44c_c00001{bottom:691.717692pt;}
.y35d_c00001{bottom:692.826108pt;}
.y5e8_c00001{bottom:693.614362pt;}
.y8_c00001{bottom:693.763081pt;}
.y648_c00001{bottom:694.434986pt;}
.y5f4_c00001{bottom:695.817485pt;}
.y2f1_c00001{bottom:696.219344pt;}
.y297_c00001{bottom:696.536786pt;}
.y319_c00001{bottom:697.055740pt;}
.y681_c00001{bottom:697.428788pt;}
.y152_c00001{bottom:697.540336pt;}
.y3db_c00001{bottom:698.008720pt;}
.y4d4_c00001{bottom:699.578748pt;}
.yae_c00001{bottom:700.722218pt;}
.y340_c00001{bottom:700.960001pt;}
.y590_c00001{bottom:701.390921pt;}
.y27e_c00001{bottom:701.685280pt;}
.y104_c00001{bottom:702.449362pt;}
.ydb_c00001{bottom:702.863391pt;}
.y37f_c00001{bottom:704.614558pt;}
.y247_c00001{bottom:704.617849pt;}
.y577_c00001{bottom:704.900878pt;}
.y2c8_c00001{bottom:706.145295pt;}
.y62c_c00001{bottom:706.550063pt;}
.y3bf_c00001{bottom:706.771301pt;}
.y597_c00001{bottom:706.874985pt;}
.y1b4_c00001{bottom:707.024384pt;}
.y1fa_c00001{bottom:708.556813pt;}
.y4f5_c00001{bottom:708.974460pt;}
.y5aa_c00001{bottom:709.382643pt;}
.y54e_c00001{bottom:710.096574pt;}
.y2a8_c00001{bottom:710.578509pt;}
.y1cd_c00001{bottom:711.118328pt;}
.y48b_c00001{bottom:711.686871pt;}
.y52d_c00001{bottom:713.071784pt;}
.y25f_c00001{bottom:715.318221pt;}
.y39f_c00001{bottom:715.978885pt;}
.y45f_c00001{bottom:716.789826pt;}
.y647_c00001{bottom:717.031977pt;}
.y409_c00001{bottom:717.158031pt;}
.y44b_c00001{bottom:718.701583pt;}
.y12b_c00001{bottom:719.053655pt;}
.y5de_c00001{bottom:719.761001pt;}
.y35c_c00001{bottom:719.809998pt;}
.y182_c00001{bottom:720.337770pt;}
.y7_c00001{bottom:720.746971pt;}
.y5ee_c00001{bottom:720.855141pt;}
.y78_c00001{bottom:720.996023pt;}
.y173_c00001{bottom:721.324016pt;}
.y2f0_c00001{bottom:723.203235pt;}
.y296_c00001{bottom:723.520676pt;}
.y318_c00001{bottom:724.039631pt;}
.y151_c00001{bottom:724.524226pt;}
.y576_c00001{bottom:724.888945pt;}
.y592_c00001{bottom:724.990610pt;}
.y3da_c00001{bottom:724.992611pt;}
.y4d3_c00001{bottom:726.562639pt;}
.y59a_c00001{bottom:727.633423pt;}
.yad_c00001{bottom:727.706108pt;}
.y33f_c00001{bottom:727.943892pt;}
.y92_c00001{bottom:728.319810pt;}
.y27d_c00001{bottom:728.669170pt;}
.y103_c00001{bottom:729.433252pt;}
.yda_c00001{bottom:729.847281pt;}
.y37e_c00001{bottom:731.598449pt;}
.y246_c00001{bottom:731.601739pt;}
.y5a9_c00001{bottom:731.969125pt;}
.y2c7_c00001{bottom:733.129186pt;}
.y51d_c00001{bottom:733.560714pt;}
.y3be_c00001{bottom:733.755191pt;}
.y1b3_c00001{bottom:734.008274pt;}
.y633_c00001{bottom:734.521858pt;}
.y1f9_c00001{bottom:734.941088pt;}
.y4f4_c00001{bottom:735.958351pt;}
.y54d_c00001{bottom:737.080465pt;}
.y2a7_c00001{bottom:737.562399pt;}
.y1cc_c00001{bottom:738.102219pt;}
.y646_c00001{bottom:739.629006pt;}
.y52c_c00001{bottom:740.055674pt;}
.y4b5_c00001{bottom:740.840010pt;}
.y39e_c00001{bottom:740.963969pt;}
.y5e1_c00001{bottom:741.034203pt;}
.y45e_c00001{bottom:743.773717pt;}
.ycd_c00001{bottom:744.021169pt;}
.y408_c00001{bottom:744.141921pt;}
.y5f0_c00001{bottom:744.332913pt;}
.y575_c00001{bottom:744.877012pt;}
.y44a_c00001{bottom:745.685473pt;}
.y12a_c00001{bottom:746.037545pt;}
.y35b_c00001{bottom:746.793889pt;}
.y6_c00001{bottom:747.730862pt;}
.y77_c00001{bottom:747.979914pt;}
.y172_c00001{bottom:748.307906pt;}
.y657_c00001{bottom:748.909281pt;}
.y2ef_c00001{bottom:750.187125pt;}
.y295_c00001{bottom:750.504567pt;}
.y241_c00001{bottom:750.685651pt;}
.y273_c00001{bottom:750.846556pt;}
.y317_c00001{bottom:751.023521pt;}
.y150_c00001{bottom:751.508117pt;}
.y5a2_c00001{bottom:751.969514pt;}
.y3d9_c00001{bottom:751.976501pt;}
.y5c9_c00001{bottom:752.939828pt;}
.y4d2_c00001{bottom:753.546529pt;}
.y595_c00001{bottom:754.134046pt;}
.y33e_c00001{bottom:754.927782pt;}
.y91_c00001{bottom:755.303700pt;}
.y27c_c00001{bottom:755.653061pt;}
.y102_c00001{bottom:756.417142pt;}
.yd9_c00001{bottom:756.831172pt;}
.y632_c00001{bottom:757.115997pt;}
.y37d_c00001{bottom:758.582339pt;}
.y245_c00001{bottom:758.585630pt;}
.yac_c00001{bottom:759.087336pt;}
.y2c6_c00001{bottom:760.113076pt;}
.y51c_c00001{bottom:760.544605pt;}
.y3bd_c00001{bottom:760.739082pt;}
.y1b2_c00001{bottom:760.992165pt;}
.y642_c00001{bottom:762.215530pt;}
.y5e0_c00001{bottom:762.307444pt;}
.y4f3_c00001{bottom:762.942241pt;}
.y54c_c00001{bottom:764.064355pt;}
.y574_c00001{bottom:764.865079pt;}
.y1cb_c00001{bottom:765.086109pt;}
.y39d_c00001{bottom:765.949053pt;}
.y2a6_c00001{bottom:766.807378pt;}
.y52b_c00001{bottom:767.039564pt;}
.y4b4_c00001{bottom:767.823900pt;}
.y48a_c00001{bottom:768.053231pt;}
.y5f3_c00001{bottom:769.370570pt;}
.y45d_c00001{bottom:770.757607pt;}
.ycc_c00001{bottom:771.005059pt;}
.y407_c00001{bottom:771.125812pt;}
.y656_c00001{bottom:771.506310pt;}
.y181_c00001{bottom:772.173602pt;}
.y449_c00001{bottom:772.669364pt;}
.y129_c00001{bottom:773.021436pt;}
.y5a1_c00001{bottom:773.629827pt;}
.y35a_c00001{bottom:773.777779pt;}
.y5_c00001{bottom:774.714752pt;}
.y76_c00001{bottom:774.963804pt;}
.y5c8_c00001{bottom:775.224710pt;}
.y594_c00001{bottom:776.416857pt;}
.y2ee_c00001{bottom:776.571400pt;}
.y294_c00001{bottom:777.488457pt;}
.y240_c00001{bottom:777.669541pt;}
.y316_c00001{bottom:778.007412pt;}
.y14f_c00001{bottom:778.492007pt;}
.y171_c00001{bottom:779.450462pt;}
.y636_c00001{bottom:779.710179pt;}
.y4d1_c00001{bottom:780.530419pt;}
.y3d8_c00001{bottom:780.822414pt;}
.y33d_c00001{bottom:781.911673pt;}
.y90_c00001{bottom:782.287591pt;}
.y101_c00001{bottom:783.401033pt;}
.y4a6_c00001{bottom:783.520815pt;}
.yd8_c00001{bottom:783.815062pt;}
.y641_c00001{bottom:784.812559pt;}
.y573_c00001{bottom:784.853146pt;}
.y5e6_c00001{bottom:785.141935pt;}
.y27b_c00001{bottom:785.197492pt;}
.y37c_c00001{bottom:785.566230pt;}
.y244_c00001{bottom:785.569520pt;}
.y42b_c00001{bottom:786.911522pt;}
.y2c5_c00001{bottom:787.096967pt;}
.y1b1_c00001{bottom:787.376398pt;}
.y51b_c00001{bottom:787.528495pt;}
.y3bc_c00001{bottom:787.722972pt;}
.y676_c00001{bottom:790.166441pt;}
.y39c_c00001{bottom:790.934136pt;}
.y54b_c00001{bottom:791.048246pt;}
.y1ca_c00001{bottom:792.070000pt;}
.y1f8_c00001{bottom:793.170799pt;}
.y52a_c00001{bottom:794.023455pt;}
.y659_c00001{bottom:794.100450pt;}
.y5ef_c00001{bottom:794.408223pt;}
.y4b3_c00001{bottom:794.807791pt;}
.y489_c00001{bottom:795.037122pt;}
.y5d1_c00001{bottom:796.216386pt;}
.y5cc_c00001{bottom:796.811817pt;}
.y4f2_c00001{bottom:796.881047pt;}
.y45c_c00001{bottom:797.741498pt;}
.ycb_c00001{bottom:797.988950pt;}
.y406_c00001{bottom:798.109702pt;}
.y593_c00001{bottom:798.699708pt;}
.y180_c00001{bottom:799.157493pt;}
.y448_c00001{bottom:799.653254pt;}
.y128_c00001{bottom:800.005326pt;}
.y359_c00001{bottom:800.761670pt;}
.y4_c00001{bottom:801.698643pt;}
.y75_c00001{bottom:801.947695pt;}
.y635_c00001{bottom:802.304357pt;}
.y5fb_c00001{bottom:803.590059pt;}
.y293_c00001{bottom:804.472348pt;}
.y23f_c00001{bottom:804.653432pt;}
.y572_c00001{bottom:804.841213pt;}
.y14e_c00001{bottom:804.876243pt;}
.y315_c00001{bottom:804.991302pt;}
.y645_c00001{bottom:807.409550pt;}
.y4d0_c00001{bottom:807.514310pt;}
.y5df_c00001{bottom:808.290293pt;}
.y33c_c00001{bottom:808.895563pt;}
.y454_c00001{bottom:810.099848pt;}
.y279_c00001{bottom:810.211105pt;}
.y100_c00001{bottom:810.384923pt;}
.y4a5_c00001{bottom:810.504705pt;}
.yd7_c00001{bottom:810.798953pt;}
.y2ed_c00001{bottom:811.667879pt;}
.y37b_c00001{bottom:812.550120pt;}
.y243_c00001{bottom:812.553410pt;}
.y8f_c00001{bottom:813.455382pt;}
.y42a_c00001{bottom:813.895413pt;}
.y51a_c00001{bottom:814.512386pt;}
.y3bb_c00001{bottom:814.706863pt;}
.y39b_c00001{bottom:815.919220pt;}
.y2ba_c00001{bottom:816.492972pt;}
.y658_c00001{bottom:816.694628pt;}
.y5e9_c00001{bottom:817.886014pt;}
.y54a_c00001{bottom:818.032136pt;}
.y2c4_c00001{bottom:818.478214pt;}
.y5d0_c00001{bottom:818.799336pt;}
.yab_c00001{bottom:818.859788pt;}
.y5ce_c00001{bottom:818.994376pt;}
.y1c9_c00001{bottom:819.053890pt;}
.y1f7_c00001{bottom:820.154690pt;}
.y529_c00001{bottom:821.007345pt;}
.y4b2_c00001{bottom:821.791681pt;}
.y488_c00001{bottom:822.021012pt;}
.y596_c00001{bottom:822.553028pt;}
.y571_c00001{bottom:824.829280pt;}
.y634_c00001{bottom:824.898497pt;}
.yca_c00001{bottom:824.972840pt;}
.y405_c00001{bottom:826.086377pt;}
.y17f_c00001{bottom:826.141383pt;}
.y5fa_c00001{bottom:826.310078pt;}
.y127_c00001{bottom:826.989217pt;}
.y45b_c00001{bottom:827.708585pt;}
.y358_c00001{bottom:827.745560pt;}
.y447_c00001{bottom:827.816005pt;}
.y3_c00001{bottom:828.682533pt;}
.y74_c00001{bottom:828.931585pt;}
.y5dd_c00001{bottom:829.563553pt;}
.y644_c00001{bottom:830.006542pt;}
.y292_c00001{bottom:831.456238pt;}
.y23e_c00001{bottom:831.637322pt;}
.y33b_c00001{bottom:835.879454pt;}
.y453_c00001{bottom:837.083739pt;}
.y278_c00001{bottom:837.194996pt;}
.yff_c00001{bottom:837.368814pt;}
.y4a4_c00001{bottom:837.488596pt;}
.yd6_c00001{bottom:837.782843pt;}
.y4cf_c00001{bottom:838.265909pt;}
.y2ec_c00001{bottom:838.651769pt;}
.y37a_c00001{bottom:839.534011pt;}
.y429_c00001{bottom:840.879303pt;}
.y170_c00001{bottom:840.931832pt;}
.y314_c00001{bottom:841.112216pt;}
.y5ea_c00001{bottom:841.363770pt;}
.y519_c00001{bottom:841.496276pt;}
.y62f_c00001{bottom:841.688496pt;}
.y3ba_c00001{bottom:841.690753pt;}
.y39a_c00001{bottom:842.103624pt;}
.y2b9_c00001{bottom:843.476863pt;}
.y570_c00001{bottom:844.817347pt;}
.y549_c00001{bottom:845.016027pt;}
.yaa_c00001{bottom:845.843678pt;}
.y242_c00001{bottom:845.875128pt;}
.y1b0_c00001{bottom:846.037780pt;}
.y1f6_c00001{bottom:847.138580pt;}
.y528_c00001{bottom:847.991236pt;}
.y4b1_c00001{bottom:848.775572pt;}
.y487_c00001{bottom:849.004903pt;}
.y5f7_c00001{bottom:849.030115pt;}
.y5dc_c00001{bottom:850.836777pt;}
.y62b_c00001{bottom:851.043689pt;}
.y27a_c00001{bottom:851.048708pt;}
.y14d_c00001{bottom:851.248590pt;}
.yc9_c00001{bottom:851.956730pt;}
.y643_c00001{bottom:852.603533pt;}
.y17e_c00001{bottom:853.125274pt;}
.y126_c00001{bottom:853.973107pt;}
.y2_c00001{bottom:855.066808pt;}
.y73_c00001{bottom:855.915476pt;}
.y291_c00001{bottom:858.440129pt;}
.y23d_c00001{bottom:858.621213pt;}
.y587_c00001{bottom:859.092672pt;}
.y5b8_c00001{bottom:861.592614pt;}
.y357_c00001{bottom:862.096084pt;}
.y33a_c00001{bottom:862.863344pt;}
.y479_c00001{bottom:862.936868pt;}
.y452_c00001{bottom:864.067629pt;}
.y277_c00001{bottom:864.178886pt;}
.yfe_c00001{bottom:864.352704pt;}
.y4a3_c00001{bottom:864.472486pt;}
.y56f_c00001{bottom:864.805414pt;}
.y2eb_c00001{bottom:865.635660pt;}
.y5f2_c00001{bottom:866.401442pt;}
.y379_c00001{bottom:866.517901pt;}
.y428_c00001{bottom:867.863194pt;}
.y16f_c00001{bottom:867.915723pt;}
.y3b9_c00001{bottom:868.074989pt;}
.yd5_c00001{bottom:868.238465pt;}
.y518_c00001{bottom:868.480167pt;}
.y510_c00001{bottom:868.879644pt;}
.y680_c00001{bottom:870.100131pt;}
.y2b8_c00001{bottom:870.460753pt;}
.y548_c00001{bottom:871.400301pt;}
.ya9_c00001{bottom:872.827569pt;}
.y1af_c00001{bottom:873.021671pt;}
.y5fc_c00001{bottom:873.177909pt;}
.y5e5_c00001{bottom:873.671285pt;}
.y1f5_c00001{bottom:874.122471pt;}
.y404_c00001{bottom:874.138080pt;}
.y527_c00001{bottom:874.975126pt;}
.y4b0_c00001{bottom:875.759462pt;}
.y486_c00001{bottom:875.988793pt;}
.y9a_c00001{bottom:878.032599pt;}
.y14c_c00001{bottom:878.232481pt;}
.y675_c00001{bottom:878.587923pt;}
.y17d_c00001{bottom:880.109164pt;}
.y125_c00001{bottom:880.956998pt;}
.yc8_c00001{bottom:881.339245pt;}
.y72_c00001{bottom:882.899366pt;}
.y56e_c00001{bottom:884.793481pt;}
.y290_c00001{bottom:884.824403pt;}
.y23c_c00001{bottom:885.605103pt;}
.y629_c00001{bottom:887.583295pt;}
.y65b_c00001{bottom:887.980853pt;}
.y339_c00001{bottom:889.847234pt;}
.y399_c00001{bottom:890.425191pt;}
.y3f6_c00001{bottom:890.724359pt;}
.y276_c00001{bottom:891.162776pt;}
.y5ed_c00001{bottom:891.439080pt;}
.y4a2_c00001{bottom:891.456377pt;}
.y478_c00001{bottom:892.481276pt;}
.y2ea_c00001{bottom:892.619550pt;}
.y378_c00001{bottom:892.902137pt;}
.y19c_c00001{bottom:893.046342pt;}
.y16e_c00001{bottom:894.899613pt;}
.y50f_c00001{bottom:895.863534pt;}
.y451_c00001{bottom:896.448287pt;}
.y427_c00001{bottom:897.407625pt;}
.y2b7_c00001{bottom:897.444643pt;}
.y5f6_c00001{bottom:897.589841pt;}
.yfd_c00001{bottom:899.138738pt;}
.ya8_c00001{bottom:899.811459pt;}
.y1ae_c00001{bottom:900.005561pt;}
.y5e2_c00001{bottom:900.817300pt;}
.y1f4_c00001{bottom:901.106361pt;}
.y403_c00001{bottom:901.121971pt;}
.y485_c00001{bottom:902.972684pt;}
.y526_c00001{bottom:904.210905pt;}
.y56d_c00001{bottom:904.781548pt;}
.y99_c00001{bottom:905.016489pt;}
.y1f_c00001{bottom:905.216371pt;}
.y4af_c00001{bottom:905.920985pt;}
.y5ad_c00001{bottom:907.067514pt;}
.y17c_c00001{bottom:907.093055pt;}
.y124_c00001{bottom:907.940888pt;}
.y23b_c00001{bottom:912.588994pt;}
.y5ec_c00001{bottom:914.916852pt;}
.y398_c00001{bottom:915.410275pt;}
.y71_c00001{bottom:916.499771pt;}
.y3f5_c00001{bottom:917.708249pt;}
.y275_c00001{bottom:918.146667pt;}
.y2e9_c00001{bottom:919.603441pt;}
.y5f9_c00001{bottom:920.309859pt;}
.y4a1_c00001{bottom:921.000808pt;}
.y16d_c00001{bottom:921.883504pt;}
.y338_c00001{bottom:922.568737pt;}
.y50e_c00001{bottom:922.847425pt;}
.y356_c00001{bottom:923.239091pt;}
.y5e4_c00001{bottom:923.651792pt;}
.y2b6_c00001{bottom:924.428534pt;}
.ya7_c00001{bottom:926.795350pt;}
.y1ad_c00001{bottom:926.989452pt;}
.y67f_c00001{bottom:927.862257pt;}
.y1f3_c00001{bottom:928.090252pt;}
.y402_c00001{bottom:928.105861pt;}
.y5ac_c00001{bottom:928.482633pt;}
.y484_c00001{bottom:929.356920pt;}
.y561_c00001{bottom:930.499548pt;}
.y98_c00001{bottom:932.000380pt;}
.y1e_c00001{bottom:932.200262pt;}
.y674_c00001{bottom:932.631591pt;}
.y17b_c00001{bottom:934.325143pt;}
.y123_c00001{bottom:938.102407pt;}
.y5f1_c00001{bottom:939.954505pt;}
.y397_c00001{bottom:940.395359pt;}
.y5f8_c00001{bottom:943.029897pt;}
.y3f4_c00001{bottom:944.692140pt;}
.y142_c00001{bottom:945.192501pt;}
.y11b_c00001{bottom:945.511058pt;}
.y5db_c00001{bottom:945.923471pt;}
.y631_c00001{bottom:946.089820pt;}
.y2e8_c00001{bottom:946.587331pt;}
.y23a_c00001{bottom:948.319284pt;}
.y16c_c00001{bottom:948.867394pt;}
.y274_c00001{bottom:948.875357pt;}
.y477_c00001{bottom:949.288332pt;}
.y50d_c00001{bottom:949.831315pt;}
.y5af_c00001{bottom:949.897730pt;}
.y19b_c00001{bottom:949.898869pt;}
.y355_c00001{bottom:950.222981pt;}
.y2b5_c00001{bottom:951.412424pt;}
.y450_c00001{bottom:953.111359pt;}
.ya6_c00001{bottom:953.779240pt;}
.y1ac_c00001{bottom:953.973342pt;}
.yfc_c00001{bottom:954.963810pt;}
.y426_c00001{bottom:954.993723pt;}
.y1f2_c00001{bottom:955.074142pt;}
.y401_c00001{bottom:955.089752pt;}
.y547_c00001{bottom:955.406875pt;}
.yc7_c00001{bottom:956.023967pt;}
.y560_c00001{bottom:957.483439pt;}
.y4cd_c00001{bottom:957.490827pt;}
.y97_c00001{bottom:958.984270pt;}
.y1d_c00001{bottom:959.184152pt;}
.y5eb_c00001{bottom:964.992123pt;}
.y396_c00001{bottom:965.380443pt;}
.y5f5_c00001{bottom:965.749915pt;}
.y5da_c00001{bottom:967.196693pt;}
.y630_c00001{bottom:968.686830pt;}
.y3f3_c00001{bottom:971.676030pt;}
.y141_c00001{bottom:972.176392pt;}
.y11a_c00001{bottom:972.494949pt;}
.y5ae_c00001{bottom:972.872689pt;}
.y2e7_c00001{bottom:972.971587pt;}
.y16b_c00001{bottom:975.851285pt;}
.y476_c00001{bottom:976.272222pt;}
.y19a_c00001{bottom:976.882760pt;}
.y354_c00001{bottom:977.206872pt;}
.y672_c00001{bottom:977.372077pt;}
.y2b4_c00001{bottom:978.396315pt;}
.y50c_c00001{bottom:979.372406pt;}
.y44f_c00001{bottom:980.095249pt;}
.ya5_c00001{bottom:980.763131pt;}
.y1ab_c00001{bottom:980.957233pt;}
.y337_c00001{bottom:981.157115pt;}
.yfb_c00001{bottom:981.947700pt;}
.y425_c00001{bottom:981.977614pt;}
.y1f1_c00001{bottom:982.058033pt;}
.y400_c00001{bottom:982.073642pt;}
.y546_c00001{bottom:982.390766pt;}
.yc6_c00001{bottom:983.007857pt;}
.y55f_c00001{bottom:984.467329pt;}
.y4cc_c00001{bottom:984.474717pt;}
.y8e_c00001{bottom:985.968161pt;}
.y1c_c00001{bottom:986.168042pt;}
.y564_c00001{bottom:989.641033pt;}
.y5e3_c00001{bottom:990.031204pt;}
.y395_c00001{bottom:990.365526pt;}
.y62a_c00001{bottom:992.397386pt;}
.y5b0_c00001{bottom:995.847658pt;}
.y582_c00001{bottom:996.017637pt;}
.y3f2_c00001{bottom:998.659921pt;}
.y140_c00001{bottom:999.160282pt;}
.y119_c00001{bottom:999.478839pt;}
.y671_c00001{bottom:999.696645pt;}
.y16a_c00001{bottom:1002.835175pt;}
.y475_c00001{bottom:1003.256113pt;}
.y199_c00001{bottom:1003.866650pt;}
.y353_c00001{bottom:1004.190762pt;}
.y6d_c00001{bottom:1005.060100pt;}
.y2b3_c00001{bottom:1005.380205pt;}
.y6b_c00001{bottom:1006.246061pt;}
.y44e_c00001{bottom:1007.079140pt;}
.ya4_c00001{bottom:1007.747021pt;}
.y1aa_c00001{bottom:1007.941123pt;}
.y336_c00001{bottom:1008.141005pt;}
.yfa_c00001{bottom:1008.931591pt;}
.y424_c00001{bottom:1008.961504pt;}
.y1f0_c00001{bottom:1009.041923pt;}
.y3ff_c00001{bottom:1009.057533pt;}
.y545_c00001{bottom:1009.374656pt;}
.yc5_c00001{bottom:1009.991747pt;}
.y55e_c00001{bottom:1011.451219pt;}
.y4cb_c00001{bottom:1011.458608pt;}
.y305_c00001{bottom:1012.201766pt;}
.y8d_c00001{bottom:1012.952051pt;}
.y1b_c00001{bottom:1013.151933pt;}
.y394_c00001{bottom:1015.350610pt;}
.y563_c00001{bottom:1015.625520pt;}
.y6a_c00001{bottom:1022.236514pt;}
.y6e_c00001{bottom:1025.517975pt;}
.y1a7_c00001{bottom:1025.517985pt;}
.y3f1_c00001{bottom:1025.643811pt;}
.y13f_c00001{bottom:1026.144173pt;}
.y517_c00001{bottom:1026.384128pt;}
.y28f_c00001{bottom:1026.384137pt;}
.y118_c00001{bottom:1026.462730pt;}
.y5d2_c00001{bottom:1027.117916pt;}
.y586_c00001{bottom:1028.705097pt;}
.y628_c00001{bottom:1028.757849pt;}
.y5fd_c00001{bottom:1029.617852pt;}
.y169_c00001{bottom:1029.819065pt;}
.y474_c00001{bottom:1030.240003pt;}
.y198_c00001{bottom:1030.850541pt;}
.y352_c00001{bottom:1031.174653pt;}
.y5b7_c00001{bottom:1031.205020pt;}
.y65a_c00001{bottom:1031.257772pt;}
.y2b2_c00001{bottom:1032.364096pt;}
.y50b_c00001{bottom:1033.299270pt;}
.y44d_c00001{bottom:1034.063030pt;}
.ya3_c00001{bottom:1034.730912pt;}
.y1a9_c00001{bottom:1034.925014pt;}
.y335_c00001{bottom:1035.124896pt;}
.yf9_c00001{bottom:1035.915481pt;}
.y423_c00001{bottom:1035.945395pt;}
.y1ef_c00001{bottom:1036.025814pt;}
.y3fe_c00001{bottom:1036.041423pt;}
.y544_c00001{bottom:1036.358547pt;}
.yc4_c00001{bottom:1036.975638pt;}
.y55d_c00001{bottom:1038.435110pt;}
.y4ca_c00001{bottom:1038.442498pt;}
.y304_c00001{bottom:1039.185657pt;}
.y8c_c00001{bottom:1039.935941pt;}
.y1a_c00001{bottom:1040.135823pt;}
.y393_c00001{bottom:1040.335694pt;}
.y6c_c00001{bottom:1040.585280pt;}
.y334_c00001{bottom:1061.509145pt;}
.y1a8_c00001{bottom:1061.908904pt;}
.y1ee_c00001{bottom:1063.009704pt;}
.y3fd_c00001{bottom:1063.025314pt;}
.y562_c00001{bottom:1064.819356pt;}
.y4c9_c00001{bottom:1065.426389pt;}
.y303_c00001{bottom:1066.169547pt;}
.y2b1_c00001{bottom:1066.302892pt;}
.y19_c00001{bottom:1066.520069pt;}
.y8b_c00001{bottom:1066.919832pt;}
.y585_c00001{bottom:1067.255390pt;}
.y197_c00001{bottom:1067.949512pt;}
.y422_c00001{bottom:1069.267099pt;}
.y673_c00001{bottom:1093.586136pt;}
.y67e_c00001{bottom:1093.850774pt;}
.y565_c00001{bottom:1102.140089pt;}
.h30_c00001{height:28.449093pt;}
.h2f_c00001{height:28.487460pt;}
.hc_c00001{height:28.584382pt;}
.h2e_c00001{height:29.849486pt;}
.ha_c00001{height:31.970917pt;}
.h9_c00001{height:31.970918pt;}
.hb_c00001{height:31.970920pt;}
.h7_c00001{height:32.238026pt;}
.h6_c00001{height:32.238028pt;}
.h8_c00001{height:32.238029pt;}
.h35_c00001{height:32.430587pt;}
.h1c_c00001{height:34.742140pt;}
.h10_c00001{height:34.742386pt;}
.hd_c00001{height:35.560001pt;}
.h24_c00001{height:36.751497pt;}
.h1e_c00001{height:38.587100pt;}
.h1a_c00001{height:39.182865pt;}
.h19_c00001{height:39.182867pt;}
.h1b_c00001{height:39.182869pt;}
.h2a_c00001{height:40.019428pt;}
.h27_c00001{height:40.232581pt;}
.h29_c00001{height:40.486532pt;}
.h26_c00001{height:40.772748pt;}
.h2d_c00001{height:41.831226pt;}
.h31_c00001{height:43.783977pt;}
.h23_c00001{height:44.898078pt;}
.h15_c00001{height:45.847629pt;}
.h14_c00001{height:46.120377pt;}
.h32_c00001{height:46.287151pt;}
.h17_c00001{height:46.960544pt;}
.h13_c00001{height:48.971369pt;}
.h3_c00001{height:49.001996pt;}
.h1d_c00001{height:49.189532pt;}
.hf_c00001{height:49.619420pt;}
.h16_c00001{height:50.010498pt;}
.h1f_c00001{height:50.669664pt;}
.h22_c00001{height:54.570194pt;}
.h36_c00001{height:56.617959pt;}
.he_c00001{height:56.675071pt;}
.h12_c00001{height:57.976449pt;}
.h34_c00001{height:58.930418pt;}
.h5_c00001{height:59.520969pt;}
.h4_c00001{height:59.558193pt;}
.h2c_c00001{height:60.285249pt;}
.h28_c00001{height:64.037089pt;}
.h25_c00001{height:64.378166pt;}
.h2b_c00001{height:66.936239pt;}
.h33_c00001{height:73.135037pt;}
.h18_c00001{height:74.447742pt;}
.h11_c00001{height:79.398517pt;}
.h21_c00001{height:81.649575pt;}
.h20_c00001{height:213.739584pt;}
.h2_c00001{height:1159.999952pt;}
.h0_c00001{height:1159.999959pt;}
.h1_c00001{height:1160.000000pt;}
.w2_c00001{width:830.999965pt;}
.w0_c00001{width:831.000000pt;}
.w1_c00001{width:831.333333pt;}
.x0_c00001{left:0.000000pt;}
.x7c_c00001{left:51.024158pt;}
.x4f_c00001{left:60.067370pt;}
.x1_c00001{left:78.089069pt;}
.x3c_c00001{left:79.496944pt;}
.x46_c00001{left:80.904825pt;}
.x50_c00001{left:83.099997pt;}
.x5a_c00001{left:84.390281pt;}
.x4c_c00001{left:89.547417pt;}
.x3d_c00001{left:96.055698pt;}
.x3e_c00001{left:97.474332pt;}
.x45_c00001{left:98.727087pt;}
.x51_c00001{left:105.628591pt;}
.x4e_c00001{left:113.864341pt;}
.x28_c00001{left:119.906064pt;}
.x27_c00001{left:121.392652pt;}
.x29_c00001{left:124.389083pt;}
.x2a_c00001{left:128.698021pt;}
.x2b_c00001{left:133.464791pt;}
.x2c_c00001{left:135.910272pt;}
.x2d_c00001{left:138.584129pt;}
.x2e_c00001{left:142.002076pt;}
.x2f_c00001{left:145.070170pt;}
.x54_c00001{left:151.208870pt;}
.x30_c00001{left:152.430191pt;}
.x31_c00001{left:159.776608pt;}
.x32_c00001{left:167.266795pt;}
.x33_c00001{left:174.717010pt;}
.x34_c00001{left:178.419115pt;}
.x35_c00001{left:182.468375pt;}
.x36_c00001{left:185.852506pt;}
.x37_c00001{left:188.150503pt;}
.x68_c00001{left:189.674424pt;}
.x63_c00001{left:192.128370pt;}
.x5c_c00001{left:198.010501pt;}
.x5b_c00001{left:202.247726pt;}
.x4_c00001{left:204.676373pt;}
.x3_c00001{left:206.574107pt;}
.x5_c00001{left:209.317987pt;}
.x6_c00001{left:213.616993pt;}
.x7_c00001{left:218.376513pt;}
.x8_c00001{left:220.819105pt;}
.x9_c00001{left:223.490334pt;}
.xa_c00001{left:226.905704pt;}
.x4b_c00001{left:227.972394pt;}
.xb_c00001{left:229.825509pt;}
.xc_c00001{left:233.767373pt;}
.xd_c00001{left:241.423300pt;}
.xe_c00001{left:251.942027pt;}
.x71_c00001{left:254.378058pt;}
.xf_c00001{left:258.549026pt;}
.x10_c00001{left:261.564741pt;}
.x11_c00001{left:266.308178pt;}
.x12_c00001{left:269.319244pt;}
.x13_c00001{left:272.883167pt;}
.x14_c00001{left:289.225349pt;}
.x15_c00001{left:290.306761pt;}
.x16_c00001{left:291.569114pt;}
.x17_c00001{left:294.587062pt;}
.x18_c00001{left:297.451603pt;}
.x7a_c00001{left:299.267632pt;}
.x19_c00001{left:302.677178pt;}
.x65_c00001{left:303.689559pt;}
.x5e_c00001{left:305.938230pt;}
.x1a_c00001{left:308.173457pt;}
.x5f_c00001{left:310.949149pt;}
.x1b_c00001{left:313.230862pt;}
.x1c_c00001{left:316.260173pt;}
.x56_c00001{left:317.419577pt;}
.x58_c00001{left:318.340768pt;}
.x59_c00001{left:319.317798pt;}
.x57_c00001{left:321.334771pt;}
.x1d_c00001{left:323.284548pt;}
.x1e_c00001{left:330.381558pt;}
.x60_c00001{left:332.413580pt;}
.x1f_c00001{left:336.386614pt;}
.x20_c00001{left:339.069625pt;}
.x21_c00001{left:341.738474pt;}
.x22_c00001{left:344.757080pt;}
.x23_c00001{left:347.081977pt;}
.x72_c00001{left:348.403774pt;}
.x24_c00001{left:350.026488pt;}
.x25_c00001{left:354.624063pt;}
.x26_c00001{left:357.115628pt;}
.x80_c00001{left:368.972746pt;}
.x69_c00001{left:388.904561pt;}
.x2_c00001{left:401.765180pt;}
.x39_c00001{left:412.994514pt;}
.x75_c00001{left:421.292510pt;}
.x74_c00001{left:428.615595pt;}
.x70_c00001{left:429.884657pt;}
.x81_c00001{left:433.647470pt;}
.x6f_c00001{left:440.128633pt;}
.x7d_c00001{left:441.033719pt;}
.x7b_c00001{left:447.002429pt;}
.x7f_c00001{left:454.372861pt;}
.x73_c00001{left:461.113641pt;}
.x76_c00001{left:471.761491pt;}
.x7e_c00001{left:474.669695pt;}
.x6e_c00001{left:481.803099pt;}
.x79_c00001{left:488.243250pt;}
.x6b_c00001{left:489.949681pt;}
.x6c_c00001{left:491.774081pt;}
.x6d_c00001{left:502.759817pt;}
.x6a_c00001{left:503.966406pt;}
.x77_c00001{left:516.508170pt;}
.x78_c00001{left:524.164692pt;}
.x61_c00001{left:537.066634pt;}
.x64_c00001{left:542.077545pt;}
.x62_c00001{left:542.980809pt;}
.x55_c00001{left:552.832425pt;}
.x49_c00001{left:555.229481pt;}
.x5d_c00001{left:557.843369pt;}
.x44_c00001{left:559.110121pt;}
.x3f_c00001{left:560.743369pt;}
.x67_c00001{left:566.004776pt;}
.x4d_c00001{left:567.714280pt;}
.x66_c00001{left:571.275176pt;}
.x48_c00001{left:589.442247pt;}
.x47_c00001{left:593.925319pt;}
.x42_c00001{left:596.474375pt;}
.x4a_c00001{left:602.216775pt;}
.x41_c00001{left:605.523207pt;}
.x40_c00001{left:611.210183pt;}
.x43_c00001{left:613.277126pt;}
.x3b_c00001{left:614.606158pt;}
.x53_c00001{left:621.523728pt;}
.x3a_c00001{left:651.647171pt;}
.x38_c00001{left:672.566526pt;}
.x52_c00001{left:744.762654pt;}
}




    .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; }
  